-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add android import support, fix import bug where plural form few is i…
…gnored and keys are not converted to plural keys
- Loading branch information
Showing
10 changed files
with
109 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<resources> | ||
<string name="my_title">My title</string> | ||
<string name="my_description">My description</string> | ||
<plurals name="plurals_item"> | ||
<item quantity="other">other text</item> | ||
<item quantity="zero">zero text</item> | ||
<item quantity="one">one text</item> | ||
<item quantity="two">two text</item> | ||
<item quantity="few">few text</item> | ||
<item quantity="many">many text</item> | ||
</plurals> | ||
<plurals name="plurals_item_with_one_only"> | ||
<item quantity="one">123</item> | ||
</plurals> | ||
</resources> |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?xml version="1.0"?> | ||
<resources> | ||
<string name="my_title">My title</string> | ||
<string name="my_description">My description</string> | ||
<plurals name="plurals_item"> | ||
<item quantity="other">other text</item> | ||
<item quantity="zero">zero text</item> | ||
<item quantity="one">one text</item> | ||
<item quantity="two">two text</item> | ||
<item quantity="few">few text</item> | ||
<item quantity="many">many text</item> | ||
</plurals> | ||
<plurals name="plurals_item_with_one_only"> | ||
<item quantity="one">123</item> | ||
</plurals> | ||
</resources> |
This file contains 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