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

Side by Side Diff: components/gcm_driver/resources/gcm_internals.html

Issue 2908353003: [i18n] components directory to $i18n{} (Closed)
Patch Set: handle blank cohort name Created 3 years, 6 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 <!doctype html> 1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>GCM Internals</title> 5 <title>GCM Internals</title>
6 <if expr="is_android"> 6 <if expr="is_android">
7 <meta name="viewport" content="width=device-width"> 7 <meta name="viewport" content="width=device-width">
8 </if> 8 </if>
9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 9 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
10 <link rel="stylesheet" href="gcm_internals.css"> 10 <link rel="stylesheet" href="gcm_internals.css">
11 11
12 <if expr="is_ios"> 12 <if expr="is_ios">
(...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after
209 </tr> 209 </tr>
210 </thead> 210 </thead>
211 <tbody id="send-info"> 211 <tbody id="send-info">
212 </tbody> 212 </tbody>
213 </table> 213 </table>
214 </if> 214 </if>
215 215
216 <script src="chrome://resources/js/i18n_template.js"></script> 216 <script src="chrome://resources/js/i18n_template.js"></script>
217 </body> 217 </body>
218 </html> 218 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698