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

Unified Diff: chrome/browser/resources/settings/system_page/system_page.html

Issue 1976003002: [MD settings] change i18n() use in html to $i18n (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: line wrapping Created 4 years, 7 months 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
« no previous file with comments | « chrome/browser/resources/settings/settings.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/system_page/system_page.html
diff --git a/chrome/browser/resources/settings/system_page/system_page.html b/chrome/browser/resources/settings/system_page/system_page.html
index 1ce9f830706b4466d81a8355444c49ec867eb288..ca2d87ab7ed8ad675e4375ab4aab27b7e4e0a6ee 100644
--- a/chrome/browser/resources/settings/system_page/system_page.html
+++ b/chrome/browser/resources/settings/system_page/system_page.html
@@ -21,15 +21,16 @@
</style>
<div class="settings-box block first">
<if expr="not is_macosx">
- <settings-checkbox i18n-values="label:backgroundAppsLabel"
+ <settings-checkbox label="$i18n{backgroundAppsLabel}"
pref="{{prefs.background_mode.enabled}}">
</settings-checkbox>
</if>
<div id="hardware-acceleration">
- <settings-checkbox i18n-values="label:hardwareAccelerationLabel"
+ <settings-checkbox label="$i18n{hardwareAccelerationLabel}"
pref="{{prefs.hardware_acceleration_mode.enabled}}">
</settings-checkbox>
- <template is="dom-if" if="[[shouldShowRestart_(prefs.hardware_acceleration_mode.enabled.value)]]">
+ <template is="dom-if" if="[[shouldShowRestart_(
+ prefs.hardware_acceleration_mode.enabled.value)]]">
<paper-button on-tap="onRestartTap_">$i18n{restart}</paper-button>
</template>
</div>
« no previous file with comments | « chrome/browser/resources/settings/settings.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698