1 <!-- 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 4 found in the LICENSE file. 5 --> 6 7 <resources> 8 <!-- A string with placeholder. --> 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>? 11 </string> 12 13 <!-- A simple string. --> 14 <string name="simple" product="nosdcard">A simple string.</string> 15 16 <!-- A string with a comment. --> 17 <string name="comment">Contains a <!-- ignore this --> comment. </string> 18 19 <!-- A second simple string. --> 20 <string name="simple2"> Another simple string. </string> 21 22 <!-- A non-translatable string. --> 23 <string name="constant" translatable="false">Do not translate me.</string> 24 </resources> 25