Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(538)

Unified Diff: chrome/browser/resources/settings/about_page/channel_switcher_dialog.html

Issue 2563143002: MD Settings: About: Fixes to channel switcher dialog (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/about_page/channel_switcher_dialog.html
diff --git a/chrome/browser/resources/settings/about_page/channel_switcher_dialog.html b/chrome/browser/resources/settings/about_page/channel_switcher_dialog.html
index a04b0f5abaf8a236460d108ba841f9411bbd804e..1edbba00f22670cb6af2c4580af4536fcac66295 100644
--- a/chrome/browser/resources/settings/about_page/channel_switcher_dialog.html
+++ b/chrome/browser/resources/settings/about_page/channel_switcher_dialog.html
@@ -9,7 +9,11 @@
<dom-module id="settings-channel-switcher-dialog">
<template>
- <style include="settings-shared"></style>
+ <style include="settings-shared">
+ dialog {
+ width: 600px;
+ }
+ </style>
<dialog is="cr-dialog" id="dialog">
<div class="title">$i18n{aboutChangeChannel}</div>
<div class="body">
@@ -19,13 +23,13 @@
<paper-radio-group
on-paper-radio-group-changed="onChannelSelectionChanged_">
<paper-radio-button name="[[browserChannelEnum_.STABLE]]">
- $i18n{aboutChannelStable}
+ $i18n{aboutChannelDialogStable}
</paper-radio-button>
<paper-radio-button name="[[browserChannelEnum_.BETA]]">
- $i18n{aboutChannelBeta}
+ $i18n{aboutChannelDialogBeta}
</paper-radio-button>
<paper-radio-button name="[[browserChannelEnum_.DEV]]">
- $i18n{aboutChannelDev}
Dan Beam 2016/12/14 03:41:02 so wait... we want the new strings to differ from
stevenjb 2016/12/14 19:42:36 Those strings are inserted into a sentence: https
+ $i18n{aboutChannelDialogDev}
</paper-radio-button>
</paper-radio-group>
<div id="warning" hidden="[[!shouldShowWarning_(warning_)]]">
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698