in version 7.1.6 localization key are not stored in the backend for all terms. How can I implement this missing localization keys? I have do this in "~\propertyeditors\membergroups\membergroups.html" without success :
Original:
<h5>Not a member of group(s)</h5>
Edited:
<h5><localize key="test_ld">TEST: Not a member of group(s)</localize></h5>
I have added this key in en.xml and the same key with translated value in de.xml under <area alias="content">:
Implement missing localization keys
Hi,
in version 7.1.6 localization key are not stored in the backend for all terms. How can I implement this missing localization keys? I have do this in "~\propertyeditors\membergroups\membergroups.html" without success :
Original:
Edited:
I have added this key in en.xml and the same key with translated value in de.xml under <area alias="content">:
But if I edit a member I see only:
[TEST_LD]
I have deleted the cache multiple times and refresh application pool, too.
Any ideas to solve this?
Sören
Hi Sören,
think its because you have your localization key called "test_ld".
The umbraco language files are build in that scheme but the first part is the alias of the area and the secound the alias of the actuall value key.
So in your case it should be "content_ld" as your localisation key:
and in the language file it should be:
in the content area of the language file.
David
Hi David,
thanks! Now, it works great!
Sören
is working on a reply...