-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from michalsrutek/master
Add redundancy and missing translation checks
- Loading branch information
Showing
10 changed files
with
141 additions
and
135 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
4 changes: 3 additions & 1 deletion
4
Example/LocalizeExample/Resources/Languages/en.lproj/Localizable.strings
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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
"IgnoredUntranslatedKey" = "OK"; | ||
"MissingKey" = "Hey I'm not present in Spanish!"; | ||
"NeverUsedKey" = "Hey I'm never used so you can just get rid of me!"; | ||
"UntranslatedKey" = "Hey I'm always in english so you need to translate me!"; | ||
"UntranslatedKey" = "Hey I'm always in english so you need to translate me!"; | ||
"DuplicatedKey" = "Hey, I'm here more than once!"; | ||
"DuplicatedKey" = "Hey, I'm here more than once!"; |
2 changes: 2 additions & 0 deletions
2
Example/LocalizeExample/Resources/Languages/es.lproj/Localizable.strings
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
"IgnoredUntranslatedKey" = "OK"; //ignore-same-translation-warning | ||
"NeverUsedKey" = "Hello I'm never used so you can just get rid of me!"; | ||
"UntranslatedKey" = "Hey I'm always in english so you need to translate me!"; | ||
"DuplicatedKey" = "Hey, I'm more than once in the master translations!"; | ||
"RedundantKey" = "Hi, I'm a redundant key only appearing in Spanish"; |
5 changes: 3 additions & 2 deletions
5
Example/LocalizeExample/Resources/Languages/fr.lproj/Localizable.strings
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"IgnoredUntranslatedKey" = "OK"; //ignore-same-translation-warning | ||
"MissingKey" = "Hey! je n'existe pas en espagnol !"; | ||
"MissingKey" = "Hey! je n'existe pas en espagnol!"; | ||
"NeverUsedKey" = "Bonjour I'm never used so you can just get rid of me!"; | ||
"UntranslatedKey" = "Hey I'm always in english so you need to translate me!"; | ||
"DuplicatedKey" = "Hey, I'm more than once in the master translations!"; | ||
"UntranslatedKey" = "Hey I'm always in english so you need to translate me!"; |
24 changes: 0 additions & 24 deletions
24
Example/LocalizeExample/Resources/Storyboards/Main.storyboard
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.