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

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_pair_device_dialog.html

Issue 1970923002: [MD settings] update i18n replacements in bluetooth settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/bluetooth_page/bluetooth_page.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/bluetooth_page/bluetooth_pair_device_dialog.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_pair_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_pair_device_dialog.html
index fcfa8525ec4132d1a46f154881bba7d53cc1a588..2dfb96a8f164b8c85f6c0bfc6f060c8148208aec 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_pair_device_dialog.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_pair_device_dialog.html
@@ -13,8 +13,8 @@
<style include="bluetooth-dialog-shared"></style>
<div id="dialogOuterDiv" class="layout vertical flex">
<div id="dialogHeaderDiv" class="settings-box layout horizontal center">
- <span id="dialogTitle" class="flex"
- i18n-content="bluetoothPairDevicePageTitle">
+ <span id="dialogTitle" class="flex">
+ $i18n{bluetoothPairDevicePageTitle}
</span>
<paper-icon-button id="close" icon="settings:close"
on-tap="onCancelTap_">
@@ -45,24 +45,21 @@
</div>
</div>
<div id="dialogFooterDiv" class="layout horizontal center end-justified">
- <paper-button i18n-content="bluetoothAccept"
+ <paper-button
hidden$="[[!showAcceptReject_(pairingEvent)]]"
- on-tap="onAcceptTap_">
- </paper-button>
- <paper-button i18n-content="bluetoothReject"
+ on-tap="onAcceptTap_">$i18n{bluetoothAccept}</paper-button>
+ <paper-button
hidden$="[[!showAcceptReject_(pairingEvent)]]"
- on-tap="onRejectTap_">
- </paper-button>
- <paper-button i18n-content="bluetoothConnect"
+ on-tap="onRejectTap_">$i18n{bluetoothReject}</paper-button>
+ <paper-button
hidden$="[[!showConnect_(pairingEvent)]]"
- on-tap="onConnectTap_">
- </paper-button>
- <paper-button i18n-content="bluetoothDismiss"
+ on-tap="onConnectTap_">$i18n{bluetoothConnect}</paper-button>
+ <paper-button
hidden$="[[!showDismiss_(pairingDevice, pairingEvent)]]"
- on-tap="onDismissTap_">
- </paper-button>
- <paper-button i18n-content="cancel" on-tap="onCancelTap_"
+ on-tap="onDismissTap_">$i18n{bluetoothDismiss}</paper-button>
+ <paper-button on-tap="onCancelTap_"
hidden$="[[showDismiss_(pairingDevice, pairingEvent)]]">
+ $i18n{cancel}
</paper-button>
</div>
</div>
« no previous file with comments | « chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698