Replace .strings file
In mine, Localizable.Strings
I try to have all the pairs in alphabetical order. Can I reorder them alphabetically with my file Localizable.Strings
, case insensitive? Maby using genstring or a custom bash script?
For example, I have lines:
"app" = "app";
"Application settings" = "Application settings";
"back" = "back";
"Back" = "Back";
"Average rating" = "Average rating";
I want to receive:
"Average rating" = "Average rating";
"app" = "app";
"Application settings" = "Application settings";
"back" = "back";
"Back" = "Back";
+2
source to share