| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 | 6 |
| 7 <resources> | 7 <resources> |
| 8 <!-- A string with placeholder. --> | 8 <!-- A string with placeholder. --> |
| 9 <string xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" name="placeholders
"> | 9 <string xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2" name="placeholders
"> |
| 10 Open <xliff:g id="FILENAME" example="internet.html">%s</xliff:g>? | 10 Open <xliff:g id="FILENAME" example="internet.html">%s</xliff:g>? |
| 11 </string> | 11 </string> |
| 12 | 12 |
| 13 <!-- A simple string. --> | 13 <!-- A simple string. --> |
| 14 <string name="simple" product="nosdcard">A simple string.</string> | 14 <string name="simple">A simple string.</string> |
| 15 | 15 |
| 16 <!-- A string with a comment. --> | 16 <!-- A string with a comment. --> |
| 17 <string name="comment">Contains a <!-- ignore this --> comment. </string> | 17 <string name="comment">Contains a <!-- ignore this --> comment. </string> |
| 18 | 18 |
| 19 <!-- A second simple string. --> | 19 <!-- A second simple string. --> |
| 20 <string name="simple2"> Another simple string. </string> | 20 <string name="simple2"> Another simple string. </string> |
| 21 | 21 |
| 22 <!-- A non-translatable string. --> | 22 <!-- A non-translatable string. --> |
| 23 <string name="constant" translatable="false">Do not translate me.</string> | 23 <string name="constant" translatable="false">Do not translate me.</string> |
| 24 </resources> | 24 </resources> |
| OLD | NEW |