Actions

Iwadi LimeSurvey

From LimeSurvey Manual

Revision as of 15:12, 16 January 2024 by Maren.fritz (talk | contribs) (Created page with "<div class="simplebox">Akiyesi: Ti o ba nlo [https://www.limesurvey.org/edition-and-prices/limesurvey-pro/editions-and-prices-professional LimeSurvey Pro](fun Awọn olumulo i...")

Itumọ Iwadi Lime

Ṣe kii yoo jẹ ohun nla lati ni itumọ LimeSurvey patapata si ede abinibi rẹ? Ẹgbẹ LimeSurvey nigbagbogbo wa ni wiwa fun awọn itumọ tuntun ati fun awọn eniyan ti o ṣe iranlọwọ imudojuiwọn awọn ti o wa tẹlẹ. Jọwọ ka awọn ilana wọnyi ki o ma ṣe ṣiyemeji lati fi imeeli ranṣẹ si translations@limesurvey.org ti o ba ni iyemeji tabi ni awọn ibeere miiran.

Bii o ṣe le tumọ - awọn ilana igbesẹ-nipasẹ-igbesẹ

Nmu itumọ ti o wa tẹlẹ

  1. Forukọsilẹ lori oju opo wẹẹbu LimeSurvey ati lẹhinna wọle si rẹ akọọlẹ.
  2. Lọ si https://translate.limesurvey.org ki o wọle sibẹ pẹlu orukọ olumulo kanna ati ọrọ igbaniwọle.
  3. Mu ẹya LimeSurvey ti o fẹ tumọ ati nìkan to bẹrẹ. Lẹ́yìn tí ìtúmọ̀ rẹ bá ti fọwọ́ sí i, á fọwọ́ sí ìtúmọ̀ ọ̀sọ̀ọ̀sẹ̀ tí ó dúró ṣinṣin, a ó sì fi orúkọ oníṣe rẹ sí inú àkọọ́lẹ̀ ìyípadà! awọn okun, jọwọ kan si wa ni translations@limsurvey.org. Iru ipo bẹẹ nilo iwọn to bii wakati kan ti iṣẹ fun ọsẹ kan - o ṣe pataki fun wa pe o ni igbẹkẹle ni ṣiṣe eyi.

Ṣe akanṣe itumọ ti wa tẹlẹ

Nigba miiran o le fẹ ṣe atunṣe itumọ ti o wa tẹlẹ ki o gba ipo iwadii pato rẹ dara si. Ni ọran naa, ṣe atẹle naa:! N!#Lọ si https://translate.limesurvey.org, mu ẹya LimeSurvey ti o fẹ tumọ ati ede pato ti o fẹ lati ṣe modify.

  1. Ni isalẹ oju-iwe itumọ iwọ yoo wa aṣayan lati okeere gbogbo awọn gbolohun ọrọ bi faili * .po. Tẹ lori okeere ki o fi pamọ bi * .po faili si disiki agbegbe rẹ:
    ! N!#Gba ati fi sori ẹrọ Poedit. pato translations.
  2. Nigbati o ba fi * .po faili pamọ, a * .mo faili ti wa ni laifọwọyi ṣẹda. LimeSurvey yoo ka igbehin.
  3. Igbese ikẹhin ni lati fi faili *.mo pato si folda ede ti o tọ si /locale nipa rirọpo eyi ti o wa tẹlẹ.

Template:Akiyesi

Akiyesi: Ti o ba nlo LimeSurvey Pro(fun Awọn olumulo ifowosowopo ati Idawọlẹ nikan), ẹgbẹ naa yoo jẹ dun lati gbe faili naa fun ọ. Kan ṣẹda tikẹti atilẹyin [1] ki o si so faili * .po ( 'ko naa .*mo ).

Creating a new translation

  1. First of all, get access to the development version of LimeSurvey. For detailed instructions, access the source code.
  2. Download and install Poedit .
  3. Now you have to find out the language-code for your language - you can search for your language-code in the IANA Language Subtag Registry.
  4. Go into the /locale directory (located in the LimeSurvey root directory) and create a directory named after your language code.
  5. Download your language template by going to on the following link [2]. Select the project, then any language (e.g. go for the English entry), and scroll to the bottom. There you have the possibility to export the language file as <your_language_code>.po file.
  6. Copy the <your_language_code>.po file to the newly created folder located in the /locale directory.
  7. Open the file with Poedit and translate everything you need to translate.
  8. To make LimeSurvey know about your language, you must add it in application/helpers/surveytranslator_helper.php (located in the LimeSurvey root directory). Open that file with a text editor and add your language in the same way the other languages are defined in that file.
  9. Save - in order to allow LimeSurvey to see the newly added language, save the modified *.po file. This will automatically generate the *.mo file in the same folder, which will be read by LimeSurvey.
  10. Send the new *.po file and the updated surveytranslator_helper.php file to translations@limesurvey.org.
If your language use a lot of special character : please check what font must be used for pdf generation (check with dejavusans for example). Then we can add this font file in alternatepdffontfile default configuration.
If you want your name to be linked from/shown on the team page, please write so in the email!

Sample code for add a new language

    $supportedLanguages['code']['description'] = gT('Language'); // Your language name in English
    $supportedLanguages['code']['nativedescription'] = 'Language in native';  // The native name of your language
    $supportedLanguages['code']['rtl'] = (true|false); // RTL 
    $supportedLanguages['code']['dateformat'] = integer; // See getDateFormatData function
    $supportedLanguages['code']['radixpoint'] = (0|1); // 0 : ., 1 : , for radix point
    $supportedLanguages['code']['cldr'] = 'code';  // If the related Yii language code differs you can here map your language to a new code
    $supportedLanguages['code']['momentjs'] = 'code'; // Used by moment.js

Other part to be translated