v0.3.4: reviewers now also appear as translators
This commit is contained in:
parent
46bcbd3961
commit
aed5e994b3
|
@ -24,7 +24,7 @@ import java.util.Locale;
|
||||||
|
|
||||||
public enum Languages {
|
public enum Languages {
|
||||||
ENGLISH("english", "", Status.REVIEWED, null, null),
|
ENGLISH("english", "", Status.REVIEWED, null, null),
|
||||||
RUSSIAN("русский", "ru", Status.REVIEWED, new String[]{"ConsideredHamster", "Inevielle", "Yarikonline"}, new String[]{"HerrGotlieb", "Shamahan"}),
|
RUSSIAN("русский", "ru", Status.REVIEWED, new String[]{"ConsideredHamster", "Inevielle", "yarikonline"}, new String[]{"HerrGotlieb", "Shamahan"}),
|
||||||
KOREAN("한국어", "ko", Status.REVIEWED, new String[]{"Flameblast12"}, new String[]{"Ddojin0115", "Eeeei", "lsiebnie", "WondarRabb1t"}),
|
KOREAN("한국어", "ko", Status.REVIEWED, new String[]{"Flameblast12"}, new String[]{"Ddojin0115", "Eeeei", "lsiebnie", "WondarRabb1t"}),
|
||||||
|
|
||||||
//Simplified
|
//Simplified
|
||||||
|
|
|
@ -141,8 +141,12 @@ public class WndLangs extends Window {
|
||||||
creds += "\n";
|
creds += "\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (translators.length > 0){
|
if (reviewers.length > 0 || translators.length > 0){
|
||||||
creds += "_" + Messages.titleCase(Messages.get(WndLangs.class, "translators")) + "_";
|
creds += "_" + Messages.titleCase(Messages.get(WndLangs.class, "translators")) + "_";
|
||||||
|
//reviewers are also translators
|
||||||
|
for (String reviewer : reviewers){
|
||||||
|
creds += "\n-" + reviewer;
|
||||||
|
}
|
||||||
for (String translator : translators){
|
for (String translator : translators){
|
||||||
creds += "\n-" + translator;
|
creds += "\n-" + translator;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user