improved translations

This commit is contained in:
Stephan Richter
2020-11-06 12:10:38 +01:00
parent 2f9a9d74be
commit 9fed18a517
4 changed files with 9 additions and 5 deletions

View File

@@ -213,7 +213,7 @@ public class Locomotive extends Car implements Constants,Device{
new Input(ACTION, ACTION_ADD).hideIn(form);
new Input(REALM,REALM_LOCO).hideIn(form);
Fieldset fieldset = new Fieldset(t("add new locomotive"));
new Input(Locomotive.NAME, t("new locomotive")).addTo(new Label(t("Name:")+" ")).addTo(fieldset);
new Input(Locomotive.NAME, t("new locomotive")).addTo(new Label(t("Name:")+NBSP)).addTo(fieldset);
new Button(t("Apply")).addTo(fieldset);
fieldset.addTo(form).addTo(win);
return win;