Dotclear


Ignore:
Files:
26 edited

Legend:

Unmodified
Added
Removed
  • admin/_charte.php

    r2496 r2504  
    116116                    <h3 id="onglets">Onglets</h3> 
    117117                    <p>Les descriptions des constructions en multi-colonnes ci-dessous présentent un exemple de répartition en onglets.</p> 
     118                    <p>Chacun de ces onglets doit être défini à l'aide d'une <code>&lt;div class="multi-part"&gt;</code>. Ils seront alors automatiquement présentés sous forme d'onglets.</p> 
    118119 
    119120                    <h3 id="multi-colonnage">Multi-colonnage</h3> 
     
    337338                         <p>Les pseudo-onglets permettent d'ajouter des sous-pages qui sont des liens vers d'autres pages, par opposition aux onglets qui sont des sections internes à la page.</p> 
    338339                         <p>Les pseudo-onglets sont à positionner immédiatement après le breadcrumb (ici un hr simule le trait sous le breadcrumb).</p> 
     340                         <p>Ces pseudo-onglets doivent être définis avec un <code>&lt;ul class="pseudo-tabs"&gt;</code> et des <code>&lt;li&gt;</code>.</p> 
    339341                         <hr style="margin-bottom: .75em;" /> 
    340342                         <ul class="pseudo-tabs"> 
     
    549551 
    550552                    <h2 id="iconset">Icônes</h2> 
    551                     <p>Les icônes utilisées dans l'administration sont présentes en deux formats&nbsp; 64*64px pour les grandes  
    552                     (qui sont affichées sur le tableau de bord si la page correspondante est choisie en favori par l'utilisateur) et  
     553                    <p>Les icônes utilisées dans l'administration sont présentes en deux formats&nbsp; 64*64px pour les grandes 
     554                    (qui sont affichées sur le tableau de bord si la page correspondante est choisie en favori par l'utilisateur) et 
    553555                    16*16px pour les petits formats.</p> 
    554                     <p>La plupart sont dérivées de la fonte d'icônes <a href="http://www.elegantthemes.com/blog/resources/elegant-icon-font">Elegant Font</a>. Les autres sont des images vectorielles réalisées  
     556                    <p>La plupart sont dérivées de la fonte d'icônes <a href="http://www.elegantthemes.com/blog/resources/elegant-icon-font">Elegant Font</a>. Les autres sont des images vectorielles réalisées 
    555557                    par la DC Team. Nous les avons nommées <em>Traviata</em>. La palette de couleurs utilisée est la suivante&nbsp;:</p> 
    556558                    <p class="txt-center"><img src="images/palette-traviata.png" alt="palette des couleurs utilisées pour les icônes" /></p> 
    557                     <p class="txt-center">Bleu&nbsp;: #137bbb - Vert&nbsp;: #9ac123 - Rouge&nbsp;: #c44d58 - Bleu ciel&nbsp;: #a2cbe9 - Gris clair&nbsp;: #ececec -  
     559                    <p class="txt-center">Bleu&nbsp;: #137bbb - Vert&nbsp;: #9ac123 - Rouge&nbsp;: #c44d58 - Bleu ciel&nbsp;: #a2cbe9 - Gris clair&nbsp;: #ececec - 
    558560                    Gris moyen&nbsp;: #b2b2b2 - Gris foncé&nbsp;: #676e78.</p> 
    559561               </div><!-- /content --> 
  • admin/blog_theme.php

    r2487 r2499  
    7676     $list->displayConfiguration(); 
    7777 
     78     dcPage::helpBlock('core_blog_theme_conf'); 
    7879     dcPage::close(); 
    7980 
  • admin/comments.php

    r2166 r2498  
    138138$comments_actions_page = new dcCommentsActionsPage($core,'comments.php'); 
    139139 
    140 $comments_actions_page->process(); 
     140if ($comments_actions_page->process()) { 
     141     return; 
     142} 
    141143 
    142144/* Get comments 
  • admin/js/_update.js

    r1803 r2503  
    33          return window.confirm(dotclear.msg.confirm_delete_backup); 
    44     }); 
     5     $('form input[type=submit][name=b_revert]').click(function(){ 
     6          return window.confirm(dotclear.msg.confirm_revert_backup); 
     7     }); 
    58}); 
  • admin/plugins.php

    r2487 r2499  
    5151     $list->displayConfiguration(); 
    5252 
     53     dcPage::helpBlock('core_plugins_conf'); 
    5354     dcPage::close(); 
    5455 
  • admin/update.php

    r2382 r2503  
    6363{ 
    6464     $b_file = $_POST['backup_file']; 
    65       
     65 
    6666     try 
    6767     { 
     
    7373               http::redirect($p_url.'?tab=files'); 
    7474          } 
    75            
     75 
    7676          if (!empty($_POST['b_revert'])) 
    7777          { 
     
    9494     { 
    9595          $updater->setForcedFiles('inc/digests'); 
    96            
     96 
    9797          switch ($step) 
    9898          { 
     
    133133     { 
    134134          $msg = $e->getMessage(); 
    135            
     135 
    136136          if ($e->getCode() == dcUpdate::ERR_FILES_CHANGED) 
    137137          { 
     
    154154               'Please fix this or try to <a href="http://dotclear.org/download">update manually</a>.'); 
    155155          } 
    156            
     156 
    157157          if (isset($e->bad_files)) { 
    158158               $msg .= 
     
    161161               '</strong></li></ul>'; 
    162162          } 
    163            
     163 
    164164          $core->error->add($msg); 
    165            
     165 
    166166          $core->callBehavior('adminDCUpdateException',$e); 
    167167     } 
     
    171171-------------------------------------------------------- */ 
    172172dcPage::open(__('Dotclear update'), 
    173      (!$step ?  
     173     (!$step ? 
    174174          dcPage::jsPageTabs($default_tab). 
    175175          dcPage::jsLoad('js/_update.js') 
     
    206206                         __('Information about this version').')&nbsp;<img src="images/outgoing.png" alt=""/></a>' : ''). 
    207207                    '</p>'. 
    208            
     208 
    209209          '<p>'.__('To upgrade your Dotclear installation simply click on the following button. '. 
    210210               'A backup file of your current installation will be created in your root directory.').'</p>'. 
     
    215215     } 
    216216     echo '</div>'; 
    217       
     217 
    218218     if (!empty($archives)) 
    219219     { 
     
    224224          '<p>'.__('The following files are backups of previously updates. '. 
    225225          'You can revert your previous installation or delete theses files.').'</p>'; 
    226            
     226 
    227227          echo '<form action="'.$p_url.'" method="post">'; 
    228228          foreach ($archives as $v) { 
     
    231231               html::escapeHTML($v).'</label></p>'; 
    232232          } 
    233            
     233 
    234234          echo 
    235235          '<p><strong>'.__('Please note that reverting your Dotclear version may have some '. 
     
    256256dcPage::helpBlock('core_update'); 
    257257dcPage::close(); 
    258 ?> 
  • inc/admin/lib.dc.page.php

    r2487 r2503  
    1616class dcPage 
    1717{ 
    18      private static $loaded_js=array(); 
     18     private static $loaded_js = array(); 
    1919     private static $N_TYPES = array( 
    20           "success" => "success",  
    21           "warning" => "warning-msg",  
    22           "error" => "error",  
    23           "message" => "message",  
     20          "success" => "success", 
     21          "warning" => "warning-msg", 
     22          "error" => "error", 
     23          "message" => "message", 
    2424          "static" => "static-msg"); 
    2525 
     
    2929          global $core; 
    3030 
    31           if ($core->blog && $core->auth->check($permissions,$core->blog->id)) 
    32           { 
     31          if ($core->blog && $core->auth->check($permissions,$core->blog->id)) { 
    3332               return; 
    3433          } 
     
    114113          $user_ui_hide_std_favicon = $core->auth->user_prefs->interface->hide_std_favicon; 
    115114          if (!$user_ui_hide_std_favicon) { 
    116                echo  
     115               echo 
    117116               '<link rel="icon" type="image/png" href="images/favicon96-login.png" />'. 
    118117               '<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />'; 
     
    213212               $notifications = array(); 
    214213          } 
    215            
     214 
    216215          $n = array_merge($options,array('class' => $class,'ts' => time(), 'text' => $message)); 
    217216          if ($type != "static") { 
     
    566565                    "</script>\n"; 
    567566     } 
    568       
     567 
    569568     public static function jsCommon() 
    570569     { 
     
    597596          self::jsVar('dotclear.img_menu_on','images/menu_on.png'). 
    598597          self::jsVar('dotclear.img_menu_off','images/menu_off.png'). 
    599            
     598 
    600599          self::jsVar('dotclear.img_plus_theme_src','images/plus-theme.png'). 
    601600          self::jsVar('dotclear.img_plus_theme_alt',__('uncover')). 
     
    677676          self::jsVar('dotclear.msg.confirm_delete_backup', 
    678677               __('Are you sure you want to delete this backup?')). 
     678          self::jsVar('dotclear.msg.confirm_revert_backup', 
     679               __('Are you sure you want to revert to this backup?')). 
    679680          self::jsVar('dotclear.msg.zip_file_content', 
    680681               __('Zip file content')). 
     
    746747               $default = "'".html::escapeJS($default)."'"; 
    747748          } 
    748            
     749 
    749750          return 
    750751          self::jsLoad('js/jquery/jquery.pageTabs.js'). 
  • locales/_pot/main.pot

    r2432 r2503  
    88"Project-Id-Version: Dotclear 2\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2013-10-17 09:38+0200\n" 
     10"POT-Creation-Date: 2013-10-29 16:28+0100\n" 
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    9797#: admin/auth.php:350 admin/blog_pref.php:667 admin/comment.php:222 
    9898#: admin/install/index.php:319 admin/post.php:683 admin/preferences.php:371 
    99 #: admin/user.php:264 inc/admin/lib.dc.page.php:622 
     99#: admin/user.php:264 inc/admin/lib.dc.page.php:621 
    100100msgid "Email:" 
    101101msgstr "" 
     
    173173#: admin/blog.php:72 admin/blog_del.php:56 admin/blog_pref.php:278 
    174174#: admin/blogs.php:89 admin/langs.php:145 admin/plugin.php:86 
    175 #: admin/plugins.php:83 admin/update.php:179 admin/user.php:188 
     175#: admin/plugins.php:84 admin/update.php:179 admin/user.php:188 
    176176#: admin/users.php:110 admin/users_actions.php:138 admin/users_actions.php:145 
    177177msgid "System" 
     
    196196#: admin/post.php:552 admin/post.php:679 admin/post.php:691 admin/user.php:209 
    197197#: admin/user.php:224 admin/user.php:236 admin/user.php:308 
    198 #: admin/users_actions.php:308 inc/admin/lib.moduleslist.php:1022 
    199 #: inc/admin/lib.moduleslist.php:1024 inc/admin/lib.moduleslist.php:1034 
    200 #: inc/admin/lib.moduleslist.php:1036 
     198#: admin/users_actions.php:308 inc/admin/lib.moduleslist.php:1202 
     199#: inc/admin/lib.moduleslist.php:1204 inc/admin/lib.moduleslist.php:1214 
     200#: inc/admin/lib.moduleslist.php:1216 
    201201msgid "Required field" 
    202202msgstr "" 
     
    232232#: admin/blog_del.php:40 admin/langs.php:66 admin/langs.php:109 
    233233#: admin/user.php:75 admin/users_actions.php:99 
    234 #: inc/admin/lib.moduleslist.php:972 inc/admin/lib.moduleslist.php:1579 
     234#: inc/admin/lib.moduleslist.php:1145 inc/admin/lib.moduleslist.php:1907 
    235235msgid "Password verification failed" 
    236236msgstr "" 
     
    260260#: admin/blog_del.php:73 admin/langs.php:242 admin/langs.php:259 
    261261#: admin/user.php:308 admin/users_actions.php:308 
    262 #: inc/admin/lib.moduleslist.php:1024 inc/admin/lib.moduleslist.php:1036 
     262#: inc/admin/lib.moduleslist.php:1204 inc/admin/lib.moduleslist.php:1216 
    263263msgid "Your password:" 
    264264msgstr "" 
     
    482482msgstr "" 
    483483 
    484 #: admin/blog_pref.php:452 admin/comments.php:167 admin/comments.php:171 
     484#: admin/blog_pref.php:452 admin/comments.php:169 admin/comments.php:173 
    485485msgid "Comments and trackbacks" 
    486486msgstr "" 
     
    630630#: inc/admin/actions/class.dcactionposts.php:374 
    631631#: inc/admin/actions/class.dcactionposts.php:433 
    632 #: inc/admin/lib.moduleslist.php:1155 
     632#: inc/admin/lib.moduleslist.php:1335 
    633633msgid "Save" 
    634634msgstr "" 
     
    691691msgstr "" 
    692692 
    693 #: admin/blog_theme.php:60 admin/blog_theme.php:70 admin/blog_theme.php:104 
     693#: admin/blog_theme.php:60 admin/blog_theme.php:70 admin/blog_theme.php:105 
    694694#: inc/admin/class.dc.favorites.php:449 inc/admin/prepend.php:234 
    695695msgid "Blog appearance" 
     
    700700msgstr "" 
    701701 
    702 #: admin/blog_theme.php:93 
     702#: admin/blog_theme.php:94 
    703703msgid "Themes management" 
    704704msgstr "" 
    705705 
    706 #: admin/blog_theme.php:115 admin/blog_theme.php:116 
     706#: admin/blog_theme.php:116 admin/blog_theme.php:117 
    707707msgid "Update themes" 
    708708msgstr "" 
    709709 
    710 #: admin/blog_theme.php:118 
     710#: admin/blog_theme.php:119 
    711711#, php-format 
    712712msgid "There is one theme to update available from repository." 
     
    715715msgstr[1] "" 
    716716 
    717 #: admin/blog_theme.php:133 admin/blog_theme.php:212 admin/plugins.php:139 
    718 #: admin/plugins.php:217 
     717#: admin/blog_theme.php:134 admin/blog_theme.php:213 admin/plugins.php:140 
     718#: admin/plugins.php:218 
    719719#, php-format 
    720720msgid "Visit %s repository, the resources center for Dotclear." 
    721721msgstr "" 
    722722 
    723 #: admin/blog_theme.php:147 admin/blog_theme.php:148 
     723#: admin/blog_theme.php:148 admin/blog_theme.php:149 
    724724msgid "Installed themes" 
    725725msgstr "" 
    726726 
    727 #: admin/blog_theme.php:149 
     727#: admin/blog_theme.php:150 
    728728msgid "You can configure and manage installed themes from this list." 
    729729msgstr "" 
    730730 
    731 #: admin/blog_theme.php:169 admin/blog_theme.php:170 
     731#: admin/blog_theme.php:170 admin/blog_theme.php:171 
    732732msgid "Deactivated themes" 
    733733msgstr "" 
    734734 
    735 #: admin/blog_theme.php:171 
     735#: admin/blog_theme.php:172 
    736736msgid "Deactivated themes are installed but not usable. You can activate them from here." 
    737737msgstr "" 
    738738 
    739 #: admin/blog_theme.php:194 
     739#: admin/blog_theme.php:195 
    740740msgid "Add themes" 
    741741msgstr "" 
    742742 
    743 #: admin/blog_theme.php:195 
     743#: admin/blog_theme.php:196 
    744744msgid "Add themes from repository" 
    745745msgstr "" 
    746746 
    747 #: admin/blog_theme.php:222 admin/plugins.php:227 
     747#: admin/blog_theme.php:223 admin/plugins.php:228 
    748748msgid "Install or upgrade manually" 
    749749msgstr "" 
    750750 
    751 #: admin/blog_theme.php:223 
     751#: admin/blog_theme.php:224 
    752752msgid "Add themes from a package" 
    753753msgstr "" 
    754754 
    755 #: admin/blog_theme.php:224 
     755#: admin/blog_theme.php:225 
    756756msgid "You can install themes by uploading or downloading zip files." 
    757757msgstr "" 
     
    779779msgstr "" 
    780780 
    781 #: admin/blogs.php:75 admin/comments.php:155 admin/posts.php:233 
     781#: admin/blogs.php:75 admin/comments.php:157 admin/posts.php:233 
    782782#: admin/users.php:95 
    783783msgid "Show filters and display options" 
    784784msgstr "" 
    785785 
    786 #: admin/blogs.php:82 admin/comments.php:163 admin/posts.php:241 
     786#: admin/blogs.php:82 admin/comments.php:165 admin/posts.php:241 
    787787#: admin/users.php:103 
    788788msgid "Cancel filters and display options" 
     
    805805msgstr "" 
    806806 
    807 #: admin/blogs.php:110 admin/comments.php:220 admin/posts.php:266 
     807#: admin/blogs.php:110 admin/comments.php:222 admin/posts.php:266 
    808808#: admin/users.php:131 
    809809msgid "Filters" 
    810810msgstr "" 
    811811 
    812 #: admin/blogs.php:111 admin/users.php:132 inc/admin/lib.dc.page.php:271 
     812#: admin/blogs.php:111 admin/users.php:132 inc/admin/lib.dc.page.php:270 
    813813msgid "Search:" 
    814814msgstr "" 
    815815 
    816 #: admin/blogs.php:116 admin/comments.php:235 admin/posts.php:287 
     816#: admin/blogs.php:116 admin/comments.php:237 admin/posts.php:287 
    817817#: admin/users.php:137 
    818818msgid "Display options" 
    819819msgstr "" 
    820820 
    821 #: admin/blogs.php:117 admin/comments.php:236 admin/posts.php:288 
     821#: admin/blogs.php:117 admin/comments.php:238 admin/posts.php:288 
    822822#: admin/users.php:138 
    823823msgid "Order by:" 
    824824msgstr "" 
    825825 
    826 #: admin/blogs.php:119 admin/comments.php:238 admin/posts.php:290 
     826#: admin/blogs.php:119 admin/comments.php:240 admin/posts.php:290 
    827827#: admin/users.php:140 
    828828msgid "Sort:" 
     
    837837msgstr "" 
    838838 
    839 #: admin/blogs.php:126 admin/comments.php:246 admin/posts.php:298 
     839#: admin/blogs.php:126 admin/comments.php:248 admin/posts.php:298 
    840840#: admin/users.php:147 
    841841msgid "Apply filters and display options" 
     
    908908msgstr "" 
    909909 
    910 #: admin/categories.php:80 admin/categories.php:125 
     910#: admin/categories.php:80 admin/categories.php:127 
    911911msgid "Categories have been successfully reordered." 
    912912msgstr "" 
     
    916916msgstr "" 
    917917 
    918 #: admin/categories.php:113 admin/categories.php:117 admin/category.php:167 
     918#: admin/categories.php:115 admin/categories.php:119 admin/category.php:167 
    919919#: inc/admin/class.dc.favorites.php:431 inc/admin/prepend.php:243 
    920920msgid "Categories" 
    921921msgstr "" 
    922922 
    923 #: admin/categories.php:122 
     923#: admin/categories.php:124 
    924924#: inc/libs/clearbricks/tests/unit/common/lib.l10n.php:66 
    925925#: inc/libs/clearbricks/tests/unit/common/lib.l10n.php:76 
     
    933933msgstr[1] "" 
    934934 
    935 #: admin/categories.php:128 
     935#: admin/categories.php:130 
    936936msgid "Entries have been successfully moved to the category you choose." 
    937937msgstr "" 
    938938 
    939 #: admin/categories.php:134 admin/category.php:163 
     939#: admin/categories.php:136 admin/category.php:163 
    940940msgid "New category" 
    941941msgstr "" 
    942942 
    943 #: admin/categories.php:140 
     943#: admin/categories.php:142 
    944944msgid "No category so far." 
    945945msgstr "" 
    946946 
    947 #: admin/categories.php:166 
     947#: admin/categories.php:168 
    948948#, php-format 
    949949msgid "%d entries" 
    950950msgstr "" 
    951951 
    952 #: admin/categories.php:166 inc/admin/class.dc.favorites.php:486 
     952#: admin/categories.php:168 inc/admin/class.dc.favorites.php:486 
    953953#, php-format 
    954954msgid "%d entry" 
     
    957957msgstr[1] "" 
    958958 
    959 #: admin/categories.php:167 
     959#: admin/categories.php:169 
    960960msgid "total:" 
    961961msgstr "" 
    962962 
    963 #: admin/categories.php:168 admin/category.php:210 admin/preferences.php:374 
     963#: admin/categories.php:170 admin/category.php:210 admin/preferences.php:374 
    964964#: admin/user.php:269 
    965965msgid "URL:" 
    966966msgstr "" 
    967967 
    968 #: admin/categories.php:175 
     968#: admin/categories.php:177 
    969969msgid "Move entries to" 
    970970msgstr "" 
    971971 
    972 #: admin/categories.php:177 admin/media.php:388 admin/media_item.php:398 
    973 #: inc/admin/lib.dc.page.php:272 inc/admin/lib.moduleslist.php:263 
     972#: admin/categories.php:179 admin/media.php:388 admin/media_item.php:398 
     973#: inc/admin/lib.dc.page.php:271 inc/admin/lib.moduleslist.php:263 
    974974msgid "OK" 
    975975msgstr "" 
    976976 
    977 #: admin/categories.php:186 
     977#: admin/categories.php:188 
    978978msgid "Delete category" 
    979979msgstr "" 
    980980 
    981 #: admin/categories.php:202 
     981#: admin/categories.php:204 
    982982msgid "To rearrange categories order, move items by drag and drop, then click on “Save categories order” button." 
    983983msgstr "" 
    984984 
    985 #: admin/categories.php:207 
     985#: admin/categories.php:209 
    986986msgid "Save categories order" 
    987987msgstr "" 
    988988 
    989 #: admin/categories.php:214 
     989#: admin/categories.php:216 
    990990msgid "Reorder all categories on the top level" 
    991991msgstr "" 
     
    11131113msgstr "" 
    11141114 
    1115 #: admin/comment.php:210 admin/comments.php:230 inc/admin/lib.dc.page.php:624 
     1115#: admin/comment.php:210 admin/comments.php:232 inc/admin/lib.dc.page.php:623 
    11161116msgid "IP address:" 
    11171117msgstr "" 
     
    11251125msgstr "" 
    11261126 
    1127 #: admin/comment.php:218 admin/comments.php:228 admin/posts.php:267 
    1128 #: inc/admin/lib.dc.page.php:693 inc/admin/lib.moduleslist.php:674 
     1127#: admin/comment.php:218 admin/comments.php:230 admin/posts.php:267 
     1128#: inc/admin/lib.dc.page.php:698 inc/admin/lib.moduleslist.php:702 
    11291129msgid "Author:" 
    11301130msgstr "" 
    11311131 
    1132 #: admin/comment.php:227 admin/post.php:687 inc/admin/lib.dc.page.php:620 
     1132#: admin/comment.php:227 admin/post.php:687 inc/admin/lib.dc.page.php:619 
    11331133msgid "Web site:" 
    11341134msgstr "" 
    11351135 
    1136 #: admin/comment.php:231 admin/comments.php:223 admin/posts.php:271 
     1136#: admin/comment.php:231 admin/comments.php:225 admin/posts.php:271 
    11371137msgid "Status:" 
    11381138msgstr "" 
     
    11471147#: inc/admin/actions/class.dcactionposts.php:142 
    11481148#: inc/admin/actions/class.dcactionposts.php:143 
    1149 #: inc/admin/lib.moduleslist.php:769 
     1149#: inc/admin/lib.moduleslist.php:812 
    11501150msgid "Delete" 
    11511151msgstr "" 
     
    11751175msgstr "" 
    11761176 
    1177 #: admin/comments.php:175 inc/admin/actions/class.dcactioncomments.php:152 
     1177#: admin/comments.php:177 inc/admin/actions/class.dcactioncomments.php:152 
    11781178msgid "Selected comments have been successfully updated." 
    11791179msgstr "" 
    11801180 
    1181 #: admin/comments.php:177 inc/admin/actions/class.dcactioncomments.php:172 
     1181#: admin/comments.php:179 inc/admin/actions/class.dcactioncomments.php:172 
    11821182msgid "Selected comments have been successfully deleted." 
    11831183msgstr "" 
    11841184 
    1185 #: admin/comments.php:183 
     1185#: admin/comments.php:185 
    11861186msgid "Spam comments have been successfully deleted." 
    11871187msgstr "" 
    11881188 
    1189 #: admin/comments.php:195 
     1189#: admin/comments.php:197 
    11901190msgid "You have one spam comment." 
    11911191msgstr "" 
    11921192 
    1193 #: admin/comments.php:196 
     1193#: admin/comments.php:198 
    11941194msgid "Show it." 
    11951195msgstr "" 
    11961196 
    1197 #: admin/comments.php:198 
     1197#: admin/comments.php:200 
    11981198#, php-format 
    11991199msgid "You have %s spam comments." 
    12001200msgstr "" 
    12011201 
    1202 #: admin/comments.php:199 
     1202#: admin/comments.php:201 
    12031203msgid "Show them." 
    12041204msgstr "" 
    12051205 
    1206 #: admin/comments.php:206 
     1206#: admin/comments.php:208 
    12071207msgid "Delete all spams" 
    12081208msgstr "" 
    12091209 
    1210 #: admin/comments.php:216 
     1210#: admin/comments.php:218 
    12111211msgid "Filter comments and trackbacks list" 
    12121212msgstr "" 
    12131213 
    1214 #: admin/comments.php:221 
     1214#: admin/comments.php:223 
    12151215msgid "Type:" 
    12161216msgstr "" 
    12171217 
    1218 #: admin/comments.php:242 
     1218#: admin/comments.php:244 
    12191219msgid "comments per page" 
    12201220msgstr "" 
    12211221 
    1222 #: admin/comments.php:259 admin/post.php:661 admin/search.php:153 
     1222#: admin/comments.php:261 admin/post.php:661 admin/search.php:153 
    12231223msgid "Selected comments action:" 
    12241224msgstr "" 
    12251225 
    1226 #: admin/comments.php:260 admin/users_actions.php:147 
     1226#: admin/comments.php:262 admin/users_actions.php:147 
    12271227msgid "Actions" 
    12281228msgstr "" 
    12291229 
    1230 #: admin/comments.php:262 admin/post.php:666 admin/post.php:750 
     1230#: admin/comments.php:264 admin/post.php:666 admin/post.php:750 
    12311231#: admin/posts.php:313 admin/search.php:127 admin/search.php:155 
    1232 #: admin/users.php:164 inc/admin/lib.dc.page.php:85 
     1232#: admin/users.php:164 inc/admin/lib.dc.page.php:84 
    12331233#: inc/admin/lib.pager.php:114 
    12341234msgid "ok" 
     
    12361236 
    12371237#: admin/help.php:78 admin/help.php:84 admin/help.php:90 
    1238 #: inc/admin/class.dc.favorites.php:476 inc/admin/lib.dc.page.php:259 
     1238#: inc/admin/class.dc.favorites.php:476 inc/admin/lib.dc.page.php:258 
    12391239msgid "Global help" 
    12401240msgstr "" 
     
    13171317msgstr "" 
    13181318 
    1319 #: admin/index.php:263 admin/install/index.php:349 admin/plugins.php:91 
     1319#: admin/index.php:263 admin/install/index.php:349 admin/plugins.php:92 
    13201320msgid "Following plugins have been installed:" 
    13211321msgstr "" 
    13221322 
    1323 #: admin/index.php:271 admin/install/index.php:357 admin/plugins.php:103 
     1323#: admin/index.php:271 admin/install/index.php:357 admin/plugins.php:104 
    13241324msgid "Following plugins have not been installed:" 
    13251325msgstr "" 
     
    15201520 
    15211521#: admin/install/index.php:299 admin/install/index.php:393 
    1522 #: admin/install/wizard.php:161 inc/admin/lib.dc.page.php:180 
    1523 #: inc/admin/lib.dc.page.php:359 
     1522#: admin/install/wizard.php:161 inc/admin/lib.dc.page.php:179 
     1523#: inc/admin/lib.dc.page.php:358 
    15241524msgid "Errors:" 
    15251525msgstr "" 
     
    17001700msgstr "" 
    17011701 
    1702 #: admin/langs.php:115 inc/admin/lib.moduleslist.php:980 
    1703 #: inc/admin/lib.moduleslist.php:1587 
     1702#: admin/langs.php:115 inc/admin/lib.moduleslist.php:1153 
     1703#: inc/admin/lib.moduleslist.php:1915 
    17041704msgid "Unable to move uploaded file." 
    17051705msgstr "" 
     
    17301730msgstr "" 
    17311731 
    1732 #: admin/langs.php:189 inc/admin/lib.moduleslist.php:560 
     1732#: admin/langs.php:189 inc/admin/lib.moduleslist.php:568 
    17331733msgid "Action" 
    17341734msgstr "" 
     
    17601760msgstr "" 
    17611761 
    1762 #: admin/langs.php:255 inc/admin/lib.moduleslist.php:1021 
     1762#: admin/langs.php:255 inc/admin/lib.moduleslist.php:1201 
    17631763msgid "Upload a zip file" 
    17641764msgstr "" 
     
    18471847 
    18481848#: admin/media.php:257 admin/media_item.php:384 admin/popup_link.php:41 
    1849 #: admin/post.php:594 admin/post_media.php:76 inc/admin/lib.dc.page.php:933 
     1849#: admin/post.php:594 admin/post_media.php:76 inc/admin/lib.dc.page.php:938 
    18501850msgid "Cancel" 
    18511851msgstr "" 
     
    19361936msgstr "" 
    19371937 
    1938 #: admin/media.php:487 inc/admin/lib.dc.page.php:931 
     1938#: admin/media.php:487 inc/admin/lib.dc.page.php:936 
    19391939msgid "Choose file" 
    19401940msgstr "" 
    19411941 
    1942 #: admin/media.php:488 inc/admin/lib.dc.page.php:932 
     1942#: admin/media.php:488 inc/admin/lib.dc.page.php:937 
    19431943msgid "Choose files" 
    19441944msgstr "" 
     
    19571957 
    19581958#: admin/media.php:502 admin/preferences.php:17 
    1959 #: inc/admin/class.dc.favorites.php:400 inc/admin/lib.dc.page.php:151 
     1959#: inc/admin/class.dc.favorites.php:400 inc/admin/lib.dc.page.php:150 
    19601960msgid "My preferences" 
    19611961msgstr "" 
     
    19691969msgstr "" 
    19701970 
    1971 #: admin/media.php:508 inc/admin/lib.dc.page.php:935 
    1972 #: inc/admin/lib.moduleslist.php:1026 
     1971#: admin/media.php:508 inc/admin/lib.dc.page.php:940 
     1972#: inc/admin/lib.moduleslist.php:1206 
    19731973msgid "Upload" 
    19741974msgstr "" 
     
    22122212msgstr "" 
    22132213 
    2214 #: admin/media_item.php:627 inc/admin/lib.dc.page.php:936 
     2214#: admin/media_item.php:627 inc/admin/lib.dc.page.php:941 
    22152215msgid "Send" 
    22162216msgstr "" 
     
    22322232msgstr "" 
    22332233 
    2234 #: admin/plugins.php:37 admin/plugins.php:45 admin/plugins.php:74 
    2235 #: admin/plugins.php:84 inc/admin/class.dc.favorites.php:466 
     2234#: admin/plugins.php:37 admin/plugins.php:45 admin/plugins.php:75 
     2235#: admin/plugins.php:85 inc/admin/class.dc.favorites.php:466 
    22362236#: inc/admin/prepend.php:265 
    22372237msgid "Plugins management" 
     
    22422242msgstr "" 
    22432243 
    2244 #: admin/plugins.php:121 admin/plugins.php:122 
     2244#: admin/plugins.php:122 admin/plugins.php:123 
    22452245msgid "Update plugins" 
    22462246msgstr "" 
    22472247 
    2248 #: admin/plugins.php:124 
     2248#: admin/plugins.php:125 
    22492249#, php-format 
    22502250msgid "There is one plugin to update available from repository." 
     
    22532253msgstr[1] "" 
    22542254 
    2255 #: admin/plugins.php:149 admin/plugins.php:156 
     2255#: admin/plugins.php:150 admin/plugins.php:157 
    22562256msgid "Installed plugins" 
    22572257msgstr "" 
    22582258 
    2259 #: admin/plugins.php:156 
     2259#: admin/plugins.php:157 
    22602260msgid "Activated plugins" 
    22612261msgstr "" 
    22622262 
    2263 #: admin/plugins.php:157 
     2263#: admin/plugins.php:158 
    22642264msgid "You can configure and manage installed plugins from this list." 
    22652265msgstr "" 
    22662266 
    2267 #: admin/plugins.php:174 
     2267#: admin/plugins.php:175 
    22682268msgid "Deactivated plugins" 
    22692269msgstr "" 
    22702270 
    2271 #: admin/plugins.php:175 
     2271#: admin/plugins.php:176 
    22722272msgid "Deactivated plugins are installed but not usable. You can activate them from here." 
    22732273msgstr "" 
    22742274 
    2275 #: admin/plugins.php:199 
     2275#: admin/plugins.php:200 
    22762276msgid "Add plugins" 
    22772277msgstr "" 
    22782278 
    2279 #: admin/plugins.php:200 
     2279#: admin/plugins.php:201 
    22802280msgid "Add plugins from repository" 
    22812281msgstr "" 
    22822282 
    2283 #: admin/plugins.php:228 
     2283#: admin/plugins.php:229 
    22842284msgid "Add plugins from a package" 
    22852285msgstr "" 
    22862286 
    2287 #: admin/plugins.php:229 
     2287#: admin/plugins.php:230 
    22882288msgid "You can install plugins by uploading or downloading zip files." 
    22892289msgstr "" 
    22902290 
    2291 #: admin/plugins.php:243 
     2291#: admin/plugins.php:244 
    22922292msgid "Some functions are disabled, please give write access to your plugins directory to enable them." 
    22932293msgstr "" 
     
    23352335msgstr "" 
    23362336 
    2337 #: admin/post.php:78 admin/post.php:567 inc/admin/lib.dc.page.php:630 
     2337#: admin/post.php:78 admin/post.php:567 inc/admin/lib.dc.page.php:629 
    23382338msgid "Edit entry" 
    23392339msgstr "" 
     
    23642364msgstr "" 
    23652365 
    2366 #: admin/post.php:323 admin/post.php:397 inc/admin/lib.dc.page.php:628 
     2366#: admin/post.php:323 admin/post.php:397 inc/admin/lib.dc.page.php:627 
    23672367msgid "Entry has been successfully created." 
    23682368msgstr "" 
     
    28072807 
    28082808#: admin/preferences.php:486 admin/preferences.php:488 
    2809 #: inc/admin/lib.dc.page.php:149 
     2809#: inc/admin/lib.dc.page.php:148 
    28102810msgid "My dashboard" 
    28112811msgstr "" 
     
    30833083msgstr "" 
    30843084 
    3085 #: admin/user.php:350 inc/admin/lib.dc.page.php:65 
     3085#: admin/user.php:350 inc/admin/lib.dc.page.php:64 
    30863086msgid "Blog:" 
    30873087msgstr "" 
     
    33513351msgstr[1] "" 
    33523352 
    3353 #: inc/admin/lib.dc.page.php:69 
     3353#: inc/admin/lib.dc.page.php:68 
    33543354msgid "Change blog" 
    33553355msgstr "" 
    33563356 
    3357 #: inc/admin/lib.dc.page.php:82 
     3357#: inc/admin/lib.dc.page.php:81 
    33583358msgid "Blogs:" 
    33593359msgstr "" 
    33603360 
     3361#: inc/admin/lib.dc.page.php:133 
     3362msgid "Go to the content" 
     3363msgstr "" 
     3364 
    33613365#: inc/admin/lib.dc.page.php:134 
    3362 msgid "Go to the content" 
     3366msgid "Go to the menu" 
    33633367msgstr "" 
    33643368 
    33653369#: inc/admin/lib.dc.page.php:135 
    3366 msgid "Go to the menu" 
     3370msgid "Go to search" 
    33673371msgstr "" 
    33683372 
    33693373#: inc/admin/lib.dc.page.php:136 
    3370 msgid "Go to search" 
    3371 msgstr "" 
    3372  
    3373 #: inc/admin/lib.dc.page.php:137 
    33743374msgid "Go to help" 
    33753375msgstr "" 
    33763376 
    3377 #: inc/admin/lib.dc.page.php:145 inc/admin/lib.dc.page.php:146 
     3377#: inc/admin/lib.dc.page.php:144 inc/admin/lib.dc.page.php:145 
    33783378msgid "Go to site" 
    33793379msgstr "" 
    33803380 
    3381 #: inc/admin/lib.dc.page.php:152 
     3381#: inc/admin/lib.dc.page.php:151 
    33823382#, php-format 
    33833383msgid "Logout %s" 
    33843384msgstr "" 
    33853385 
     3386#: inc/admin/lib.dc.page.php:159 
     3387msgid "Hide main menu" 
     3388msgstr "" 
     3389 
    33863390#: inc/admin/lib.dc.page.php:160 
    3387 msgid "Hide main menu" 
    3388 msgstr "" 
    3389  
    3390 #: inc/admin/lib.dc.page.php:161 
    33913391msgid "Show main menu" 
    33923392msgstr "" 
    33933393 
     3394#: inc/admin/lib.dc.page.php:169 
     3395msgid "Safe mode" 
     3396msgstr "" 
     3397 
    33943398#: inc/admin/lib.dc.page.php:170 
    3395 msgid "Safe mode" 
    3396 msgstr "" 
    3397  
    3398 #: inc/admin/lib.dc.page.php:171 
    33993399msgid "You are in safe mode. All plugins have been temporarily disabled. Remind to log out then log in again normally to get back all functionalities" 
    34003400msgstr "" 
    34013401 
    3402 #: inc/admin/lib.dc.page.php:180 inc/admin/lib.dc.page.php:626 
     3402#: inc/admin/lib.dc.page.php:179 inc/admin/lib.dc.page.php:625 
     3403#: inc/admin/lib.dc.page.php:935 
     3404msgid "Error:" 
     3405msgstr "" 
     3406 
     3407#: inc/admin/lib.dc.page.php:245 inc/admin/lib.dc.page.php:406 
     3408msgid "[%H:%M:%S]" 
     3409msgstr "" 
     3410 
     3411#: inc/admin/lib.dc.page.php:278 
     3412#, php-format 
     3413msgid "Thank you for using %s." 
     3414msgstr "" 
     3415 
     3416#: inc/admin/lib.dc.page.php:381 
     3417msgid "Go to dashboard" 
     3418msgstr "" 
     3419 
     3420#: inc/admin/lib.dc.page.php:523 
     3421msgid "Help about this page" 
     3422msgstr "" 
     3423 
     3424#: inc/admin/lib.dc.page.php:528 
     3425#, php-format 
     3426msgid "See also %s" 
     3427msgstr "" 
     3428 
     3429#: inc/admin/lib.dc.page.php:528 
     3430msgid "the global help" 
     3431msgstr "" 
     3432 
     3433#: inc/admin/lib.dc.page.php:593 inc/admin/lib.dc.page.php:600 
     3434msgid "uncover" 
     3435msgstr "" 
     3436 
     3437#: inc/admin/lib.dc.page.php:595 inc/admin/lib.dc.page.php:602 
     3438msgid "hide" 
     3439msgstr "" 
     3440 
     3441#: inc/admin/lib.dc.page.php:605 
     3442msgid "Need help?" 
     3443msgstr "" 
     3444 
     3445#: inc/admin/lib.dc.page.php:607 
     3446msgid "new window" 
     3447msgstr "" 
     3448 
     3449#: inc/admin/lib.dc.page.php:609 
     3450msgid "Hide" 
     3451msgstr "" 
     3452 
     3453#: inc/admin/lib.dc.page.php:611 
     3454msgid "Select:" 
     3455msgstr "" 
     3456 
     3457#: inc/admin/lib.dc.page.php:613 
     3458msgid "no selection" 
     3459msgstr "" 
     3460 
     3461#: inc/admin/lib.dc.page.php:615 
     3462msgid "select all" 
     3463msgstr "" 
     3464 
     3465#: inc/admin/lib.dc.page.php:617 
     3466msgid "Invert selection" 
     3467msgstr "" 
     3468 
     3469#: inc/admin/lib.dc.page.php:631 
     3470msgid "view entry" 
     3471msgstr "" 
     3472 
     3473#: inc/admin/lib.dc.page.php:633 
     3474#, php-format 
     3475msgid "Are you sure you want to delete selected entries (%s)?" 
     3476msgstr "" 
     3477 
     3478#: inc/admin/lib.dc.page.php:635 
     3479#, php-format 
     3480msgid "Are you sure you want to delete selected medias (%d)?" 
     3481msgstr "" 
     3482 
     3483#: inc/admin/lib.dc.page.php:637 
     3484#, php-format 
     3485msgid "Are you sure you want to delete selected categories (%s)?" 
     3486msgstr "" 
     3487 
     3488#: inc/admin/lib.dc.page.php:639 
     3489msgid "Are you sure you want to delete this entry?" 
     3490msgstr "" 
     3491 
     3492#: inc/admin/lib.dc.page.php:641 
     3493msgid "Click here to unlock the field" 
     3494msgstr "" 
     3495 
     3496#: inc/admin/lib.dc.page.php:643 
     3497msgid "Are you sure you want to delete all spams?" 
     3498msgstr "" 
     3499 
     3500#: inc/admin/lib.dc.page.php:645 
     3501#, php-format 
     3502msgid "Are you sure you want to delete selected comments (%s)?" 
     3503msgstr "" 
     3504 
     3505#: inc/admin/lib.dc.page.php:647 
     3506msgid "Are you sure you want to delete this comment?" 
     3507msgstr "" 
     3508 
     3509#: inc/admin/lib.dc.page.php:649 
     3510msgid "Users with posts cannot be deleted." 
     3511msgstr "" 
     3512 
     3513#: inc/admin/lib.dc.page.php:651 
     3514#, php-format 
     3515msgid "Are you sure you want to delete selected users (%s)?" 
     3516msgstr "" 
     3517 
     3518#: inc/admin/lib.dc.page.php:653 
     3519#, php-format 
     3520msgid "Are you sure you want to delete category \"%s\"?" 
     3521msgstr "" 
     3522 
     3523#: inc/admin/lib.dc.page.php:655 
     3524msgid "Are you sure you want to reorder all categories?" 
     3525msgstr "" 
     3526 
     3527#: inc/admin/lib.dc.page.php:657 
     3528#, php-format 
     3529msgid "Are you sure you want to remove media \"%s\"?" 
     3530msgstr "" 
     3531 
     3532#: inc/admin/lib.dc.page.php:659 
     3533msgid "Are you sure you want to extract archive in current directory?" 
     3534msgstr "" 
     3535 
     3536#: inc/admin/lib.dc.page.php:661 
     3537#, php-format 
     3538msgid "Are you sure you want to remove attachment \"%s\"?" 
     3539msgstr "" 
     3540 
     3541#: inc/admin/lib.dc.page.php:663 
     3542#, php-format 
     3543msgid "Are you sure you want to delete \"%s\" language?" 
     3544msgstr "" 
     3545 
     3546#: inc/admin/lib.dc.page.php:665 
     3547#, php-format 
     3548msgid "Are you sure you want to delete \"%s\" plugin?" 
     3549msgstr "" 
     3550 
     3551#: inc/admin/lib.dc.page.php:667 
     3552msgid "Are you sure you want to delete selected plugins?" 
     3553msgstr "" 
     3554 
     3555#: inc/admin/lib.dc.page.php:669 
     3556msgid "Use this theme" 
     3557msgstr "" 
     3558 
     3559#: inc/admin/lib.dc.page.php:671 
     3560msgid "Remove this theme" 
     3561msgstr "" 
     3562 
     3563#: inc/admin/lib.dc.page.php:673 
     3564#, php-format 
     3565msgid "Are you sure you want to delete \"%s\" theme?" 
     3566msgstr "" 
     3567 
     3568#: inc/admin/lib.dc.page.php:675 
     3569msgid "Are you sure you want to delete selected themes?" 
     3570msgstr "" 
     3571 
     3572#: inc/admin/lib.dc.page.php:677 
     3573msgid "Are you sure you want to delete this backup?" 
     3574msgstr "" 
     3575 
     3576#: inc/admin/lib.dc.page.php:679 
     3577msgid "Are you sure you want to revert to this backup?" 
     3578msgstr "" 
     3579 
     3580#: inc/admin/lib.dc.page.php:681 
     3581msgid "Zip file content" 
     3582msgstr "" 
     3583 
     3584#: inc/admin/lib.dc.page.php:683 
     3585msgid "XHTML markup validator" 
     3586msgstr "" 
     3587 
     3588#: inc/admin/lib.dc.page.php:685 
     3589msgid "XHTML content is valid." 
     3590msgstr "" 
     3591 
     3592#: inc/admin/lib.dc.page.php:687 
     3593msgid "There are XHTML markup errors." 
     3594msgstr "" 
     3595 
     3596#: inc/admin/lib.dc.page.php:689 
     3597msgid "Attention: an audit of a content not yet registered." 
     3598msgstr "" 
     3599 
     3600#: inc/admin/lib.dc.page.php:691 
     3601msgid "You have unsaved changes. Switch post format will loose these changes. Proceed anyway?" 
     3602msgstr "" 
     3603 
     3604#: inc/admin/lib.dc.page.php:693 
     3605msgid "Warning: post format change will not convert existing content. You will need to apply new format by yourself. Proceed anyway?" 
     3606msgstr "" 
     3607 
     3608#: inc/admin/lib.dc.page.php:695 
     3609msgid "Loading enhanced uploader, please wait." 
     3610msgstr "" 
     3611 
     3612#: inc/admin/lib.dc.page.php:700 inc/admin/lib.moduleslist.php:558 
     3613#: inc/admin/lib.moduleslist.php:707 inc/admin/lib.moduleslist.php:1518 
     3614msgid "Details" 
     3615msgstr "" 
     3616 
     3617#: inc/admin/lib.dc.page.php:702 inc/admin/lib.moduleslist.php:711 
     3618#: inc/admin/lib.moduleslist.php:1523 
     3619msgid "Support" 
     3620msgstr "" 
     3621 
     3622#: inc/admin/lib.dc.page.php:704 
     3623msgid "Help:" 
     3624msgstr "" 
     3625 
     3626#: inc/admin/lib.dc.page.php:706 inc/admin/lib.moduleslist.php:736 
     3627msgid "Section:" 
     3628msgstr "" 
     3629 
     3630#: inc/admin/lib.dc.page.php:708 inc/admin/lib.moduleslist.php:741 
     3631msgid "Tags:" 
     3632msgstr "" 
     3633 
     3634#: inc/admin/lib.dc.page.php:739 
     3635msgid "You have unsaved changes." 
     3636msgstr "" 
     3637 
     3638#: inc/admin/lib.dc.page.php:821 
     3639msgid "close" 
     3640msgstr "" 
     3641 
     3642#: inc/admin/lib.dc.page.php:822 
     3643msgid "now" 
     3644msgstr "" 
     3645 
     3646#: inc/admin/lib.dc.page.php:866 
     3647msgid "visual" 
     3648msgstr "" 
     3649 
     3650#: inc/admin/lib.dc.page.php:867 
     3651msgid "source" 
     3652msgstr "" 
     3653 
     3654#: inc/admin/lib.dc.page.php:869 
     3655msgid "You can use the following shortcuts to format your text." 
     3656msgstr "" 
     3657 
     3658#: inc/admin/lib.dc.page.php:870 
     3659msgid "-- none --" 
     3660msgstr "" 
     3661 
     3662#: inc/admin/lib.dc.page.php:871 
     3663msgid "-- block format --" 
     3664msgstr "" 
     3665 
     3666#: inc/admin/lib.dc.page.php:872 
     3667msgid "Paragraph" 
     3668msgstr "" 
     3669 
     3670#: inc/admin/lib.dc.page.php:873 
     3671msgid "Level 1 header" 
     3672msgstr "" 
     3673 
     3674#: inc/admin/lib.dc.page.php:874 
     3675msgid "Level 2 header" 
     3676msgstr "" 
     3677 
     3678#: inc/admin/lib.dc.page.php:875 
     3679msgid "Level 3 header" 
     3680msgstr "" 
     3681 
     3682#: inc/admin/lib.dc.page.php:876 
     3683msgid "Level 4 header" 
     3684msgstr "" 
     3685 
     3686#: inc/admin/lib.dc.page.php:877 
     3687msgid "Level 5 header" 
     3688msgstr "" 
     3689 
     3690#: inc/admin/lib.dc.page.php:878 
     3691msgid "Level 6 header" 
     3692msgstr "" 
     3693 
     3694#: inc/admin/lib.dc.page.php:879 
     3695msgid "Strong emphasis" 
     3696msgstr "" 
     3697 
     3698#: inc/admin/lib.dc.page.php:880 
     3699msgid "Emphasis" 
     3700msgstr "" 
     3701 
     3702#: inc/admin/lib.dc.page.php:881 
     3703msgid "Inserted" 
     3704msgstr "" 
     3705 
     3706#: inc/admin/lib.dc.page.php:882 
     3707msgid "Deleted" 
     3708msgstr "" 
     3709 
     3710#: inc/admin/lib.dc.page.php:883 
     3711msgid "Inline quote" 
     3712msgstr "" 
     3713 
     3714#: inc/admin/lib.dc.page.php:884 
     3715msgid "Code" 
     3716msgstr "" 
     3717 
     3718#: inc/admin/lib.dc.page.php:885 
     3719msgid "Line break" 
     3720msgstr "" 
     3721 
     3722#: inc/admin/lib.dc.page.php:886 
     3723msgid "Blockquote" 
     3724msgstr "" 
     3725 
     3726#: inc/admin/lib.dc.page.php:887 
     3727msgid "Preformated text" 
     3728msgstr "" 
     3729 
     3730#: inc/admin/lib.dc.page.php:888 
     3731msgid "Unordered list" 
     3732msgstr "" 
     3733 
     3734#: inc/admin/lib.dc.page.php:889 
     3735msgid "Ordered list" 
     3736msgstr "" 
     3737 
     3738#: inc/admin/lib.dc.page.php:891 
     3739msgid "Link" 
     3740msgstr "" 
     3741 
     3742#: inc/admin/lib.dc.page.php:892 inc/admin/lib.dc.page.php:896 
     3743msgid "URL?" 
     3744msgstr "" 
     3745 
     3746#: inc/admin/lib.dc.page.php:893 
     3747msgid "Language?" 
     3748msgstr "" 
     3749 
     3750#: inc/admin/lib.dc.page.php:895 
     3751msgid "External image" 
     3752msgstr "" 
     3753 
     3754#: inc/admin/lib.dc.page.php:898 
     3755msgid "Media chooser" 
     3756msgstr "" 
     3757 
     3758#: inc/admin/lib.dc.page.php:899 
     3759msgid "Link to an entry" 
     3760msgstr "" 
     3761 
     3762#: inc/admin/lib.dc.page.php:929 
     3763msgid "Temporarily activate enhanced uploader" 
     3764msgstr "" 
     3765 
    34033766#: inc/admin/lib.dc.page.php:930 
    3404 msgid "Error:" 
    3405 msgstr "" 
    3406  
    3407 #: inc/admin/lib.dc.page.php:246 inc/admin/lib.dc.page.php:407 
    3408 msgid "[%H:%M:%S]" 
    3409 msgstr "" 
    3410  
    3411 #: inc/admin/lib.dc.page.php:279 
    3412 #, php-format 
    3413 msgid "Thank you for using %s." 
    3414 msgstr "" 
    3415  
    3416 #: inc/admin/lib.dc.page.php:382 
    3417 msgid "Go to dashboard" 
    3418 msgstr "" 
    3419  
    3420 #: inc/admin/lib.dc.page.php:524 
    3421 msgid "Help about this page" 
    3422 msgstr "" 
    3423  
    3424 #: inc/admin/lib.dc.page.php:529 
    3425 #, php-format 
    3426 msgid "See also %s" 
    3427 msgstr "" 
    3428  
    3429 #: inc/admin/lib.dc.page.php:529 
    3430 msgid "the global help" 
    3431 msgstr "" 
    3432  
    3433 #: inc/admin/lib.dc.page.php:594 inc/admin/lib.dc.page.php:601 
    3434 msgid "uncover" 
    3435 msgstr "" 
    3436  
    3437 #: inc/admin/lib.dc.page.php:596 inc/admin/lib.dc.page.php:603 
    3438 msgid "hide" 
    3439 msgstr "" 
    3440  
    3441 #: inc/admin/lib.dc.page.php:606 
    3442 msgid "Need help?" 
    3443 msgstr "" 
    3444  
    3445 #: inc/admin/lib.dc.page.php:608 
    3446 msgid "new window" 
    3447 msgstr "" 
    3448  
    3449 #: inc/admin/lib.dc.page.php:610 
    3450 msgid "Hide" 
    3451 msgstr "" 
    3452  
    3453 #: inc/admin/lib.dc.page.php:612 
    3454 msgid "Select:" 
    3455 msgstr "" 
    3456  
    3457 #: inc/admin/lib.dc.page.php:614 
    3458 msgid "no selection" 
    3459 msgstr "" 
    3460  
    3461 #: inc/admin/lib.dc.page.php:616 
    3462 msgid "select all" 
    3463 msgstr "" 
    3464  
    3465 #: inc/admin/lib.dc.page.php:618 
    3466 msgid "Invert selection" 
    3467 msgstr "" 
    3468  
    3469 #: inc/admin/lib.dc.page.php:632 
    3470 msgid "view entry" 
    3471 msgstr "" 
    3472  
    3473 #: inc/admin/lib.dc.page.php:634 
    3474 #, php-format 
    3475 msgid "Are you sure you want to delete selected entries (%s)?" 
    3476 msgstr "" 
    3477  
    3478 #: inc/admin/lib.dc.page.php:636 
    3479 #, php-format 
    3480 msgid "Are you sure you want to delete selected medias (%d)?" 
    3481 msgstr "" 
    3482  
    3483 #: inc/admin/lib.dc.page.php:638 
    3484 #, php-format 
    3485 msgid "Are you sure you want to delete selected categories (%s)?" 
    3486 msgstr "" 
    3487  
    3488 #: inc/admin/lib.dc.page.php:640 
    3489 msgid "Are you sure you want to delete this entry?" 
    3490 msgstr "" 
    3491  
    3492 #: inc/admin/lib.dc.page.php:642 
    3493 msgid "Click here to unlock the field" 
    3494 msgstr "" 
    3495  
    3496 #: inc/admin/lib.dc.page.php:644 
    3497 msgid "Are you sure you want to delete all spams?" 
    3498 msgstr "" 
    3499  
    3500 #: inc/admin/lib.dc.page.php:646 
    3501 #, php-format 
    3502 msgid "Are you sure you want to delete selected comments (%s)?" 
    3503 msgstr "" 
    3504  
    3505 #: inc/admin/lib.dc.page.php:648 
    3506 msgid "Are you sure you want to delete this comment?" 
    3507 msgstr "" 
    3508  
    3509 #: inc/admin/lib.dc.page.php:650 
    3510 msgid "Users with posts cannot be deleted." 
    3511 msgstr "" 
    3512  
    3513 #: inc/admin/lib.dc.page.php:652 
    3514 #, php-format 
    3515 msgid "Are you sure you want to delete selected users (%s)?" 
    3516 msgstr "" 
    3517  
    3518 #: inc/admin/lib.dc.page.php:654 
    3519 #, php-format 
    3520 msgid "Are you sure you want to delete category \"%s\"?" 
    3521 msgstr "" 
    3522  
    3523 #: inc/admin/lib.dc.page.php:656 
    3524 msgid "Are you sure you want to reorder all categories?" 
    3525 msgstr "" 
    3526  
    3527 #: inc/admin/lib.dc.page.php:658 
    3528 #, php-format 
    3529 msgid "Are you sure you want to remove media \"%s\"?" 
    3530 msgstr "" 
    3531  
    3532 #: inc/admin/lib.dc.page.php:660 
    3533 msgid "Are you sure you want to extract archive in current directory?" 
    3534 msgstr "" 
    3535  
    3536 #: inc/admin/lib.dc.page.php:662 
    3537 #, php-format 
    3538 msgid "Are you sure you want to remove attachment \"%s\"?" 
    3539 msgstr "" 
    3540  
    3541 #: inc/admin/lib.dc.page.php:664 
    3542 #, php-format 
    3543 msgid "Are you sure you want to delete \"%s\" language?" 
    3544 msgstr "" 
    3545  
    3546 #: inc/admin/lib.dc.page.php:666 
    3547 #, php-format 
    3548 msgid "Are you sure you want to delete \"%s\" plugin?" 
    3549 msgstr "" 
    3550  
    3551 #: inc/admin/lib.dc.page.php:668 
    3552 msgid "Use this theme" 
    3553 msgstr "" 
    3554  
    3555 #: inc/admin/lib.dc.page.php:670 
    3556 msgid "Remove this theme" 
    3557 msgstr "" 
    3558  
    3559 #: inc/admin/lib.dc.page.php:672 
    3560 #, php-format 
    3561 msgid "Are you sure you want to delete \"%s\" theme?" 
    3562 msgstr "" 
    3563  
    3564 #: inc/admin/lib.dc.page.php:674 
    3565 msgid "Are you sure you want to delete this backup?" 
    3566 msgstr "" 
    3567  
    3568 #: inc/admin/lib.dc.page.php:676 
    3569 msgid "Zip file content" 
    3570 msgstr "" 
    3571  
    3572 #: inc/admin/lib.dc.page.php:678 
    3573 msgid "XHTML markup validator" 
    3574 msgstr "" 
    3575  
    3576 #: inc/admin/lib.dc.page.php:680 
    3577 msgid "XHTML content is valid." 
    3578 msgstr "" 
    3579  
    3580 #: inc/admin/lib.dc.page.php:682 
    3581 msgid "There are XHTML markup errors." 
    3582 msgstr "" 
    3583  
    3584 #: inc/admin/lib.dc.page.php:684 
    3585 msgid "Attention: an audit of a content not yet registered." 
    3586 msgstr "" 
    3587  
    3588 #: inc/admin/lib.dc.page.php:686 
    3589 msgid "You have unsaved changes. Switch post format will loose these changes. Proceed anyway?" 
    3590 msgstr "" 
    3591  
    3592 #: inc/admin/lib.dc.page.php:688 
    3593 msgid "Warning: post format change will not convert existing content. You will need to apply new format by yourself. Proceed anyway?" 
    3594 msgstr "" 
    3595  
    3596 #: inc/admin/lib.dc.page.php:690 
    3597 msgid "Loading enhanced uploader, please wait." 
    3598 msgstr "" 
    3599  
    3600 #: inc/admin/lib.dc.page.php:695 inc/admin/lib.moduleslist.php:550 
    3601 #: inc/admin/lib.moduleslist.php:679 inc/admin/lib.moduleslist.php:1303 
    3602 msgid "Details" 
    3603 msgstr "" 
    3604  
    3605 #: inc/admin/lib.dc.page.php:697 inc/admin/lib.moduleslist.php:683 
    3606 #: inc/admin/lib.moduleslist.php:1308 
    3607 msgid "Support" 
    3608 msgstr "" 
    3609  
    3610 #: inc/admin/lib.dc.page.php:699 
    3611 msgid "Help:" 
    3612 msgstr "" 
    3613  
    3614 #: inc/admin/lib.dc.page.php:701 inc/admin/lib.moduleslist.php:708 
    3615 msgid "Section:" 
    3616 msgstr "" 
    3617  
    3618 #: inc/admin/lib.dc.page.php:703 inc/admin/lib.moduleslist.php:713 
    3619 msgid "Tags:" 
    3620 msgstr "" 
    3621  
    3622 #: inc/admin/lib.dc.page.php:734 
    3623 msgid "You have unsaved changes." 
    3624 msgstr "" 
    3625  
    3626 #: inc/admin/lib.dc.page.php:816 
    3627 msgid "close" 
    3628 msgstr "" 
    3629  
    3630 #: inc/admin/lib.dc.page.php:817 
    3631 msgid "now" 
    3632 msgstr "" 
    3633  
    3634 #: inc/admin/lib.dc.page.php:861 
    3635 msgid "visual" 
    3636 msgstr "" 
    3637  
    3638 #: inc/admin/lib.dc.page.php:862 
    3639 msgid "source" 
    3640 msgstr "" 
    3641  
    3642 #: inc/admin/lib.dc.page.php:864 
    3643 msgid "You can use the following shortcuts to format your text." 
    3644 msgstr "" 
    3645  
    3646 #: inc/admin/lib.dc.page.php:865 
    3647 msgid "-- none --" 
    3648 msgstr "" 
    3649  
    3650 #: inc/admin/lib.dc.page.php:866 
    3651 msgid "-- block format --" 
    3652 msgstr "" 
    3653  
    3654 #: inc/admin/lib.dc.page.php:867 
    3655 msgid "Paragraph" 
    3656 msgstr "" 
    3657  
    3658 #: inc/admin/lib.dc.page.php:868 
    3659 msgid "Level 1 header" 
    3660 msgstr "" 
    3661  
    3662 #: inc/admin/lib.dc.page.php:869 
    3663 msgid "Level 2 header" 
    3664 msgstr "" 
    3665  
    3666 #: inc/admin/lib.dc.page.php:870 
    3667 msgid "Level 3 header" 
    3668 msgstr "" 
    3669  
    3670 #: inc/admin/lib.dc.page.php:871 
    3671 msgid "Level 4 header" 
    3672 msgstr "" 
    3673  
    3674 #: inc/admin/lib.dc.page.php:872 
    3675 msgid "Level 5 header" 
    3676 msgstr "" 
    3677  
    3678 #: inc/admin/lib.dc.page.php:873 
    3679 msgid "Level 6 header" 
    3680 msgstr "" 
    3681  
    3682 #: inc/admin/lib.dc.page.php:874 
    3683 msgid "Strong emphasis" 
    3684 msgstr "" 
    3685  
    3686 #: inc/admin/lib.dc.page.php:875 
    3687 msgid "Emphasis" 
    3688 msgstr "" 
    3689  
    3690 #: inc/admin/lib.dc.page.php:876 
    3691 msgid "Inserted" 
    3692 msgstr "" 
    3693  
    3694 #: inc/admin/lib.dc.page.php:877 
    3695 msgid "Deleted" 
    3696 msgstr "" 
    3697  
    3698 #: inc/admin/lib.dc.page.php:878 
    3699 msgid "Inline quote" 
    3700 msgstr "" 
    3701  
    3702 #: inc/admin/lib.dc.page.php:879 
    3703 msgid "Code" 
    3704 msgstr "" 
    3705  
    3706 #: inc/admin/lib.dc.page.php:880 
    3707 msgid "Line break" 
    3708 msgstr "" 
    3709  
    3710 #: inc/admin/lib.dc.page.php:881 
    3711 msgid "Blockquote" 
    3712 msgstr "" 
    3713  
    3714 #: inc/admin/lib.dc.page.php:882 
    3715 msgid "Preformated text" 
    3716 msgstr "" 
    3717  
    3718 #: inc/admin/lib.dc.page.php:883 
    3719 msgid "Unordered list" 
    3720 msgstr "" 
    3721  
    3722 #: inc/admin/lib.dc.page.php:884 
    3723 msgid "Ordered list" 
    3724 msgstr "" 
    3725  
    3726 #: inc/admin/lib.dc.page.php:886 
    3727 msgid "Link" 
    3728 msgstr "" 
    3729  
    3730 #: inc/admin/lib.dc.page.php:887 inc/admin/lib.dc.page.php:891 
    3731 msgid "URL?" 
    3732 msgstr "" 
    3733  
    3734 #: inc/admin/lib.dc.page.php:888 
    3735 msgid "Language?" 
    3736 msgstr "" 
    3737  
    3738 #: inc/admin/lib.dc.page.php:890 
    3739 msgid "External image" 
    3740 msgstr "" 
    3741  
    3742 #: inc/admin/lib.dc.page.php:893 
    3743 msgid "Media chooser" 
    3744 msgstr "" 
    3745  
    3746 #: inc/admin/lib.dc.page.php:894 
    3747 msgid "Link to an entry" 
    3748 msgstr "" 
    3749  
    3750 #: inc/admin/lib.dc.page.php:924 
    3751 msgid "Temporarily activate enhanced uploader" 
    3752 msgstr "" 
    3753  
    3754 #: inc/admin/lib.dc.page.php:925 
    37553767msgid "Temporarily disable enhanced uploader" 
    37563768msgstr "" 
    37573769 
    3758 #: inc/admin/lib.dc.page.php:926 
     3770#: inc/admin/lib.dc.page.php:931 
    37593771msgid "Limit exceeded." 
    37603772msgstr "" 
    37613773 
    3762 #: inc/admin/lib.dc.page.php:927 
     3774#: inc/admin/lib.dc.page.php:932 
    37633775msgid "File size exceeds allowed limit." 
    37643776msgstr "" 
    37653777 
    3766 #: inc/admin/lib.dc.page.php:928 
     3778#: inc/admin/lib.dc.page.php:933 
    37673779msgid "Canceled." 
    37683780msgstr "" 
    37693781 
    3770 #: inc/admin/lib.dc.page.php:929 
     3782#: inc/admin/lib.dc.page.php:934 
    37713783msgid "HTTP Error:" 
    37723784msgstr "" 
    37733785 
    3774 #: inc/admin/lib.dc.page.php:934 
     3786#: inc/admin/lib.dc.page.php:939 
    37753787msgid "Clean" 
    37763788msgstr "" 
    37773789 
    3778 #: inc/admin/lib.dc.page.php:937 
     3790#: inc/admin/lib.dc.page.php:942 
    37793791msgid "File successfully uploaded." 
    37803792msgstr "" 
    37813793 
    3782 #: inc/admin/lib.dc.page.php:938 
     3794#: inc/admin/lib.dc.page.php:943 
    37833795msgid "No file in queue." 
    37843796msgstr "" 
    37853797 
    3786 #: inc/admin/lib.dc.page.php:939 
     3798#: inc/admin/lib.dc.page.php:944 
    37873799msgid "1 file in queue." 
    37883800msgstr "" 
    37893801 
    3790 #: inc/admin/lib.dc.page.php:940 
     3802#: inc/admin/lib.dc.page.php:945 
    37913803#, php-format 
    37923804msgid "%d files in queue." 
    37933805msgstr "" 
    37943806 
    3795 #: inc/admin/lib.dc.page.php:941 
     3807#: inc/admin/lib.dc.page.php:946 
    37963808msgid "Queue error:" 
    37973809msgstr "" 
     
    38393851msgstr "" 
    38403852 
    3841 #: inc/admin/lib.moduleslist.php:526 
     3853#: inc/admin/lib.moduleslist.php:527 
    38423854msgid "Plugins list" 
    38433855msgstr "" 
    38443856 
    3845 #: inc/admin/lib.moduleslist.php:530 
     3857#: inc/admin/lib.moduleslist.php:538 
    38463858msgid "Name" 
    38473859msgstr "" 
    38483860 
    3849 #: inc/admin/lib.moduleslist.php:535 
     3861#: inc/admin/lib.moduleslist.php:543 
    38503862msgid "Score" 
    38513863msgstr "" 
    38523864 
    3853 #: inc/admin/lib.moduleslist.php:540 
     3865#: inc/admin/lib.moduleslist.php:548 
    38543866msgid "Version" 
    38553867msgstr "" 
    38563868 
    3857 #: inc/admin/lib.moduleslist.php:545 
     3869#: inc/admin/lib.moduleslist.php:553 
    38583870msgid "Current version" 
    38593871msgstr "" 
    38603872 
    3861 #: inc/admin/lib.moduleslist.php:635 inc/admin/lib.moduleslist.php:636 
     3873#: inc/admin/lib.moduleslist.php:671 inc/admin/lib.moduleslist.php:672 
    38623874msgid "Plugin from official distribution" 
    38633875msgstr "" 
    38643876 
    3865 #: inc/admin/lib.moduleslist.php:703 
     3877#: inc/admin/lib.moduleslist.php:731 
    38663878msgid "Configure plugin" 
    38673879msgstr "" 
    38683880 
    3869 #: inc/admin/lib.moduleslist.php:731 
     3881#: inc/admin/lib.moduleslist.php:759 
    38703882msgid "No plugins matched your search." 
    38713883msgstr "" 
    38723884 
    3873 #: inc/admin/lib.moduleslist.php:756 
     3885#: inc/admin/lib.moduleslist.php:799 
    38743886msgid "Activate" 
    38753887msgstr "" 
    38763888 
    3877 #: inc/admin/lib.moduleslist.php:762 
     3889#: inc/admin/lib.moduleslist.php:805 
    38783890msgid "Deactivate" 
    38793891msgstr "" 
    38803892 
    3881 #: inc/admin/lib.moduleslist.php:775 
     3893#: inc/admin/lib.moduleslist.php:818 
    38823894msgid "Install" 
    38833895msgstr "" 
    38843896 
    3885 #: inc/admin/lib.moduleslist.php:781 inc/admin/prepend.php:259 
     3897#: inc/admin/lib.moduleslist.php:824 inc/admin/prepend.php:259 
    38863898msgid "Update" 
    38873899msgstr "" 
    38883900 
    3889 #: inc/admin/lib.moduleslist.php:824 inc/admin/lib.moduleslist.php:842 
    3890 #: inc/admin/lib.moduleslist.php:870 inc/admin/lib.moduleslist.php:900 
    3891 #: inc/admin/lib.moduleslist.php:927 inc/admin/lib.moduleslist.php:931 
     3901#: inc/admin/lib.moduleslist.php:862 
     3902msgid "Activate selected plugins" 
     3903msgstr "" 
     3904 
     3905#: inc/admin/lib.moduleslist.php:863 
     3906msgid "Activate all plugins from this list" 
     3907msgstr "" 
     3908 
     3909#: inc/admin/lib.moduleslist.php:871 
     3910msgid "Deactivate selected plugins" 
     3911msgstr "" 
     3912 
     3913#: inc/admin/lib.moduleslist.php:872 
     3914msgid "Deactivate all plugins from this list" 
     3915msgstr "" 
     3916 
     3917#: inc/admin/lib.moduleslist.php:880 
     3918msgid "Update selected plugins" 
     3919msgstr "" 
     3920 
     3921#: inc/admin/lib.moduleslist.php:881 
     3922msgid "Update all plugins from this list" 
     3923msgstr "" 
     3924 
     3925#: inc/admin/lib.moduleslist.php:932 inc/admin/lib.moduleslist.php:981 
     3926#: inc/admin/lib.moduleslist.php:1018 inc/admin/lib.moduleslist.php:1053 
     3927#: inc/admin/lib.moduleslist.php:1101 
    38923928msgid "No such plugin." 
    38933929msgstr "" 
    38943930 
    3895 #: inc/admin/lib.moduleslist.php:835 
     3931#: inc/admin/lib.moduleslist.php:959 
     3932msgid "You don't have permissions to delete this plugin." 
     3933msgstr "" 
     3934 
     3935#: inc/admin/lib.moduleslist.php:962 
     3936msgid "Some plugins have not been delete." 
     3937msgstr "" 
     3938 
     3939#: inc/admin/lib.moduleslist.php:966 
     3940msgid "Plugin has been successfully deleted." 
     3941msgid_plural "Plugins have been successuflly deleted." 
     3942msgstr[0] "" 
     3943msgstr[1] "" 
     3944 
     3945#: inc/admin/lib.moduleslist.php:1005 inc/admin/lib.moduleslist.php:1172 
     3946msgid "Plugin has been successfully installed." 
     3947msgid_plural "Plugins have been successuflly installed." 
     3948msgstr[0] "" 
     3949msgstr[1] "" 
     3950 
     3951#: inc/admin/lib.moduleslist.php:1040 
    38963952msgid "Plugin has been successfully activated." 
    3897 msgstr "" 
    3898  
    3899 #: inc/admin/lib.moduleslist.php:849 
    3900 msgid "You don't have permissions to deactivate this plugin." 
    3901 msgstr "" 
    3902  
    3903 #: inc/admin/lib.moduleslist.php:860 
     3953msgid_plural "Plugins have been successuflly activated." 
     3954msgstr[0] "" 
     3955msgstr[1] "" 
     3956 
     3957#: inc/admin/lib.moduleslist.php:1083 
     3958msgid "Some plugins have not been deactivated." 
     3959msgstr "" 
     3960 
     3961#: inc/admin/lib.moduleslist.php:1087 
    39043962msgid "Plugin has been successfully deactivated." 
    3905 msgstr "" 
    3906  
    3907 #: inc/admin/lib.moduleslist.php:877 
    3908 msgid "You don't have permissions to delete this plugin." 
    3909 msgstr "" 
    3910  
    3911 #: inc/admin/lib.moduleslist.php:892 
    3912 msgid "Plugin has been successfully deleted." 
    3913 msgstr "" 
    3914  
    3915 #: inc/admin/lib.moduleslist.php:917 inc/admin/lib.moduleslist.php:957 
    3916 #: inc/admin/lib.moduleslist.php:998 
     3963msgid_plural "Plugins have been successuflly deactivated." 
     3964msgstr[0] "" 
     3965msgstr[1] "" 
     3966 
     3967#: inc/admin/lib.moduleslist.php:1135 inc/admin/lib.moduleslist.php:1171 
    39173968msgid "Plugin has been successfully updated." 
    3918 msgstr "" 
    3919  
    3920 #: inc/admin/lib.moduleslist.php:918 inc/admin/lib.moduleslist.php:999 
    3921 msgid "Plugin has been successfully installed." 
    3922 msgstr "" 
    3923  
    3924 #: inc/admin/lib.moduleslist.php:1022 
     3969msgid_plural "Plugins have been successuflly updated." 
     3970msgstr[0] "" 
     3971msgstr[1] "" 
     3972 
     3973#: inc/admin/lib.moduleslist.php:1202 
    39253974msgid "Zip file path:" 
    39263975msgstr "" 
    39273976 
    3928 #: inc/admin/lib.moduleslist.php:1033 
     3977#: inc/admin/lib.moduleslist.php:1213 
    39293978msgid "Download a zip file" 
    39303979msgstr "" 
    39313980 
    3932 #: inc/admin/lib.moduleslist.php:1034 
     3981#: inc/admin/lib.moduleslist.php:1214 
    39333982msgid "Zip file URL:" 
    39343983msgstr "" 
    39353984 
    3936 #: inc/admin/lib.moduleslist.php:1038 
     3985#: inc/admin/lib.moduleslist.php:1218 
    39373986msgid "Download" 
    39383987msgstr "" 
    39393988 
    3940 #: inc/admin/lib.moduleslist.php:1075 
     3989#: inc/admin/lib.moduleslist.php:1255 
    39413990msgid "Unknow plugin ID" 
    39423991msgstr "" 
    39433992 
    3944 #: inc/admin/lib.moduleslist.php:1084 
     3993#: inc/admin/lib.moduleslist.php:1264 
    39453994msgid "This plugin has no configuration file." 
    39463995msgstr "" 
    39473996 
    3948 #: inc/admin/lib.moduleslist.php:1147 
     3997#: inc/admin/lib.moduleslist.php:1327 
    39493998#, php-format 
    39503999msgid "Configure \"%s\"" 
    39514000msgstr "" 
    39524001 
    3953 #: inc/admin/lib.moduleslist.php:1148 
     4002#: inc/admin/lib.moduleslist.php:1328 
    39544003msgid "Back" 
    39554004msgstr "" 
    39564005 
    3957 #: inc/admin/lib.moduleslist.php:1231 
     4006#: inc/admin/lib.moduleslist.php:1430 
    39584007#, php-format 
    39594008msgid "Score: %s" 
    39604009msgstr "" 
    39614010 
    3962 #: inc/admin/lib.moduleslist.php:1250 
     4011#: inc/admin/lib.moduleslist.php:1449 
    39634012#, php-format 
    39644013msgid "%s screenshot." 
    39654014msgstr "" 
    39664015 
    3967 #: inc/admin/lib.moduleslist.php:1271 
     4016#: inc/admin/lib.moduleslist.php:1486 
    39684017#, php-format 
    39694018msgid "by %s" 
    39704019msgstr "" 
    39714020 
    3972 #: inc/admin/lib.moduleslist.php:1276 
     4021#: inc/admin/lib.moduleslist.php:1491 
    39734022#, php-format 
    39744023msgid "version %s" 
    39754024msgstr "" 
    39764025 
    3977 #: inc/admin/lib.moduleslist.php:1281 
     4026#: inc/admin/lib.moduleslist.php:1496 
    39784027#, php-format 
    39794028msgid "(current version %s)" 
    39804029msgstr "" 
    39814030 
    3982 #: inc/admin/lib.moduleslist.php:1287 
     4031#: inc/admin/lib.moduleslist.php:1502 
    39834032#, php-format 
    39844033msgid "(built on \"%s\")" 
    39854034msgstr "" 
    39864035 
    3987 #: inc/admin/lib.moduleslist.php:1291 
     4036#: inc/admin/lib.moduleslist.php:1506 
    39884037#, php-format 
    39894038msgid "(requires \"%s\")" 
    39904039msgstr "" 
    39914040 
    3992 #: inc/admin/lib.moduleslist.php:1331 
     4041#: inc/admin/lib.moduleslist.php:1546 
    39934042msgid "View stylesheet" 
    39944043msgstr "" 
    39954044 
    3996 #: inc/admin/lib.moduleslist.php:1338 
     4045#: inc/admin/lib.moduleslist.php:1553 
    39974046msgid "Configure theme" 
    39984047msgstr "" 
    39994048 
    4000 #: inc/admin/lib.moduleslist.php:1378 
     4049#: inc/admin/lib.moduleslist.php:1586 
    40014050msgid "No themes matched your search." 
    40024051msgstr "" 
    40034052 
    4004 #: inc/admin/lib.moduleslist.php:1392 
     4053#: inc/admin/lib.moduleslist.php:1617 
    40054054msgid "Use this one" 
    40064055msgstr "" 
    40074056 
    4008 #: inc/admin/lib.moduleslist.php:1417 inc/admin/lib.moduleslist.php:1431 
    4009 #: inc/admin/lib.moduleslist.php:1449 inc/admin/lib.moduleslist.php:1507 
    4010 #: inc/admin/lib.moduleslist.php:1534 inc/admin/lib.moduleslist.php:1538 
     4057#: inc/admin/lib.moduleslist.php:1638 
     4058msgid "Update selected themes" 
     4059msgstr "" 
     4060 
     4061#: inc/admin/lib.moduleslist.php:1639 
     4062msgid "Update all themes from this list" 
     4063msgstr "" 
     4064 
     4065#: inc/admin/lib.moduleslist.php:1675 inc/admin/lib.moduleslist.php:1695 
     4066#: inc/admin/lib.moduleslist.php:1730 inc/admin/lib.moduleslist.php:1785 
     4067#: inc/admin/lib.moduleslist.php:1834 inc/admin/lib.moduleslist.php:1871 
    40114068msgid "No such theme." 
    40124069msgstr "" 
    40134070 
    4014 #: inc/admin/lib.moduleslist.php:1424 
     4071#: inc/admin/lib.moduleslist.php:1682 
    40154072msgid "Theme has been successfully selected." 
    40164073msgstr "" 
    40174074 
    4018 #: inc/admin/lib.moduleslist.php:1442 
     4075#: inc/admin/lib.moduleslist.php:1717 
    40194076msgid "Theme has been successfully activated." 
    4020 msgstr "" 
    4021  
    4022 #: inc/admin/lib.moduleslist.php:1456 
    4023 msgid "You don't have permissions to deactivate this theme." 
    4024 msgstr "" 
    4025  
    4026 #: inc/admin/lib.moduleslist.php:1467 
     4077msgid_plural "Themes have been successuflly activated." 
     4078msgstr[0] "" 
     4079msgstr[1] "" 
     4080 
     4081#: inc/admin/lib.moduleslist.php:1760 
     4082msgid "Some themes have not been deactivated." 
     4083msgstr "" 
     4084 
     4085#: inc/admin/lib.moduleslist.php:1764 
    40274086msgid "Theme has been successfully deactivated." 
    4028 msgstr "" 
    4029  
    4030 #: inc/admin/lib.moduleslist.php:1477 inc/core/class.dc.modules.php:404 
    4031 #: inc/core/class.dc.modules.php:415 inc/core/class.dc.modules.php:430 
    4032 msgid "No such module." 
    4033 msgstr "" 
    4034  
    4035 #: inc/admin/lib.moduleslist.php:1484 
     4087msgid_plural "Themes have been successuflly deactivated." 
     4088msgstr[0] "" 
     4089msgstr[1] "" 
     4090 
     4091#: inc/admin/lib.moduleslist.php:1812 
    40364092msgid "You don't have permissions to delete this theme." 
    40374093msgstr "" 
    40384094 
    4039 #: inc/admin/lib.moduleslist.php:1499 
     4095#: inc/admin/lib.moduleslist.php:1815 
     4096msgid "Some themes have not been delete." 
     4097msgstr "" 
     4098 
     4099#: inc/admin/lib.moduleslist.php:1819 
    40404100msgid "Theme has been successfully deleted." 
    4041 msgstr "" 
    4042  
    4043 #: inc/admin/lib.moduleslist.php:1524 inc/admin/lib.moduleslist.php:1564 
    4044 #: inc/admin/lib.moduleslist.php:1605 
     4101msgid_plural "Themes have been successuflly deleted." 
     4102msgstr[0] "" 
     4103msgstr[1] "" 
     4104 
     4105#: inc/admin/lib.moduleslist.php:1858 inc/admin/lib.moduleslist.php:1934 
     4106msgid "Theme has been successfully installed." 
     4107msgid_plural "Themes have been successuflly installed." 
     4108msgstr[0] "" 
     4109msgstr[1] "" 
     4110 
     4111#: inc/admin/lib.moduleslist.php:1897 inc/admin/lib.moduleslist.php:1933 
    40454112msgid "Theme has been successfully updated." 
    4046 msgstr "" 
    4047  
    4048 #: inc/admin/lib.moduleslist.php:1525 inc/admin/lib.moduleslist.php:1606 
    4049 msgid "Theme has been successfully installed." 
    4050 msgstr "" 
     4113msgid_plural "Themes have been successuflly updated." 
     4114msgstr[0] "" 
     4115msgstr[1] "" 
    40514116 
    40524117#: inc/admin/lib.pager.php:78 
     
    44644529msgstr "" 
    44654530 
    4466 #: inc/core/class.dc.modules.php:189 inc/core/class.dc.themes.php:69 
     4531#: inc/core/class.dc.modules.php:192 
    44674532#, php-format 
    44684533msgid "Module \"%s\" has type \"%s\" that mismatch required module type \"%s\"." 
    44694534msgstr "" 
    44704535 
    4471 #: inc/core/class.dc.modules.php:227 
     4536#: inc/core/class.dc.modules.php:232 
    44724537#, php-format 
    44734538msgid "Module \"%s\" is installed twice in \"%s\" and \"%s\"." 
    44744539msgstr "" 
    44754540 
    4476 #: inc/core/class.dc.modules.php:265 
     4541#: inc/core/class.dc.modules.php:270 
    44774542msgid "Empty module zip file." 
    44784543msgstr "" 
    44794544 
    4480 #: inc/core/class.dc.modules.php:271 
     4545#: inc/core/class.dc.modules.php:276 
    44814546msgid "The zip file does not appear to be a valid Dotclear module." 
    44824547msgstr "" 
    44834548 
    4484 #: inc/core/class.dc.modules.php:324 
     4549#: inc/core/class.dc.modules.php:329 
    44854550msgid "An error occurred during module deletion." 
    44864551msgstr "" 
    44874552 
    4488 #: inc/core/class.dc.modules.php:332 
     4553#: inc/core/class.dc.modules.php:337 
    44894554#, php-format 
    44904555msgid "Unable to upgrade \"%s\". (older or same version)" 
    44914556msgstr "" 
    44924557 
    4493 #: inc/core/class.dc.modules.php:339 
     4558#: inc/core/class.dc.modules.php:344 
    44944559msgid "Unable to read new _define.php file" 
    44954560msgstr "" 
    44964561 
    4497 #: inc/core/class.dc.modules.php:408 
     4562#: inc/core/class.dc.modules.php:409 inc/core/class.dc.modules.php:420 
     4563#: inc/core/class.dc.modules.php:435 
     4564msgid "No such module." 
     4565msgstr "" 
     4566 
     4567#: inc/core/class.dc.modules.php:413 
    44984568msgid "Cannot remove module files" 
    44994569msgstr "" 
    45004570 
    4501 #: inc/core/class.dc.modules.php:419 inc/core/class.dc.modules.php:423 
     4571#: inc/core/class.dc.modules.php:424 inc/core/class.dc.modules.php:428 
    45024572msgid "Cannot deactivate plugin." 
    45034573msgstr "" 
    45044574 
    4505 #: inc/core/class.dc.modules.php:434 inc/core/class.dc.modules.php:438 
     4575#: inc/core/class.dc.modules.php:439 inc/core/class.dc.modules.php:443 
    45064576msgid "Cannot activate plugin." 
    45074577msgstr "" 
     
    48714941msgstr "" 
    48724942 
    4873 #: inc/prepend.php:182 
     4943#: inc/prepend.php:183 
    48744944msgid "Site temporarily unavailable" 
    48754945msgstr "" 
    48764946 
    4877 #: inc/prepend.php:183 
     4947#: inc/prepend.php:184 
    48784948msgid "<p>We apologize for this temporary unavailability.<br />Thank you for your understanding.</p>" 
    48794949msgstr "" 
    48804950 
    4881 #: inc/prepend.php:187 
     4951#: inc/prepend.php:188 
    48824952msgid "Unable to connect to database" 
    48834953msgstr "" 
    48844954 
    4885 #: inc/prepend.php:189 
     4955#: inc/prepend.php:190 
    48864956#, php-format 
    48874957msgid "<p>This either means that the username and password information in your <strong>config.php</strong> file is incorrect or we can't contact the database server at \"<em>%s</em>\". This could mean your host's database server is down.</p> <ul><li>Are you sure you have the correct username and password?</li><li>Are you sure that you have typed the correct hostname?</li><li>Are you sure that the database server is running?</li></ul><p>If you're unsure what these terms mean you should probably contact your host. If you still need help you can always visit the <a href=\"http://forum.dotclear.net/\">Dotclear Support Forums</a>.</p>" 
    48884958msgstr "" 
    48894959 
    4890 #: inc/prepend.php:200 
     4960#: inc/prepend.php:201 
    48914961msgid "The following error was encountered while trying to read the database:" 
    48924962msgstr "" 
  • locales/_pot/plugins.pot

    r2485 r2503  
    88"Project-Id-Version: Dotclear 2\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2013-10-23 13:44+0000\n" 
     10"POT-Creation-Date: 2013-10-29 16:28+0100\n" 
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    170170#: plugins/aboutConfig/index.php:138 plugins/antispam/index.php:203 
    171171#: plugins/blogroll/index.php:205 plugins/blogroll/index.php:330 
    172 #: plugins/simpleMenu/index.php:143 plugins/simpleMenu/index.php:488 
     172#: plugins/simpleMenu/index.php:143 plugins/simpleMenu/index.php:489 
    173173#: plugins/userPref/index.php:135 
    174174msgid "Description" 
     
    275275#: plugins/antispam/filters/class.dc.filter.ip.php:131 
    276276#: plugins/antispam/filters/class.dc.filter.words.php:122 
    277 #: plugins/widgets/index.php:261 
     277#: plugins/widgets/index.php:259 
    278278msgid "Add" 
    279279msgstr "" 
     
    817817msgstr "" 
    818818 
    819 #: plugins/blogroll/index.php:206 plugins/simpleMenu/index.php:489 
     819#: plugins/blogroll/index.php:206 plugins/simpleMenu/index.php:490 
    820820msgid "URL" 
    821821msgstr "" 
     
    12531253#: plugins/importExport/inc/class.dc.export.flat.php:209 
    12541254#: plugins/importExport/inc/class.dc.export.flat.php:231 
    1255 #: plugins/importExport/index.php:103 
     1255#: plugins/importExport/index.php:102 
    12561256msgid "Export" 
    12571257msgstr "" 
     
    12791279 
    12801280#: plugins/importExport/inc/class.dc.ieModule.php:77 
    1281 #: plugins/widgets/index.php:321 
     1281#: plugins/widgets/index.php:319 
    12821282msgid "or" 
    12831283msgstr "" 
     
    15271527msgstr "" 
    15281528 
    1529 #: plugins/importExport/inc/flat/class.flat.import.php:54 
     1529#: plugins/importExport/inc/flat/class.flat.import.php:55 
    15301530msgid "File is not a DotClear backup." 
    15311531msgstr "" 
    15321532 
    1533 #: plugins/importExport/inc/flat/class.flat.import.php:105 
     1533#: plugins/importExport/inc/flat/class.flat.import.php:106 
    15341534msgid "File is not a single blog export." 
    15351535msgstr "" 
     
    15631563msgstr "" 
    15641564 
    1565 #: plugins/importExport/index.php:69 plugins/maintenance/index.php:121 
     1565#: plugins/importExport/index.php:69 plugins/maintenance/index.php:125 
    15661566msgid "Please wait..." 
    15671567msgstr "" 
     
    15701570#, php-format 
    15711571msgid "Export functions are in the page %s." 
     1572msgstr "" 
     1573 
     1574#: plugins/importExport/index.php:105 plugins/maintenance/_admin.php:16 
     1575#: plugins/maintenance/_admin.php:83 plugins/maintenance/_admin.php:179 
     1576#: plugins/maintenance/_admin.php:201 plugins/maintenance/index.php:117 
     1577#: plugins/maintenance/index.php:141 plugins/maintenance/index.php:157 
     1578#: plugins/maintenance/index.php:193 
     1579msgid "Maintenance" 
    15721580msgstr "" 
    15731581 
     
    16351643msgstr[1] "" 
    16361644 
    1637 #: plugins/maintenance/_admin.php:164 plugins/maintenance/index.php:216 
     1645#: plugins/maintenance/_admin.php:164 plugins/maintenance/index.php:224 
    16381646msgid "This task has never been executed." 
    16391647msgstr "" 
    16401648 
    1641 #: plugins/maintenance/_admin.php:166 plugins/maintenance/index.php:222 
     1649#: plugins/maintenance/_admin.php:166 plugins/maintenance/index.php:230 
    16421650#, php-format 
    16431651msgid "Last execution of this task was on %s." 
     
    16631671msgstr "" 
    16641672 
    1665 #: plugins/maintenance/inc/class.dc.maintenance.task.php:71 
     1673#: plugins/maintenance/inc/class.dc.maintenance.task.php:72 
    16661674msgid "Failed to execute task." 
    16671675msgstr "" 
    16681676 
    1669 #: plugins/maintenance/inc/class.dc.maintenance.task.php:74 
     1677#: plugins/maintenance/inc/class.dc.maintenance.task.php:75 
    16701678msgid "Task successfully executed." 
    16711679msgstr "" 
     
    17561764msgstr "" 
    17571765 
    1758 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:20 
     1766#: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:22 
    17591767msgid "Delete all logs" 
    17601768msgstr "" 
    17611769 
    1762 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:21 
     1770#: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:23 
    17631771msgid "Logs deleted." 
    17641772msgstr "" 
    17651773 
    1766 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:22 
     1774#: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:24 
    17671775msgid "Failed to delete logs." 
    17681776msgstr "" 
    17691777 
    1770 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:24 
     1778#: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:26 
    17711779msgid "Logs record all activity and connection to your blog history. Unless you need to keep this history, consider deleting these logs from time to time." 
    17721780msgstr "" 
     
    18331841msgstr "" 
    18341842 
    1835 #: plugins/maintenance/index.php:92 
     1843#: plugins/maintenance/index.php:96 
    18361844msgid "Maintenance plugin has been successfully configured." 
    18371845msgstr "" 
    18381846 
    1839 #: plugins/maintenance/index.php:103 
     1847#: plugins/maintenance/index.php:107 
    18401848msgid "Never" 
    18411849msgstr "" 
    18421850 
    1843 #: plugins/maintenance/index.php:104 
     1851#: plugins/maintenance/index.php:108 
    18441852msgid "Every week" 
    18451853msgstr "" 
    18461854 
    1847 #: plugins/maintenance/index.php:105 
     1855#: plugins/maintenance/index.php:109 
    18481856msgid "Every two weeks" 
    18491857msgstr "" 
    18501858 
    1851 #: plugins/maintenance/index.php:106 
     1859#: plugins/maintenance/index.php:110 
    18521860msgid "Every month" 
    18531861msgstr "" 
    18541862 
    1855 #: plugins/maintenance/index.php:107 
     1863#: plugins/maintenance/index.php:111 
    18561864msgid "Every two months" 
    18571865msgstr "" 
    18581866 
    1859 #: plugins/maintenance/index.php:140 
     1867#: plugins/maintenance/index.php:144 
    18601868msgid "You have not sufficient permissions to view this page." 
    18611869msgstr "" 
    18621870 
    1863 #: plugins/maintenance/index.php:217 plugins/maintenance/index.php:226 
     1871#: plugins/maintenance/index.php:225 plugins/maintenance/index.php:234 
    18641872msgid "You should execute it now." 
    18651873msgstr "" 
    18661874 
    1867 #: plugins/maintenance/index.php:249 plugins/maintenance/index.php:271 
     1875#: plugins/maintenance/index.php:257 plugins/maintenance/index.php:279 
    18681876msgid "Execute task" 
    18691877msgstr "" 
    18701878 
    1871 #: plugins/maintenance/index.php:252 
     1879#: plugins/maintenance/index.php:260 
    18721880msgid "This may take a very long time." 
    18731881msgstr "" 
    18741882 
    1875 #: plugins/maintenance/index.php:282 plugins/maintenance/index.php:283 
     1883#: plugins/maintenance/index.php:290 plugins/maintenance/index.php:291 
    18761884msgid "Alert settings" 
    18771885msgstr "" 
    18781886 
    1879 #: plugins/maintenance/index.php:286 
     1887#: plugins/maintenance/index.php:294 
    18801888msgid "Activation" 
    18811889msgstr "" 
    18821890 
    1883 #: plugins/maintenance/index.php:289 
     1891#: plugins/maintenance/index.php:297 
    18841892msgid "Display alert messages on late tasks" 
    18851893msgstr "" 
    18861894 
    1887 #: plugins/maintenance/index.php:292 
     1895#: plugins/maintenance/index.php:300 
    18881896#, php-format 
    18891897msgid "You can place list of late tasks on your %s." 
    18901898msgstr "" 
    18911899 
    1892 #: plugins/maintenance/index.php:296 
     1900#: plugins/maintenance/index.php:304 
    18931901msgid "Frequency" 
    18941902msgstr "" 
    18951903 
    1896 #: plugins/maintenance/index.php:300 
     1904#: plugins/maintenance/index.php:308 
    18971905msgid "Use one recall time for all tasks" 
    18981906msgstr "" 
    18991907 
    1900 #: plugins/maintenance/index.php:302 
     1908#: plugins/maintenance/index.php:310 
    19011909msgid "Recall time for all tasks:" 
    19021910msgstr "" 
    19031911 
    1904 #: plugins/maintenance/index.php:308 
     1912#: plugins/maintenance/index.php:316 
    19051913msgid "Use one recall time per task" 
    19061914msgstr "" 
     
    21362144msgstr "" 
    21372145 
    2138 #: plugins/simpleMenu/index.php:142 plugins/simpleMenu/index.php:487 
     2146#: plugins/simpleMenu/index.php:142 plugins/simpleMenu/index.php:488 
    21392147msgid "Label" 
    21402148msgstr "" 
     
    21952203msgstr "" 
    21962204 
    2197 #: plugins/simpleMenu/index.php:361 
     2205#: plugins/simpleMenu/index.php:362 
    21982206msgid "Step #1" 
    21992207msgstr "" 
    22002208 
    2201 #: plugins/simpleMenu/index.php:365 plugins/simpleMenu/index.php:372 
     2209#: plugins/simpleMenu/index.php:366 plugins/simpleMenu/index.php:373 
    22022210msgid "Step #2" 
    22032211msgstr "" 
    22042212 
    2205 #: plugins/simpleMenu/index.php:370 
     2213#: plugins/simpleMenu/index.php:371 
    22062214msgid "Step #3" 
    22072215msgstr "" 
    22082216 
    2209 #: plugins/simpleMenu/index.php:380 
     2217#: plugins/simpleMenu/index.php:381 
    22102218msgid "Add item" 
    22112219msgstr "" 
    22122220 
    2213 #: plugins/simpleMenu/index.php:402 
     2221#: plugins/simpleMenu/index.php:403 
    22142222msgid "Select type" 
    22152223msgstr "" 
    22162224 
    2217 #: plugins/simpleMenu/index.php:403 
     2225#: plugins/simpleMenu/index.php:404 
    22182226msgid "Type of item menu:" 
    22192227msgstr "" 
    22202228 
    2221 #: plugins/simpleMenu/index.php:404 plugins/simpleMenu/index.php:441 
     2229#: plugins/simpleMenu/index.php:405 plugins/simpleMenu/index.php:442 
    22222230msgid "Continue..." 
    22232231msgstr "" 
    22242232 
    2225 #: plugins/simpleMenu/index.php:415 
     2233#: plugins/simpleMenu/index.php:416 
    22262234msgid "Select language:" 
    22272235msgstr "" 
    22282236 
    2229 #: plugins/simpleMenu/index.php:419 
     2237#: plugins/simpleMenu/index.php:420 
    22302238msgid "Select category:" 
    22312239msgstr "" 
    22322240 
    2233 #: plugins/simpleMenu/index.php:423 
     2241#: plugins/simpleMenu/index.php:424 
    22342242msgid "Select month (if necessary):" 
    22352243msgstr "" 
    22362244 
    2237 #: plugins/simpleMenu/index.php:427 
     2245#: plugins/simpleMenu/index.php:428 
    22382246msgid "Select page:" 
    22392247msgstr "" 
    22402248 
    2241 #: plugins/simpleMenu/index.php:431 
     2249#: plugins/simpleMenu/index.php:432 
    22422250msgid "Select tag (if necessary):" 
    22432251msgstr "" 
    22442252 
    2245 #: plugins/simpleMenu/index.php:451 
     2253#: plugins/simpleMenu/index.php:452 
    22462254msgid "Label of item menu:" 
    22472255msgstr "" 
    22482256 
    2249 #: plugins/simpleMenu/index.php:453 
     2257#: plugins/simpleMenu/index.php:454 
    22502258msgid "Description of item menu:" 
    22512259msgstr "" 
    22522260 
    2253 #: plugins/simpleMenu/index.php:455 
     2261#: plugins/simpleMenu/index.php:456 
    22542262msgid "URL of item menu:" 
    22552263msgstr "" 
    22562264 
    2257 #: plugins/simpleMenu/index.php:457 
     2265#: plugins/simpleMenu/index.php:458 
    22582266msgid "Add this item" 
    22592267msgstr "" 
    22602268 
    2261 #: plugins/simpleMenu/index.php:467 
     2269#: plugins/simpleMenu/index.php:468 
    22622270msgid "Add an item" 
    22632271msgstr "" 
    22642272 
    2265 #: plugins/simpleMenu/index.php:479 
     2273#: plugins/simpleMenu/index.php:480 
    22662274msgid "Menu items list" 
    22672275msgstr "" 
    22682276 
    2269 #: plugins/simpleMenu/index.php:516 
     2277#: plugins/simpleMenu/index.php:517 
    22702278msgid "Update menu" 
    22712279msgstr "" 
    22722280 
    2273 #: plugins/simpleMenu/index.php:518 
     2281#: plugins/simpleMenu/index.php:519 
    22742282msgid "Delete selected menu items" 
    22752283msgstr "" 
    22762284 
    2277 #: plugins/simpleMenu/index.php:519 
     2285#: plugins/simpleMenu/index.php:520 
    22782286msgid "Are you sure you want to remove selected menu items?" 
    22792287msgstr "" 
    22802288 
    2281 #: plugins/simpleMenu/index.php:526 
     2289#: plugins/simpleMenu/index.php:527 
    22822290msgid "No menu items so far." 
    22832291msgstr "" 
     
    26572665msgstr "" 
    26582666 
    2659 #: plugins/widgets/index.php:213 plugins/widgets/index.php:242 
     2667#: plugins/widgets/index.php:213 plugins/widgets/index.php:240 
    26602668msgid "Widgets" 
    26612669msgstr "" 
    26622670 
    2663 #: plugins/widgets/index.php:232 
     2671#: plugins/widgets/index.php:230 
    26642672msgid "Are you sure you want to reset sidebars?" 
    26652673msgstr "" 
    26662674 
    2667 #: plugins/widgets/index.php:249 
     2675#: plugins/widgets/index.php:247 
    26682676msgid "Available widgets" 
    26692677msgstr "" 
    26702678 
    2671 #: plugins/widgets/index.php:250 
     2679#: plugins/widgets/index.php:248 
    26722680msgid "Drag widgets from this list to one of the sidebars, for add." 
    26732681msgstr "" 
    26742682 
    2675 #: plugins/widgets/index.php:257 plugins/widgets/index.php:371 
     2683#: plugins/widgets/index.php:255 plugins/widgets/index.php:371 
    26762684msgid "order" 
    26772685msgstr "" 
    26782686 
    2679 #: plugins/widgets/index.php:259 
     2687#: plugins/widgets/index.php:257 
    26802688msgid "Append to:" 
    26812689msgstr "" 
    26822690 
    2683 #: plugins/widgets/index.php:270 
     2691#: plugins/widgets/index.php:268 
    26842692msgid "Add widgets to sidebars" 
    26852693msgstr "" 
    26862694 
    2687 #: plugins/widgets/index.php:277 
     2695#: plugins/widgets/index.php:275 
    26882696msgid "Navigation sidebar" 
    26892697msgstr "" 
    26902698 
    2691 #: plugins/widgets/index.php:283 
     2699#: plugins/widgets/index.php:281 
    26922700msgid "Extra sidebar" 
    26932701msgstr "" 
    26942702 
    2695 #: plugins/widgets/index.php:289 
     2703#: plugins/widgets/index.php:287 
    26962704msgid "Custom sidebar" 
    26972705msgstr "" 
    26982706 
    2699 #: plugins/widgets/index.php:295 
     2707#: plugins/widgets/index.php:293 
    27002708msgid "Update sidebars" 
    27012709msgstr "" 
    27022710 
    2703 #: plugins/widgets/index.php:296 
     2711#: plugins/widgets/index.php:294 
    27042712msgid "Reset sidebars" 
    27052713msgstr "" 
    27062714 
    2707 #: plugins/widgets/index.php:305 
     2715#: plugins/widgets/index.php:303 
    27082716msgid "Widget ID:" 
    27092717msgstr "" 
    27102718 
    2711 #: plugins/widgets/index.php:312 
     2719#: plugins/widgets/index.php:310 
    27122720msgid "No setting for this widget" 
    27132721msgstr "" 
    27142722 
    2715 #: plugins/widgets/index.php:321 
     2723#: plugins/widgets/index.php:319 
    27162724msgid "boolean" 
    27172725msgstr "" 
    27182726 
    2719 #: plugins/widgets/index.php:321 plugins/widgets/index.php:325 
     2727#: plugins/widgets/index.php:319 plugins/widgets/index.php:323 
    27202728msgid "possible values:" 
    27212729msgstr "" 
    27222730 
    2723 #: plugins/widgets/index.php:325 
     2731#: plugins/widgets/index.php:323 
    27242732msgid "listitem" 
    27252733msgstr "" 
    27262734 
    2727 #: plugins/widgets/index.php:330 
     2735#: plugins/widgets/index.php:328 
    27282736msgid "string" 
    27292737msgstr "" 
    27302738 
    2731 #: plugins/widgets/index.php:336 
     2739#: plugins/widgets/index.php:334 
    27322740msgid "Setting name:" 
    27332741msgstr "" 
    27342742 
    2735 #: plugins/widgets/index.php:359 
    2736 msgid "No widget for now." 
    2737 msgstr "" 
    2738  
    2739 #: plugins/widgets/index.php:375 
     2743#: plugins/widgets/index.php:357 
     2744msgid "No widget as far." 
     2745msgstr "" 
     2746 
     2747#: plugins/widgets/index.php:364 plugins/widgets/index.php:375 
    27402748msgid "Up the widget" 
    27412749msgstr "" 
    27422750 
    2743 #: plugins/widgets/index.php:376 
     2751#: plugins/widgets/index.php:365 plugins/widgets/index.php:376 
    27442752msgid "Down the widget" 
     2753msgstr "" 
     2754 
     2755#: plugins/widgets/index.php:377 
     2756msgid "Remove the widget" 
    27452757msgstr "" 
    27462758 
  • locales/fr/main.po

    r2487 r2503  
    1111"Project-Id-Version: Dotclear\n" 
    1212"Report-Msgid-Bugs-To: \n" 
    13 "POT-Creation-Date: 2013-10-17 09:38+0200\n" 
     13"POT-Creation-Date: 2013-10-29 16:28+0100\n" 
    1414"PO-Revision-Date: 2012-08-13 07:13+0000\n" 
    1515"Last-Translator: xave <xave@dotclear.net>\n" 
     
    26182618msgstr "Êtes-vous certain de vouloir supprimer cette sauvegarde ?" 
    26192619 
     2620msgid "Are you sure you want to revert to this backup?" 
     2621msgstr "Êtes-vous certain de vouloir restaurer cette sauvegarde ?" 
     2622 
    26202623msgid "Zip file content" 
    26212624msgstr "Contenu du fichier zip" 
     
    28592862msgstr "Mise à jour" 
    28602863 
     2864msgid "Activate selected plugins" 
     2865msgstr "Activer les plugins sélectionnés" 
     2866 
     2867msgid "Activate all plugins from this list" 
     2868msgstr "Activer tous les plugins de cette liste" 
     2869 
     2870msgid "Deactivate selected plugins" 
     2871msgstr "Désactiver les plugins sélectionnés" 
     2872 
     2873msgid "Deactivate all plugins from this list" 
     2874msgstr "Désactiver tous les plugins de cette liste" 
     2875 
     2876msgid "Update selected plugins" 
     2877msgstr "Mettre à jour les plugins sélectionnés" 
     2878 
     2879msgid "Update all plugins from this list" 
     2880msgstr "Mettre à jour tous les plugins de cette liste" 
     2881 
    28612882msgid "No such plugin." 
    28622883msgstr "Plugin inexistant." 
    28632884 
    2864 msgid "Plugin has been successfully activated." 
    2865 msgid_plural "Plugins have been successfully activated." 
    2866 msgstr[0] "Ce plugin a été désactivé." 
    2867 msgstr[1] "Ces plugins ont été activé." 
    2868  
    2869 msgid "You don't have permissions to deactivate this plugin." 
    2870 msgstr "Vous n'avez pas les permissions pour désactiver ce plugin." 
    2871  
    2872 msgid "Plugin has been successfully deactivated." 
    2873 msgid_plural "Plugins have been successfully deactivated." 
    2874 msgstr[0] "Ce plugin a été désactivé." 
    2875 msgstr[1] "Ces plugins ont été désactivé." 
    2876  
    28772885msgid "You don't have permissions to delete this plugin." 
    28782886msgstr "Vous n'avez pas les permissions pour supprimer ce plugin." 
    28792887 
    2880 msgid "Some plugins have not been deleted." 
     2888msgid "Some plugins have not been delete." 
    28812889msgstr "Certains plugins n'ont pas pu être supprimés." 
    28822890 
    28832891msgid "Plugin has been successfully deleted." 
    2884 msgid_plural "Plugins have been successfully deleted." 
     2892msgid_plural "Plugins have been successuflly deleted." 
    28852893msgstr[0] "Ce plugin a été supprimé." 
    2886 msgstr[1] "Ces plugins ont été supprimé." 
     2894msgstr[1] "Ces plugins ont été supprimés." 
     2895 
     2896msgid "Plugin has been successfully installed." 
     2897msgid_plural "Plugins have been successuflly installed." 
     2898msgstr[0] "Ce plugin a été installé." 
     2899msgstr[1] "Ces plugins ont été installés." 
     2900 
     2901msgid "Plugin has been successfully activated." 
     2902msgid_plural "Plugins have been successuflly activated." 
     2903msgstr[0] "Ce plugin a été activé." 
     2904msgstr[1] "Ces plugins ont été activés." 
     2905 
     2906msgid "Some plugins have not been deactivated." 
     2907msgstr "Certains plugins n'ont pas pu être désactivés." 
     2908 
     2909msgid "Plugin has been successfully deactivated." 
     2910msgid_plural "Plugins have been successuflly deactivated." 
     2911msgstr[0] "Ce plugin a été désactivé." 
     2912msgstr[1] "Ces plugins ont été désactivés." 
    28872913 
    28882914msgid "Plugin has been successfully updated." 
    2889 msgid_plural "Plugins have been successfully updated." 
     2915msgid_plural "Plugins have been successuflly updated." 
    28902916msgstr[0] "Ce plugin a été mis à jour." 
    28912917msgstr[1] "Ces plugins ont été mis à jour." 
    28922918 
    2893 msgid "Plugin has been successfully installed." 
    2894 msgid_plural "Plugins have been successfully installed." 
    2895 msgstr[0] "Ce plugin a été installé." 
    2896 msgstr[1] "Ces plugins ont été installé." 
    2897  
    2898 msgid "Activate selected plugins" 
    2899 msgstr "Activer les plugins sélectionnés" 
    2900  
    2901 msgid "Activate all plugins from this list" 
    2902 msgstr "Activer tous les plugins de cette liste" 
    2903  
    2904 msgid "Plugins have been successfully activated." 
    2905 msgstr "Ces plugins ont été activés." 
    2906  
    2907 msgid "Deactivate selected plugins" 
    2908 msgstr "Désactiver les plugins sélectionnés" 
    2909  
    2910 msgid "Deactivate all plugins from this list" 
    2911 msgstr "Désactiver tous les plugins de cette liste" 
    2912  
    2913 msgid "Plugins have been successfully deactivated." 
    2914 msgstr "Ces plugins ont été désactivés." 
    2915  
    2916 msgid "Some plugins have not been deactivated." 
    2917 msgstr "Certains plugins n'ont pas pu être désactivés." 
    2918  
    2919 msgid "Update selected plugins" 
    2920 msgstr "Mettre à jour les plugins sélectionnés" 
    2921  
    2922 msgid "Update all plugins from this list" 
    2923 msgstr "Mettre à jour tous les plugins de cette liste" 
    2924  
    2925 msgid "Plugins have been successfully updated." 
    2926 msgstr "Ces plugins ont été mis à jour." 
    2927  
    29282919msgid "Zip file path:" 
    29292920msgstr "Chemin du fichier zip :" 
     
    30032994msgstr "Ce thème a été sélectionné." 
    30042995 
    3005 msgid "Theme has been successfully deactivated." 
    3006 msgid_plural "Themes have been successfully deactivated." 
     2996msgid "Theme has been successfully activated." 
     2997msgid_plural "Themes have been successuflly activated." 
    30072998msgstr[0] "Ce thème a été activé." 
    30082999msgstr[1] "Ces thèmes ont été activé." 
    30093000 
    3010 msgid "You don't have permissions to deactivate this theme." 
    3011 msgstr "Vous n'avez pas les permissions pour désactiver ce thème." 
    3012  
    30133001msgid "Some themes have not been deactivated." 
    30143002msgstr "Certains thèmes n'ont pas pu être desactivé." 
    30153003 
    30163004msgid "Theme has been successfully deactivated." 
    3017 msgid_plural "Themes have been successfully deactivated." 
     3005msgid_plural "Themes have been successuflly deactivated." 
    30183006msgstr[0] "Ce thème a été désactivé." 
    30193007msgstr[1] "Ces thèmes ont été désactivé." 
     
    30263014 
    30273015msgid "Theme has been successfully deleted." 
    3028 msgid_plural "Themes have been successfully deleted." 
     3016msgid_plural "Themes have been successuflly deleted." 
    30293017msgstr[0] "Ce thème a été supprimé." 
    30303018msgstr[1] "Ces thèmes ont été supprimé." 
    30313019 
     3020msgid "Theme has been successfully installed." 
     3021msgid_plural "Themes have been successuflly installed." 
     3022msgstr[0] "Ce thème a été installé." 
     3023msgstr[1] "Ces thèmes ont été installé." 
     3024 
    30323025msgid "Theme has been successfully updated." 
    3033 msgstr "Ce thème a été mis à jour." 
    3034  
    3035 msgid "Update all theme from this list" 
    3036 msgstr "Mettre à jour tous les thèmes de cette liste" 
    3037  
    3038 msgid "Theme has been successfully updated." 
    3039 msgid_plural "Themes have been successfully updated." 
     3026msgid_plural "Themes have been successuflly updated." 
    30403027msgstr[0] "Ce thème a été mis à jour." 
    30413028msgstr[1] "Ces thèmes ont été mis à jour." 
    3042  
    3043 msgid "Theme has been successfully installed." 
    3044 msgid_plural "Themes have been successfully installed." 
    3045 msgstr[0] "Ce thème a été installé." 
    3046 msgstr[1] "Ces thèmes ont été installé." 
    30473029 
    30483030msgid "First page" 
     
    33783360msgstr "Impossible de lire le nouveau fichier _define.php." 
    33793361 
     3362msgid "No such module." 
     3363msgstr "Module inexistant." 
     3364 
    33803365msgid "Cannot remove module files" 
    33813366msgstr "Impossible de supprimer les fichiers du module" 
     
    36653650msgstr "L'erreur suivante a été rencontrée lors de la tentative d'accès à la base de données :" 
    36663651 
     3652#~ msgid "You don't have permissions to deactivate this plugin." 
     3653#~ msgstr "Vous n'avez pas les permissions pour désactiver ce plugin." 
     3654 
     3655#~ msgid "Plugins have been successfully activated." 
     3656#~ msgstr "Ces plugins ont été activés." 
     3657 
     3658#~ msgid "Plugins have been successfully deactivated." 
     3659#~ msgstr "Ces plugins ont été désactivés." 
     3660 
     3661#~ msgid "Plugins have been successfully updated." 
     3662#~ msgstr "Ces plugins ont été mis à jour." 
     3663 
     3664#~ msgid "You don't have permissions to deactivate this theme." 
     3665#~ msgstr "Vous n'avez pas les permissions pour désactiver ce thème." 
     3666 
     3667#~ msgid "Update all theme from this list" 
     3668#~ msgstr "Mettre à jour tous les thèmes de cette liste" 
     3669 
    36673670#~ msgid "Title (optional)" 
    36683671#~ msgstr "Titre (optionnel)" 
  • locales/fr/plugins.po

    r2485 r2503  
    1111"Project-Id-Version: Dotclear\n" 
    1212"Report-Msgid-Bugs-To: \n" 
    13 "POT-Creation-Date: 2013-10-23 13:44+0000\n" 
     13"POT-Creation-Date: 2013-10-29 16:28+0100\n" 
    1414"PO-Revision-Date: 2012-11-06 10:04+0100\n" 
    1515"Last-Translator: Franck Paul <carnet.franck.paul@gmail.com>\n" 
     
    19681968msgstr "Descendre le widget" 
    19691969 
     1970msgid "Remove the widget" 
     1971msgstr "Retirer le widget" 
     1972 
    19701973msgid "Remove widget" 
    19711974msgstr "Retirer le widget" 
  • locales/fr/public.po

    r2386 r2503  
    242242msgstr "Lire" 
    243243 
    244 #~ msgid "in" 
    245 #~ msgstr "dans" 
    246  
    247 #~ msgid "In" 
    248 #~ msgstr "Dans" 
     244msgid "in" 
     245msgstr "dans" 
     246 
     247msgid "In" 
     248msgstr "Dans" 
  • tests/functional/fixtures/tabs.html

    r2010 r2497  
    77<div class="multi-part" id="user-favorites" title="My favorites"> 
    88  <p>My favorites</p> 
    9 </div 
     9</div> 
Note: See TracChangeset for help on using the changeset viewer.

Sites map