German translation of "..." in "language.php"
Posted: 2021-02-02 09:30
I have noticed in UI that several labels had not been translated to German correctly. After some research I have seen that there must have been an auto-correction which replaced the three-characters "..." by one one-character "…" in the array-keys of $Translation array.
As a result, the translation function cannot find the correct labels when searching for, for example, "Loading ..." because the key does not contain the correct three characters "...".
So, if you have similar problems with labels containing "...", you should search your language.php for
... and do replacements for the array keys.
Example:
I have just checked the latest German language file, available here: https://bigprof.com/appgini/download-language-files, which is correct by now.
As a result, the translation function cannot find the correct labels when searching for, for example, "Loading ..." because the key does not contain the correct three characters "...".
So, if you have similar problems with labels containing "...", you should search your language.php for
Code: Select all
…
Example:
Code: Select all
$Translation['Loading …'] = "Bitte warten …";
Code: Select all
$Translation['Loading ...'] = "Bitte warten …";