Move text_* to strings_*
This commit is contained in:
@@ -129,7 +129,7 @@ public class Android {
|
||||
for (TranslationDef def : translationDefs) {
|
||||
translate(readResources(def.project, languageLocale), translations, def.links);
|
||||
}
|
||||
Utils.saveTranslations(translations, languageLocale, outDir, "text_imported_" + outPostfix + ".xml");
|
||||
Utils.saveTranslations(translations, languageLocale, outDir, "strings_imported_" + outPostfix + ".xml");
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -54,7 +54,7 @@ public class Microsoft {
|
||||
private static final String xmlNoVersion = xmlPre + xmlPost;
|
||||
|
||||
public static void main(String... args) throws Exception {
|
||||
final String inFileName = "app/src/main/res/values/text_microsoft.xml";
|
||||
final String inFileName = "app/src/main/res/values/strings_microsoft.xml";
|
||||
final File inFile = new File(inFileName);
|
||||
|
||||
final File outDir = new File("build/translations/res");
|
||||
|
@@ -19,7 +19,7 @@ import java.util.Map;
|
||||
|
||||
public class Wiki {
|
||||
public static void main(String... args) throws Exception {
|
||||
final String inFileName = "app/src/main/res/values/text_converter.xml";
|
||||
final String inFileName = "app/src/main/res/values/strings_converter.xml";
|
||||
final File inFile = new File(inFileName);
|
||||
|
||||
final File outDir = new File("build/translations/res");
|
||||
|
Reference in New Issue
Block a user