Dotclear

Changeset 1526


Ignore:
Timestamp:
09/28/09 19:11:36 (14 years ago)
Author:
JcDenis
Message:

translater 1.0:

  • Added translation of template files. closes #250
Location:
plugins/translater
Files:
12 edited

Legend:

Unmodified
Added
Removed
  • plugins/translater/_define.php

    r1506 r1526  
    1717     /* Description*/         "Translate your Dotclear plugins and themes", 
    1818     /* Author */        "JC Denis", 
    19      /* Version */       '0.9', 
     19     /* Version */       '1.0', 
    2020     /* Permissions */        'admin,translater' 
    2121); 
    22      /* date */          #20090823 
     22     /* date */          #20090828 
    2323?> 
  • plugins/translater/inc/class.dc.translater.php

    r1506 r1526  
    119119               false 
    120120          ), 
     121          'scan_tpl' => array( 
     122               'translater_scan_tpl', 
     123               0, 
     124               'boolean', 
     125               'Translate strings of templates files', 
     126               true, 
     127               false 
     128          ), 
    121129          'parse_nodc' => array( 
    122130               'translater_parse_nodc', 
     
    908916     public static function encodeMsg($str) 
    909917     { 
    910           return text::toUTF8(stripslashes($str)); 
     918          return text::toUTF8(stripslashes(trim($str))); 
    911919     } 
    912920 
     
    920928 
    921929          $files = self::scandir($dir); 
     930           
     931          $scan_ext = array('php'); 
     932          if ($this->S['scan_tpl']) 
     933               $scan_ext[] = 'html'; 
    922934 
    923935          foreach($files AS $file) { 
    924936               if (is_dir($dir.'/'.$file)  
    925                 || files::getExtension($file) != 'php') continue; 
     937                || !in_array(files::getExtension($file),$scan_ext)) continue; 
    926938 
    927939               $contents = file($dir.'/'.$file); 
    928                foreach($contents AS $line => $content) { 
    929                     if (!preg_match_all( 
    930                          "|__\((['\"]{1})(.*)([\"']{1})\)|U",$content,$matches)) continue; 
    931  
    932                     foreach($matches[2] as $id) { 
    933                          $res[] = array( 
    934                               'msgid' => self::encodeMsg($id), 
    935                               'file' => $file, 
    936                               'line' => $line + 1 
    937                          ); 
     940               foreach($contents AS $line => $content) 
     941               { 
     942                    # php files 
     943                    if (preg_match_all("|__\((['\"]{1})(.*)([\"']{1})\)|U",$content,$matches)) 
     944                    { 
     945                         foreach($matches[2] as $id) 
     946                         { 
     947                              $res[] = array( 
     948                                   'msgid' => self::encodeMsg($id), 
     949                                   'file' => $file, 
     950                                   'line' => $line + 1 
     951                              ); 
     952                         } 
     953                    } 
     954                    # tpl files 
     955                    if ($this->S['scan_tpl'] && preg_match_all('/\{\{tpl:lang\s([^}]+)\}\}/',$content,$matches)) 
     956                    { 
     957                         foreach($matches[1] as $id) 
     958                         { 
     959                              $res[] = array( 
     960                                   'msgid' => self::encodeMsg($id), 
     961                                   'file' => $file, 
     962                                   'line' => $line + 1 
     963                              ); 
     964                         } 
    938965                    } 
    939966               } 
  • plugins/translater/inc/modules.php

    r1396 r1526  
    4949form::checkbox(array('settings[write_langphp]'),'1',$O->write_langphp).'  
    5050'.__('Write .lang.php files').'</label></p> 
     51<p><label class="classic">'. 
     52form::checkbox(array('settings[scan_tpl]'),'1',$O->scan_tpl).'  
     53'.__('Translate also strings of template files').'</label></p> 
    5154<p><label class="classic">'. 
    5255form::checkbox(array('settings[parse_nodc]'),'1',$O->parse_nodc).'  
  • plugins/translater/index.php

    r1396 r1526  
    297297form::hidden(array('settings[write_po]'),$O->write_po). 
    298298form::hidden(array('settings[write_langphp]'),$O->write_langphp). 
     299form::hidden(array('settings[scan_tpl]'),$O->scan_tpl). 
    299300form::hidden(array('settings[parse_nodc]'),$O->parse_nodc). 
    300301form::hidden(array('settings[parse_comment]'),$O->parse_comment). 
  • plugins/translater/locales/fr/admin.lang.php

    r1300 r1526  
    11<?php 
    22// Language: français  
    3 // Module: translater - 0.6 
    4 // Date: 2009-05-01 16:04:55  
    5 // Author: JC Denis, http://blog.jcdenis.com 
    6 // Translated with dcTranslater - 0.2.4  
     3// Module: translater - 1.0 
     4// Date: 2009-09-28 16:50:50  
     5// Author: , jcdenis@gdwd.com 
     6// Translated with dcTranslater - 0.2.5  
    77 
    88#index.php:66 
  • plugins/translater/locales/fr/admin.po

    r1300 r1526  
    11# Language: français 
    2 # Module: translater - 0.6 
    3 # Date: 2009-05-01 16:04:56 
    4 # Author: JC Denis, http://blog.jcdenis.com 
    5 # Translated with dcTranslater - 0.2.4 
     2# Module: translater - 1.0 
     3# Date: 2009-09-28 16:50:50 
     4# Author: , jcdenis@gdwd.com 
     5# Translated with dcTranslater - 0.2.5 
    66 
    77msgid "" 
  • plugins/translater/locales/fr/error.lang.php

    r1300 r1526  
    11<?php 
    22// Language: français  
    3 // Module: translater - 0.6 
    4 // Date: 2009-05-01 16:04:55  
    5 // Author: JC Denis, http://blog.jcdenis.com 
    6 // Translated with dcTranslater - 0.2.4  
     3// Module: translater - 1.0 
     4// Date: 2009-09-28 16:50:49  
     5// Author: , jcdenis@gdwd.com 
     6// Translated with dcTranslater - 0.2.5  
    77 
    8 #inc/class.dc.translater.php:300 
     8#inc/class.dc.translater.php:310 
    99$GLOBALS['__l10n']['Cannot work with module of type %s'] = 'Impossible de travailler avec un module de type %s'; 
    1010 
    11 #inc/class.dc.translater.php:305 
     11#inc/class.dc.translater.php:315 
    1212$GLOBALS['__l10n']['Cannot find module %s of type %s'] = 'Impossible de trouver le module %s de type %s'; 
    1313 
    14 #inc/class.dc.translater.php:373 
     14#inc/class.dc.translater.php:383 
    1515$GLOBALS['__l10n']['Cannot find backups folder for module %s'] = 'Impossible de trouver le dossier de sauvegarde du module %s'; 
    1616 
    17 #inc/class.dc.translater.php:386 
     17#inc/class.dc.translater.php:396 
    1818$GLOBALS['__l10n']['Cannot find languages folder for module %s'] = 'Impossible de trouver le dossier de langue du module %s'; 
    1919 
    20 #inc/class.dc.translater.php:402 
     20#inc/class.dc.translater.php:412 
    2121$GLOBALS['__l10n']['Cannot find root folder for module %s'] = 'Impossible de trouver le dossier racine du module %s'; 
    2222 
    23 #inc/class.dc.translater.php:424 
     23#inc/class.dc.translater.php:434 
    2424$GLOBALS['__l10n']['Limit of %s backups for module %s exceed'] = 'La limite de %s sauvegardes pour le module % est dépassée'; 
    2525 
    26 #inc/class.dc.translater.php:889 
     26#inc/class.dc.translater.php:899 
    2727$GLOBALS['__l10n']['Cannot find language folder %s for module %s'] = 'Impossible de trouver le dossier de langue %s pour le module %s'; 
    2828 
    29 #inc/class.dc.translater.php:529 
     29#inc/class.dc.translater.php:539 
    3030$GLOBALS['__l10n']['Cannot delete backup file %s'] = 'Impossible d\'effacer le fichier de sauvegarde %s'; 
    3131 
    32 #inc/class.dc.translater.php:544 
     32#inc/class.dc.translater.php:554 
    3333$GLOBALS['__l10n']['Cannot find backup file %s'] = 'Impossible de trouver le fichier de sauvegarde %s'; 
    3434 
    35 #inc/class.dc.translater.php:567 
     35#inc/class.dc.translater.php:577 
    3636$GLOBALS['__l10n']['Wrong export query'] = 'Mauvaise requète d\'exportation'; 
    3737 
    38 #inc/class.dc.translater.php:575 
     38#inc/class.dc.translater.php:585 
    3939$GLOBALS['__l10n']['Cannot use export mask %s'] = 'Impossible d\'utiliser le masque d\'exportation %s'; 
    4040 
    41 #inc/class.dc.translater.php:657 
     41#inc/class.dc.translater.php:667 
    4242$GLOBALS['__l10n']['Wrong import query'] = 'Mauvaise requète d\'importation'; 
    4343 
    44 #inc/class.dc.translater.php:703 
     44#inc/class.dc.translater.php:713 
    4545$GLOBALS['__l10n']['Nothing to import for these modules in pack %s'] = 'Rien à importer pour ces modules dans le paquetage %s'; 
    4646 
    47 #inc/class.dc.translater.php:728 
     47#inc/class.dc.translater.php:738 
    4848$GLOBALS['__l10n']['Zip file %s is not in translater format'] = 'Le fichier zip n\'est pas au format de translater'; 
    4949 
    50 #inc/class.dc.translater.php:781 
     50#inc/class.dc.translater.php:791 
    5151$GLOBALS['__l10n']['Language %s already exists for module %s'] = 'La langue %s existe dèjà pour le module %s'; 
    5252 
    53 #inc/class.dc.translater.php:790 
     53#inc/class.dc.translater.php:800 
    5454$GLOBALS['__l10n']['Cannot copy file from language %s for module %s'] = 'Impossible de copier le fichier depuis le langage %s pour le module %s'; 
    5555 
    56 #inc/class.dc.translater.php:865 
     56#inc/class.dc.translater.php:875 
    5757$GLOBALS['__l10n']['No string to write, language %s deleted for module %s'] = 'Aucune chaine à écrire, la langue %s a été effacée pour le module %s'; 
    5858 
    59 #inc/class.dc.translater.php:1075 
     59#inc/class.dc.translater.php:1104 
    6060$GLOBALS['__l10n']['Cannot grant write acces on lang file %s'] = 'Impossible d\'avoir les droits en écriture sur le fichier de langue %s'; 
    6161 
    62 #inc/class.dc.translater.php:1081 
     62#inc/class.dc.translater.php:1110 
    6363$GLOBALS['__l10n']['Cannot write lang file %s'] = 'Impossible d\'écrire le fichier de langue %s'; 
    6464 
    65 #inc/class.dc.translater.php:1322 
     65#inc/class.dc.translater.php:1351 
    6666$GLOBALS['__l10n']['Cannot find language for code %s'] = 'Impossible de trouver de langue pour le code %s'; 
    6767 
  • plugins/translater/locales/fr/error.po

    r1300 r1526  
    11# Language: français 
    2 # Module: translater - 0.6 
    3 # Date: 2009-05-01 16:04:55 
    4 # Author: JC Denis, http://blog.jcdenis.com 
    5 # Translated with dcTranslater - 0.2.4 
     2# Module: translater - 1.0 
     3# Date: 2009-09-28 16:50:50 
     4# Author: , jcdenis@gdwd.com 
     5# Translated with dcTranslater - 0.2.5 
    66 
    77msgid "" 
    88msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    99 
    10 #: inc/class.dc.translater.php:300 
     10#: inc/class.dc.translater.php:310 
    1111msgid "Cannot work with module of type %s" 
    1212msgstr "Impossible de travailler avec un module de type %s" 
    1313 
    14 #: inc/class.dc.translater.php:305 
     14#: inc/class.dc.translater.php:315 
    1515msgid "Cannot find module %s of type %s" 
    1616msgstr "Impossible de trouver le module %s de type %s" 
    1717 
    18 #: inc/class.dc.translater.php:373 
     18#: inc/class.dc.translater.php:383 
    1919msgid "Cannot find backups folder for module %s" 
    2020msgstr "Impossible de trouver le dossier de sauvegarde du module %s" 
    2121 
    22 #: inc/class.dc.translater.php:386 
     22#: inc/class.dc.translater.php:396 
    2323msgid "Cannot find languages folder for module %s" 
    2424msgstr "Impossible de trouver le dossier de langue du module %s" 
    2525 
    26 #: inc/class.dc.translater.php:402 
     26#: inc/class.dc.translater.php:412 
    2727msgid "Cannot find root folder for module %s" 
    2828msgstr "Impossible de trouver le dossier racine du module %s" 
    2929 
    30 #: inc/class.dc.translater.php:424 
     30#: inc/class.dc.translater.php:434 
    3131msgid "Limit of %s backups for module %s exceed" 
    3232msgstr "La limite de %s sauvegardes pour le module % est dépassée" 
    3333 
    34 #: inc/class.dc.translater.php:889 
     34#: inc/class.dc.translater.php:899 
    3535msgid "Cannot find language folder %s for module %s" 
    3636msgstr "Impossible de trouver le dossier de langue %s pour le module %s" 
    3737 
    38 #: inc/class.dc.translater.php:529 
     38#: inc/class.dc.translater.php:539 
    3939msgid "Cannot delete backup file %s" 
    4040msgstr "Impossible d'effacer le fichier de sauvegarde %s" 
    4141 
    42 #: inc/class.dc.translater.php:544 
     42#: inc/class.dc.translater.php:554 
    4343msgid "Cannot find backup file %s" 
    4444msgstr "Impossible de trouver le fichier de sauvegarde %s" 
    4545 
    46 #: inc/class.dc.translater.php:567 
     46#: inc/class.dc.translater.php:577 
    4747msgid "Wrong export query" 
    4848msgstr "Mauvaise requète d'exportation" 
    4949 
    50 #: inc/class.dc.translater.php:575 
     50#: inc/class.dc.translater.php:585 
    5151msgid "Cannot use export mask %s" 
    5252msgstr "Impossible d'utiliser le masque d'exportation %s" 
    5353 
    54 #: inc/class.dc.translater.php:657 
     54#: inc/class.dc.translater.php:667 
    5555msgid "Wrong import query" 
    5656msgstr "Mauvaise requète d'importation" 
    5757 
    58 #: inc/class.dc.translater.php:703 
     58#: inc/class.dc.translater.php:713 
    5959msgid "Nothing to import for these modules in pack %s" 
    6060msgstr "Rien à importer pour ces modules dans le paquetage %s" 
    6161 
    62 #: inc/class.dc.translater.php:728 
     62#: inc/class.dc.translater.php:738 
    6363msgid "Zip file %s is not in translater format" 
    6464msgstr "Le fichier zip n'est pas au format de translater" 
    6565 
    66 #: inc/class.dc.translater.php:781 
     66#: inc/class.dc.translater.php:791 
    6767msgid "Language %s already exists for module %s" 
    6868msgstr "La langue %s existe dèjà pour le module %s" 
    6969 
    70 #: inc/class.dc.translater.php:790 
     70#: inc/class.dc.translater.php:800 
    7171msgid "Cannot copy file from language %s for module %s" 
    7272msgstr "Impossible de copier le fichier depuis le langage %s pour le module %s" 
    7373 
    74 #: inc/class.dc.translater.php:865 
     74#: inc/class.dc.translater.php:875 
    7575msgid "No string to write, language %s deleted for module %s" 
    7676msgstr "Aucune chaine à écrire, la langue %s a été effacée pour le module %s" 
    7777 
    78 #: inc/class.dc.translater.php:1075 
     78#: inc/class.dc.translater.php:1104 
    7979msgid "Cannot grant write acces on lang file %s" 
    8080msgstr "Impossible d'avoir les droits en écriture sur le fichier de langue %s" 
    8181 
    82 #: inc/class.dc.translater.php:1081 
     82#: inc/class.dc.translater.php:1110 
    8383msgid "Cannot write lang file %s" 
    8484msgstr "Impossible d'écrire le fichier de langue %s" 
    8585 
    86 #: inc/class.dc.translater.php:1322 
     86#: inc/class.dc.translater.php:1351 
    8787msgid "Cannot find language for code %s" 
    8888msgstr "Impossible de trouver de langue pour le code %s" 
  • plugins/translater/locales/fr/help/help.html

    r1396 r1526  
    2727  <em>Peu importe le choix de fichier, vous devez au moins en selectionner un.</em></dd> 
    2828 
     29  <dt>Traduire également les chaines des fichiers de template</dt> 
     30  <dd>Cette option permet de traduire les balises de langage des fichiers .html. Ex: {{tpl:lang Lorem}}.</dd> 
     31   
    2932  <dt>Traduire uniquement les chaines inconnues</dt> 
    3033  <dd>Cette option est recommander est permet de griser les chaines déjà traduite dans Dotclear.</dd> 
  • plugins/translater/locales/fr/main.lang.php

    r1300 r1526  
    11<?php 
    22// Language: français  
    3 // Module: translater - 0.6 
    4 // Date: 2009-05-01 16:04:55  
    5 // Author: JC Denis, http://blog.jcdenis.com 
    6 // Translated with dcTranslater - 0.2.4  
     3// Module: translater - 1.0 
     4// Date: 2009-09-28 16:50:49  
     5// Author: , jcdenis@gdwd.com 
     6// Translated with dcTranslater - 0.2.5  
    77 
    88#_admin.php:16 
     
    2121$GLOBALS['__l10n']['Translate extensions'] = 'Traduire les extensions'; 
    2222 
    23 #inc/modules.php:117 
     23#inc/modules.php:120 
    2424$GLOBALS['__l10n']['Translate this plugin'] = 'Traduire cette extension'; 
    2525 
    26 #inc/modules.php:166 
     26#inc/modules.php:169 
    2727$GLOBALS['__l10n']['Translate this theme'] = 'Traduire ce thème'; 
    2828 
     
    5454$GLOBALS['__l10n']['no backup'] = 'Aucune sauvegarde'; 
    5555 
    56 #inc/simple.php:204 
     56#inc/simple.php:205 
    5757$GLOBALS['__l10n']['Add language'] = 'Ajouter une langue'; 
    5858 
    59 #inc/simple.php:206 
     59#inc/simple.php:207 
    6060$GLOBALS['__l10n']['Select language:'] = 'Selectionner une langue :'; 
    6161 
     
    6666$GLOBALS['__l10n']['Optionnal'] = 'Optionnel'; 
    6767 
    68 #inc/simple.php:208 
     68#inc/simple.php:209 
    6969$GLOBALS['__l10n']['Add translation'] = 'Ajouter la traduction'; 
    7070 
     
    102102$GLOBALS['__l10n']['Delete backups'] = 'Effacer les sauvegardes'; 
    103103 
    104 #inc/modules.php:198 
     104#inc/modules.php:207 
    105105$GLOBALS['__l10n']['Choose package to import'] = 'Choisir le paquetage à importer'; 
    106106 
    107 #inc/modules.php:244 
     107#inc/modules.php:253 
    108108$GLOBALS['__l10n']['Choose languages to export'] = 'Choisir les langues à exporter'; 
    109109 
     
    120120$GLOBALS['__l10n']['Existing'] = 'Existant'; 
    121121 
    122 #inc/module.php:403 
     122#inc/module.php:404 
    123123$GLOBALS['__l10n']['%s in %m => %f'] = '%s dans %m => %f'; 
    124124 
     
    145145 
    146146#inc/modules.php:53 
     147$GLOBALS['__l10n']['Translate also strings of template files'] = 'Traduire également les chaines des fichiers de template'; 
     148 
     149#inc/modules.php:56 
    147150$GLOBALS['__l10n']['Translate only unknow strings'] = 'Traduire uniquement les chaines inconnues'; 
    148151 
    149 #inc/modules.php:56 
     152#inc/modules.php:59 
    150153$GLOBALS['__l10n']['Write comments in files'] = 'Écrire les commentaires dans les fichiers'; 
    151154 
    152 #inc/modules.php:59 
     155#inc/modules.php:62 
    153156$GLOBALS['__l10n']['Write informations about author in files'] = 'Écrire les informations à propos de l\'auteur dans les fichiers'; 
    154157 
    155 #inc/modules.php:67 
     158#inc/modules.php:70 
    156159$GLOBALS['__l10n']['Overwrite existing languages'] = 'Écraser les langages existants'; 
    157160 
    158 #inc/modules.php:68 
     161#inc/modules.php:71 
    159162$GLOBALS['__l10n']['Name of exported package'] = 'Nom du paquetage exporté'; 
    160163 
    161 #inc/modules.php:76 
     164#inc/modules.php:79 
    162165$GLOBALS['__l10n']['Make backups when changes are made'] = 'Faire des sauvegardes lors des modifications'; 
    163166 
    164 #inc/modules.php:77 
     167#inc/modules.php:80 
    165168$GLOBALS['__l10n']['Limit backups to %s files per module'] = 'Limiter les sauvegardes à %s fichiers par module'; 
    166169 
    167 #inc/modules.php:80 
     170#inc/modules.php:83 
    168171$GLOBALS['__l10n']['Store backups in %s'] = 'Stoquer les sauvegardes dans %s'; 
    169172 
    170 #inc/modules.php:220 
     173#inc/modules.php:229 
    171174$GLOBALS['__l10n']['Choose modules to export'] = 'Choisir les modules à exporter'; 
    172175 
    173 #inc/modules.php:222 
     176#inc/modules.php:231 
    174177$GLOBALS['__l10n']['Modules'] = 'Modules'; 
    175178 
  • plugins/translater/locales/fr/main.po

    r1300 r1526  
    11# Language: français 
    2 # Module: translater - 0.6 
    3 # Date: 2009-05-01 16:04:55 
    4 # Author: JC Denis, http://blog.jcdenis.com 
    5 # Translated with dcTranslater - 0.2.4 
     2# Module: translater - 1.0 
     3# Date: 2009-09-28 16:50:49 
     4# Author: , jcdenis@gdwd.com 
     5# Translated with dcTranslater - 0.2.5 
    66 
    77msgid "" 
     
    2828msgstr "Traduire les extensions" 
    2929 
    30 #: inc/modules.php:117 
     30#: inc/modules.php:120 
    3131msgid "Translate this plugin" 
    3232msgstr "Traduire cette extension" 
    3333 
    34 #: inc/modules.php:166 
     34#: inc/modules.php:169 
    3535msgid "Translate this theme" 
    3636msgstr "Traduire ce thème" 
     
    7272msgstr "Aucune sauvegarde" 
    7373 
    74 #: inc/simple.php:204 
     74#: inc/simple.php:205 
    7575msgid "Add language" 
    7676msgstr "Ajouter une langue" 
    7777 
    78 #: inc/simple.php:206 
     78#: inc/simple.php:207 
    7979msgid "Select language:" 
    8080msgstr "Selectionner une langue :" 
     
    8888msgstr "Optionnel" 
    8989 
    90 #: inc/simple.php:208 
     90#: inc/simple.php:209 
    9191msgid "Add translation" 
    9292msgstr "Ajouter la traduction" 
     
    136136msgstr "Effacer les sauvegardes" 
    137137 
    138 #: inc/modules.php:198 
     138#: inc/modules.php:207 
    139139msgid "Choose package to import" 
    140140msgstr "Choisir le paquetage à importer" 
    141141 
    142 #: inc/modules.php:244 
     142#: inc/modules.php:253 
    143143msgid "Choose languages to export" 
    144144msgstr "Choisir les langues à exporter" 
     
    160160msgstr "Existant" 
    161161 
    162 #: inc/module.php:403 
     162#: inc/module.php:404 
    163163msgid "%s in %m => %f" 
    164164msgstr "%s dans %m => %f" 
     
    193193 
    194194#: inc/modules.php:53 
     195msgid "Translate also strings of template files" 
     196msgstr "Traduire également les chaines des fichiers de template" 
     197 
     198#: inc/modules.php:56 
    195199msgid "Translate only unknow strings" 
    196200msgstr "Traduire uniquement les chaines inconnues" 
    197201 
    198 #: inc/modules.php:56 
     202#: inc/modules.php:59 
    199203msgid "Write comments in files" 
    200204msgstr "Écrire les commentaires dans les fichiers" 
    201205 
    202 #: inc/modules.php:59 
     206#: inc/modules.php:62 
    203207msgid "Write informations about author in files" 
    204208msgstr "Écrire les informations à propos de l'auteur dans les fichiers" 
    205209 
    206 #: inc/modules.php:67 
     210#: inc/modules.php:70 
    207211msgid "Overwrite existing languages" 
    208212msgstr "Écraser les langages existants" 
    209213 
    210 #: inc/modules.php:68 
     214#: inc/modules.php:71 
    211215msgid "Name of exported package" 
    212216msgstr "Nom du paquetage exporté" 
    213217 
    214 #: inc/modules.php:76 
     218#: inc/modules.php:79 
    215219msgid "Make backups when changes are made" 
    216220msgstr "Faire des sauvegardes lors des modifications" 
    217221 
    218 #: inc/modules.php:77 
     222#: inc/modules.php:80 
    219223msgid "Limit backups to %s files per module" 
    220224msgstr "Limiter les sauvegardes à %s fichiers par module" 
    221225 
    222 #: inc/modules.php:80 
     226#: inc/modules.php:83 
    223227msgid "Store backups in %s" 
    224228msgstr "Stoquer les sauvegardes dans %s" 
    225229 
    226 #: inc/modules.php:220 
     230#: inc/modules.php:229 
    227231msgid "Choose modules to export" 
    228232msgstr "Choisir les modules à exporter" 
    229233 
    230 #: inc/modules.php:222 
     234#: inc/modules.php:231 
    231235msgid "Modules" 
    232236msgstr "Modules" 
  • plugins/translater/release.txt

    r1506 r1526  
     11.0 20090928 
     2 * Added translation of template files. closes #250 
     3 
    140.9 20090923 
    25 * Fixed bug on translate escape string 
     
    69 * Fixed php 5.3 compatibility 
    710 
    8  
    9 '''translater 0.7''': 
     110.7 
    1012 * Fixed some l10n 
    1113 * Fixed ''xhtml strict'' validation 
    1214 
    13 '''translater 0.6''': 
     150.6 
    1416 * Added ''author'' to langs files 
    1517 * Added ''two-cols'' option 
     
    2224 * Fixed ''xhtml strict'' validation 
    2325 
    24  
    25 '''translater 0.5''': 
     260.5 
    2627 * Fixed ''admin url'' 
    2728 * Added user perm check 
    2829 * Fixed ''bugs'' with bad strings (close #166) 
    2930 
    30  
    31 '''translater 0.4''': 
     310.4 
    3232 * Changed default tab to plugin 
    3333 * Replaced list of modules in select box rather than in help 
Note: See TracChangeset for help on using the changeset viewer.

Sites map