]> WPIA git - gigi.git/blobdiff - src/org/cacert/gigi/localisation/Language.java
Merge "upd: fixes wording"
[gigi.git] / src / org / cacert / gigi / localisation / Language.java
index 95971120f39df4151e997ff2af1d4694cd1bfcee..4caaa79beb698533b0bb8de4f26f4aeb12945a67 100644 (file)
@@ -99,6 +99,9 @@ public class Language {
     }
 
     public String getTranslation(String text) {
+        if (text == null || text.equals("")) {
+            return text;
+        }
         String string = translations.get(text);
         if (string == null || string.equals("")) {
             return text;