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

Side by Side Diff: chrome/browser/resources/options/chromeos/internet_detail.html

Issue 535283002: Translate activation/romaing state, restricted pool (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_279351_internet_options_7b
Patch Set: Only set RestrictedConnectivity if true, fix tests Created 6 years, 3 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 unified diff | Download patch
OLDNEW
1 <div id="details-internet-page" class="page" hidden> 1 <div id="details-internet-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <!-- Network header --> 3 <!-- Network header -->
4 <div id="network-details-header"> 4 <div id="network-details-header">
5 <div id="network-details-title"></div> 5 <div id="network-details-title"></div>
6 <div id="network-details-subtitle"> 6 <div id="network-details-subtitle">
7 <span id="network-details-subtitle-status"></span> 7 <span id="network-details-subtitle-status"></span>
8 <span id="network-details-subtitle-separator"> - </span> 8 <span id="network-details-subtitle-separator"> - </span>
9 <span id="network-details-subtitle-type"></span> 9 <span id="network-details-subtitle-type"></span>
10 </div> 10 </div>
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
99 </div> 99 </div>
100 </td> 100 </td>
101 </tr> 101 </tr>
102 </table> 102 </table>
103 </section> 103 </section>
104 <section> 104 <section>
105 <table id="wifi-settings-table"> 105 <table id="wifi-settings-table">
106 <tr> 106 <tr>
107 <td class="option-name" i18n-content="connectionState"></td> 107 <td class="option-name" i18n-content="connectionState"></td>
108 <td id="wifi-connection-state" class="option-value"></td> 108 <td id="wifi-connection-state" class="option-value"></td>
109 </tr>
110 <tr>
111 <td class="option-name" i18n-content="restrictedConnectivity"></td>
112 <td id="wifi-restricted-connectivity" class="option-value"></td>
113 </tr>
109 <tr> 114 <tr>
110 <td class="option-name" i18n-content="inetSsid"></td> 115 <td class="option-name" i18n-content="inetSsid"></td>
111 <td id="wifi-ssid" class="option-value"></td> 116 <td id="wifi-ssid" class="option-value"></td>
112 </tr> 117 </tr>
113 <tr id="wifi-bssid-entry"> 118 <tr id="wifi-bssid-entry">
114 <td class="option-name" i18n-content="inetBssid"></td> 119 <td class="option-name" i18n-content="inetBssid"></td>
115 <td id="wifi-bssid" class="option-value"></td> 120 <td id="wifi-bssid" class="option-value"></td>
116 </tr> 121 </tr>
117 <tr id="wifi-security-entry"> 122 <tr id="wifi-security-entry">
118 <td class="options-name" i18n-content="inetEncryption"></td> 123 <td class="options-name" i18n-content="inetEncryption"></td>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 </td> 173 </td>
169 </tr> 174 </tr>
170 </table> 175 </table>
171 </section> 176 </section>
172 <section> 177 <section>
173 <table id="wimax-settings-table"> 178 <table id="wimax-settings-table">
174 <tr> 179 <tr>
175 <td class="option-name" i18n-content="connectionState"></td> 180 <td class="option-name" i18n-content="connectionState"></td>
176 <td id="wimax-connection-state" class="option-value"></td> 181 <td id="wimax-connection-state" class="option-value"></td>
177 </tr> 182 </tr>
183 <tr>
184 <td class="option-name" i18n-content="restrictedConnectivity"></td>
185 <td id="wimax-restricted-connectivity" class="option-value"></td>
186 </tr>
178 <tr id="wimax-eap-identity-entry"> 187 <tr id="wimax-eap-identity-entry">
179 <td class="option-name" i18n-content="inetUsername"></td> 188 <td class="option-name" i18n-content="inetUsername"></td>
180 <td id="wimax-eap-identity" class="option-value"></td> 189 <td id="wimax-eap-identity" class="option-value"></td>
181 </tr> 190 </tr>
182 <tr> 191 <tr>
183 <td class="options-name" i18n-content="inetSignalStrength"></td> 192 <td class="options-name" i18n-content="inetSignalStrength"></td>
184 <td id="wimax-signal-strength" class="option-value"></td> 193 <td id="wimax-signal-strength" class="option-value"></td>
185 </tr> 194 </tr>
186 </table> 195 </table>
187 </section> 196 </section>
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
256 </tr> 265 </tr>
257 <tr> 266 <tr>
258 <td class="option-name" i18n-content="activationState"></td> 267 <td class="option-name" i18n-content="activationState"></td>
259 <td id="activation-state" class="option-value"></td> 268 <td id="activation-state" class="option-value"></td>
260 </tr> 269 </tr>
261 <tr> 270 <tr>
262 <td class="option-name" i18n-content="roamingState"></td> 271 <td class="option-name" i18n-content="roamingState"></td>
263 <td id="roaming-state" class="option-value"></td> 272 <td id="roaming-state" class="option-value"></td>
264 </tr> 273 </tr>
265 <tr> 274 <tr>
266 <td class="option-name" i18n-content="restrictedPool"></td> 275 <td class="option-name" i18n-content="restrictedConnectivity"></td>
267 <td id="restricted-pool" class="option-value"></td> 276 <td id="cellular-restricted-connectivity" class="option-value"></td>
268 </tr> 277 </tr>
269 <tr> 278 <tr>
270 <td class="option-name" i18n-content="operatorName"></td> 279 <td class="option-name" i18n-content="operatorName"></td>
271 <td id="operator-name" class="option-value"></td> 280 <td id="operator-name" class="option-value"></td>
272 </tr> 281 </tr>
273 <tr> 282 <tr>
274 <td class="option-name" i18n-content="operatorCode"></td> 283 <td class="option-name" i18n-content="operatorCode"></td>
275 <td id="operator-code" class="option-value"></td> 284 <td id="operator-code" class="option-value"></td>
276 </tr> 285 </tr>
277 <tr> 286 <tr>
(...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after
684 </button> 693 </button>
685 <button id="details-internet-configure" i18n-content="configureButton"> 694 <button id="details-internet-configure" i18n-content="configureButton">
686 </button> 695 </button>
687 <button id="activate-details" i18n-content="activateButton"></button> 696 <button id="activate-details" i18n-content="activateButton"></button>
688 <button id="buyplan-details" i18n-content="buyplanButton"></button> 697 <button id="buyplan-details" i18n-content="buyplanButton"></button>
689 <button id="view-account-details" i18n-content="viewAccountButton"> 698 <button id="view-account-details" i18n-content="viewAccountButton">
690 </button> 699 </button>
691 </div> 700 </div>
692 </div> 701 </div>
693 </div> 702 </div>
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/resources/options/chromeos/internet_detail.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698