Translation
- hulemalerier
- Autor
- Offline
- Junior Boarder
- Beiträge: 14
- Dank erhalten: 0
yay, that worked! Thanx!
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
- DocChicago
- Offline
- KISS Programmer-in-Chief
I checked your file, there are two lines which contain errors. You have double quotes within the strings which is not allowed.
E.g. the string
KISS_GENERAL_FIELD_SHOWONNOVALUE_DESC="Hvis NEJ, vil feltet ikke vises, hvis det er værdi "Null", "Nej", "Ingen" eller "nul". Hvis JA, vil feltet altid blive vist, uanset dens indhold."
As double quotes are delimiters for the language string, they must be used only twice in one string - at the beginning and the end. Double quotes within a double quoted string must be coded as "_QQ_"
So the above string must be coded as follows:
KISS_GENERAL_FIELD_SHOWONNOVALUE_DESC="Hvis NEJ, vil feltet ikke vises, hvis det er værdi "_QQ_"Null"_QQ_", "_QQ_"Nej"_QQ_", "_QQ_"Ingen"_QQ_" eller "_QQ_"nul"_QQ_". Hvis JA, vil feltet altid blive vist, uanset dens indhold."
For readability reasons, you may also use single quotes, such as
KISS_GENERAL_FIELD_SHOWONNOVALUE_DESC="Hvis NEJ, vil feltet ikke vises, hvis det er værdi 'Null', 'Nej', 'Ingen' eller 'nul'. Hvis JA, vil feltet altid blive vist, uanset dens indhold."
I will correct the file and put a new version in our download repository.
I checked it with the above strings changed and it worked.
Ob ein Glas halb voll oder halb leer ist, ist mir egal. Hauptsache meine Zähne passen rein.
No matter whether a glass is half full or half empty - as long as my teeth fit in.
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
- hulemalerier
- Autor
- Offline
- Junior Boarder
- Beiträge: 14
- Dank erhalten: 0
all is in english.. the danish ini file is showing as "not loaded" in the debugger.. rest of the components is in danish
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
- DocChicago
- Offline
- KISS Programmer-in-Chief
Is it showing no Danish language at all or only a few language strings in English?
Does it affect all components or KISS Advertiser only?
Ob ein Glas halb voll oder halb leer ist, ist mir egal. Hauptsache meine Zähne passen rein.
No matter whether a glass is half full or half empty - as long as my teeth fit in.
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
- hulemalerier
- Autor
- Offline
- Junior Boarder
- Beiträge: 14
- Dank erhalten: 0
yup.. its set as default in the installed languages list
Bitte Anmelden oder Registrieren um der Konversation beizutreten.
- DocChicago
- Offline
- KISS Programmer-in-Chief
The language settings are ok.
Have you defined your language as default language? Having a look at the 'installed' languages, there should be a yellow star in the 'default' column.
Ob ein Glas halb voll oder halb leer ist, ist mir egal. Hauptsache meine Zähne passen rein.
No matter whether a glass is half full or half empty - as long as my teeth fit in.
Bitte Anmelden oder Registrieren um der Konversation beizutreten.