Merge pull request #618 from jotomo/format-specifier-fixes

Fix format specifices in Spanish translation, add MainApp.gs(id, args).
This commit is contained in:
Milos Kozak 2018-01-26 10:03:17 +01:00 committed by GitHub
commit 26852e1ed3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View file

@ -233,6 +233,10 @@ public class MainApp extends Application {
return sResources.getString(id);
}
public static String gs(int id, Object... args) {
return sResources.getString(id, args);
}
public static MainApp instance() {
return sInstance;
}