Created
July 21, 2015 13:38
-
-
Save maerzbow/ee678590589ea21af546 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <resources> | |
| <string name="deutscher string">actually german: muss grösser gleich %d sein</string> | |
| <string name="escaped quotes">Logged in as \"%s\"</string> | |
| <string name="escaped single quotes">Logged in as \'%s\'</string> | |
| <string name="surrounded quotes">"Logged in as '%s'"</string> | |
| <string name="surrounded quotes escaped">"Logged in as \'%s\'"</string> | |
| <!-- single line comment --> | |
| <string name="two placeholder newline">Hello %s!\nYou have got %s unread messages.</string> | |
| <!-- multi | |
| line --> | |
| <!-- comment --> | |
| <string name="with html content"><i>left</i></string> | |
| <!-- string-array comment --> | |
| <string-array name="planets_array"> | |
| <item>Mercury</item> | |
| <!-- Venus comment --> | |
| <item>Venus</item> | |
| <item>Earth</item> | |
| <!-- Mars comment --> | |
| <item>Mars</item> | |
| </string-array> | |
| <string-array name="months"> | |
| <item>January</item> | |
| <item>February</item> | |
| <item>March</item> | |
| <item>April</item> | |
| <item>May</item> | |
| <item>Jun</item> | |
| <item>July</item> | |
| <item>August</item> | |
| <item>September</item> | |
| <item>October</item> | |
| <item>November</item> | |
| <item>December</item> | |
| </string-array> | |
| <!-- strings quantity comment --> | |
| <plurals name="numberOfSongsAvailable"> | |
| <!-- one comment --> | |
| <item quantity="one">Znaleziono jedną piosenkę.</item> | |
| <item quantity="few">Znaleziono %d piosenki.</item> | |
| <!-- other comment --> | |
| <item quantity="other">Znaleziono %d piosenek.</item> | |
| </plurals> | |
| </resources> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment