| Index: chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
|
| diff --git a/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js b/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
|
| index a5e2df22125e8e9c9b33f7dfafd393880363ff86..6bae7d7d2b9a4eb032e46cdf66a4b0a7023d27dc 100644
|
| --- a/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
|
| +++ b/chrome/browser/resources/settings/internet_page/tether_connection_dialog.js
|
| @@ -103,8 +103,9 @@ Polymer({
|
| * @private
|
| */
|
| getBatteryPercentageString_: function(networkProperties) {
|
| - return this.i18n('tetherConnectionBatteryPercentage',
|
| - this.getBatteryPercentageAsString_(networkProperties));
|
| + return this.i18n(
|
| + 'tetherConnectionBatteryPercentage',
|
| + this.getBatteryPercentageAsString_(networkProperties));
|
| },
|
|
|
| /**
|
| @@ -113,8 +114,8 @@ Polymer({
|
| * @private
|
| */
|
| getExplanation_: function(networkProperties) {
|
| - return this.i18n('tetherConnectionExplanation',
|
| - CrOnc.getNetworkName(networkProperties));
|
| + return this.i18n(
|
| + 'tetherConnectionExplanation', CrOnc.getNetworkName(networkProperties));
|
| },
|
|
|
| /**
|
| @@ -123,8 +124,9 @@ Polymer({
|
| * @private
|
| */
|
| getDescriptionTitle_: function(networkProperties) {
|
| - return this.i18n('tetherConnectionDescriptionTitle',
|
| - CrOnc.getNetworkName(networkProperties));
|
| + return this.i18n(
|
| + 'tetherConnectionDescriptionTitle',
|
| + CrOnc.getNetworkName(networkProperties));
|
| },
|
|
|
| /**
|
| @@ -133,7 +135,8 @@ Polymer({
|
| * @private
|
| */
|
| getBatteryDescription_: function(networkProperties) {
|
| - return this.i18n('tetherConnectionDescriptionBattery',
|
| - this.getBatteryPercentageAsString_(networkProperties));
|
| + return this.i18n(
|
| + 'tetherConnectionDescriptionBattery',
|
| + this.getBatteryPercentageAsString_(networkProperties));
|
| },
|
| });
|
|
|