Skip to content

Commit 5ccb44b

Browse files
committed
Add a message in case of no translation for a sentence
1 parent 813bf78 commit 5ccb44b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

GitAutoUpdateGUI/FormMain.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -692,12 +692,12 @@ private string Translate(string index) // could add (string index, string _curre
692692
case "english":
693693
result = _languageDicoEn.ContainsKey(index)
694694
? _languageDicoEn[index]
695-
: "the term: \"" + index + "\" has not been translated yet.\nPlease tell the developer to translate this term";
695+
: "the term: \"" + index + "\" has not been translated yet.\nPlease add an entry in the Translations.xml file or tell the developer to translate this term";
696696
break;
697697
case "french":
698698
result = _languageDicoFr.ContainsKey(index)
699699
? _languageDicoFr[index]
700-
: "the term: \"" + index + "\" has not been translated yet.\nPlease tell the developer to translate this term";
700+
: "the term: \"" + index + "\" has not been translated yet.\nPlease add an entry in the Translations.xml file or tell the developer to translate this term";
701701
break;
702702
}
703703

0 commit comments

Comments
 (0)