Dotclear

Changeset 2177


Ignore:
Timestamp:
04/11/10 16:00:42 (13 years ago)
Author:
Moe
Message:

Contribute 1.0-alpha26 :

  • updated localisation
  • removed useless test
Location:
plugins/contribute
Files:
1 deleted
9 edited

Legend:

Unmodified
Added
Removed
  • plugins/contribute/_define.php

    r2176 r2177  
    2828     /* Description*/                "Allow visitors to write an entry for your blog", 
    2929     /* Author */                    "Moe (http://gniark.net/)", 
    30      /* Version */                   '1.0-alpha25', 
     30     /* Version */                   '1.0-alpha26', 
    3131     /* Permissions */               'admin' 
    3232); 
  • plugins/contribute/inc/lib.contribute.document.php

    r2176 r2177  
    5757          } 
    5858           
    59           $disabled_plugins = $core->plugins->getDisabledModules(); 
    60            
    6159          $_ctx =& $GLOBALS['_ctx']; 
    6260           
     
    7169           
    7270          # Metadata 
    73           if ($core->plugins->moduleExists('metadata') 
    74                && !array_key_exists('metadata',$disabled_plugins)) 
     71          if ($core->plugins->moduleExists('metadata')) 
    7572          { 
    7673               $meta = new dcMeta($core); 
     
    8077               $meta = false; 
    8178          } 
     79           
     80           
    8281           
    8382          # My Meta 
    8483          if ($core->plugins->moduleExists('mymeta') 
    85                && ($settings->contribute_allow_mymeta) 
    86                && !array_key_exists('mymeta',$disabled_plugins)) 
     84               && ($settings->contribute_allow_mymeta)) 
    8785          { 
    8886               $mymeta_values = array(); 
     
    488486                         # antispam 
    489487                         if ($settings->contribute_enable_antispam 
    490                               && $core->plugins->moduleExists('antispam') 
    491                               && !array_key_exists('antispam',$disabled_plugins)) 
     488                              && $core->plugins->moduleExists('antispam')) 
    492489                         { 
    493490                              $cur = $core->con->openCursor($core->prefix.'comment'); 
     
    630627                              $post = $core->blog->getPosts($params); 
    631628 
    632                               $content .= __('URL:').' '.$post->getURL(); 
     629                              $content .= sprintf(__('URL: %s'),$post->getURL()); 
    633630                              unset($post); 
    634631                              $content .= "\n\n"; 
    635632                                    
    636                               $content .= __('Edit this entry:').' '.DC_ADMIN_URL. 
     633                              $content .= sprintf(__('Edit this entry: %s'),DC_ADMIN_URL. 
    637634                                   ((substr(DC_ADMIN_URL,-1) == '/') ? '' : '/'). 
    638                                    'post.php?id='.$post_id.'&switchblog='.$core->blog->id; 
     635                                   'post.php?id='.$post_id.'&switchblog='.$core->blog->id); 
    639636                              $content .= "\n\n". 
    640637                                   __('You must log in on the backend before clicking on this link to go directly to the post.'); 
  • plugins/contribute/index.php

    r2172 r2177  
    349349                         __('My Meta')); 
    350350                         echo(' '); 
    351                          printf(__('It requires the %s plugin.'), 
    352                               __('My Meta')); ?> 
     351                         printf(__('It requires the %s and %s plugins.'), 
     352                              __('Metadata'),__('My Meta')); ?> 
    353353                    </label> 
    354354               </p> 
    355355                
    356356               <?php 
    357                     if ($core->plugins->moduleExists('mymeta') 
    358                          && !array_key_exists('mymeta', 
    359                               $core->plugins->getDisabledModules())) 
     357                    if ($core->plugins->moduleExists('metadata') 
     358                         && $core->plugins->moduleExists('mymeta')) 
    360359                    { 
    361360                         $mymeta = new myMeta($core); 
  • plugins/contribute/locales/fr/admin.lang.php

    r1633 r2177  
    11<?php 
    22// Language: français  
    3 // Module: contribute - 1.0-alpha22 
    4 // Date: 2009-10-20 19:53:30  
     3// Module: contribute - 1.0-alpha26 
     4// Date: 2010-04-11 13:46:50  
    55// Translated with dcTranslater - 1.2  
    6  
    7 #_admin.php:163 
    8 $GLOBALS['__l10n']['Delete this author'] = 'Effacer cet auteur'; 
    9  
    10 #_public.php:319 
    11 $GLOBALS['__l10n']['Invalid cat_id'] = 'cat_id invalide'; 
    126 
    137#index.php:106 
     
    4135$GLOBALS['__l10n']['Enable antispam.'] = 'Activer l\'antispam.'; 
    4236 
    43 #index.php:351 
     37#index.php:223 
    4438$GLOBALS['__l10n']['It requires the %s plugin.'] = 'Cela nécessite le plugin %s.'; 
    4539 
     
    9993 
    10094#index.php:333 
    101 $GLOBALS['__l10n']['Display of the author name on the blog:'] = 'Affichage du nom de l\'auteur sur le blog&nbsp;:'; 
     95$GLOBALS['__l10n']['(%s is the author name or nickname)'] = '(%s est le nom ou le pseudo de l\'auteur)'; 
    10296 
    10397#index.php:333 
    104 $GLOBALS['__l10n']['(%s is the author name or nickname)'] = '(%s est le nom ou le pseudo de l\'auteur)'; 
     98$GLOBALS['__l10n']['Display of the author name on the blog:'] = 'Affichage du nom de l\'auteur sur le blog&nbsp;:'; 
    10599 
    106100#index.php:348 
    107101$GLOBALS['__l10n']['Allow contributors to choose %s values.'] = 'Permettre aux contributeurs de choisir les valeurs de %s.'; 
    108102 
    109 #index.php:369 
     103#index.php:370 
    110104$GLOBALS['__l10n']['Enable these %s values:'] = 'Activer ces valeurs de %s&nbsp;:'; 
    111105 
    112 #index.php:389 
     106#index.php:390 
    113107$GLOBALS['__l10n']['Save configuration'] = 'Enregistrer la configuration'; 
    114108 
    115 #index.php:395 
     109#index.php:396 
    116110$GLOBALS['__l10n']['URL of the %s page:'] = 'URL de la page %s&nbsp;:'; 
    117111 
    118 #index.php:400 
     112#index.php:401 
    119113$GLOBALS['__l10n']['View the %s page'] = 'Voir la page %s'; 
    120114 
    121 $GLOBALS['__l10n']['This will disable smilies on entries and comments.'] = 'Ceci désactivera les émoticones dans les billets et commentaires.'; 
    122  
    123115?> 
  • plugins/contribute/locales/fr/admin.po

    r1633 r2177  
    11# Language: français 
    2 # Module: contribute - 1.0-alpha22 
    3 # Date: 2009-10-20 19:53:30 
     2# Module: contribute - 1.0-alpha26 
     3# Date: 2010-04-11 13:46:50 
    44# Translated with dcTranslater - 1.2 
     5 
    56msgid "" 
    6 msgstr "" 
    7 "Content-Type: text/plain; charset=UTF-8\n" 
    8 "Project-Id-Version: \n" 
    9 "POT-Creation-Date: \n" 
    10 "PO-Revision-Date: \n" 
    11 "Last-Translator: Kozlika <kozlika@free.fr>\n" 
    12 "Language-Team: \n" 
    13 "MIME-Version: 1.0\n" 
    14 "Content-Transfer-Encoding: 8bit\n" 
    15  
    16 #: _admin.php:163 
    17 msgid "Delete this author" 
    18 msgstr "Effacer cet auteur" 
    19  
    20 #: _public.php:319 
    21 msgid "Invalid cat_id" 
    22 msgstr "cat_id invalide" 
     7msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    238 
    249#: index.php:106 
     
    6247msgstr "Activer l'antispam." 
    6348 
    64 #: index.php:351 
     49#: index.php:223 
    6550msgid "It requires the %s plugin." 
    6651msgstr "Cela nécessite le plugin %s." 
     
    139124 
    140125#: index.php:333 
     126msgid "(%s is the author name or nickname)" 
     127msgstr "(%s est le nom ou le pseudo de l'auteur)" 
     128 
     129#: index.php:333 
    141130msgid "Display of the author name on the blog:" 
    142131msgstr "Affichage du nom de l'auteur sur le blog&nbsp;:" 
    143  
    144 #: index.php:333 
    145 msgid "(%s is the author name or nickname)" 
    146 msgstr "(%s est le nom ou le pseudo de l'auteur)" 
    147132 
    148133#: index.php:348 
     
    150135msgstr "Permettre aux contributeurs de choisir les valeurs de %s." 
    151136 
    152 #: index.php:369 
     137#: index.php:370 
    153138msgid "Enable these %s values:" 
    154139msgstr "Activer ces valeurs de %s&nbsp;:" 
    155140 
    156 #: index.php:389 
     141#: index.php:390 
    157142msgid "Save configuration" 
    158143msgstr "Enregistrer la configuration" 
    159144 
    160 #: index.php:395 
     145#: index.php:396 
    161146msgid "URL of the %s page:" 
    162147msgstr "URL de la page %s&nbsp;:" 
    163148 
    164 #: index.php:400 
     149#: index.php:401 
    165150msgid "View the %s page" 
    166151msgstr "Voir la page %s" 
    167152 
    168 msgid "This will disable smilies on entries and comments." 
    169 msgstr "Ceci désactivera les émoticones dans les billets et commentaires." 
    170  
  • plugins/contribute/locales/fr/main.lang.php

    r1601 r2177  
    11<?php 
    22// Language: français  
    3 // Module: contribute - 1.0-alpha22 
    4 // Date: 2009-10-20 19:53:29  
     3// Module: contribute - 1.0-alpha26 
     4// Date: 2010-04-11 13:46:49  
    55// Translated with dcTranslater - 1.2  
    66 
    7 #public_l10n.php:10 
     7#_admin.php:163 
     8$GLOBALS['__l10n']['Delete this author'] = 'Effacer cet auteur'; 
     9 
     10#_widget.php:42 
     11$GLOBALS['__l10n']['Title:'] = 'Titre&nbsp;:'; 
     12 
     13#inc/lib.contribute.document.php:150 
     14$GLOBALS['__l10n']['No default post.'] = 'Pas de billet par défaut.'; 
     15 
     16#inc/lib.contribute.document.php:629 
     17$GLOBALS['__l10n']['URL: %s'] = 'URL : %s'; 
     18 
     19#inc/lib.contribute.document.php:633 
     20$GLOBALS['__l10n']['Edit this entry: %s'] = 'Éditer ce billet : %s'; 
     21 
     22#index.php:401 
    823$GLOBALS['__l10n']['Contribute'] = 'Contribuer'; 
    924 
    10 #_public.php:150 
    11 $GLOBALS['__l10n']['No default post.'] = 'Pas de billet par défaut.'; 
    12  
    1325?> 
  • plugins/contribute/locales/fr/main.po

    r1601 r2177  
    11# Language: français 
    2 # Module: contribute - 1.0-alpha22 
    3 # Date: 2009-10-20 19:53:30 
     2# Module: contribute - 1.0-alpha26 
     3# Date: 2010-04-11 13:46:50 
    44# Translated with dcTranslater - 1.2 
    55 
     
    77msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    88 
    9 #: public_l10n.php:10 
     9#: _admin.php:163 
     10msgid "Delete this author" 
     11msgstr "Effacer cet auteur" 
     12 
     13#: _widget.php:42 
     14msgid "Title:" 
     15msgstr "Titre&nbsp;:" 
     16 
     17#: inc/lib.contribute.document.php:150 
     18msgid "No default post." 
     19msgstr "Pas de billet par défaut." 
     20 
     21#: inc/lib.contribute.document.php:629 
     22msgid "URL: %s" 
     23msgstr "URL : %s" 
     24 
     25#: inc/lib.contribute.document.php:633 
     26msgid "Edit this entry: %s" 
     27msgstr "Éditer ce billet : %s" 
     28 
     29#: index.php:401 
    1030msgid "Contribute" 
    1131msgstr "Contribuer" 
    1232 
    13 #: _public.php:150 
    14 msgid "No default post." 
    15 msgstr "Pas de billet par défaut." 
    16  
  • plugins/contribute/locales/fr/public.lang.php

    r1601 r2177  
    11<?php 
    22// Language: français  
    3 // Module: contribute - 1.0-alpha22 
    4 // Date: 2009-10-20 19:53:30  
     3// Module: contribute - 1.0-alpha26 
     4// Date: 2010-04-11 13:46:50  
    55// Translated with dcTranslater - 1.2  
    66 
    7 #_public.php:443 
    8 $GLOBALS['__l10n']['No entry content'] = 'Pas de contenu de billet'; 
    9  
    10 #_public.php:446 
    11 $GLOBALS['__l10n']['No entry title'] = 'Pas de titre de billet'; 
    12  
    13 #_public.php:489 
    14 $GLOBALS['__l10n']['The user is not allowed to create an entry'] = 'L\'utilisateur n\'est pas autorisé à créer des billets'; 
    15  
    16 #_public.php:612 
    17 $GLOBALS['__l10n']['New post submitted on %s'] = 'Nouveau billet envoyé sur %s.'; 
    18  
    19 #_public.php:615 
    20 $GLOBALS['__l10n']['Title: %s'] = 'Titre&nbsp;: %s'; 
    21  
    22 #_public.php:620 
    23 $GLOBALS['__l10n']['Author: %s'] = 'Auteur&nbsp;: %s'; 
    24  
    25 #_public.php:628 
    26 $GLOBALS['__l10n']['Email address: %s'] = 'Adresse email&nbsp;: %s'; 
    27  
    28 #_public.php:641 
    29 $GLOBALS['__l10n']['Edit this entry:'] = 'Éditer ce billet&nbsp;:'; 
    30  
    31 #_public.php:645 
    32 $GLOBALS['__l10n']['You must log in on the backend before clicking on this link to go directly to the post.'] = 'Vous devez vous enregistrer sur l\'interface d\'administration avant de cliquer sur ce lien pour aller directement sur ce billet.'; 
     7#inc/lib.contribute.document.php:311 
     8$GLOBALS['__l10n']['Invalid cat_id'] = 'cat_id invalide'; 
    339 
    3410#_widget.php:46 
    3511$GLOBALS['__l10n']['Write a post for this blog'] = 'Écrire un billet pour ce blog'; 
    3612 
    37 #public_l10n.php:7 
     13#default-templates/contribute.html:59 
     14$GLOBALS['__l10n']['You can use the following shortcuts to format your text.'] = 'Vous pouvez utiliser les raccourcis suivants pour formater votre texte.'; 
     15 
     16#default-templates/contribute.html:60 
     17$GLOBALS['__l10n']['-- none --'] = '-- aucun --'; 
     18 
     19#default-templates/contribute.html:61 
     20$GLOBALS['__l10n']['-- block format --'] = '-- format bloc --'; 
     21 
     22#default-templates/contribute.html:62 
     23$GLOBALS['__l10n']['Paragraph'] = 'Paragraphe'; 
     24 
     25#default-templates/contribute.html:63 
     26$GLOBALS['__l10n']['Level 1 header'] = 'Titre de niveau 1'; 
     27 
     28#default-templates/contribute.html:64 
     29$GLOBALS['__l10n']['Level 2 header'] = 'Titre de niveau 2'; 
     30 
     31#default-templates/contribute.html:65 
     32$GLOBALS['__l10n']['Level 3 header'] = 'Titre de niveau 3'; 
     33 
     34#default-templates/contribute.html:66 
     35$GLOBALS['__l10n']['Level 4 header'] = 'Titre de niveau 4'; 
     36 
     37#default-templates/contribute.html:67 
     38$GLOBALS['__l10n']['Level 5 header'] = 'Titre de niveau 5'; 
     39 
     40#default-templates/contribute.html:68 
     41$GLOBALS['__l10n']['Level 6 header'] = 'Titre de niveau 6'; 
     42 
     43#default-templates/contribute.html:69 
     44$GLOBALS['__l10n']['Strong emphasis'] = 'Forte emphase'; 
     45 
     46#default-templates/contribute.html:70 
     47$GLOBALS['__l10n']['Emphasis'] = 'Emphase'; 
     48 
     49#default-templates/contribute.html:71 
     50$GLOBALS['__l10n']['Inserted'] = 'Insertion'; 
     51 
     52#default-templates/contribute.html:72 
     53$GLOBALS['__l10n']['Deleted'] = 'Suppression'; 
     54 
     55#default-templates/contribute.html:73 
     56$GLOBALS['__l10n']['Inline quote'] = 'Citation en ligne'; 
     57 
     58#default-templates/contribute.html:74 
     59$GLOBALS['__l10n']['Code'] = 'Code'; 
     60 
     61#default-templates/contribute.html:75 
     62$GLOBALS['__l10n']['Line break'] = 'Passage à la ligne'; 
     63 
     64#default-templates/contribute.html:76 
     65$GLOBALS['__l10n']['Blockquote'] = 'Bloc de citation'; 
     66 
     67#default-templates/contribute.html:77 
     68$GLOBALS['__l10n']['Preformated text'] = 'Texte préformaté'; 
     69 
     70#default-templates/contribute.html:78 
     71$GLOBALS['__l10n']['Unordered list'] = 'Liste à puces'; 
     72 
     73#default-templates/contribute.html:79 
     74$GLOBALS['__l10n']['Ordered list'] = 'Liste numérotée'; 
     75 
     76#default-templates/contribute.html:80 
     77$GLOBALS['__l10n']['Link'] = 'Lien'; 
     78 
     79#default-templates/contribute.html:82 
     80$GLOBALS['__l10n']['Language?'] = 'Langue ?'; 
     81 
     82#default-templates/contribute.html:83 
     83$GLOBALS['__l10n']['External image'] = 'Image externe'; 
     84 
     85#default-templates/contribute.html:86 
     86$GLOBALS['__l10n']['visual'] = 'visuel'; 
     87 
     88#default-templates/contribute.html:87 
     89$GLOBALS['__l10n']['source'] = 'source'; 
     90 
     91#default-templates/contribute.html:90 
     92$GLOBALS['__l10n']['You have unsaved changes.'] = 'Vous n\'avez pas enregistré vos modifications.'; 
     93 
     94#default-templates/contribute.html:112 
     95$GLOBALS['__l10n']['This is a preview.'] = 'Ceci est un aperçu.'; 
     96 
     97#default-templates/contribute.html:113 
    3898$GLOBALS['__l10n']['Click on <strong>save</strong> when the post is ready.'] = 'Cliquez sur <strong>enregistrer</strong> quand le billet est prêt.'; 
    3999 
    40 #public_l10n.php:9 
     100#default-templates/contribute.html:119 
     101$GLOBALS['__l10n']['The post has been saved.'] = 'Le billet a été sauvegardé.'; 
     102 
     103#default-templates/contribute.html:180 
     104$GLOBALS['__l10n']['Text formating'] = 'Format du texte'; 
     105 
     106#default-templates/contribute.html:192 
     107$GLOBALS['__l10n']['convert to XHTML'] = 'convertir en XHTML'; 
     108 
     109#default-templates/contribute.html:203 
     110$GLOBALS['__l10n']['http://dotclear.org/documentation/2.0/usage/syntaxes'] = 'http://fr.dotclear.org/documentation/2.0/usage/syntaxes'; 
     111 
     112#default-templates/contribute.html:204 
     113$GLOBALS['__l10n']['wiki syntax reference'] = 'référence de la syntaxe wiki'; 
     114 
     115#default-templates/contribute.html:214 
     116$GLOBALS['__l10n']['Excerpt'] = 'Extrait'; 
     117 
     118#default-templates/contribute.html:220 
    41119$GLOBALS['__l10n']['Content'] = 'Contenu'; 
    42120 
    43 #public_l10n.php:11 
    44 $GLOBALS['__l10n']['convert to XHTML'] = 'convertir en XHTML'; 
     121#default-templates/contribute.html:228 
     122$GLOBALS['__l10n']['Category'] = 'Catégorie'; 
    45123 
    46 #public_l10n.php:16 
    47 $GLOBALS['__l10n']['Excerpt'] = 'Extrait'; 
     124#default-templates/contribute.html:246 
     125$GLOBALS['__l10n']['separate tags by a comma'] = 'séparer les tags par une virgule'; 
    48126 
    49 #public_l10n.php:19 
    50 $GLOBALS['__l10n']['http://dotclear.org/documentation/2.0/usage/syntaxes'] = 'http://fr.dotclear.org/documentation/2.0/usage/syntaxes'; 
     127#default-templates/contribute.html:303 
     128$GLOBALS['__l10n']['Notes'] = 'Notes'; 
    51129 
    52 #public_l10n.php:22 
     130#default-templates/contribute.html:303 
     131$GLOBALS['__l10n']['only visible by administrators, won\'t be displayed in the post'] = 'uniquement visibles par les administrateurs, ne seront pas affichées dans le billet'; 
     132 
     133#default-templates/contribute.html:311 
     134$GLOBALS['__l10n']['Your informations'] = 'Vos informations'; 
     135 
     136#default-templates/contribute.html:323 
     137$GLOBALS['__l10n']['won\'t be displayed'] = 'ne sera pas affichée'; 
     138 
     139#inc/lib.contribute.document.php:435 
     140$GLOBALS['__l10n']['No entry content'] = 'Pas de contenu de billet'; 
     141 
     142#inc/lib.contribute.document.php:438 
     143$GLOBALS['__l10n']['No entry title'] = 'Pas de titre de billet'; 
     144 
     145#inc/lib.contribute.document.php:481 
     146$GLOBALS['__l10n']['The user is not allowed to create an entry'] = 'L\'utilisateur n\'est pas autorisé à créer des billets'; 
     147 
     148#inc/lib.contribute.document.php:604 
     149$GLOBALS['__l10n']['New post submitted on %s'] = 'Nouveau billet envoyé sur %s.'; 
     150 
     151#inc/lib.contribute.document.php:607 
     152$GLOBALS['__l10n']['Title: %s'] = 'Titre : %s'; 
     153 
     154#inc/lib.contribute.document.php:612 
     155$GLOBALS['__l10n']['Author: %s'] = 'Auteur : %s'; 
     156 
     157#inc/lib.contribute.document.php:620 
     158$GLOBALS['__l10n']['Email address: %s'] = 'Adresse email : %s'; 
     159 
     160#inc/lib.contribute.document.php:637 
     161$GLOBALS['__l10n']['You must log in on the backend before clicking on this link to go directly to the post.'] = 'Vous devez vous enregistrer sur l\'interface d\'administration avant de cliquer sur ce lien pour aller directement sur ce billet.'; 
     162 
     163#default-templates/contribute.html:84 
     164$GLOBALS['__l10n']['URL?'] = 'URL ?'; 
     165 
     166#default-templates/contribute.html:120 
    53167$GLOBALS['__l10n']['It needs to be approved by an administrator to be published.'] = 'Il faut qu\'il soit approuvé par un administrateur pour être publié.'; 
    54168 
    55 #public_l10n.php:34 
    56 $GLOBALS['__l10n']['Notes'] = 'Notes'; 
    57  
    58 #public_l10n.php:36 
    59 $GLOBALS['__l10n']['only visible by administrators, won\'t be displayed in the post'] = 'uniquement visibles par les administrateurs, ne seront pas affichées dans le billet'; 
    60  
    61 #public_l10n.php:44 
    62 $GLOBALS['__l10n']['separate tags by a comma'] = 'séparer les tags par une virgule'; 
    63  
    64 #public_l10n.php:48 
    65 $GLOBALS['__l10n']['Text formating'] = 'Format du texte'; 
    66  
    67 #public_l10n.php:49 
    68 $GLOBALS['__l10n']['The post has been saved.'] = 'Le billet a été sauvegardé.'; 
    69  
    70 #public_l10n.php:50 
    71 $GLOBALS['__l10n']['This is a preview.'] = 'Ceci est un aperçu.'; 
    72  
    73 #public_l10n.php:56 
    74 $GLOBALS['__l10n']['wiki syntax reference'] = 'référence de la syntaxe wiki'; 
    75  
    76 #public_l10n.php:57 
    77 $GLOBALS['__l10n']['won\'t be displayed'] = 'ne sera pas affichée'; 
    78  
    79 #public_l10n.php:60 
    80 $GLOBALS['__l10n']['Your informations'] = 'Vos informations'; 
    81  
    82169?> 
  • plugins/contribute/locales/fr/public.po

    r1849 r2177  
    11# Language: français 
    2 # Module: contribute - 1.0-alpha22 
    3 # Date: 2009-10-20 19:53:30 
     2# Module: contribute - 1.0-alpha26 
     3# Date: 2010-04-11 13:46:50 
    44# Translated with dcTranslater - 1.2 
    55 
     
    77msgstr "Content-Type: text/plain; charset=UTF-8\n" 
    88 
    9 #: _public.php:443 
    10 msgid "No entry content" 
    11 msgstr "Pas de contenu de billet" 
    12  
    13 #: _public.php:446 
    14 msgid "No entry title" 
    15 msgstr "Pas de titre de billet" 
    16  
    17 #: _public.php:489 
    18 msgid "The user is not allowed to create an entry" 
    19 msgstr "L'utilisateur n'est pas autorisé à créer des billets" 
    20  
    21 #: _public.php:612 
    22 msgid "New post submitted on %s" 
    23 msgstr "Nouveau billet envoyé sur %s." 
    24  
    25 #: _public.php:615 
    26 msgid "Title: %s" 
    27 msgstr "Titre : %s" 
    28  
    29 #: _public.php:620 
    30 msgid "Author: %s" 
    31 msgstr "Auteur : %s" 
    32  
    33 #: _public.php:628 
    34 msgid "Email address: %s" 
    35 msgstr "Adresse email : %s" 
    36  
    37 #: _public.php:641 
    38 msgid "Edit this entry:" 
    39 msgstr "Éditer ce billet :" 
    40  
    41 #: _public.php:645 
    42 msgid "You must log in on the backend before clicking on this link to go directly to the post." 
    43 msgstr "Vous devez vous enregistrer sur l'interface d'administration avant de cliquer sur ce lien pour aller directement sur ce billet." 
     9#: inc/lib.contribute.document.php:311 
     10msgid "Invalid cat_id" 
     11msgstr "cat_id invalide" 
    4412 
    4513#: _widget.php:46 
     
    4715msgstr "Écrire un billet pour ce blog" 
    4816 
    49 #: public_l10n.php:7 
     17#: default-templates/contribute.html:59 
     18msgid "You can use the following shortcuts to format your text." 
     19msgstr "Vous pouvez utiliser les raccourcis suivants pour formater votre texte." 
     20 
     21#: default-templates/contribute.html:60 
     22msgid "-- none --" 
     23msgstr "-- aucun --" 
     24 
     25#: default-templates/contribute.html:61 
     26msgid "-- block format --" 
     27msgstr "-- format bloc --" 
     28 
     29#: default-templates/contribute.html:62 
     30msgid "Paragraph" 
     31msgstr "Paragraphe" 
     32 
     33#: default-templates/contribute.html:63 
     34msgid "Level 1 header" 
     35msgstr "Titre de niveau 1" 
     36 
     37#: default-templates/contribute.html:64 
     38msgid "Level 2 header" 
     39msgstr "Titre de niveau 2" 
     40 
     41#: default-templates/contribute.html:65 
     42msgid "Level 3 header" 
     43msgstr "Titre de niveau 3" 
     44 
     45#: default-templates/contribute.html:66 
     46msgid "Level 4 header" 
     47msgstr "Titre de niveau 4" 
     48 
     49#: default-templates/contribute.html:67 
     50msgid "Level 5 header" 
     51msgstr "Titre de niveau 5" 
     52 
     53#: default-templates/contribute.html:68 
     54msgid "Level 6 header" 
     55msgstr "Titre de niveau 6" 
     56 
     57#: default-templates/contribute.html:69 
     58msgid "Strong emphasis" 
     59msgstr "Forte emphase" 
     60 
     61#: default-templates/contribute.html:70 
     62msgid "Emphasis" 
     63msgstr "Emphase" 
     64 
     65#: default-templates/contribute.html:71 
     66msgid "Inserted" 
     67msgstr "Insertion" 
     68 
     69#: default-templates/contribute.html:72 
     70msgid "Deleted" 
     71msgstr "Suppression" 
     72 
     73#: default-templates/contribute.html:73 
     74msgid "Inline quote" 
     75msgstr "Citation en ligne" 
     76 
     77#: default-templates/contribute.html:74 
     78msgid "Code" 
     79msgstr "Code" 
     80 
     81#: default-templates/contribute.html:75 
     82msgid "Line break" 
     83msgstr "Passage à la ligne" 
     84 
     85#: default-templates/contribute.html:76 
     86msgid "Blockquote" 
     87msgstr "Bloc de citation" 
     88 
     89#: default-templates/contribute.html:77 
     90msgid "Preformated text" 
     91msgstr "Texte préformaté" 
     92 
     93#: default-templates/contribute.html:78 
     94msgid "Unordered list" 
     95msgstr "Liste à puces" 
     96 
     97#: default-templates/contribute.html:79 
     98msgid "Ordered list" 
     99msgstr "Liste numérotée" 
     100 
     101#: default-templates/contribute.html:80 
     102msgid "Link" 
     103msgstr "Lien" 
     104 
     105#: default-templates/contribute.html:82 
     106msgid "Language?" 
     107msgstr "Langue ?" 
     108 
     109#: default-templates/contribute.html:83 
     110msgid "External image" 
     111msgstr "Image externe" 
     112 
     113#: default-templates/contribute.html:86 
     114msgid "visual" 
     115msgstr "visuel" 
     116 
     117#: default-templates/contribute.html:87 
     118msgid "source" 
     119msgstr "source" 
     120 
     121#: default-templates/contribute.html:90 
     122msgid "You have unsaved changes." 
     123msgstr "Vous n'avez pas enregistré vos modifications." 
     124 
     125#: default-templates/contribute.html:112 
     126msgid "This is a preview." 
     127msgstr "Ceci est un aperçu." 
     128 
     129#: default-templates/contribute.html:113 
    50130msgid "Click on <strong>save</strong> when the post is ready." 
    51131msgstr "Cliquez sur <strong>enregistrer</strong> quand le billet est prêt." 
    52132 
    53 #: public_l10n.php:9 
     133#: default-templates/contribute.html:119 
     134msgid "The post has been saved." 
     135msgstr "Le billet a été sauvegardé." 
     136 
     137#: default-templates/contribute.html:180 
     138msgid "Text formating" 
     139msgstr "Format du texte" 
     140 
     141#: default-templates/contribute.html:192 
     142msgid "convert to XHTML" 
     143msgstr "convertir en XHTML" 
     144 
     145#: default-templates/contribute.html:203 
     146msgid "http://dotclear.org/documentation/2.0/usage/syntaxes" 
     147msgstr "http://fr.dotclear.org/documentation/2.0/usage/syntaxes" 
     148 
     149#: default-templates/contribute.html:204 
     150msgid "wiki syntax reference" 
     151msgstr "référence de la syntaxe wiki" 
     152 
     153#: default-templates/contribute.html:214 
     154msgid "Excerpt" 
     155msgstr "Extrait" 
     156 
     157#: default-templates/contribute.html:220 
    54158msgid "Content" 
    55159msgstr "Contenu" 
    56160 
    57 #: public_l10n.php:11 
    58 msgid "convert to XHTML" 
    59 msgstr "convertir en XHTML" 
    60  
    61 #: public_l10n.php:16 
    62 msgid "Excerpt" 
    63 msgstr "Extrait" 
    64  
    65 #: public_l10n.php:19 
    66 msgid "http://dotclear.org/documentation/2.0/usage/syntaxes" 
    67 msgstr "http://fr.dotclear.org/documentation/2.0/usage/syntaxes" 
    68  
    69 #: public_l10n.php:22 
     161#: default-templates/contribute.html:228 
     162msgid "Category" 
     163msgstr "Catégorie" 
     164 
     165#: default-templates/contribute.html:246 
     166msgid "separate tags by a comma" 
     167msgstr "séparer les tags par une virgule" 
     168 
     169#: default-templates/contribute.html:303 
     170msgid "Notes" 
     171msgstr "Notes" 
     172 
     173#: default-templates/contribute.html:303 
     174msgid "only visible by administrators, won't be displayed in the post" 
     175msgstr "uniquement visibles par les administrateurs, ne seront pas affichées dans le billet" 
     176 
     177#: default-templates/contribute.html:311 
     178msgid "Your informations" 
     179msgstr "Vos informations" 
     180 
     181#: default-templates/contribute.html:323 
     182msgid "won't be displayed" 
     183msgstr "ne sera pas affichée" 
     184 
     185#: inc/lib.contribute.document.php:435 
     186msgid "No entry content" 
     187msgstr "Pas de contenu de billet" 
     188 
     189#: inc/lib.contribute.document.php:438 
     190msgid "No entry title" 
     191msgstr "Pas de titre de billet" 
     192 
     193#: inc/lib.contribute.document.php:481 
     194msgid "The user is not allowed to create an entry" 
     195msgstr "L'utilisateur n'est pas autorisé à créer des billets" 
     196 
     197#: inc/lib.contribute.document.php:604 
     198msgid "New post submitted on %s" 
     199msgstr "Nouveau billet envoyé sur %s." 
     200 
     201#: inc/lib.contribute.document.php:607 
     202msgid "Title: %s" 
     203msgstr "Titre : %s" 
     204 
     205#: inc/lib.contribute.document.php:612 
     206msgid "Author: %s" 
     207msgstr "Auteur : %s" 
     208 
     209#: inc/lib.contribute.document.php:620 
     210msgid "Email address: %s" 
     211msgstr "Adresse email : %s" 
     212 
     213#: inc/lib.contribute.document.php:637 
     214msgid "You must log in on the backend before clicking on this link to go directly to the post." 
     215msgstr "Vous devez vous enregistrer sur l'interface d'administration avant de cliquer sur ce lien pour aller directement sur ce billet." 
     216 
     217#: default-templates/contribute.html:84 
     218msgid "URL?" 
     219msgstr "URL ?" 
     220 
     221#: default-templates/contribute.html:120 
    70222msgid "It needs to be approved by an administrator to be published." 
    71223msgstr "Il faut qu'il soit approuvé par un administrateur pour être publié." 
    72224 
    73 #: public_l10n.php:34 
    74 msgid "Notes" 
    75 msgstr "Notes" 
    76  
    77 #: public_l10n.php:36 
    78 msgid "only visible by administrators, won't be displayed in the post" 
    79 msgstr "uniquement visibles par les administrateurs, ne seront pas affichées dans le billet" 
    80  
    81 #: public_l10n.php:44 
    82 msgid "separate tags by a comma" 
    83 msgstr "séparer les tags par une virgule" 
    84  
    85 #: public_l10n.php:48 
    86 msgid "Text formating" 
    87 msgstr "Format du texte" 
    88  
    89 #: public_l10n.php:49 
    90 msgid "The post has been saved." 
    91 msgstr "Le billet a été sauvegardé." 
    92  
    93 #: public_l10n.php:50 
    94 msgid "This is a preview." 
    95 msgstr "Ceci est un aperçu." 
    96  
    97 #: public_l10n.php:56 
    98 msgid "wiki syntax reference" 
    99 msgstr "référence de la syntaxe wiki" 
    100  
    101 #: public_l10n.php:57 
    102 msgid "won't be displayed" 
    103 msgstr "ne sera pas affichée" 
    104  
    105 #: public_l10n.php:60 
    106 msgid "Your informations" 
    107 msgstr "Vos informations" 
    108  
Note: See TracChangeset for help on using the changeset viewer.

Sites map