Made save difficulty display in dialog
This commit is contained in:
@@ -13,7 +13,7 @@ import java.util.Locale;
|
||||
import static io.anuke.mindustry.Vars.ui;
|
||||
|
||||
public class LanguageDialog extends FloatingDialog{
|
||||
private Locale[] locales = {Locale.ENGLISH, new Locale("fr", "FR"), new Locale("ru"), new Locale("pl", "PL"),
|
||||
private Locale[] locales = {new Locale("en"), new Locale("fr", "FR"), new Locale("ru"), new Locale("pl", "PL"),
|
||||
new Locale("es", "LA"), new Locale("pt", "BR"), new Locale("ko"), new Locale("in", "ID")};
|
||||
|
||||
public LanguageDialog(){
|
||||
|
||||
@@ -106,6 +106,8 @@ public class LoadDialog extends FloatingDialog{
|
||||
button.row();
|
||||
button.add(Bundles.format("text.save.wave", color+slot.getWave()));
|
||||
button.row();
|
||||
button.add(Bundles.format("text.save.difficulty", color+slot.getDifficulty()));
|
||||
button.row();
|
||||
button.label(() -> Bundles.format("text.save.autosave", color + Bundles.get(slot.isAutosave() ? "text.on" : "text.off")));
|
||||
button.row();
|
||||
button.add();
|
||||
|
||||
Reference in New Issue
Block a user