Actions

Custom translation/nl: Difference between revisions

From LimeSurvey Manual

Han (talk | contribs)
Created page with "Aangepaste vertaling"
 
Han (talk | contribs)
Created page with "Sinds LimeSurvey 5.4.0 kunt u uw eigen vertaling krijgen voor alle teksten in alle opgenomen talen, met directe toegang tot uw database."
Line 3: Line 3:
=Inleiding=
=Inleiding=


<div lang="en" dir="ltr" class="mw-content-ltr">
Sinds LimeSurvey 5.4.0 kunt u uw eigen vertaling krijgen voor alle teksten in alle opgenomen talen, met directe toegang tot uw database.
Since LimeSurvey 5.4.0 you can have your own translation for all strings in all included languages with direct access to your database.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
Dit systeem kan worden gebruikt als een bestaande vertaling niet compatibel is met uw zakelijke behoeften.
This system can be used if an existing translation is not compatible with your business needs.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
Het moet gereserveerd worden voor specifieke gevallen, omdat tekstwijzigingen in het hart van LimeSurvey opnieuw een aanpassing van uw database vereisen.  
It should be reserved for specific cases, since text modifications in the heart of LimeSurvey will again require a modification of your database.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
Bovendien kunt u deze methode gebruiken voor het vertalen van enquêtethema-specifieke teksten.
Furthermore, you can use this method for translating Survey Theme specific strings.
</div>


<div lang="en" dir="ltr" class="mw-content-ltr">
<div lang="en" dir="ltr" class="mw-content-ltr">

Revision as of 16:13, 8 July 2024

Inleiding

Sinds LimeSurvey 5.4.0 kunt u uw eigen vertaling krijgen voor alle teksten in alle opgenomen talen, met directe toegang tot uw database.

Dit systeem kan worden gebruikt als een bestaande vertaling niet compatibel is met uw zakelijke behoeften.

Het moet gereserveerd worden voor specifieke gevallen, omdat tekstwijzigingen in het hart van LimeSurvey opnieuw een aanpassing van uw database vereisen.

Bovendien kunt u deze methode gebruiken voor het vertalen van enquêtethema-specifieke teksten.

How database translations works

For database translations, LimeSurvey uses a method inspired by CDbMessageSource from the Yii framework.

  1. find the string in SourceMessage table lime_source_message->message, get the id : lime_source_message->id
  2. if exists, find the related translation in Message table lime_message->translation for current language lime_message->language with current id lime_message->id

LimeSurvey creates the array with translations from po file (see Translating LimeSurvey for information how to update this file), and afterwards merges it with all translations from the database.

Then the translations from the database are always returned if they exist.

Sample for “Submit” button in English and French

You want to show _Validate_ and not _Submit_ for the submit button in all of your surveys (with a specific theme). If you just update the theme and replace gT('Submit') by gT('Validate') : it always shows _Validate_ in all languages.

For all surveys with all themes

  1. Create the source message INSERT INTO lime_source_message (id, category, message) VALUES (NULL, NULL, 'Submit');
  2. Check the ID (if it's the 1st : ID is 1) and use it for next instruction
  3. Create the related translation : INSERT INTO lime_message (id, language, translation) VALUES ('1', 'en', 'Validate'), ('1', 'fr', 'Valider');

Using your own theme (recommended solution)

This method uses a solution with your own template, it updates the default string for all other languages as well.

  1. In Theme editor select the Navigation part
  2. Search for Template:GT("Submit") (in navigator.twig)
  3. Replace by Template:GT("Validate")
  4. Create the source message INSERT INTO lime_source_message (id, category, message) VALUES (NULL, NULL, 'Validate');
  5. Check the ID (if it's the 1st : ID is 1) and use it for next instruction
  6. Create the related translation : INSERT INTO lime_message (id, language, translation) VALUES ('1', 'fr', 'Valider');