This commit is contained in:
Sauilitired
2014-10-19 11:03:06 +02:00
parent a57e8f938a
commit 8b18c46926
2 changed files with 34 additions and 27 deletions

View File

@ -355,6 +355,9 @@ public enum C {
* @return translated if exists else default
*/
public String s() {
if(PlotMain.translations != null){
this.s = PlotMain.translations.getString(this.toString());
}
if (this.s.length() < 1) {
return this.d.replace("\\n", "\n");
}