Changes in [2496:e33dcbc18e36:2504:d81b0e204d62]
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/_charte.php
r2496 r2504 116 116 <h3 id="onglets">Onglets</h3> 117 117 <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><div class="multi-part"></code>. Ils seront alors automatiquement présentés sous forme d'onglets.</p> 118 119 119 120 <h3 id="multi-colonnage">Multi-colonnage</h3> … … 337 338 <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> 338 339 <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><ul class="pseudo-tabs"></code> et des <code><li></code>.</p> 339 341 <hr style="margin-bottom: .75em;" /> 340 342 <ul class="pseudo-tabs"> … … 549 551 550 552 <h2 id="iconset">Icônes</h2> 551 <p>Les icônes utilisées dans l'administration sont présentes en deux formats 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 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 553 555 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 555 557 par la DC Team. Nous les avons nommées <em>Traviata</em>. La palette de couleurs utilisée est la suivante :</p> 556 558 <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 : #137bbb - Vert : #9ac123 - Rouge : #c44d58 - Bleu ciel : #a2cbe9 - Gris clair : #ececec - 559 <p class="txt-center">Bleu : #137bbb - Vert : #9ac123 - Rouge : #c44d58 - Bleu ciel : #a2cbe9 - Gris clair : #ececec - 558 560 Gris moyen : #b2b2b2 - Gris foncé : #676e78.</p> 559 561 </div><!-- /content --> -
admin/blog_theme.php
r2487 r2499 76 76 $list->displayConfiguration(); 77 77 78 dcPage::helpBlock('core_blog_theme_conf'); 78 79 dcPage::close(); 79 80 -
admin/comments.php
r2166 r2498 138 138 $comments_actions_page = new dcCommentsActionsPage($core,'comments.php'); 139 139 140 $comments_actions_page->process(); 140 if ($comments_actions_page->process()) { 141 return; 142 } 141 143 142 144 /* Get comments -
admin/js/_update.js
r1803 r2503 3 3 return window.confirm(dotclear.msg.confirm_delete_backup); 4 4 }); 5 $('form input[type=submit][name=b_revert]').click(function(){ 6 return window.confirm(dotclear.msg.confirm_revert_backup); 7 }); 5 8 }); -
admin/plugins.php
r2487 r2499 51 51 $list->displayConfiguration(); 52 52 53 dcPage::helpBlock('core_plugins_conf'); 53 54 dcPage::close(); 54 55 -
admin/update.php
r2382 r2503 63 63 { 64 64 $b_file = $_POST['backup_file']; 65 65 66 66 try 67 67 { … … 73 73 http::redirect($p_url.'?tab=files'); 74 74 } 75 75 76 76 if (!empty($_POST['b_revert'])) 77 77 { … … 94 94 { 95 95 $updater->setForcedFiles('inc/digests'); 96 96 97 97 switch ($step) 98 98 { … … 133 133 { 134 134 $msg = $e->getMessage(); 135 135 136 136 if ($e->getCode() == dcUpdate::ERR_FILES_CHANGED) 137 137 { … … 154 154 'Please fix this or try to <a href="http://dotclear.org/download">update manually</a>.'); 155 155 } 156 156 157 157 if (isset($e->bad_files)) { 158 158 $msg .= … … 161 161 '</strong></li></ul>'; 162 162 } 163 163 164 164 $core->error->add($msg); 165 165 166 166 $core->callBehavior('adminDCUpdateException',$e); 167 167 } … … 171 171 -------------------------------------------------------- */ 172 172 dcPage::open(__('Dotclear update'), 173 (!$step ? 173 (!$step ? 174 174 dcPage::jsPageTabs($default_tab). 175 175 dcPage::jsLoad('js/_update.js') … … 206 206 __('Information about this version').') <img src="images/outgoing.png" alt=""/></a>' : ''). 207 207 '</p>'. 208 208 209 209 '<p>'.__('To upgrade your Dotclear installation simply click on the following button. '. 210 210 'A backup file of your current installation will be created in your root directory.').'</p>'. … … 215 215 } 216 216 echo '</div>'; 217 217 218 218 if (!empty($archives)) 219 219 { … … 224 224 '<p>'.__('The following files are backups of previously updates. '. 225 225 'You can revert your previous installation or delete theses files.').'</p>'; 226 226 227 227 echo '<form action="'.$p_url.'" method="post">'; 228 228 foreach ($archives as $v) { … … 231 231 html::escapeHTML($v).'</label></p>'; 232 232 } 233 233 234 234 echo 235 235 '<p><strong>'.__('Please note that reverting your Dotclear version may have some '. … … 256 256 dcPage::helpBlock('core_update'); 257 257 dcPage::close(); 258 ?> -
inc/admin/lib.dc.page.php
r2487 r2503 16 16 class dcPage 17 17 { 18 private static $loaded_js =array();18 private static $loaded_js = array(); 19 19 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", 24 24 "static" => "static-msg"); 25 25 … … 29 29 global $core; 30 30 31 if ($core->blog && $core->auth->check($permissions,$core->blog->id)) 32 { 31 if ($core->blog && $core->auth->check($permissions,$core->blog->id)) { 33 32 return; 34 33 } … … 114 113 $user_ui_hide_std_favicon = $core->auth->user_prefs->interface->hide_std_favicon; 115 114 if (!$user_ui_hide_std_favicon) { 116 echo 115 echo 117 116 '<link rel="icon" type="image/png" href="images/favicon96-login.png" />'. 118 117 '<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />'; … … 213 212 $notifications = array(); 214 213 } 215 214 216 215 $n = array_merge($options,array('class' => $class,'ts' => time(), 'text' => $message)); 217 216 if ($type != "static") { … … 566 565 "</script>\n"; 567 566 } 568 567 569 568 public static function jsCommon() 570 569 { … … 597 596 self::jsVar('dotclear.img_menu_on','images/menu_on.png'). 598 597 self::jsVar('dotclear.img_menu_off','images/menu_off.png'). 599 598 600 599 self::jsVar('dotclear.img_plus_theme_src','images/plus-theme.png'). 601 600 self::jsVar('dotclear.img_plus_theme_alt',__('uncover')). … … 677 676 self::jsVar('dotclear.msg.confirm_delete_backup', 678 677 __('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?')). 679 680 self::jsVar('dotclear.msg.zip_file_content', 680 681 __('Zip file content')). … … 746 747 $default = "'".html::escapeJS($default)."'"; 747 748 } 748 749 749 750 return 750 751 self::jsLoad('js/jquery/jquery.pageTabs.js'). -
locales/_pot/main.pot
r2432 r2503 8 8 "Project-Id-Version: Dotclear 2\n" 9 9 "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" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 97 97 #: admin/auth.php:350 admin/blog_pref.php:667 admin/comment.php:222 98 98 #: admin/install/index.php:319 admin/post.php:683 admin/preferences.php:371 99 #: admin/user.php:264 inc/admin/lib.dc.page.php:62 299 #: admin/user.php:264 inc/admin/lib.dc.page.php:621 100 100 msgid "Email:" 101 101 msgstr "" … … 173 173 #: admin/blog.php:72 admin/blog_del.php:56 admin/blog_pref.php:278 174 174 #: admin/blogs.php:89 admin/langs.php:145 admin/plugin.php:86 175 #: admin/plugins.php:8 3admin/update.php:179 admin/user.php:188175 #: admin/plugins.php:84 admin/update.php:179 admin/user.php:188 176 176 #: admin/users.php:110 admin/users_actions.php:138 admin/users_actions.php:145 177 177 msgid "System" … … 196 196 #: admin/post.php:552 admin/post.php:679 admin/post.php:691 admin/user.php:209 197 197 #: admin/user.php:224 admin/user.php:236 admin/user.php:308 198 #: admin/users_actions.php:308 inc/admin/lib.moduleslist.php:1 022199 #: inc/admin/lib.moduleslist.php:1 024 inc/admin/lib.moduleslist.php:1034200 #: inc/admin/lib.moduleslist.php:1 036198 #: 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 201 201 msgid "Required field" 202 202 msgstr "" … … 232 232 #: admin/blog_del.php:40 admin/langs.php:66 admin/langs.php:109 233 233 #: admin/user.php:75 admin/users_actions.php:99 234 #: inc/admin/lib.moduleslist.php: 972 inc/admin/lib.moduleslist.php:1579234 #: inc/admin/lib.moduleslist.php:1145 inc/admin/lib.moduleslist.php:1907 235 235 msgid "Password verification failed" 236 236 msgstr "" … … 260 260 #: admin/blog_del.php:73 admin/langs.php:242 admin/langs.php:259 261 261 #: admin/user.php:308 admin/users_actions.php:308 262 #: inc/admin/lib.moduleslist.php:1 024 inc/admin/lib.moduleslist.php:1036262 #: inc/admin/lib.moduleslist.php:1204 inc/admin/lib.moduleslist.php:1216 263 263 msgid "Your password:" 264 264 msgstr "" … … 482 482 msgstr "" 483 483 484 #: admin/blog_pref.php:452 admin/comments.php:16 7 admin/comments.php:171484 #: admin/blog_pref.php:452 admin/comments.php:169 admin/comments.php:173 485 485 msgid "Comments and trackbacks" 486 486 msgstr "" … … 630 630 #: inc/admin/actions/class.dcactionposts.php:374 631 631 #: inc/admin/actions/class.dcactionposts.php:433 632 #: inc/admin/lib.moduleslist.php:1 155632 #: inc/admin/lib.moduleslist.php:1335 633 633 msgid "Save" 634 634 msgstr "" … … 691 691 msgstr "" 692 692 693 #: admin/blog_theme.php:60 admin/blog_theme.php:70 admin/blog_theme.php:10 4693 #: admin/blog_theme.php:60 admin/blog_theme.php:70 admin/blog_theme.php:105 694 694 #: inc/admin/class.dc.favorites.php:449 inc/admin/prepend.php:234 695 695 msgid "Blog appearance" … … 700 700 msgstr "" 701 701 702 #: admin/blog_theme.php:9 3702 #: admin/blog_theme.php:94 703 703 msgid "Themes management" 704 704 msgstr "" 705 705 706 #: admin/blog_theme.php:11 5 admin/blog_theme.php:116706 #: admin/blog_theme.php:116 admin/blog_theme.php:117 707 707 msgid "Update themes" 708 708 msgstr "" 709 709 710 #: admin/blog_theme.php:11 8710 #: admin/blog_theme.php:119 711 711 #, php-format 712 712 msgid "There is one theme to update available from repository." … … 715 715 msgstr[1] "" 716 716 717 #: admin/blog_theme.php:13 3 admin/blog_theme.php:212 admin/plugins.php:139718 #: admin/plugins.php:21 7717 #: admin/blog_theme.php:134 admin/blog_theme.php:213 admin/plugins.php:140 718 #: admin/plugins.php:218 719 719 #, php-format 720 720 msgid "Visit %s repository, the resources center for Dotclear." 721 721 msgstr "" 722 722 723 #: admin/blog_theme.php:14 7 admin/blog_theme.php:148723 #: admin/blog_theme.php:148 admin/blog_theme.php:149 724 724 msgid "Installed themes" 725 725 msgstr "" 726 726 727 #: admin/blog_theme.php:1 49727 #: admin/blog_theme.php:150 728 728 msgid "You can configure and manage installed themes from this list." 729 729 msgstr "" 730 730 731 #: admin/blog_theme.php:1 69 admin/blog_theme.php:170731 #: admin/blog_theme.php:170 admin/blog_theme.php:171 732 732 msgid "Deactivated themes" 733 733 msgstr "" 734 734 735 #: admin/blog_theme.php:17 1735 #: admin/blog_theme.php:172 736 736 msgid "Deactivated themes are installed but not usable. You can activate them from here." 737 737 msgstr "" 738 738 739 #: admin/blog_theme.php:19 4739 #: admin/blog_theme.php:195 740 740 msgid "Add themes" 741 741 msgstr "" 742 742 743 #: admin/blog_theme.php:19 5743 #: admin/blog_theme.php:196 744 744 msgid "Add themes from repository" 745 745 msgstr "" 746 746 747 #: admin/blog_theme.php:22 2 admin/plugins.php:227747 #: admin/blog_theme.php:223 admin/plugins.php:228 748 748 msgid "Install or upgrade manually" 749 749 msgstr "" 750 750 751 #: admin/blog_theme.php:22 3751 #: admin/blog_theme.php:224 752 752 msgid "Add themes from a package" 753 753 msgstr "" 754 754 755 #: admin/blog_theme.php:22 4755 #: admin/blog_theme.php:225 756 756 msgid "You can install themes by uploading or downloading zip files." 757 757 msgstr "" … … 779 779 msgstr "" 780 780 781 #: admin/blogs.php:75 admin/comments.php:15 5admin/posts.php:233781 #: admin/blogs.php:75 admin/comments.php:157 admin/posts.php:233 782 782 #: admin/users.php:95 783 783 msgid "Show filters and display options" 784 784 msgstr "" 785 785 786 #: admin/blogs.php:82 admin/comments.php:16 3admin/posts.php:241786 #: admin/blogs.php:82 admin/comments.php:165 admin/posts.php:241 787 787 #: admin/users.php:103 788 788 msgid "Cancel filters and display options" … … 805 805 msgstr "" 806 806 807 #: admin/blogs.php:110 admin/comments.php:22 0admin/posts.php:266807 #: admin/blogs.php:110 admin/comments.php:222 admin/posts.php:266 808 808 #: admin/users.php:131 809 809 msgid "Filters" 810 810 msgstr "" 811 811 812 #: admin/blogs.php:111 admin/users.php:132 inc/admin/lib.dc.page.php:27 1812 #: admin/blogs.php:111 admin/users.php:132 inc/admin/lib.dc.page.php:270 813 813 msgid "Search:" 814 814 msgstr "" 815 815 816 #: admin/blogs.php:116 admin/comments.php:23 5admin/posts.php:287816 #: admin/blogs.php:116 admin/comments.php:237 admin/posts.php:287 817 817 #: admin/users.php:137 818 818 msgid "Display options" 819 819 msgstr "" 820 820 821 #: admin/blogs.php:117 admin/comments.php:23 6admin/posts.php:288821 #: admin/blogs.php:117 admin/comments.php:238 admin/posts.php:288 822 822 #: admin/users.php:138 823 823 msgid "Order by:" 824 824 msgstr "" 825 825 826 #: admin/blogs.php:119 admin/comments.php:2 38admin/posts.php:290826 #: admin/blogs.php:119 admin/comments.php:240 admin/posts.php:290 827 827 #: admin/users.php:140 828 828 msgid "Sort:" … … 837 837 msgstr "" 838 838 839 #: admin/blogs.php:126 admin/comments.php:24 6admin/posts.php:298839 #: admin/blogs.php:126 admin/comments.php:248 admin/posts.php:298 840 840 #: admin/users.php:147 841 841 msgid "Apply filters and display options" … … 908 908 msgstr "" 909 909 910 #: admin/categories.php:80 admin/categories.php:12 5910 #: admin/categories.php:80 admin/categories.php:127 911 911 msgid "Categories have been successfully reordered." 912 912 msgstr "" … … 916 916 msgstr "" 917 917 918 #: admin/categories.php:11 3 admin/categories.php:117admin/category.php:167918 #: admin/categories.php:115 admin/categories.php:119 admin/category.php:167 919 919 #: inc/admin/class.dc.favorites.php:431 inc/admin/prepend.php:243 920 920 msgid "Categories" 921 921 msgstr "" 922 922 923 #: admin/categories.php:12 2923 #: admin/categories.php:124 924 924 #: inc/libs/clearbricks/tests/unit/common/lib.l10n.php:66 925 925 #: inc/libs/clearbricks/tests/unit/common/lib.l10n.php:76 … … 933 933 msgstr[1] "" 934 934 935 #: admin/categories.php:1 28935 #: admin/categories.php:130 936 936 msgid "Entries have been successfully moved to the category you choose." 937 937 msgstr "" 938 938 939 #: admin/categories.php:13 4admin/category.php:163939 #: admin/categories.php:136 admin/category.php:163 940 940 msgid "New category" 941 941 msgstr "" 942 942 943 #: admin/categories.php:14 0943 #: admin/categories.php:142 944 944 msgid "No category so far." 945 945 msgstr "" 946 946 947 #: admin/categories.php:16 6947 #: admin/categories.php:168 948 948 #, php-format 949 949 msgid "%d entries" 950 950 msgstr "" 951 951 952 #: admin/categories.php:16 6inc/admin/class.dc.favorites.php:486952 #: admin/categories.php:168 inc/admin/class.dc.favorites.php:486 953 953 #, php-format 954 954 msgid "%d entry" … … 957 957 msgstr[1] "" 958 958 959 #: admin/categories.php:16 7959 #: admin/categories.php:169 960 960 msgid "total:" 961 961 msgstr "" 962 962 963 #: admin/categories.php:1 68admin/category.php:210 admin/preferences.php:374963 #: admin/categories.php:170 admin/category.php:210 admin/preferences.php:374 964 964 #: admin/user.php:269 965 965 msgid "URL:" 966 966 msgstr "" 967 967 968 #: admin/categories.php:17 5968 #: admin/categories.php:177 969 969 msgid "Move entries to" 970 970 msgstr "" 971 971 972 #: admin/categories.php:17 7admin/media.php:388 admin/media_item.php:398973 #: inc/admin/lib.dc.page.php:27 2inc/admin/lib.moduleslist.php:263972 #: 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 974 974 msgid "OK" 975 975 msgstr "" 976 976 977 #: admin/categories.php:18 6977 #: admin/categories.php:188 978 978 msgid "Delete category" 979 979 msgstr "" 980 980 981 #: admin/categories.php:20 2981 #: admin/categories.php:204 982 982 msgid "To rearrange categories order, move items by drag and drop, then click on “Save categories order” button." 983 983 msgstr "" 984 984 985 #: admin/categories.php:20 7985 #: admin/categories.php:209 986 986 msgid "Save categories order" 987 987 msgstr "" 988 988 989 #: admin/categories.php:21 4989 #: admin/categories.php:216 990 990 msgid "Reorder all categories on the top level" 991 991 msgstr "" … … 1113 1113 msgstr "" 1114 1114 1115 #: admin/comment.php:210 admin/comments.php:23 0 inc/admin/lib.dc.page.php:6241115 #: admin/comment.php:210 admin/comments.php:232 inc/admin/lib.dc.page.php:623 1116 1116 msgid "IP address:" 1117 1117 msgstr "" … … 1125 1125 msgstr "" 1126 1126 1127 #: admin/comment.php:218 admin/comments.php:2 28admin/posts.php:2671128 #: inc/admin/lib.dc.page.php:69 3 inc/admin/lib.moduleslist.php:6741127 #: 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 1129 1129 msgid "Author:" 1130 1130 msgstr "" 1131 1131 1132 #: admin/comment.php:227 admin/post.php:687 inc/admin/lib.dc.page.php:6 201132 #: admin/comment.php:227 admin/post.php:687 inc/admin/lib.dc.page.php:619 1133 1133 msgid "Web site:" 1134 1134 msgstr "" 1135 1135 1136 #: admin/comment.php:231 admin/comments.php:22 3admin/posts.php:2711136 #: admin/comment.php:231 admin/comments.php:225 admin/posts.php:271 1137 1137 msgid "Status:" 1138 1138 msgstr "" … … 1147 1147 #: inc/admin/actions/class.dcactionposts.php:142 1148 1148 #: inc/admin/actions/class.dcactionposts.php:143 1149 #: inc/admin/lib.moduleslist.php: 7691149 #: inc/admin/lib.moduleslist.php:812 1150 1150 msgid "Delete" 1151 1151 msgstr "" … … 1175 1175 msgstr "" 1176 1176 1177 #: admin/comments.php:17 5inc/admin/actions/class.dcactioncomments.php:1521177 #: admin/comments.php:177 inc/admin/actions/class.dcactioncomments.php:152 1178 1178 msgid "Selected comments have been successfully updated." 1179 1179 msgstr "" 1180 1180 1181 #: admin/comments.php:17 7inc/admin/actions/class.dcactioncomments.php:1721181 #: admin/comments.php:179 inc/admin/actions/class.dcactioncomments.php:172 1182 1182 msgid "Selected comments have been successfully deleted." 1183 1183 msgstr "" 1184 1184 1185 #: admin/comments.php:18 31185 #: admin/comments.php:185 1186 1186 msgid "Spam comments have been successfully deleted." 1187 1187 msgstr "" 1188 1188 1189 #: admin/comments.php:19 51189 #: admin/comments.php:197 1190 1190 msgid "You have one spam comment." 1191 1191 msgstr "" 1192 1192 1193 #: admin/comments.php:19 61193 #: admin/comments.php:198 1194 1194 msgid "Show it." 1195 1195 msgstr "" 1196 1196 1197 #: admin/comments.php: 1981197 #: admin/comments.php:200 1198 1198 #, php-format 1199 1199 msgid "You have %s spam comments." 1200 1200 msgstr "" 1201 1201 1202 #: admin/comments.php: 1991202 #: admin/comments.php:201 1203 1203 msgid "Show them." 1204 1204 msgstr "" 1205 1205 1206 #: admin/comments.php:20 61206 #: admin/comments.php:208 1207 1207 msgid "Delete all spams" 1208 1208 msgstr "" 1209 1209 1210 #: admin/comments.php:21 61210 #: admin/comments.php:218 1211 1211 msgid "Filter comments and trackbacks list" 1212 1212 msgstr "" 1213 1213 1214 #: admin/comments.php:22 11214 #: admin/comments.php:223 1215 1215 msgid "Type:" 1216 1216 msgstr "" 1217 1217 1218 #: admin/comments.php:24 21218 #: admin/comments.php:244 1219 1219 msgid "comments per page" 1220 1220 msgstr "" 1221 1221 1222 #: admin/comments.php:2 59admin/post.php:661 admin/search.php:1531222 #: admin/comments.php:261 admin/post.php:661 admin/search.php:153 1223 1223 msgid "Selected comments action:" 1224 1224 msgstr "" 1225 1225 1226 #: admin/comments.php:26 0admin/users_actions.php:1471226 #: admin/comments.php:262 admin/users_actions.php:147 1227 1227 msgid "Actions" 1228 1228 msgstr "" 1229 1229 1230 #: admin/comments.php:26 2admin/post.php:666 admin/post.php:7501230 #: admin/comments.php:264 admin/post.php:666 admin/post.php:750 1231 1231 #: admin/posts.php:313 admin/search.php:127 admin/search.php:155 1232 #: admin/users.php:164 inc/admin/lib.dc.page.php:8 51232 #: admin/users.php:164 inc/admin/lib.dc.page.php:84 1233 1233 #: inc/admin/lib.pager.php:114 1234 1234 msgid "ok" … … 1236 1236 1237 1237 #: 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:25 91238 #: inc/admin/class.dc.favorites.php:476 inc/admin/lib.dc.page.php:258 1239 1239 msgid "Global help" 1240 1240 msgstr "" … … 1317 1317 msgstr "" 1318 1318 1319 #: admin/index.php:263 admin/install/index.php:349 admin/plugins.php:9 11319 #: admin/index.php:263 admin/install/index.php:349 admin/plugins.php:92 1320 1320 msgid "Following plugins have been installed:" 1321 1321 msgstr "" 1322 1322 1323 #: admin/index.php:271 admin/install/index.php:357 admin/plugins.php:10 31323 #: admin/index.php:271 admin/install/index.php:357 admin/plugins.php:104 1324 1324 msgid "Following plugins have not been installed:" 1325 1325 msgstr "" … … 1520 1520 1521 1521 #: admin/install/index.php:299 admin/install/index.php:393 1522 #: admin/install/wizard.php:161 inc/admin/lib.dc.page.php:1 801523 #: inc/admin/lib.dc.page.php:35 91522 #: admin/install/wizard.php:161 inc/admin/lib.dc.page.php:179 1523 #: inc/admin/lib.dc.page.php:358 1524 1524 msgid "Errors:" 1525 1525 msgstr "" … … 1700 1700 msgstr "" 1701 1701 1702 #: admin/langs.php:115 inc/admin/lib.moduleslist.php: 9801703 #: inc/admin/lib.moduleslist.php:1 5871702 #: admin/langs.php:115 inc/admin/lib.moduleslist.php:1153 1703 #: inc/admin/lib.moduleslist.php:1915 1704 1704 msgid "Unable to move uploaded file." 1705 1705 msgstr "" … … 1730 1730 msgstr "" 1731 1731 1732 #: admin/langs.php:189 inc/admin/lib.moduleslist.php:56 01732 #: admin/langs.php:189 inc/admin/lib.moduleslist.php:568 1733 1733 msgid "Action" 1734 1734 msgstr "" … … 1760 1760 msgstr "" 1761 1761 1762 #: admin/langs.php:255 inc/admin/lib.moduleslist.php:1 0211762 #: admin/langs.php:255 inc/admin/lib.moduleslist.php:1201 1763 1763 msgid "Upload a zip file" 1764 1764 msgstr "" … … 1847 1847 1848 1848 #: 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:93 31849 #: admin/post.php:594 admin/post_media.php:76 inc/admin/lib.dc.page.php:938 1850 1850 msgid "Cancel" 1851 1851 msgstr "" … … 1936 1936 msgstr "" 1937 1937 1938 #: admin/media.php:487 inc/admin/lib.dc.page.php:93 11938 #: admin/media.php:487 inc/admin/lib.dc.page.php:936 1939 1939 msgid "Choose file" 1940 1940 msgstr "" 1941 1941 1942 #: admin/media.php:488 inc/admin/lib.dc.page.php:93 21942 #: admin/media.php:488 inc/admin/lib.dc.page.php:937 1943 1943 msgid "Choose files" 1944 1944 msgstr "" … … 1957 1957 1958 1958 #: admin/media.php:502 admin/preferences.php:17 1959 #: inc/admin/class.dc.favorites.php:400 inc/admin/lib.dc.page.php:15 11959 #: inc/admin/class.dc.favorites.php:400 inc/admin/lib.dc.page.php:150 1960 1960 msgid "My preferences" 1961 1961 msgstr "" … … 1969 1969 msgstr "" 1970 1970 1971 #: admin/media.php:508 inc/admin/lib.dc.page.php:9 351972 #: inc/admin/lib.moduleslist.php:1 0261971 #: admin/media.php:508 inc/admin/lib.dc.page.php:940 1972 #: inc/admin/lib.moduleslist.php:1206 1973 1973 msgid "Upload" 1974 1974 msgstr "" … … 2212 2212 msgstr "" 2213 2213 2214 #: admin/media_item.php:627 inc/admin/lib.dc.page.php:9 362214 #: admin/media_item.php:627 inc/admin/lib.dc.page.php:941 2215 2215 msgid "Send" 2216 2216 msgstr "" … … 2232 2232 msgstr "" 2233 2233 2234 #: admin/plugins.php:37 admin/plugins.php:45 admin/plugins.php:7 42235 #: admin/plugins.php:8 4inc/admin/class.dc.favorites.php:4662234 #: admin/plugins.php:37 admin/plugins.php:45 admin/plugins.php:75 2235 #: admin/plugins.php:85 inc/admin/class.dc.favorites.php:466 2236 2236 #: inc/admin/prepend.php:265 2237 2237 msgid "Plugins management" … … 2242 2242 msgstr "" 2243 2243 2244 #: admin/plugins.php:12 1 admin/plugins.php:1222244 #: admin/plugins.php:122 admin/plugins.php:123 2245 2245 msgid "Update plugins" 2246 2246 msgstr "" 2247 2247 2248 #: admin/plugins.php:12 42248 #: admin/plugins.php:125 2249 2249 #, php-format 2250 2250 msgid "There is one plugin to update available from repository." … … 2253 2253 msgstr[1] "" 2254 2254 2255 #: admin/plugins.php:1 49 admin/plugins.php:1562255 #: admin/plugins.php:150 admin/plugins.php:157 2256 2256 msgid "Installed plugins" 2257 2257 msgstr "" 2258 2258 2259 #: admin/plugins.php:15 62259 #: admin/plugins.php:157 2260 2260 msgid "Activated plugins" 2261 2261 msgstr "" 2262 2262 2263 #: admin/plugins.php:15 72263 #: admin/plugins.php:158 2264 2264 msgid "You can configure and manage installed plugins from this list." 2265 2265 msgstr "" 2266 2266 2267 #: admin/plugins.php:17 42267 #: admin/plugins.php:175 2268 2268 msgid "Deactivated plugins" 2269 2269 msgstr "" 2270 2270 2271 #: admin/plugins.php:17 52271 #: admin/plugins.php:176 2272 2272 msgid "Deactivated plugins are installed but not usable. You can activate them from here." 2273 2273 msgstr "" 2274 2274 2275 #: admin/plugins.php: 1992275 #: admin/plugins.php:200 2276 2276 msgid "Add plugins" 2277 2277 msgstr "" 2278 2278 2279 #: admin/plugins.php:20 02279 #: admin/plugins.php:201 2280 2280 msgid "Add plugins from repository" 2281 2281 msgstr "" 2282 2282 2283 #: admin/plugins.php:22 82283 #: admin/plugins.php:229 2284 2284 msgid "Add plugins from a package" 2285 2285 msgstr "" 2286 2286 2287 #: admin/plugins.php:2 292287 #: admin/plugins.php:230 2288 2288 msgid "You can install plugins by uploading or downloading zip files." 2289 2289 msgstr "" 2290 2290 2291 #: admin/plugins.php:24 32291 #: admin/plugins.php:244 2292 2292 msgid "Some functions are disabled, please give write access to your plugins directory to enable them." 2293 2293 msgstr "" … … 2335 2335 msgstr "" 2336 2336 2337 #: admin/post.php:78 admin/post.php:567 inc/admin/lib.dc.page.php:6 302337 #: admin/post.php:78 admin/post.php:567 inc/admin/lib.dc.page.php:629 2338 2338 msgid "Edit entry" 2339 2339 msgstr "" … … 2364 2364 msgstr "" 2365 2365 2366 #: admin/post.php:323 admin/post.php:397 inc/admin/lib.dc.page.php:62 82366 #: admin/post.php:323 admin/post.php:397 inc/admin/lib.dc.page.php:627 2367 2367 msgid "Entry has been successfully created." 2368 2368 msgstr "" … … 2807 2807 2808 2808 #: admin/preferences.php:486 admin/preferences.php:488 2809 #: inc/admin/lib.dc.page.php:14 92809 #: inc/admin/lib.dc.page.php:148 2810 2810 msgid "My dashboard" 2811 2811 msgstr "" … … 3083 3083 msgstr "" 3084 3084 3085 #: admin/user.php:350 inc/admin/lib.dc.page.php:6 53085 #: admin/user.php:350 inc/admin/lib.dc.page.php:64 3086 3086 msgid "Blog:" 3087 3087 msgstr "" … … 3351 3351 msgstr[1] "" 3352 3352 3353 #: inc/admin/lib.dc.page.php:6 93353 #: inc/admin/lib.dc.page.php:68 3354 3354 msgid "Change blog" 3355 3355 msgstr "" 3356 3356 3357 #: inc/admin/lib.dc.page.php:8 23357 #: inc/admin/lib.dc.page.php:81 3358 3358 msgid "Blogs:" 3359 3359 msgstr "" 3360 3360 3361 #: inc/admin/lib.dc.page.php:133 3362 msgid "Go to the content" 3363 msgstr "" 3364 3361 3365 #: inc/admin/lib.dc.page.php:134 3362 msgid "Go to the content"3366 msgid "Go to the menu" 3363 3367 msgstr "" 3364 3368 3365 3369 #: inc/admin/lib.dc.page.php:135 3366 msgid "Go to the menu"3370 msgid "Go to search" 3367 3371 msgstr "" 3368 3372 3369 3373 #: inc/admin/lib.dc.page.php:136 3370 msgid "Go to search"3371 msgstr ""3372 3373 #: inc/admin/lib.dc.page.php:1373374 3374 msgid "Go to help" 3375 3375 msgstr "" 3376 3376 3377 #: inc/admin/lib.dc.page.php:14 5 inc/admin/lib.dc.page.php:1463377 #: inc/admin/lib.dc.page.php:144 inc/admin/lib.dc.page.php:145 3378 3378 msgid "Go to site" 3379 3379 msgstr "" 3380 3380 3381 #: inc/admin/lib.dc.page.php:15 23381 #: inc/admin/lib.dc.page.php:151 3382 3382 #, php-format 3383 3383 msgid "Logout %s" 3384 3384 msgstr "" 3385 3385 3386 #: inc/admin/lib.dc.page.php:159 3387 msgid "Hide main menu" 3388 msgstr "" 3389 3386 3390 #: inc/admin/lib.dc.page.php:160 3387 msgid "Hide main menu"3388 msgstr ""3389 3390 #: inc/admin/lib.dc.page.php:1613391 3391 msgid "Show main menu" 3392 3392 msgstr "" 3393 3393 3394 #: inc/admin/lib.dc.page.php:169 3395 msgid "Safe mode" 3396 msgstr "" 3397 3394 3398 #: inc/admin/lib.dc.page.php:170 3395 msgid "Safe mode"3396 msgstr ""3397 3398 #: inc/admin/lib.dc.page.php:1713399 3399 msgid "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" 3400 3400 msgstr "" 3401 3401 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 3404 msgid "Error:" 3405 msgstr "" 3406 3407 #: inc/admin/lib.dc.page.php:245 inc/admin/lib.dc.page.php:406 3408 msgid "[%H:%M:%S]" 3409 msgstr "" 3410 3411 #: inc/admin/lib.dc.page.php:278 3412 #, php-format 3413 msgid "Thank you for using %s." 3414 msgstr "" 3415 3416 #: inc/admin/lib.dc.page.php:381 3417 msgid "Go to dashboard" 3418 msgstr "" 3419 3420 #: inc/admin/lib.dc.page.php:523 3421 msgid "Help about this page" 3422 msgstr "" 3423 3424 #: inc/admin/lib.dc.page.php:528 3425 #, php-format 3426 msgid "See also %s" 3427 msgstr "" 3428 3429 #: inc/admin/lib.dc.page.php:528 3430 msgid "the global help" 3431 msgstr "" 3432 3433 #: inc/admin/lib.dc.page.php:593 inc/admin/lib.dc.page.php:600 3434 msgid "uncover" 3435 msgstr "" 3436 3437 #: inc/admin/lib.dc.page.php:595 inc/admin/lib.dc.page.php:602 3438 msgid "hide" 3439 msgstr "" 3440 3441 #: inc/admin/lib.dc.page.php:605 3442 msgid "Need help?" 3443 msgstr "" 3444 3445 #: inc/admin/lib.dc.page.php:607 3446 msgid "new window" 3447 msgstr "" 3448 3449 #: inc/admin/lib.dc.page.php:609 3450 msgid "Hide" 3451 msgstr "" 3452 3453 #: inc/admin/lib.dc.page.php:611 3454 msgid "Select:" 3455 msgstr "" 3456 3457 #: inc/admin/lib.dc.page.php:613 3458 msgid "no selection" 3459 msgstr "" 3460 3461 #: inc/admin/lib.dc.page.php:615 3462 msgid "select all" 3463 msgstr "" 3464 3465 #: inc/admin/lib.dc.page.php:617 3466 msgid "Invert selection" 3467 msgstr "" 3468 3469 #: inc/admin/lib.dc.page.php:631 3470 msgid "view entry" 3471 msgstr "" 3472 3473 #: inc/admin/lib.dc.page.php:633 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:635 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:637 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:639 3489 msgid "Are you sure you want to delete this entry?" 3490 msgstr "" 3491 3492 #: inc/admin/lib.dc.page.php:641 3493 msgid "Click here to unlock the field" 3494 msgstr "" 3495 3496 #: inc/admin/lib.dc.page.php:643 3497 msgid "Are you sure you want to delete all spams?" 3498 msgstr "" 3499 3500 #: inc/admin/lib.dc.page.php:645 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:647 3506 msgid "Are you sure you want to delete this comment?" 3507 msgstr "" 3508 3509 #: inc/admin/lib.dc.page.php:649 3510 msgid "Users with posts cannot be deleted." 3511 msgstr "" 3512 3513 #: inc/admin/lib.dc.page.php:651 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:653 3519 #, php-format 3520 msgid "Are you sure you want to delete category \"%s\"?" 3521 msgstr "" 3522 3523 #: inc/admin/lib.dc.page.php:655 3524 msgid "Are you sure you want to reorder all categories?" 3525 msgstr "" 3526 3527 #: inc/admin/lib.dc.page.php:657 3528 #, php-format 3529 msgid "Are you sure you want to remove media \"%s\"?" 3530 msgstr "" 3531 3532 #: inc/admin/lib.dc.page.php:659 3533 msgid "Are you sure you want to extract archive in current directory?" 3534 msgstr "" 3535 3536 #: inc/admin/lib.dc.page.php:661 3537 #, php-format 3538 msgid "Are you sure you want to remove attachment \"%s\"?" 3539 msgstr "" 3540 3541 #: inc/admin/lib.dc.page.php:663 3542 #, php-format 3543 msgid "Are you sure you want to delete \"%s\" language?" 3544 msgstr "" 3545 3546 #: inc/admin/lib.dc.page.php:665 3547 #, php-format 3548 msgid "Are you sure you want to delete \"%s\" plugin?" 3549 msgstr "" 3550 3551 #: inc/admin/lib.dc.page.php:667 3552 msgid "Are you sure you want to delete selected plugins?" 3553 msgstr "" 3554 3555 #: inc/admin/lib.dc.page.php:669 3556 msgid "Use this theme" 3557 msgstr "" 3558 3559 #: inc/admin/lib.dc.page.php:671 3560 msgid "Remove this theme" 3561 msgstr "" 3562 3563 #: inc/admin/lib.dc.page.php:673 3564 #, php-format 3565 msgid "Are you sure you want to delete \"%s\" theme?" 3566 msgstr "" 3567 3568 #: inc/admin/lib.dc.page.php:675 3569 msgid "Are you sure you want to delete selected themes?" 3570 msgstr "" 3571 3572 #: inc/admin/lib.dc.page.php:677 3573 msgid "Are you sure you want to delete this backup?" 3574 msgstr "" 3575 3576 #: inc/admin/lib.dc.page.php:679 3577 msgid "Are you sure you want to revert to this backup?" 3578 msgstr "" 3579 3580 #: inc/admin/lib.dc.page.php:681 3581 msgid "Zip file content" 3582 msgstr "" 3583 3584 #: inc/admin/lib.dc.page.php:683 3585 msgid "XHTML markup validator" 3586 msgstr "" 3587 3588 #: inc/admin/lib.dc.page.php:685 3589 msgid "XHTML content is valid." 3590 msgstr "" 3591 3592 #: inc/admin/lib.dc.page.php:687 3593 msgid "There are XHTML markup errors." 3594 msgstr "" 3595 3596 #: inc/admin/lib.dc.page.php:689 3597 msgid "Attention: an audit of a content not yet registered." 3598 msgstr "" 3599 3600 #: inc/admin/lib.dc.page.php:691 3601 msgid "You have unsaved changes. Switch post format will loose these changes. Proceed anyway?" 3602 msgstr "" 3603 3604 #: inc/admin/lib.dc.page.php:693 3605 msgid "Warning: post format change will not convert existing content. You will need to apply new format by yourself. Proceed anyway?" 3606 msgstr "" 3607 3608 #: inc/admin/lib.dc.page.php:695 3609 msgid "Loading enhanced uploader, please wait." 3610 msgstr "" 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 3614 msgid "Details" 3615 msgstr "" 3616 3617 #: inc/admin/lib.dc.page.php:702 inc/admin/lib.moduleslist.php:711 3618 #: inc/admin/lib.moduleslist.php:1523 3619 msgid "Support" 3620 msgstr "" 3621 3622 #: inc/admin/lib.dc.page.php:704 3623 msgid "Help:" 3624 msgstr "" 3625 3626 #: inc/admin/lib.dc.page.php:706 inc/admin/lib.moduleslist.php:736 3627 msgid "Section:" 3628 msgstr "" 3629 3630 #: inc/admin/lib.dc.page.php:708 inc/admin/lib.moduleslist.php:741 3631 msgid "Tags:" 3632 msgstr "" 3633 3634 #: inc/admin/lib.dc.page.php:739 3635 msgid "You have unsaved changes." 3636 msgstr "" 3637 3638 #: inc/admin/lib.dc.page.php:821 3639 msgid "close" 3640 msgstr "" 3641 3642 #: inc/admin/lib.dc.page.php:822 3643 msgid "now" 3644 msgstr "" 3645 3646 #: inc/admin/lib.dc.page.php:866 3647 msgid "visual" 3648 msgstr "" 3649 3650 #: inc/admin/lib.dc.page.php:867 3651 msgid "source" 3652 msgstr "" 3653 3654 #: inc/admin/lib.dc.page.php:869 3655 msgid "You can use the following shortcuts to format your text." 3656 msgstr "" 3657 3658 #: inc/admin/lib.dc.page.php:870 3659 msgid "-- none --" 3660 msgstr "" 3661 3662 #: inc/admin/lib.dc.page.php:871 3663 msgid "-- block format --" 3664 msgstr "" 3665 3666 #: inc/admin/lib.dc.page.php:872 3667 msgid "Paragraph" 3668 msgstr "" 3669 3670 #: inc/admin/lib.dc.page.php:873 3671 msgid "Level 1 header" 3672 msgstr "" 3673 3674 #: inc/admin/lib.dc.page.php:874 3675 msgid "Level 2 header" 3676 msgstr "" 3677 3678 #: inc/admin/lib.dc.page.php:875 3679 msgid "Level 3 header" 3680 msgstr "" 3681 3682 #: inc/admin/lib.dc.page.php:876 3683 msgid "Level 4 header" 3684 msgstr "" 3685 3686 #: inc/admin/lib.dc.page.php:877 3687 msgid "Level 5 header" 3688 msgstr "" 3689 3690 #: inc/admin/lib.dc.page.php:878 3691 msgid "Level 6 header" 3692 msgstr "" 3693 3694 #: inc/admin/lib.dc.page.php:879 3695 msgid "Strong emphasis" 3696 msgstr "" 3697 3698 #: inc/admin/lib.dc.page.php:880 3699 msgid "Emphasis" 3700 msgstr "" 3701 3702 #: inc/admin/lib.dc.page.php:881 3703 msgid "Inserted" 3704 msgstr "" 3705 3706 #: inc/admin/lib.dc.page.php:882 3707 msgid "Deleted" 3708 msgstr "" 3709 3710 #: inc/admin/lib.dc.page.php:883 3711 msgid "Inline quote" 3712 msgstr "" 3713 3714 #: inc/admin/lib.dc.page.php:884 3715 msgid "Code" 3716 msgstr "" 3717 3718 #: inc/admin/lib.dc.page.php:885 3719 msgid "Line break" 3720 msgstr "" 3721 3722 #: inc/admin/lib.dc.page.php:886 3723 msgid "Blockquote" 3724 msgstr "" 3725 3726 #: inc/admin/lib.dc.page.php:887 3727 msgid "Preformated text" 3728 msgstr "" 3729 3730 #: inc/admin/lib.dc.page.php:888 3731 msgid "Unordered list" 3732 msgstr "" 3733 3734 #: inc/admin/lib.dc.page.php:889 3735 msgid "Ordered list" 3736 msgstr "" 3737 3738 #: inc/admin/lib.dc.page.php:891 3739 msgid "Link" 3740 msgstr "" 3741 3742 #: inc/admin/lib.dc.page.php:892 inc/admin/lib.dc.page.php:896 3743 msgid "URL?" 3744 msgstr "" 3745 3746 #: inc/admin/lib.dc.page.php:893 3747 msgid "Language?" 3748 msgstr "" 3749 3750 #: inc/admin/lib.dc.page.php:895 3751 msgid "External image" 3752 msgstr "" 3753 3754 #: inc/admin/lib.dc.page.php:898 3755 msgid "Media chooser" 3756 msgstr "" 3757 3758 #: inc/admin/lib.dc.page.php:899 3759 msgid "Link to an entry" 3760 msgstr "" 3761 3762 #: inc/admin/lib.dc.page.php:929 3763 msgid "Temporarily activate enhanced uploader" 3764 msgstr "" 3765 3403 3766 #: 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:4073408 msgid "[%H:%M:%S]"3409 msgstr ""3410 3411 #: inc/admin/lib.dc.page.php:2793412 #, php-format3413 msgid "Thank you for using %s."3414 msgstr ""3415 3416 #: inc/admin/lib.dc.page.php:3823417 msgid "Go to dashboard"3418 msgstr ""3419 3420 #: inc/admin/lib.dc.page.php:5243421 msgid "Help about this page"3422 msgstr ""3423 3424 #: inc/admin/lib.dc.page.php:5293425 #, php-format3426 msgid "See also %s"3427 msgstr ""3428 3429 #: inc/admin/lib.dc.page.php:5293430 msgid "the global help"3431 msgstr ""3432 3433 #: inc/admin/lib.dc.page.php:594 inc/admin/lib.dc.page.php:6013434 msgid "uncover"3435 msgstr ""3436 3437 #: inc/admin/lib.dc.page.php:596 inc/admin/lib.dc.page.php:6033438 msgid "hide"3439 msgstr ""3440 3441 #: inc/admin/lib.dc.page.php:6063442 msgid "Need help?"3443 msgstr ""3444 3445 #: inc/admin/lib.dc.page.php:6083446 msgid "new window"3447 msgstr ""3448 3449 #: inc/admin/lib.dc.page.php:6103450 msgid "Hide"3451 msgstr ""3452 3453 #: inc/admin/lib.dc.page.php:6123454 msgid "Select:"3455 msgstr ""3456 3457 #: inc/admin/lib.dc.page.php:6143458 msgid "no selection"3459 msgstr ""3460 3461 #: inc/admin/lib.dc.page.php:6163462 msgid "select all"3463 msgstr ""3464 3465 #: inc/admin/lib.dc.page.php:6183466 msgid "Invert selection"3467 msgstr ""3468 3469 #: inc/admin/lib.dc.page.php:6323470 msgid "view entry"3471 msgstr ""3472 3473 #: inc/admin/lib.dc.page.php:6343474 #, php-format3475 msgid "Are you sure you want to delete selected entries (%s)?"3476 msgstr ""3477 3478 #: inc/admin/lib.dc.page.php:6363479 #, php-format3480 msgid "Are you sure you want to delete selected medias (%d)?"3481 msgstr ""3482 3483 #: inc/admin/lib.dc.page.php:6383484 #, php-format3485 msgid "Are you sure you want to delete selected categories (%s)?"3486 msgstr ""3487 3488 #: inc/admin/lib.dc.page.php:6403489 msgid "Are you sure you want to delete this entry?"3490 msgstr ""3491 3492 #: inc/admin/lib.dc.page.php:6423493 msgid "Click here to unlock the field"3494 msgstr ""3495 3496 #: inc/admin/lib.dc.page.php:6443497 msgid "Are you sure you want to delete all spams?"3498 msgstr ""3499 3500 #: inc/admin/lib.dc.page.php:6463501 #, php-format3502 msgid "Are you sure you want to delete selected comments (%s)?"3503 msgstr ""3504 3505 #: inc/admin/lib.dc.page.php:6483506 msgid "Are you sure you want to delete this comment?"3507 msgstr ""3508 3509 #: inc/admin/lib.dc.page.php:6503510 msgid "Users with posts cannot be deleted."3511 msgstr ""3512 3513 #: inc/admin/lib.dc.page.php:6523514 #, php-format3515 msgid "Are you sure you want to delete selected users (%s)?"3516 msgstr ""3517 3518 #: inc/admin/lib.dc.page.php:6543519 #, php-format3520 msgid "Are you sure you want to delete category \"%s\"?"3521 msgstr ""3522 3523 #: inc/admin/lib.dc.page.php:6563524 msgid "Are you sure you want to reorder all categories?"3525 msgstr ""3526 3527 #: inc/admin/lib.dc.page.php:6583528 #, php-format3529 msgid "Are you sure you want to remove media \"%s\"?"3530 msgstr ""3531 3532 #: inc/admin/lib.dc.page.php:6603533 msgid "Are you sure you want to extract archive in current directory?"3534 msgstr ""3535 3536 #: inc/admin/lib.dc.page.php:6623537 #, php-format3538 msgid "Are you sure you want to remove attachment \"%s\"?"3539 msgstr ""3540 3541 #: inc/admin/lib.dc.page.php:6643542 #, php-format3543 msgid "Are you sure you want to delete \"%s\" language?"3544 msgstr ""3545 3546 #: inc/admin/lib.dc.page.php:6663547 #, php-format3548 msgid "Are you sure you want to delete \"%s\" plugin?"3549 msgstr ""3550 3551 #: inc/admin/lib.dc.page.php:6683552 msgid "Use this theme"3553 msgstr ""3554 3555 #: inc/admin/lib.dc.page.php:6703556 msgid "Remove this theme"3557 msgstr ""3558 3559 #: inc/admin/lib.dc.page.php:6723560 #, php-format3561 msgid "Are you sure you want to delete \"%s\" theme?"3562 msgstr ""3563 3564 #: inc/admin/lib.dc.page.php:6743565 msgid "Are you sure you want to delete this backup?"3566 msgstr ""3567 3568 #: inc/admin/lib.dc.page.php:6763569 msgid "Zip file content"3570 msgstr ""3571 3572 #: inc/admin/lib.dc.page.php:6783573 msgid "XHTML markup validator"3574 msgstr ""3575 3576 #: inc/admin/lib.dc.page.php:6803577 msgid "XHTML content is valid."3578 msgstr ""3579 3580 #: inc/admin/lib.dc.page.php:6823581 msgid "There are XHTML markup errors."3582 msgstr ""3583 3584 #: inc/admin/lib.dc.page.php:6843585 msgid "Attention: an audit of a content not yet registered."3586 msgstr ""3587 3588 #: inc/admin/lib.dc.page.php:6863589 msgid "You have unsaved changes. Switch post format will loose these changes. Proceed anyway?"3590 msgstr ""3591 3592 #: inc/admin/lib.dc.page.php:6883593 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:6903597 msgid "Loading enhanced uploader, please wait."3598 msgstr ""3599 3600 #: inc/admin/lib.dc.page.php:695 inc/admin/lib.moduleslist.php:5503601 #: inc/admin/lib.moduleslist.php:679 inc/admin/lib.moduleslist.php:13033602 msgid "Details"3603 msgstr ""3604 3605 #: inc/admin/lib.dc.page.php:697 inc/admin/lib.moduleslist.php:6833606 #: inc/admin/lib.moduleslist.php:13083607 msgid "Support"3608 msgstr ""3609 3610 #: inc/admin/lib.dc.page.php:6993611 msgid "Help:"3612 msgstr ""3613 3614 #: inc/admin/lib.dc.page.php:701 inc/admin/lib.moduleslist.php:7083615 msgid "Section:"3616 msgstr ""3617 3618 #: inc/admin/lib.dc.page.php:703 inc/admin/lib.moduleslist.php:7133619 msgid "Tags:"3620 msgstr ""3621 3622 #: inc/admin/lib.dc.page.php:7343623 msgid "You have unsaved changes."3624 msgstr ""3625 3626 #: inc/admin/lib.dc.page.php:8163627 msgid "close"3628 msgstr ""3629 3630 #: inc/admin/lib.dc.page.php:8173631 msgid "now"3632 msgstr ""3633 3634 #: inc/admin/lib.dc.page.php:8613635 msgid "visual"3636 msgstr ""3637 3638 #: inc/admin/lib.dc.page.php:8623639 msgid "source"3640 msgstr ""3641 3642 #: inc/admin/lib.dc.page.php:8643643 msgid "You can use the following shortcuts to format your text."3644 msgstr ""3645 3646 #: inc/admin/lib.dc.page.php:8653647 msgid "-- none --"3648 msgstr ""3649 3650 #: inc/admin/lib.dc.page.php:8663651 msgid "-- block format --"3652 msgstr ""3653 3654 #: inc/admin/lib.dc.page.php:8673655 msgid "Paragraph"3656 msgstr ""3657 3658 #: inc/admin/lib.dc.page.php:8683659 msgid "Level 1 header"3660 msgstr ""3661 3662 #: inc/admin/lib.dc.page.php:8693663 msgid "Level 2 header"3664 msgstr ""3665 3666 #: inc/admin/lib.dc.page.php:8703667 msgid "Level 3 header"3668 msgstr ""3669 3670 #: inc/admin/lib.dc.page.php:8713671 msgid "Level 4 header"3672 msgstr ""3673 3674 #: inc/admin/lib.dc.page.php:8723675 msgid "Level 5 header"3676 msgstr ""3677 3678 #: inc/admin/lib.dc.page.php:8733679 msgid "Level 6 header"3680 msgstr ""3681 3682 #: inc/admin/lib.dc.page.php:8743683 msgid "Strong emphasis"3684 msgstr ""3685 3686 #: inc/admin/lib.dc.page.php:8753687 msgid "Emphasis"3688 msgstr ""3689 3690 #: inc/admin/lib.dc.page.php:8763691 msgid "Inserted"3692 msgstr ""3693 3694 #: inc/admin/lib.dc.page.php:8773695 msgid "Deleted"3696 msgstr ""3697 3698 #: inc/admin/lib.dc.page.php:8783699 msgid "Inline quote"3700 msgstr ""3701 3702 #: inc/admin/lib.dc.page.php:8793703 msgid "Code"3704 msgstr ""3705 3706 #: inc/admin/lib.dc.page.php:8803707 msgid "Line break"3708 msgstr ""3709 3710 #: inc/admin/lib.dc.page.php:8813711 msgid "Blockquote"3712 msgstr ""3713 3714 #: inc/admin/lib.dc.page.php:8823715 msgid "Preformated text"3716 msgstr ""3717 3718 #: inc/admin/lib.dc.page.php:8833719 msgid "Unordered list"3720 msgstr ""3721 3722 #: inc/admin/lib.dc.page.php:8843723 msgid "Ordered list"3724 msgstr ""3725 3726 #: inc/admin/lib.dc.page.php:8863727 msgid "Link"3728 msgstr ""3729 3730 #: inc/admin/lib.dc.page.php:887 inc/admin/lib.dc.page.php:8913731 msgid "URL?"3732 msgstr ""3733 3734 #: inc/admin/lib.dc.page.php:8883735 msgid "Language?"3736 msgstr ""3737 3738 #: inc/admin/lib.dc.page.php:8903739 msgid "External image"3740 msgstr ""3741 3742 #: inc/admin/lib.dc.page.php:8933743 msgid "Media chooser"3744 msgstr ""3745 3746 #: inc/admin/lib.dc.page.php:8943747 msgid "Link to an entry"3748 msgstr ""3749 3750 #: inc/admin/lib.dc.page.php:9243751 msgid "Temporarily activate enhanced uploader"3752 msgstr ""3753 3754 #: inc/admin/lib.dc.page.php:9253755 3767 msgid "Temporarily disable enhanced uploader" 3756 3768 msgstr "" 3757 3769 3758 #: inc/admin/lib.dc.page.php:9 263770 #: inc/admin/lib.dc.page.php:931 3759 3771 msgid "Limit exceeded." 3760 3772 msgstr "" 3761 3773 3762 #: inc/admin/lib.dc.page.php:9 273774 #: inc/admin/lib.dc.page.php:932 3763 3775 msgid "File size exceeds allowed limit." 3764 3776 msgstr "" 3765 3777 3766 #: inc/admin/lib.dc.page.php:9 283778 #: inc/admin/lib.dc.page.php:933 3767 3779 msgid "Canceled." 3768 3780 msgstr "" 3769 3781 3770 #: inc/admin/lib.dc.page.php:9 293782 #: inc/admin/lib.dc.page.php:934 3771 3783 msgid "HTTP Error:" 3772 3784 msgstr "" 3773 3785 3774 #: inc/admin/lib.dc.page.php:93 43786 #: inc/admin/lib.dc.page.php:939 3775 3787 msgid "Clean" 3776 3788 msgstr "" 3777 3789 3778 #: inc/admin/lib.dc.page.php:9 373790 #: inc/admin/lib.dc.page.php:942 3779 3791 msgid "File successfully uploaded." 3780 3792 msgstr "" 3781 3793 3782 #: inc/admin/lib.dc.page.php:9 383794 #: inc/admin/lib.dc.page.php:943 3783 3795 msgid "No file in queue." 3784 3796 msgstr "" 3785 3797 3786 #: inc/admin/lib.dc.page.php:9 393798 #: inc/admin/lib.dc.page.php:944 3787 3799 msgid "1 file in queue." 3788 3800 msgstr "" 3789 3801 3790 #: inc/admin/lib.dc.page.php:94 03802 #: inc/admin/lib.dc.page.php:945 3791 3803 #, php-format 3792 3804 msgid "%d files in queue." 3793 3805 msgstr "" 3794 3806 3795 #: inc/admin/lib.dc.page.php:94 13807 #: inc/admin/lib.dc.page.php:946 3796 3808 msgid "Queue error:" 3797 3809 msgstr "" … … 3839 3851 msgstr "" 3840 3852 3841 #: inc/admin/lib.moduleslist.php:52 63853 #: inc/admin/lib.moduleslist.php:527 3842 3854 msgid "Plugins list" 3843 3855 msgstr "" 3844 3856 3845 #: inc/admin/lib.moduleslist.php:53 03857 #: inc/admin/lib.moduleslist.php:538 3846 3858 msgid "Name" 3847 3859 msgstr "" 3848 3860 3849 #: inc/admin/lib.moduleslist.php:5 353861 #: inc/admin/lib.moduleslist.php:543 3850 3862 msgid "Score" 3851 3863 msgstr "" 3852 3864 3853 #: inc/admin/lib.moduleslist.php:54 03865 #: inc/admin/lib.moduleslist.php:548 3854 3866 msgid "Version" 3855 3867 msgstr "" 3856 3868 3857 #: inc/admin/lib.moduleslist.php:5 453869 #: inc/admin/lib.moduleslist.php:553 3858 3870 msgid "Current version" 3859 3871 msgstr "" 3860 3872 3861 #: inc/admin/lib.moduleslist.php:6 35 inc/admin/lib.moduleslist.php:6363873 #: inc/admin/lib.moduleslist.php:671 inc/admin/lib.moduleslist.php:672 3862 3874 msgid "Plugin from official distribution" 3863 3875 msgstr "" 3864 3876 3865 #: inc/admin/lib.moduleslist.php:7 033877 #: inc/admin/lib.moduleslist.php:731 3866 3878 msgid "Configure plugin" 3867 3879 msgstr "" 3868 3880 3869 #: inc/admin/lib.moduleslist.php:7 313881 #: inc/admin/lib.moduleslist.php:759 3870 3882 msgid "No plugins matched your search." 3871 3883 msgstr "" 3872 3884 3873 #: inc/admin/lib.moduleslist.php:7 563885 #: inc/admin/lib.moduleslist.php:799 3874 3886 msgid "Activate" 3875 3887 msgstr "" 3876 3888 3877 #: inc/admin/lib.moduleslist.php: 7623889 #: inc/admin/lib.moduleslist.php:805 3878 3890 msgid "Deactivate" 3879 3891 msgstr "" 3880 3892 3881 #: inc/admin/lib.moduleslist.php: 7753893 #: inc/admin/lib.moduleslist.php:818 3882 3894 msgid "Install" 3883 3895 msgstr "" 3884 3896 3885 #: inc/admin/lib.moduleslist.php: 781inc/admin/prepend.php:2593897 #: inc/admin/lib.moduleslist.php:824 inc/admin/prepend.php:259 3886 3898 msgid "Update" 3887 3899 msgstr "" 3888 3900 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 3902 msgid "Activate selected plugins" 3903 msgstr "" 3904 3905 #: inc/admin/lib.moduleslist.php:863 3906 msgid "Activate all plugins from this list" 3907 msgstr "" 3908 3909 #: inc/admin/lib.moduleslist.php:871 3910 msgid "Deactivate selected plugins" 3911 msgstr "" 3912 3913 #: inc/admin/lib.moduleslist.php:872 3914 msgid "Deactivate all plugins from this list" 3915 msgstr "" 3916 3917 #: inc/admin/lib.moduleslist.php:880 3918 msgid "Update selected plugins" 3919 msgstr "" 3920 3921 #: inc/admin/lib.moduleslist.php:881 3922 msgid "Update all plugins from this list" 3923 msgstr "" 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 3892 3928 msgid "No such plugin." 3893 3929 msgstr "" 3894 3930 3895 #: inc/admin/lib.moduleslist.php:835 3931 #: inc/admin/lib.moduleslist.php:959 3932 msgid "You don't have permissions to delete this plugin." 3933 msgstr "" 3934 3935 #: inc/admin/lib.moduleslist.php:962 3936 msgid "Some plugins have not been delete." 3937 msgstr "" 3938 3939 #: inc/admin/lib.moduleslist.php:966 3940 msgid "Plugin has been successfully deleted." 3941 msgid_plural "Plugins have been successuflly deleted." 3942 msgstr[0] "" 3943 msgstr[1] "" 3944 3945 #: inc/admin/lib.moduleslist.php:1005 inc/admin/lib.moduleslist.php:1172 3946 msgid "Plugin has been successfully installed." 3947 msgid_plural "Plugins have been successuflly installed." 3948 msgstr[0] "" 3949 msgstr[1] "" 3950 3951 #: inc/admin/lib.moduleslist.php:1040 3896 3952 msgid "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 3953 msgid_plural "Plugins have been successuflly activated." 3954 msgstr[0] "" 3955 msgstr[1] "" 3956 3957 #: inc/admin/lib.moduleslist.php:1083 3958 msgid "Some plugins have not been deactivated." 3959 msgstr "" 3960 3961 #: inc/admin/lib.moduleslist.php:1087 3904 3962 msgid "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 3963 msgid_plural "Plugins have been successuflly deactivated." 3964 msgstr[0] "" 3965 msgstr[1] "" 3966 3967 #: inc/admin/lib.moduleslist.php:1135 inc/admin/lib.moduleslist.php:1171 3917 3968 msgid "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 3969 msgid_plural "Plugins have been successuflly updated." 3970 msgstr[0] "" 3971 msgstr[1] "" 3972 3973 #: inc/admin/lib.moduleslist.php:1202 3925 3974 msgid "Zip file path:" 3926 3975 msgstr "" 3927 3976 3928 #: inc/admin/lib.moduleslist.php:1 0333977 #: inc/admin/lib.moduleslist.php:1213 3929 3978 msgid "Download a zip file" 3930 3979 msgstr "" 3931 3980 3932 #: inc/admin/lib.moduleslist.php:1 0343981 #: inc/admin/lib.moduleslist.php:1214 3933 3982 msgid "Zip file URL:" 3934 3983 msgstr "" 3935 3984 3936 #: inc/admin/lib.moduleslist.php:1 0383985 #: inc/admin/lib.moduleslist.php:1218 3937 3986 msgid "Download" 3938 3987 msgstr "" 3939 3988 3940 #: inc/admin/lib.moduleslist.php:1 0753989 #: inc/admin/lib.moduleslist.php:1255 3941 3990 msgid "Unknow plugin ID" 3942 3991 msgstr "" 3943 3992 3944 #: inc/admin/lib.moduleslist.php:1 0843993 #: inc/admin/lib.moduleslist.php:1264 3945 3994 msgid "This plugin has no configuration file." 3946 3995 msgstr "" 3947 3996 3948 #: inc/admin/lib.moduleslist.php:1 1473997 #: inc/admin/lib.moduleslist.php:1327 3949 3998 #, php-format 3950 3999 msgid "Configure \"%s\"" 3951 4000 msgstr "" 3952 4001 3953 #: inc/admin/lib.moduleslist.php:1 1484002 #: inc/admin/lib.moduleslist.php:1328 3954 4003 msgid "Back" 3955 4004 msgstr "" 3956 4005 3957 #: inc/admin/lib.moduleslist.php:1 2314006 #: inc/admin/lib.moduleslist.php:1430 3958 4007 #, php-format 3959 4008 msgid "Score: %s" 3960 4009 msgstr "" 3961 4010 3962 #: inc/admin/lib.moduleslist.php:1 2504011 #: inc/admin/lib.moduleslist.php:1449 3963 4012 #, php-format 3964 4013 msgid "%s screenshot." 3965 4014 msgstr "" 3966 4015 3967 #: inc/admin/lib.moduleslist.php:1 2714016 #: inc/admin/lib.moduleslist.php:1486 3968 4017 #, php-format 3969 4018 msgid "by %s" 3970 4019 msgstr "" 3971 4020 3972 #: inc/admin/lib.moduleslist.php:1 2764021 #: inc/admin/lib.moduleslist.php:1491 3973 4022 #, php-format 3974 4023 msgid "version %s" 3975 4024 msgstr "" 3976 4025 3977 #: inc/admin/lib.moduleslist.php:1 2814026 #: inc/admin/lib.moduleslist.php:1496 3978 4027 #, php-format 3979 4028 msgid "(current version %s)" 3980 4029 msgstr "" 3981 4030 3982 #: inc/admin/lib.moduleslist.php:1 2874031 #: inc/admin/lib.moduleslist.php:1502 3983 4032 #, php-format 3984 4033 msgid "(built on \"%s\")" 3985 4034 msgstr "" 3986 4035 3987 #: inc/admin/lib.moduleslist.php:1 2914036 #: inc/admin/lib.moduleslist.php:1506 3988 4037 #, php-format 3989 4038 msgid "(requires \"%s\")" 3990 4039 msgstr "" 3991 4040 3992 #: inc/admin/lib.moduleslist.php:1 3314041 #: inc/admin/lib.moduleslist.php:1546 3993 4042 msgid "View stylesheet" 3994 4043 msgstr "" 3995 4044 3996 #: inc/admin/lib.moduleslist.php:1 3384045 #: inc/admin/lib.moduleslist.php:1553 3997 4046 msgid "Configure theme" 3998 4047 msgstr "" 3999 4048 4000 #: inc/admin/lib.moduleslist.php:1 3784049 #: inc/admin/lib.moduleslist.php:1586 4001 4050 msgid "No themes matched your search." 4002 4051 msgstr "" 4003 4052 4004 #: inc/admin/lib.moduleslist.php:1 3924053 #: inc/admin/lib.moduleslist.php:1617 4005 4054 msgid "Use this one" 4006 4055 msgstr "" 4007 4056 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 4058 msgid "Update selected themes" 4059 msgstr "" 4060 4061 #: inc/admin/lib.moduleslist.php:1639 4062 msgid "Update all themes from this list" 4063 msgstr "" 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 4011 4068 msgid "No such theme." 4012 4069 msgstr "" 4013 4070 4014 #: inc/admin/lib.moduleslist.php:1 4244071 #: inc/admin/lib.moduleslist.php:1682 4015 4072 msgid "Theme has been successfully selected." 4016 4073 msgstr "" 4017 4074 4018 #: inc/admin/lib.moduleslist.php:1 4424075 #: inc/admin/lib.moduleslist.php:1717 4019 4076 msgid "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 4077 msgid_plural "Themes have been successuflly activated." 4078 msgstr[0] "" 4079 msgstr[1] "" 4080 4081 #: inc/admin/lib.moduleslist.php:1760 4082 msgid "Some themes have not been deactivated." 4083 msgstr "" 4084 4085 #: inc/admin/lib.moduleslist.php:1764 4027 4086 msgid "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 4087 msgid_plural "Themes have been successuflly deactivated." 4088 msgstr[0] "" 4089 msgstr[1] "" 4090 4091 #: inc/admin/lib.moduleslist.php:1812 4036 4092 msgid "You don't have permissions to delete this theme." 4037 4093 msgstr "" 4038 4094 4039 #: inc/admin/lib.moduleslist.php:1499 4095 #: inc/admin/lib.moduleslist.php:1815 4096 msgid "Some themes have not been delete." 4097 msgstr "" 4098 4099 #: inc/admin/lib.moduleslist.php:1819 4040 4100 msgid "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 4101 msgid_plural "Themes have been successuflly deleted." 4102 msgstr[0] "" 4103 msgstr[1] "" 4104 4105 #: inc/admin/lib.moduleslist.php:1858 inc/admin/lib.moduleslist.php:1934 4106 msgid "Theme has been successfully installed." 4107 msgid_plural "Themes have been successuflly installed." 4108 msgstr[0] "" 4109 msgstr[1] "" 4110 4111 #: inc/admin/lib.moduleslist.php:1897 inc/admin/lib.moduleslist.php:1933 4045 4112 msgid "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 "" 4113 msgid_plural "Themes have been successuflly updated." 4114 msgstr[0] "" 4115 msgstr[1] "" 4051 4116 4052 4117 #: inc/admin/lib.pager.php:78 … … 4464 4529 msgstr "" 4465 4530 4466 #: inc/core/class.dc.modules.php:1 89 inc/core/class.dc.themes.php:694531 #: inc/core/class.dc.modules.php:192 4467 4532 #, php-format 4468 4533 msgid "Module \"%s\" has type \"%s\" that mismatch required module type \"%s\"." 4469 4534 msgstr "" 4470 4535 4471 #: inc/core/class.dc.modules.php:2 274536 #: inc/core/class.dc.modules.php:232 4472 4537 #, php-format 4473 4538 msgid "Module \"%s\" is installed twice in \"%s\" and \"%s\"." 4474 4539 msgstr "" 4475 4540 4476 #: inc/core/class.dc.modules.php:2 654541 #: inc/core/class.dc.modules.php:270 4477 4542 msgid "Empty module zip file." 4478 4543 msgstr "" 4479 4544 4480 #: inc/core/class.dc.modules.php:27 14545 #: inc/core/class.dc.modules.php:276 4481 4546 msgid "The zip file does not appear to be a valid Dotclear module." 4482 4547 msgstr "" 4483 4548 4484 #: inc/core/class.dc.modules.php:32 44549 #: inc/core/class.dc.modules.php:329 4485 4550 msgid "An error occurred during module deletion." 4486 4551 msgstr "" 4487 4552 4488 #: inc/core/class.dc.modules.php:33 24553 #: inc/core/class.dc.modules.php:337 4489 4554 #, php-format 4490 4555 msgid "Unable to upgrade \"%s\". (older or same version)" 4491 4556 msgstr "" 4492 4557 4493 #: inc/core/class.dc.modules.php:3 394558 #: inc/core/class.dc.modules.php:344 4494 4559 msgid "Unable to read new _define.php file" 4495 4560 msgstr "" 4496 4561 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 4564 msgid "No such module." 4565 msgstr "" 4566 4567 #: inc/core/class.dc.modules.php:413 4498 4568 msgid "Cannot remove module files" 4499 4569 msgstr "" 4500 4570 4501 #: inc/core/class.dc.modules.php:4 19 inc/core/class.dc.modules.php:4234571 #: inc/core/class.dc.modules.php:424 inc/core/class.dc.modules.php:428 4502 4572 msgid "Cannot deactivate plugin." 4503 4573 msgstr "" 4504 4574 4505 #: inc/core/class.dc.modules.php:43 4 inc/core/class.dc.modules.php:4384575 #: inc/core/class.dc.modules.php:439 inc/core/class.dc.modules.php:443 4506 4576 msgid "Cannot activate plugin." 4507 4577 msgstr "" … … 4871 4941 msgstr "" 4872 4942 4873 #: inc/prepend.php:18 24943 #: inc/prepend.php:183 4874 4944 msgid "Site temporarily unavailable" 4875 4945 msgstr "" 4876 4946 4877 #: inc/prepend.php:18 34947 #: inc/prepend.php:184 4878 4948 msgid "<p>We apologize for this temporary unavailability.<br />Thank you for your understanding.</p>" 4879 4949 msgstr "" 4880 4950 4881 #: inc/prepend.php:18 74951 #: inc/prepend.php:188 4882 4952 msgid "Unable to connect to database" 4883 4953 msgstr "" 4884 4954 4885 #: inc/prepend.php:1 894955 #: inc/prepend.php:190 4886 4956 #, php-format 4887 4957 msgid "<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>" 4888 4958 msgstr "" 4889 4959 4890 #: inc/prepend.php:20 04960 #: inc/prepend.php:201 4891 4961 msgid "The following error was encountered while trying to read the database:" 4892 4962 msgstr "" -
locales/_pot/plugins.pot
r2485 r2503 8 8 "Project-Id-Version: Dotclear 2\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 2013-10-2 3 13:44+0000\n"10 "POT-Creation-Date: 2013-10-29 16:28+0100\n" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 170 170 #: plugins/aboutConfig/index.php:138 plugins/antispam/index.php:203 171 171 #: plugins/blogroll/index.php:205 plugins/blogroll/index.php:330 172 #: plugins/simpleMenu/index.php:143 plugins/simpleMenu/index.php:48 8172 #: plugins/simpleMenu/index.php:143 plugins/simpleMenu/index.php:489 173 173 #: plugins/userPref/index.php:135 174 174 msgid "Description" … … 275 275 #: plugins/antispam/filters/class.dc.filter.ip.php:131 276 276 #: plugins/antispam/filters/class.dc.filter.words.php:122 277 #: plugins/widgets/index.php:2 61277 #: plugins/widgets/index.php:259 278 278 msgid "Add" 279 279 msgstr "" … … 817 817 msgstr "" 818 818 819 #: plugins/blogroll/index.php:206 plugins/simpleMenu/index.php:4 89819 #: plugins/blogroll/index.php:206 plugins/simpleMenu/index.php:490 820 820 msgid "URL" 821 821 msgstr "" … … 1253 1253 #: plugins/importExport/inc/class.dc.export.flat.php:209 1254 1254 #: plugins/importExport/inc/class.dc.export.flat.php:231 1255 #: plugins/importExport/index.php:10 31255 #: plugins/importExport/index.php:102 1256 1256 msgid "Export" 1257 1257 msgstr "" … … 1279 1279 1280 1280 #: plugins/importExport/inc/class.dc.ieModule.php:77 1281 #: plugins/widgets/index.php:3 211281 #: plugins/widgets/index.php:319 1282 1282 msgid "or" 1283 1283 msgstr "" … … 1527 1527 msgstr "" 1528 1528 1529 #: plugins/importExport/inc/flat/class.flat.import.php:5 41529 #: plugins/importExport/inc/flat/class.flat.import.php:55 1530 1530 msgid "File is not a DotClear backup." 1531 1531 msgstr "" 1532 1532 1533 #: plugins/importExport/inc/flat/class.flat.import.php:10 51533 #: plugins/importExport/inc/flat/class.flat.import.php:106 1534 1534 msgid "File is not a single blog export." 1535 1535 msgstr "" … … 1563 1563 msgstr "" 1564 1564 1565 #: plugins/importExport/index.php:69 plugins/maintenance/index.php:12 11565 #: plugins/importExport/index.php:69 plugins/maintenance/index.php:125 1566 1566 msgid "Please wait..." 1567 1567 msgstr "" … … 1570 1570 #, php-format 1571 1571 msgid "Export functions are in the page %s." 1572 msgstr "" 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 1579 msgid "Maintenance" 1572 1580 msgstr "" 1573 1581 … … 1635 1643 msgstr[1] "" 1636 1644 1637 #: plugins/maintenance/_admin.php:164 plugins/maintenance/index.php:2 161645 #: plugins/maintenance/_admin.php:164 plugins/maintenance/index.php:224 1638 1646 msgid "This task has never been executed." 1639 1647 msgstr "" 1640 1648 1641 #: plugins/maintenance/_admin.php:166 plugins/maintenance/index.php:2 221649 #: plugins/maintenance/_admin.php:166 plugins/maintenance/index.php:230 1642 1650 #, php-format 1643 1651 msgid "Last execution of this task was on %s." … … 1663 1671 msgstr "" 1664 1672 1665 #: plugins/maintenance/inc/class.dc.maintenance.task.php:7 11673 #: plugins/maintenance/inc/class.dc.maintenance.task.php:72 1666 1674 msgid "Failed to execute task." 1667 1675 msgstr "" 1668 1676 1669 #: plugins/maintenance/inc/class.dc.maintenance.task.php:7 41677 #: plugins/maintenance/inc/class.dc.maintenance.task.php:75 1670 1678 msgid "Task successfully executed." 1671 1679 msgstr "" … … 1756 1764 msgstr "" 1757 1765 1758 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:2 01766 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:22 1759 1767 msgid "Delete all logs" 1760 1768 msgstr "" 1761 1769 1762 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:2 11770 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:23 1763 1771 msgid "Logs deleted." 1764 1772 msgstr "" 1765 1773 1766 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:2 21774 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:24 1767 1775 msgid "Failed to delete logs." 1768 1776 msgstr "" 1769 1777 1770 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:2 41778 #: plugins/maintenance/inc/tasks/class.dc.maintenance.logs.php:26 1771 1779 msgid "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." 1772 1780 msgstr "" … … 1833 1841 msgstr "" 1834 1842 1835 #: plugins/maintenance/index.php:9 21843 #: plugins/maintenance/index.php:96 1836 1844 msgid "Maintenance plugin has been successfully configured." 1837 1845 msgstr "" 1838 1846 1839 #: plugins/maintenance/index.php:10 31847 #: plugins/maintenance/index.php:107 1840 1848 msgid "Never" 1841 1849 msgstr "" 1842 1850 1843 #: plugins/maintenance/index.php:10 41851 #: plugins/maintenance/index.php:108 1844 1852 msgid "Every week" 1845 1853 msgstr "" 1846 1854 1847 #: plugins/maintenance/index.php:10 51855 #: plugins/maintenance/index.php:109 1848 1856 msgid "Every two weeks" 1849 1857 msgstr "" 1850 1858 1851 #: plugins/maintenance/index.php:1 061859 #: plugins/maintenance/index.php:110 1852 1860 msgid "Every month" 1853 1861 msgstr "" 1854 1862 1855 #: plugins/maintenance/index.php:1 071863 #: plugins/maintenance/index.php:111 1856 1864 msgid "Every two months" 1857 1865 msgstr "" 1858 1866 1859 #: plugins/maintenance/index.php:14 01867 #: plugins/maintenance/index.php:144 1860 1868 msgid "You have not sufficient permissions to view this page." 1861 1869 msgstr "" 1862 1870 1863 #: plugins/maintenance/index.php:2 17 plugins/maintenance/index.php:2261871 #: plugins/maintenance/index.php:225 plugins/maintenance/index.php:234 1864 1872 msgid "You should execute it now." 1865 1873 msgstr "" 1866 1874 1867 #: plugins/maintenance/index.php:2 49 plugins/maintenance/index.php:2711875 #: plugins/maintenance/index.php:257 plugins/maintenance/index.php:279 1868 1876 msgid "Execute task" 1869 1877 msgstr "" 1870 1878 1871 #: plugins/maintenance/index.php:2 521879 #: plugins/maintenance/index.php:260 1872 1880 msgid "This may take a very long time." 1873 1881 msgstr "" 1874 1882 1875 #: plugins/maintenance/index.php:2 82 plugins/maintenance/index.php:2831883 #: plugins/maintenance/index.php:290 plugins/maintenance/index.php:291 1876 1884 msgid "Alert settings" 1877 1885 msgstr "" 1878 1886 1879 #: plugins/maintenance/index.php:2 861887 #: plugins/maintenance/index.php:294 1880 1888 msgid "Activation" 1881 1889 msgstr "" 1882 1890 1883 #: plugins/maintenance/index.php:2 891891 #: plugins/maintenance/index.php:297 1884 1892 msgid "Display alert messages on late tasks" 1885 1893 msgstr "" 1886 1894 1887 #: plugins/maintenance/index.php: 2921895 #: plugins/maintenance/index.php:300 1888 1896 #, php-format 1889 1897 msgid "You can place list of late tasks on your %s." 1890 1898 msgstr "" 1891 1899 1892 #: plugins/maintenance/index.php: 2961900 #: plugins/maintenance/index.php:304 1893 1901 msgid "Frequency" 1894 1902 msgstr "" 1895 1903 1896 #: plugins/maintenance/index.php:30 01904 #: plugins/maintenance/index.php:308 1897 1905 msgid "Use one recall time for all tasks" 1898 1906 msgstr "" 1899 1907 1900 #: plugins/maintenance/index.php:3 021908 #: plugins/maintenance/index.php:310 1901 1909 msgid "Recall time for all tasks:" 1902 1910 msgstr "" 1903 1911 1904 #: plugins/maintenance/index.php:3 081912 #: plugins/maintenance/index.php:316 1905 1913 msgid "Use one recall time per task" 1906 1914 msgstr "" … … 2136 2144 msgstr "" 2137 2145 2138 #: plugins/simpleMenu/index.php:142 plugins/simpleMenu/index.php:48 72146 #: plugins/simpleMenu/index.php:142 plugins/simpleMenu/index.php:488 2139 2147 msgid "Label" 2140 2148 msgstr "" … … 2195 2203 msgstr "" 2196 2204 2197 #: plugins/simpleMenu/index.php:36 12205 #: plugins/simpleMenu/index.php:362 2198 2206 msgid "Step #1" 2199 2207 msgstr "" 2200 2208 2201 #: plugins/simpleMenu/index.php:36 5 plugins/simpleMenu/index.php:3722209 #: plugins/simpleMenu/index.php:366 plugins/simpleMenu/index.php:373 2202 2210 msgid "Step #2" 2203 2211 msgstr "" 2204 2212 2205 #: plugins/simpleMenu/index.php:37 02213 #: plugins/simpleMenu/index.php:371 2206 2214 msgid "Step #3" 2207 2215 msgstr "" 2208 2216 2209 #: plugins/simpleMenu/index.php:38 02217 #: plugins/simpleMenu/index.php:381 2210 2218 msgid "Add item" 2211 2219 msgstr "" 2212 2220 2213 #: plugins/simpleMenu/index.php:40 22221 #: plugins/simpleMenu/index.php:403 2214 2222 msgid "Select type" 2215 2223 msgstr "" 2216 2224 2217 #: plugins/simpleMenu/index.php:40 32225 #: plugins/simpleMenu/index.php:404 2218 2226 msgid "Type of item menu:" 2219 2227 msgstr "" 2220 2228 2221 #: plugins/simpleMenu/index.php:40 4 plugins/simpleMenu/index.php:4412229 #: plugins/simpleMenu/index.php:405 plugins/simpleMenu/index.php:442 2222 2230 msgid "Continue..." 2223 2231 msgstr "" 2224 2232 2225 #: plugins/simpleMenu/index.php:41 52233 #: plugins/simpleMenu/index.php:416 2226 2234 msgid "Select language:" 2227 2235 msgstr "" 2228 2236 2229 #: plugins/simpleMenu/index.php:4 192237 #: plugins/simpleMenu/index.php:420 2230 2238 msgid "Select category:" 2231 2239 msgstr "" 2232 2240 2233 #: plugins/simpleMenu/index.php:42 32241 #: plugins/simpleMenu/index.php:424 2234 2242 msgid "Select month (if necessary):" 2235 2243 msgstr "" 2236 2244 2237 #: plugins/simpleMenu/index.php:42 72245 #: plugins/simpleMenu/index.php:428 2238 2246 msgid "Select page:" 2239 2247 msgstr "" 2240 2248 2241 #: plugins/simpleMenu/index.php:43 12249 #: plugins/simpleMenu/index.php:432 2242 2250 msgid "Select tag (if necessary):" 2243 2251 msgstr "" 2244 2252 2245 #: plugins/simpleMenu/index.php:45 12253 #: plugins/simpleMenu/index.php:452 2246 2254 msgid "Label of item menu:" 2247 2255 msgstr "" 2248 2256 2249 #: plugins/simpleMenu/index.php:45 32257 #: plugins/simpleMenu/index.php:454 2250 2258 msgid "Description of item menu:" 2251 2259 msgstr "" 2252 2260 2253 #: plugins/simpleMenu/index.php:45 52261 #: plugins/simpleMenu/index.php:456 2254 2262 msgid "URL of item menu:" 2255 2263 msgstr "" 2256 2264 2257 #: plugins/simpleMenu/index.php:45 72265 #: plugins/simpleMenu/index.php:458 2258 2266 msgid "Add this item" 2259 2267 msgstr "" 2260 2268 2261 #: plugins/simpleMenu/index.php:46 72269 #: plugins/simpleMenu/index.php:468 2262 2270 msgid "Add an item" 2263 2271 msgstr "" 2264 2272 2265 #: plugins/simpleMenu/index.php:4 792273 #: plugins/simpleMenu/index.php:480 2266 2274 msgid "Menu items list" 2267 2275 msgstr "" 2268 2276 2269 #: plugins/simpleMenu/index.php:51 62277 #: plugins/simpleMenu/index.php:517 2270 2278 msgid "Update menu" 2271 2279 msgstr "" 2272 2280 2273 #: plugins/simpleMenu/index.php:51 82281 #: plugins/simpleMenu/index.php:519 2274 2282 msgid "Delete selected menu items" 2275 2283 msgstr "" 2276 2284 2277 #: plugins/simpleMenu/index.php:5 192285 #: plugins/simpleMenu/index.php:520 2278 2286 msgid "Are you sure you want to remove selected menu items?" 2279 2287 msgstr "" 2280 2288 2281 #: plugins/simpleMenu/index.php:52 62289 #: plugins/simpleMenu/index.php:527 2282 2290 msgid "No menu items so far." 2283 2291 msgstr "" … … 2657 2665 msgstr "" 2658 2666 2659 #: plugins/widgets/index.php:213 plugins/widgets/index.php:24 22667 #: plugins/widgets/index.php:213 plugins/widgets/index.php:240 2660 2668 msgid "Widgets" 2661 2669 msgstr "" 2662 2670 2663 #: plugins/widgets/index.php:23 22671 #: plugins/widgets/index.php:230 2664 2672 msgid "Are you sure you want to reset sidebars?" 2665 2673 msgstr "" 2666 2674 2667 #: plugins/widgets/index.php:24 92675 #: plugins/widgets/index.php:247 2668 2676 msgid "Available widgets" 2669 2677 msgstr "" 2670 2678 2671 #: plugins/widgets/index.php:2 502679 #: plugins/widgets/index.php:248 2672 2680 msgid "Drag widgets from this list to one of the sidebars, for add." 2673 2681 msgstr "" 2674 2682 2675 #: plugins/widgets/index.php:25 7plugins/widgets/index.php:3712683 #: plugins/widgets/index.php:255 plugins/widgets/index.php:371 2676 2684 msgid "order" 2677 2685 msgstr "" 2678 2686 2679 #: plugins/widgets/index.php:25 92687 #: plugins/widgets/index.php:257 2680 2688 msgid "Append to:" 2681 2689 msgstr "" 2682 2690 2683 #: plugins/widgets/index.php:2 702691 #: plugins/widgets/index.php:268 2684 2692 msgid "Add widgets to sidebars" 2685 2693 msgstr "" 2686 2694 2687 #: plugins/widgets/index.php:27 72695 #: plugins/widgets/index.php:275 2688 2696 msgid "Navigation sidebar" 2689 2697 msgstr "" 2690 2698 2691 #: plugins/widgets/index.php:28 32699 #: plugins/widgets/index.php:281 2692 2700 msgid "Extra sidebar" 2693 2701 msgstr "" 2694 2702 2695 #: plugins/widgets/index.php:28 92703 #: plugins/widgets/index.php:287 2696 2704 msgid "Custom sidebar" 2697 2705 msgstr "" 2698 2706 2699 #: plugins/widgets/index.php:29 52707 #: plugins/widgets/index.php:293 2700 2708 msgid "Update sidebars" 2701 2709 msgstr "" 2702 2710 2703 #: plugins/widgets/index.php:29 62711 #: plugins/widgets/index.php:294 2704 2712 msgid "Reset sidebars" 2705 2713 msgstr "" 2706 2714 2707 #: plugins/widgets/index.php:30 52715 #: plugins/widgets/index.php:303 2708 2716 msgid "Widget ID:" 2709 2717 msgstr "" 2710 2718 2711 #: plugins/widgets/index.php:31 22719 #: plugins/widgets/index.php:310 2712 2720 msgid "No setting for this widget" 2713 2721 msgstr "" 2714 2722 2715 #: plugins/widgets/index.php:3 212723 #: plugins/widgets/index.php:319 2716 2724 msgid "boolean" 2717 2725 msgstr "" 2718 2726 2719 #: plugins/widgets/index.php:3 21 plugins/widgets/index.php:3252727 #: plugins/widgets/index.php:319 plugins/widgets/index.php:323 2720 2728 msgid "possible values:" 2721 2729 msgstr "" 2722 2730 2723 #: plugins/widgets/index.php:32 52731 #: plugins/widgets/index.php:323 2724 2732 msgid "listitem" 2725 2733 msgstr "" 2726 2734 2727 #: plugins/widgets/index.php:3 302735 #: plugins/widgets/index.php:328 2728 2736 msgid "string" 2729 2737 msgstr "" 2730 2738 2731 #: plugins/widgets/index.php:33 62739 #: plugins/widgets/index.php:334 2732 2740 msgid "Setting name:" 2733 2741 msgstr "" 2734 2742 2735 #: plugins/widgets/index.php:35 92736 msgid "No widget for now."2737 msgstr "" 2738 2739 #: plugins/widgets/index.php:3 752743 #: plugins/widgets/index.php:357 2744 msgid "No widget as far." 2745 msgstr "" 2746 2747 #: plugins/widgets/index.php:364 plugins/widgets/index.php:375 2740 2748 msgid "Up the widget" 2741 2749 msgstr "" 2742 2750 2743 #: plugins/widgets/index.php:3 762751 #: plugins/widgets/index.php:365 plugins/widgets/index.php:376 2744 2752 msgid "Down the widget" 2753 msgstr "" 2754 2755 #: plugins/widgets/index.php:377 2756 msgid "Remove the widget" 2745 2757 msgstr "" 2746 2758 -
locales/fr/main.po
r2487 r2503 11 11 "Project-Id-Version: Dotclear\n" 12 12 "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" 14 14 "PO-Revision-Date: 2012-08-13 07:13+0000\n" 15 15 "Last-Translator: xave <xave@dotclear.net>\n" … … 2618 2618 msgstr "Êtes-vous certain de vouloir supprimer cette sauvegarde ?" 2619 2619 2620 msgid "Are you sure you want to revert to this backup?" 2621 msgstr "Êtes-vous certain de vouloir restaurer cette sauvegarde ?" 2622 2620 2623 msgid "Zip file content" 2621 2624 msgstr "Contenu du fichier zip" … … 2859 2862 msgstr "Mise à jour" 2860 2863 2864 msgid "Activate selected plugins" 2865 msgstr "Activer les plugins sélectionnés" 2866 2867 msgid "Activate all plugins from this list" 2868 msgstr "Activer tous les plugins de cette liste" 2869 2870 msgid "Deactivate selected plugins" 2871 msgstr "Désactiver les plugins sélectionnés" 2872 2873 msgid "Deactivate all plugins from this list" 2874 msgstr "Désactiver tous les plugins de cette liste" 2875 2876 msgid "Update selected plugins" 2877 msgstr "Mettre à jour les plugins sélectionnés" 2878 2879 msgid "Update all plugins from this list" 2880 msgstr "Mettre à jour tous les plugins de cette liste" 2881 2861 2882 msgid "No such plugin." 2862 2883 msgstr "Plugin inexistant." 2863 2884 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 2877 2885 msgid "You don't have permissions to delete this plugin." 2878 2886 msgstr "Vous n'avez pas les permissions pour supprimer ce plugin." 2879 2887 2880 msgid "Some plugins have not been delete d."2888 msgid "Some plugins have not been delete." 2881 2889 msgstr "Certains plugins n'ont pas pu être supprimés." 2882 2890 2883 2891 msgid "Plugin has been successfully deleted." 2884 msgid_plural "Plugins have been success fully deleted."2892 msgid_plural "Plugins have been successuflly deleted." 2885 2893 msgstr[0] "Ce plugin a été supprimé." 2886 msgstr[1] "Ces plugins ont été supprimé." 2894 msgstr[1] "Ces plugins ont été supprimés." 2895 2896 msgid "Plugin has been successfully installed." 2897 msgid_plural "Plugins have been successuflly installed." 2898 msgstr[0] "Ce plugin a été installé." 2899 msgstr[1] "Ces plugins ont été installés." 2900 2901 msgid "Plugin has been successfully activated." 2902 msgid_plural "Plugins have been successuflly activated." 2903 msgstr[0] "Ce plugin a été activé." 2904 msgstr[1] "Ces plugins ont été activés." 2905 2906 msgid "Some plugins have not been deactivated." 2907 msgstr "Certains plugins n'ont pas pu être désactivés." 2908 2909 msgid "Plugin has been successfully deactivated." 2910 msgid_plural "Plugins have been successuflly deactivated." 2911 msgstr[0] "Ce plugin a été désactivé." 2912 msgstr[1] "Ces plugins ont été désactivés." 2887 2913 2888 2914 msgid "Plugin has been successfully updated." 2889 msgid_plural "Plugins have been success fully updated."2915 msgid_plural "Plugins have been successuflly updated." 2890 2916 msgstr[0] "Ce plugin a été mis à jour." 2891 2917 msgstr[1] "Ces plugins ont été mis à jour." 2892 2918 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 2928 2919 msgid "Zip file path:" 2929 2920 msgstr "Chemin du fichier zip :" … … 3003 2994 msgstr "Ce thème a été sélectionné." 3004 2995 3005 msgid "Theme has been successfully deactivated."3006 msgid_plural "Themes have been success fully deactivated."2996 msgid "Theme has been successfully activated." 2997 msgid_plural "Themes have been successuflly activated." 3007 2998 msgstr[0] "Ce thème a été activé." 3008 2999 msgstr[1] "Ces thèmes ont été activé." 3009 3000 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 3013 3001 msgid "Some themes have not been deactivated." 3014 3002 msgstr "Certains thèmes n'ont pas pu être desactivé." 3015 3003 3016 3004 msgid "Theme has been successfully deactivated." 3017 msgid_plural "Themes have been success fully deactivated."3005 msgid_plural "Themes have been successuflly deactivated." 3018 3006 msgstr[0] "Ce thème a été désactivé." 3019 3007 msgstr[1] "Ces thèmes ont été désactivé." … … 3026 3014 3027 3015 msgid "Theme has been successfully deleted." 3028 msgid_plural "Themes have been success fully deleted."3016 msgid_plural "Themes have been successuflly deleted." 3029 3017 msgstr[0] "Ce thème a été supprimé." 3030 3018 msgstr[1] "Ces thèmes ont été supprimé." 3031 3019 3020 msgid "Theme has been successfully installed." 3021 msgid_plural "Themes have been successuflly installed." 3022 msgstr[0] "Ce thème a été installé." 3023 msgstr[1] "Ces thèmes ont été installé." 3024 3032 3025 msgid "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." 3026 msgid_plural "Themes have been successuflly updated." 3040 3027 msgstr[0] "Ce thème a été mis à jour." 3041 3028 msgstr[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é."3047 3029 3048 3030 msgid "First page" … … 3378 3360 msgstr "Impossible de lire le nouveau fichier _define.php." 3379 3361 3362 msgid "No such module." 3363 msgstr "Module inexistant." 3364 3380 3365 msgid "Cannot remove module files" 3381 3366 msgstr "Impossible de supprimer les fichiers du module" … … 3665 3650 msgstr "L'erreur suivante a été rencontrée lors de la tentative d'accès à la base de données :" 3666 3651 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 3667 3670 #~ msgid "Title (optional)" 3668 3671 #~ msgstr "Titre (optionnel)" -
locales/fr/plugins.po
r2485 r2503 11 11 "Project-Id-Version: Dotclear\n" 12 12 "Report-Msgid-Bugs-To: \n" 13 "POT-Creation-Date: 2013-10-2 3 13:44+0000\n"13 "POT-Creation-Date: 2013-10-29 16:28+0100\n" 14 14 "PO-Revision-Date: 2012-11-06 10:04+0100\n" 15 15 "Last-Translator: Franck Paul <carnet.franck.paul@gmail.com>\n" … … 1968 1968 msgstr "Descendre le widget" 1969 1969 1970 msgid "Remove the widget" 1971 msgstr "Retirer le widget" 1972 1970 1973 msgid "Remove widget" 1971 1974 msgstr "Retirer le widget" -
locales/fr/public.po
r2386 r2503 242 242 msgstr "Lire" 243 243 244 #~msgid "in"245 #~msgstr "dans"246 247 #~msgid "In"248 #~msgstr "Dans"244 msgid "in" 245 msgstr "dans" 246 247 msgid "In" 248 msgstr "Dans" -
tests/functional/fixtures/tabs.html
r2010 r2497 7 7 <div class="multi-part" id="user-favorites" title="My favorites"> 8 8 <p>My favorites</p> 9 </div 9 </div>
Note: See TracChangeset
for help on using the changeset viewer.