Replaced '$' formatting with '@'

This commit is contained in:
Anuken
2020-08-04 10:18:01 -04:00
parent 8dd4839f53
commit f60afc39f1
68 changed files with 458 additions and 458 deletions

View File

@@ -266,11 +266,11 @@ public class Maps{
Log.err(e);
if("Outdated legacy map format".equals(e.getMessage())){
ui.showErrorMessage("$editor.errornot");
ui.showErrorMessage("@editor.errornot");
}else if(e.getMessage() != null && e.getMessage().contains("Incorrect header!")){
ui.showErrorMessage("$editor.errorheader");
ui.showErrorMessage("@editor.errorheader");
}else{
ui.showException("$editor.errorload", e);
ui.showException("@editor.errorload", e);
}
}
}

View File

@@ -58,7 +58,7 @@ public abstract class FilterOption{
@Override
public void build(Table table){
if(!display){
table.add("$filter.option." + name);
table.add("@filter.option." + name);
}else{
table.label(() -> Core.bundle.get("filter.option." + name) + ": " + (int)getter.get());
}
@@ -107,7 +107,7 @@ public abstract class FilterOption{
dialog.show();
}).pad(4).margin(12f);
table.add("$filter.option." + name);
table.add("@filter.option." + name);
}
}
}