Dotclear

Changeset 2361


Ignore:
Timestamp:
06/14/10 09:46:27 (13 years ago)
Author:
bruno
Message:

gallery 0.4alpha2 :

  • Added "generate thumbnails" to newitems.php
  • Typo fixes
Location:
plugins/gallery/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • plugins/gallery/trunk/_admin.php

    r1938 r2361  
    2828$core->rest->addFunction('galGetNewMedia', array('galleryRest','galGetNewMedia')); 
    2929$core->rest->addFunction('galGetGalleries', array('galleryRest','galGetGalleries')); 
     30$core->rest->addFunction('galGetCurrentMedia', array('galleryRest','galGetCurrentMedia')); 
    3031 
    3132# Update methods 
     
    116117          } 
    117118          return $rsp; 
     119     } 
     120 
     121     public static function galGetCurrentMedia($core,$get,$post) { 
     122          $core->meta = new dcMeta($core); 
     123          $core->gallery = new dcGallery($core); 
     124          $params=array(); 
     125          if (empty($get['mediaDir'])) { 
     126               throw new Exception('No media dir'); 
     127          } 
     128          $dir=$get['mediaDir']; 
     129          $rs=$core->gallery->getCurrentMedia($dir); 
     130          $rsp = new xmlTag(); 
     131          while ($rs->fetch()) { 
     132               $media = new xmlTag('media'); 
     133               $media->id = $rs->media_id; 
     134               $media->name = $rs->media_file; 
     135               $rsp->insertNode($media); 
     136          } 
     137          return $rsp; 
     138           
    118139     } 
    119140 
  • plugins/gallery/trunk/_define.php

    r1690 r2361  
    1616     /* Description*/         "Image Gallery for Dotclear2", 
    1717     /* Author */             "Bruno Hondelatte", 
    18      /* Version */            '0.4alpha', 
     18     /* Version */            '0.4alpha2', 
    1919     /* Permissions */        'usage,contentadmin' 
    2020); 
  • plugins/gallery/trunk/class.dc.gallery.php

    r2272 r2361  
    737737          } 
    738738          return $res; 
     739     } 
     740 
     741     /** 
     742      * getCurrentMedia 
     743      *  
     744      * Retrieve media already created in a given directory 
     745      * 
     746      * @param mixed $media_dir  the media directory to scan 
     747      * @access public 
     748      * @return array list of media  
     749      */ 
     750     function getCurrentMedia($media_dir) { 
     751          $strReq = 
     752          'SELECT media_file, media_id, media_path, media_title, media_meta, media_dt, '. 
     753          'media_creadt, media_upddt, media_private, user_id '. 
     754          'FROM '.$this->table.' '. 
     755          "WHERE media_path = '".$this->path."' ". 
     756          "AND media_dir = '".$this->con->escape($media_dir)."' "; 
     757           
     758          if (!$this->core->auth->check('media_admin',$this->core->blog->id)) 
     759          { 
     760               $strReq .= 'AND (media_private <> 1 '; 
     761                
     762               if ($this->core->auth->userID()) { 
     763                    $strReq .= "OR user_id = '".$this->con->escape($this->core->auth->userID())."'"; 
     764               } 
     765               $strReq .= ') '; 
     766          } 
     767           
     768          $strReq .= 'ORDER BY LOWER(media_file) ASC'; 
     769           
     770          $rs = $this->con->select($strReq); 
     771          return $rs; 
    739772     } 
    740773 
  • plugins/gallery/trunk/galthumbnail.php

    r2154 r2361  
    3030} 
    3131if ($gal_id == null) { 
    32      $core->error->add(__('This gallery does not exits')); 
     32     $core->error->add(__('This gallery does not exist')); 
    3333     $display_page=false; 
    3434} 
  • plugins/gallery/trunk/js/_newitems.js

    r2154 r2361  
    1 var media = {newMedia: [], withoutPost: []}; 
     1var media = {newMedia: [], withoutPost: [], currentMedia: []}; 
    22var newMediaError=''; 
    33var waitingImage = '<img src="index.php?pf=gallery/progress.gif"/>'; 
     
    1414 
    1515function cleanup () { 
    16 media = {newMedia: [], withoutPost: []}; 
     16media = {newMedia: [], withoutPost: [], currentMedia: []}; 
    1717newMediaError=''; 
    1818 
     
    2121$("#nbnewmedia").html(waitingImage); 
    2222$("#nbmediawithoutpost").html(waitingImage); 
     23$("#nbcurmedia").html(waitingImage); 
    2324 
    2425} 
     
    5657          newMediaError=$(data).find('message').text(); 
    5758          $("#nbnewmedia").text("#ERR#"+newMediaError); 
     59     } 
     60 
     61} 
     62function onGetCurrentMedia(data) { 
     63     if ($(data).find('rsp').attr('status') == 'ok') { 
     64          var files=$(data).find('media'); 
     65          files.each(function() { 
     66               var id=$(this).attr('id'); 
     67               var filename=$(this).attr('name'); 
     68               media.currentMedia.push ({"id": id , "name": filename}); 
     69          }); 
     70          $("#nbcurmedia").text(""+media.currentMedia.length); 
     71     } else { 
     72          newMediaError=$(data).find('message').text(); 
     73          $("#nbcurmedia").text("#ERR#"+newMediaError); 
    5874     } 
    5975 
     
    121137          data: {f: 'galGetMediaWithoutPost', "mediaDir": media_dir},  
    122138          success: onGetWithoutPost 
     139     }); 
     140     nQueuedManager.add({ 
     141          type: 'GET',  
     142          url: 'services.php',  
     143          data: {f: 'galGetCurrentMedia', "mediaDir": media_dir},  
     144          success: onGetCurrentMedia 
    123145     }); 
    124146}); 
     
    188210          } 
    189211     } 
     212     if ($('#force_thumbnails')[0].checked) { 
     213          while (media.currentMedia.length != 0) { 
     214               var item=media.currentMedia.shift(); 
     215               id = rd.addLine(dotclear.msg.creating_thumbnail.replace(/%s/,item.name)); 
     216               queuedManager.add({ 
     217                    type: 'POST', 
     218                    url: 'services.php', 
     219                    data: {f: "galCreateImgForMedia", mediaId: item.id, updateTimeStamp: update_ts, xd_check: dotclear.nonce}, 
     220                    success: (function(id) { return function(data) { 
     221                              rd.setResult(data,id); 
     222                              };})(id) 
     223                    }); 
     224          } 
     225     } 
    190226}); 
    191227 
  • plugins/gallery/trunk/locales/_pot/main.pot

    r1903 r2361  
    88"Project-Id-Version: Dotclear 2 gallery module\n" 
    99"Report-Msgid-Bugs-To: \n" 
    10 "POT-Creation-Date: 2009-11-24 16:43+0100\n" 
     10"POT-Creation-Date: 2010-06-14 09:37+0200\n" 
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 
    1212"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" 
     
    1616"Content-Transfer-Encoding: 8bit\n" 
    1717 
    18 #: plugins/gallery/Copie de _public_tpl.php:118 
    19 #: plugins/gallery/_public_tpl.php:118 plugins/gallery/_public_widgets.php:27 
    20 msgid "No category" 
    21 msgstr "" 
    22  
    2318#: plugins/gallery/__html_tpl_dummy.php:9 plugins/gallery/_admin.php:17 
    2419#: plugins/gallery/_public_widgets.php:102 plugins/gallery/_widgets.php:21 
    25 #: plugins/gallery/gal.php:491 plugins/gallery/gals.php:272 
    26 #: plugins/gallery/gals.php:283 plugins/gallery/gals.php:291 
    27 #: plugins/gallery/gals_actions.php:156 plugins/gallery/item.php:355 
    28 #: plugins/gallery/item.php:360 plugins/gallery/item.php:376 
    29 #: plugins/gallery/items.php:336 plugins/gallery/items.php:337 
    30 #: plugins/gallery/items_adv.php:338 plugins/gallery/items_adv.php:339 
    31 #: plugins/gallery/maintenance.php:179 plugins/gallery/maintenance.php:180 
    32 #: plugins/gallery/newitems.php:62 plugins/gallery/newitems.php:63 
    33 #: plugins/gallery/options.php:202 plugins/gallery/options.php:203 
    34 #: plugins/gallery/options.php:306 
     20#: plugins/gallery/gal.php:495 plugins/gallery/gals.php:271 
     21#: plugins/gallery/gals.php:282 plugins/gallery/gals.php:290 
     22#: plugins/gallery/gals_actions.php:155 plugins/gallery/item.php:359 
     23#: plugins/gallery/item.php:364 plugins/gallery/item.php:380 
     24#: plugins/gallery/items.php:335 plugins/gallery/items.php:336 
     25#: plugins/gallery/items_adv.php:337 plugins/gallery/items_adv.php:338 
     26#: plugins/gallery/maintenance.php:185 plugins/gallery/maintenance.php:186 
     27#: plugins/gallery/newitems.php:67 plugins/gallery/newitems.php:68 
     28#: plugins/gallery/options.php:196 plugins/gallery/options.php:197 
     29#: plugins/gallery/options.php:300 
    3530msgid "Galleries" 
    3631msgstr "" 
     
    6459msgstr "" 
    6560 
    66 #: plugins/gallery/_admin.php:338 
     61#: plugins/gallery/_admin.php:361 
    6762#, php-format 
    6863msgid "%d galleries" 
    6964msgstr "" 
    7065 
    71 #: plugins/gallery/_admin.php:338 
     66#: plugins/gallery/_admin.php:361 
    7267#, php-format 
    7368msgid "%d gallery" 
    7469msgstr "" 
    7570 
    76 #: plugins/gallery/_admin.php:341 
     71#: plugins/gallery/_admin.php:364 
    7772#, php-format 
    7873msgid "%d image" 
    7974msgstr "" 
    8075 
    81 #: plugins/gallery/_admin.php:341 
     76#: plugins/gallery/_admin.php:364 
    8277#, php-format 
    8378msgid "%d images" 
    8479msgstr "" 
    8580 
    86 #: plugins/gallery/_public_widgets.php:174 plugins/gallery/options.php:151 
     81#: plugins/gallery/_public_tpl.php:119 plugins/gallery/_public_widgets.php:27 
     82msgid "No category" 
     83msgstr "" 
     84 
     85#: plugins/gallery/_public_widgets.php:174 plugins/gallery/options.php:145 
    8786msgid "All galleries" 
    8887msgstr "" 
     
    9291msgstr "" 
    9392 
    94 #: plugins/gallery/_public_widgets.php:220 plugins/gallery/_widgets.php:45 
     93#: plugins/gallery/_public_widgets.php:224 plugins/gallery/_widgets.php:45 
    9594msgid "Last images" 
    9695msgstr "" 
    9796 
    98 #: plugins/gallery/_public_widgets.php:248 
     97#: plugins/gallery/_public_widgets.php:252 
    9998msgid "Image Information" 
    10099msgstr "" 
     
    188187msgstr "" 
    189188 
    190 #: plugins/gallery/class.dc.gallery.php:49 
     189#: plugins/gallery/class.dc.gallery.php:50 
    191190msgid "Filename" 
    192191msgstr "" 
    193192 
    194 #: plugins/gallery/class.dc.gallery.php:921 
     193#: plugins/gallery/class.dc.gallery.php:1037 
    195194msgid "Media not found" 
    196195msgstr "" 
     
    211210msgstr "" 
    212211 
    213 #: plugins/gallery/class.dc.gallery.themeadapter.php:138 
     212#: plugins/gallery/class.dc.gallery.themeadapter.php:139 
    214213#, php-format 
    215214msgid "Could not create directory %s. Error is : %s" 
    216215msgstr "" 
    217216 
    218 #: plugins/gallery/class.dc.gallery.themeadapter.php:144 
     217#: plugins/gallery/class.dc.gallery.themeadapter.php:145 
    219218#, php-format 
    220219msgid "Could not generate %s template. Aborting." 
    221220msgstr "" 
    222221 
    223 #: plugins/gallery/class.dc.gallerylists.php:35 plugins/gallery/gal.php:524 
    224 #: plugins/gallery/gal.php:668 plugins/gallery/gals.php:376 
    225 #: plugins/gallery/item.php:361 plugins/gallery/items.php:338 
    226 #: plugins/gallery/items_adv.php:340 plugins/gallery/maintenance.php:181 
    227 #: plugins/gallery/newitems.php:64 plugins/gallery/options.php:204 
    228 #: plugins/gallery/options.php:305 
     222#: plugins/gallery/class.dc.gallerylists.php:35 plugins/gallery/gal.php:528 
     223#: plugins/gallery/gal.php:672 plugins/gallery/gals.php:375 
     224#: plugins/gallery/item.php:365 plugins/gallery/items.php:337 
     225#: plugins/gallery/items_adv.php:339 plugins/gallery/maintenance.php:187 
     226#: plugins/gallery/newitems.php:69 plugins/gallery/options.php:198 
     227#: plugins/gallery/options.php:299 
    229228msgid "Images" 
    230229msgstr "" 
     
    234233msgstr "" 
    235234 
    236 #: plugins/gallery/gal.php:39 plugins/gallery/gals.php:293 
     235#: plugins/gallery/gal.php:44 plugins/gallery/gals.php:292 
    237236msgid "New gallery" 
    238237msgstr "" 
    239238 
    240 #: plugins/gallery/gal.php:50 
     239#: plugins/gallery/gal.php:54 
    241240msgid "Use blog settings" 
    242241msgstr "" 
    243242 
    244 #: plugins/gallery/gal.php:52 plugins/gallery/options.php:173 
     243#: plugins/gallery/gal.php:56 plugins/gallery/options.php:167 
    245244msgid "same as gallery theme" 
    246245msgstr "" 
    247246 
    248 #: plugins/gallery/gal.php:190 
     247#: plugins/gallery/gal.php:194 
    249248msgid "Edit gallery" 
    250249msgstr "" 
    251250 
    252 #: plugins/gallery/gal.php:198 
     251#: plugins/gallery/gal.php:202 
    253252msgid "next gallery" 
    254253msgstr "" 
    255254 
    256 #: plugins/gallery/gal.php:205 
     255#: plugins/gallery/gal.php:209 
    257256msgid "previous gallery" 
    258257msgstr "" 
    259258 
    260 #: plugins/gallery/gal.php:427 
     259#: plugins/gallery/gal.php:431 
    261260msgid "The gallery has been successfully updated." 
    262261msgstr "" 
    263262 
    264 #: plugins/gallery/gal.php:430 
     263#: plugins/gallery/gal.php:434 
    265264msgid "The gallery has been successfully created." 
    266265msgstr "" 
    267266 
    268 #: plugins/gallery/gal.php:457 plugins/gallery/gal.php:492 
    269 #: plugins/gallery/items.php:426 plugins/gallery/items_adv.php:428 
     267#: plugins/gallery/gal.php:461 plugins/gallery/gal.php:496 
     268#: plugins/gallery/items.php:425 plugins/gallery/items_adv.php:427 
    270269msgid "Gallery" 
    271270msgstr "" 
    272271 
    273 #: plugins/gallery/gal.php:471 
     272#: plugins/gallery/gal.php:475 
    274273msgid "view gallery" 
    275274msgstr "" 
    276275 
    277 #: plugins/gallery/gal.php:479 
     276#: plugins/gallery/gal.php:483 
    278277msgid "Preview gallery" 
    279278msgstr "" 
    280279 
    281 #: plugins/gallery/gal.php:498 
     280#: plugins/gallery/gal.php:502 
    282281msgid "Presentation thumbnail" 
    283282msgstr "" 
    284283 
    285 #: plugins/gallery/gal.php:511 plugins/gallery/gal.php:512 
     284#: plugins/gallery/gal.php:515 plugins/gallery/gal.php:516 
    286285msgid "Remove" 
    287286msgstr "" 
    288287 
    289 #: plugins/gallery/gal.php:518 
     288#: plugins/gallery/gal.php:522 
    290289msgid "This gallery has no presentation thumbnail" 
    291290msgstr "" 
    292291 
    293 #: plugins/gallery/gal.php:519 
     292#: plugins/gallery/gal.php:523 
    294293msgid "Define one" 
    295294msgstr "" 
    296295 
    297 #: plugins/gallery/gal.php:521 
     296#: plugins/gallery/gal.php:525 
    298297#, php-format 
    299298msgid "This gallery has %d image" 
    300299msgstr "" 
    301300 
    302 #: plugins/gallery/gal.php:521 
     301#: plugins/gallery/gal.php:525 
    303302#, php-format 
    304303msgid "This gallery has %d images" 
    305304msgstr "" 
    306305 
    307 #: plugins/gallery/gal.php:544 plugins/gallery/item.php:403 
     306#: plugins/gallery/gal.php:548 plugins/gallery/item.php:407 
    308307msgid "Gallery status:" 
    309308msgstr "" 
    310309 
    311 #: plugins/gallery/gal.php:562 
     310#: plugins/gallery/gal.php:566 
    312311msgid "Selected gallery" 
    313312msgstr "" 
    314313 
    315 #: plugins/gallery/gal.php:564 
     314#: plugins/gallery/gal.php:568 
    316315msgid "Gallery password:" 
    317316msgstr "" 
    318317 
    319 #: plugins/gallery/gal.php:595 
     318#: plugins/gallery/gal.php:599 
    320319msgid "Settings" 
    321320msgstr "" 
    322321 
    323 #: plugins/gallery/gal.php:599 
     322#: plugins/gallery/gal.php:603 
    324323msgid "Select below the image filters you wish to set for this gallery (at least 1 must be selected)" 
    325324msgstr "" 
    326325 
    327 #: plugins/gallery/gal.php:601 
     326#: plugins/gallery/gal.php:605 
    328327msgid "Media dir" 
    329328msgstr "" 
    330329 
    331 #: plugins/gallery/gal.php:602 
     330#: plugins/gallery/gal.php:606 
    332331msgid "include subdirs" 
    333332msgstr "" 
    334333 
    335 #: plugins/gallery/gal.php:607 
     334#: plugins/gallery/gal.php:611 
    336335msgid "Include sub-categories" 
    337336msgstr "" 
    338337 
    339 #: plugins/gallery/gal.php:609 
     338#: plugins/gallery/gal.php:613 
    340339msgid "User" 
    341340msgstr "" 
    342341 
    343 #: plugins/gallery/gal.php:614 
     342#: plugins/gallery/gal.php:618 
    344343msgid "Sort" 
    345344msgstr "" 
    346345 
    347 #: plugins/gallery/gal.php:615 plugins/gallery/maintenance.php:199 
     346#: plugins/gallery/gal.php:619 plugins/gallery/maintenance.php:205 
    348347msgid "Theme" 
    349348msgstr "" 
    350349 
    351 #: plugins/gallery/gal.php:616 
     350#: plugins/gallery/gal.php:620 
    352351msgid "Gallery theme" 
    353352msgstr "" 
    354353 
    355 #: plugins/gallery/gal.php:617 
     354#: plugins/gallery/gal.php:621 
    356355msgid "Gallery integrated theme" 
    357356msgstr "" 
    358357 
    359 #: plugins/gallery/gal.php:669 plugins/gallery/gals.php:377 
    360 #: plugins/gallery/item.php:490 plugins/gallery/items.php:464 
    361 #: plugins/gallery/items_adv.php:468 plugins/gallery/maintenance.php:182 
    362 #: plugins/gallery/newitems.php:65 plugins/gallery/options.php:205 
     358#: plugins/gallery/gal.php:673 plugins/gallery/gals.php:376 
     359#: plugins/gallery/item.php:494 plugins/gallery/items.php:463 
     360#: plugins/gallery/items_adv.php:467 plugins/gallery/maintenance.php:188 
     361#: plugins/gallery/newitems.php:70 plugins/gallery/options.php:199 
    363362msgid "Manage new items" 
    364363msgstr "" 
    365364 
    366 #: plugins/gallery/gal.php:670 plugins/gallery/gals.php:378 
    367 #: plugins/gallery/item.php:491 plugins/gallery/items.php:465 
    368 #: plugins/gallery/items_adv.php:469 plugins/gallery/maintenance.php:183 
    369 #: plugins/gallery/newitems.php:100 plugins/gallery/options.php:185 
    370 #: plugins/gallery/options.php:202 plugins/gallery/options.php:206 
     365#: plugins/gallery/gal.php:674 plugins/gallery/gals.php:377 
     366#: plugins/gallery/item.php:495 plugins/gallery/items.php:464 
     367#: plugins/gallery/items_adv.php:468 plugins/gallery/maintenance.php:189 
     368#: plugins/gallery/newitems.php:107 plugins/gallery/options.php:179 
     369#: plugins/gallery/options.php:196 plugins/gallery/options.php:200 
    371370msgid "Options" 
    372371msgstr "" 
    373372 
    374 #: plugins/gallery/gals.php:172 
     373#: plugins/gallery/gals.php:171 
    375374msgid "update" 
     375msgstr "" 
     376 
     377#: plugins/gallery/gals.php:176 plugins/gallery/items.php:219 
     378#: plugins/gallery/items_adv.php:223 
     379msgid "Select for integration" 
    376380msgstr "" 
    377381 
    378382#: plugins/gallery/gals.php:177 plugins/gallery/items.php:220 
    379383#: plugins/gallery/items_adv.php:224 
    380 msgid "Select for integration" 
    381 msgstr "" 
    382  
    383 #: plugins/gallery/gals.php:178 plugins/gallery/items.php:221 
    384 #: plugins/gallery/items_adv.php:225 
    385384msgid "unselect for integration" 
    386385msgstr "" 
    387386 
    388 #: plugins/gallery/gals.php:283 
     387#: plugins/gallery/gals.php:282 
    389388msgid "Main menu" 
    390389msgstr "" 
    391390 
    392 #: plugins/gallery/gals.php:287 
     391#: plugins/gallery/gals.php:286 
    393392msgid "Invalid theme dir detected in blog settings. Please update gallery_themes_path setting in about:config." 
    394393msgstr "" 
    395394 
    396 #: plugins/gallery/gals.php:340 plugins/gallery/items.php:393 
    397 #: plugins/gallery/items_adv.php:395 
     395#: plugins/gallery/gals.php:339 plugins/gallery/items.php:392 
     396#: plugins/gallery/items_adv.php:394 
    398397msgid "Clear filter" 
    399398msgstr "" 
     
    407406msgstr "" 
    408407 
    409 #: plugins/gallery/gals_actions.php:237 plugins/gallery/items_actions.php:301 
     408#: plugins/gallery/gals_actions.php:237 plugins/gallery/items_actions.php:306 
     409#: plugins/gallery/items_actions.php:325 
    410410msgid "Processing result" 
    411411msgstr "" 
    412412 
    413 #: plugins/gallery/gals_actions.php:239 plugins/gallery/items_actions.php:303 
     413#: plugins/gallery/gals_actions.php:238 plugins/gallery/items_actions.php:307 
     414#: plugins/gallery/items_actions.php:326 plugins/gallery/newitems.php:101 
     415msgid "Abort processing" 
     416msgstr "" 
     417 
     418#: plugins/gallery/gals_actions.php:239 plugins/gallery/items_actions.php:308 
     419#: plugins/gallery/items_actions.php:327 
    414420msgid "Actions" 
    415421msgstr "" 
    416422 
    417 #: plugins/gallery/galthumbnail.php:33 
     423#: plugins/gallery/gals_actions.php:240 plugins/gallery/items_actions.php:309 
     424#: plugins/gallery/items_actions.php:328 plugins/gallery/newitems.php:82 
     425#: plugins/gallery/newitems.php:103 
     426msgid "Request" 
     427msgstr "" 
     428 
     429#: plugins/gallery/gals_actions.php:240 plugins/gallery/items_actions.php:309 
     430#: plugins/gallery/items_actions.php:328 plugins/gallery/newitems.php:82 
     431#: plugins/gallery/newitems.php:103 
     432msgid "Result" 
     433msgstr "" 
     434 
     435#: plugins/gallery/galthumbnail.php:32 
    418436msgid "This gallery does not exits" 
    419437msgstr "" 
    420438 
    421 #: plugins/gallery/galthumbnail.php:88 
     439#: plugins/gallery/galthumbnail.php:87 
    422440#, php-format 
    423441msgid "Choose a media to attach to gallery %s by clicking on %s." 
    424442msgstr "" 
    425443 
    426 #: plugins/gallery/item.php:121 
     444#: plugins/gallery/item.php:125 
    427445msgid "Edit image" 
    428446msgstr "" 
    429447 
    430 #: plugins/gallery/item.php:130 
     448#: plugins/gallery/item.php:134 
    431449msgid "next item" 
    432450msgstr "" 
    433451 
    434 #: plugins/gallery/item.php:137 
     452#: plugins/gallery/item.php:141 
    435453msgid "previous item" 
    436454msgstr "" 
    437455 
    438 #: plugins/gallery/item.php:297 
     456#: plugins/gallery/item.php:301 
    439457msgid "The image has been successfully updated." 
    440458msgstr "" 
    441459 
    442 #: plugins/gallery/item.php:300 
     460#: plugins/gallery/item.php:304 
    443461msgid "The image has been successfully created." 
    444462msgstr "" 
    445463 
    446 #: plugins/gallery/item.php:327 
     464#: plugins/gallery/item.php:331 
    447465msgid "view item" 
    448466msgstr "" 
    449467 
    450 #: plugins/gallery/item.php:334 
     468#: plugins/gallery/item.php:338 
    451469msgid "Preview image" 
    452470msgstr "" 
    453471 
    454 #: plugins/gallery/item.php:362 
     472#: plugins/gallery/item.php:366 
    455473msgid "Image" 
    456474msgstr "" 
    457475 
    458 #: plugins/gallery/item.php:369 
     476#: plugins/gallery/item.php:373 
    459477msgid "Media" 
    460478msgstr "" 
    461479 
    462 #: plugins/gallery/item.php:370 
     480#: plugins/gallery/item.php:374 
    463481msgid "View associated media" 
    464482msgstr "" 
    465483 
    466 #: plugins/gallery/item.php:372 
     484#: plugins/gallery/item.php:376 
    467485#, php-format 
    468486msgid "This image belongs to %d galleries" 
    469487msgstr "" 
    470488 
    471 #: plugins/gallery/item.php:372 
     489#: plugins/gallery/item.php:376 
    472490#, php-format 
    473491msgid "This image belongs to %d gallery" 
    474492msgstr "" 
    475493 
    476 #: plugins/gallery/item.php:421 
     494#: plugins/gallery/item.php:425 
    477495msgid "Selected image" 
    478496msgstr "" 
    479497 
     498#: plugins/gallery/items.php:208 plugins/gallery/items_adv.php:208 
     499msgid "Remove image-post" 
     500msgstr "" 
     501 
    480502#: plugins/gallery/items.php:209 plugins/gallery/items_adv.php:209 
    481 msgid "Remove image-post" 
    482 msgstr "" 
    483  
    484 #: plugins/gallery/items.php:210 plugins/gallery/items_adv.php:210 
    485503msgid "set date to media exif date" 
    486504msgstr "" 
    487505 
    488 #: plugins/gallery/items.php:213 plugins/gallery/items_adv.php:213 
     506#: plugins/gallery/items.php:212 plugins/gallery/items_adv.php:212 
    489507msgid "add tags" 
    490508msgstr "" 
    491509 
    492 #: plugins/gallery/items.php:319 plugins/gallery/items_adv.php:320 
    493 #: plugins/gallery/newitems.php:42 
     510#: plugins/gallery/items.php:318 plugins/gallery/items_adv.php:319 
     511#: plugins/gallery/newitems.php:45 
    494512msgid "Gallery Items" 
    495513msgstr "" 
    496514 
    497 #: plugins/gallery/items.php:328 plugins/gallery/items_adv.php:323 
     515#: plugins/gallery/items.php:327 plugins/gallery/items_adv.php:322 
    498516msgid "Show / Hide thumbnails" 
    499517msgstr "" 
    500518 
    501 #: plugins/gallery/items.php:350 plugins/gallery/items_adv.php:352 
     519#: plugins/gallery/items.php:349 plugins/gallery/items_adv.php:351 
    502520msgid "Gallery:" 
    503521msgstr "" 
    504522 
    505 #: plugins/gallery/items.php:353 plugins/gallery/items_adv.php:355 
     523#: plugins/gallery/items.php:352 plugins/gallery/items_adv.php:354 
    506524msgid "Media dir:" 
    507525msgstr "" 
    508526 
    509 #: plugins/gallery/items.php:421 plugins/gallery/items_adv.php:423 
     527#: plugins/gallery/items.php:420 plugins/gallery/items_adv.php:422 
    510528msgid "Gallery content" 
    511529msgstr "" 
    512530 
    513 #: plugins/gallery/items.php:423 plugins/gallery/items_adv.php:425 
     531#: plugins/gallery/items.php:422 plugins/gallery/items_adv.php:424 
    514532msgid "filtered" 
    515533msgstr "" 
    516534 
    517 #: plugins/gallery/items_actions.php:200 
     535#: plugins/gallery/items_actions.php:204 
    518536msgid "Waiting..." 
    519537msgstr "" 
    520538 
    521 #: plugins/gallery/items_actions.php:201 
     539#: plugins/gallery/items_actions.php:205 
    522540msgid "updating date to media exif" 
    523541msgstr "" 
    524542 
    525 #: plugins/gallery/items_actions.php:300 
     543#: plugins/gallery/items_actions.php:305 
    526544msgid "Fix images date" 
    527545msgstr "" 
    528546 
    529 #: plugins/gallery/items_actions.php:302 plugins/gallery/newitems.php:94 
    530 msgid "Abort processing" 
    531 msgstr "" 
    532  
    533 #: plugins/gallery/items_actions.php:304 plugins/gallery/newitems.php:77 
    534 #: plugins/gallery/newitems.php:96 
    535 msgid "Request" 
    536 msgstr "" 
    537  
    538 #: plugins/gallery/items_actions.php:304 plugins/gallery/newitems.php:77 
    539 #: plugins/gallery/newitems.php:96 
    540 msgid "Result" 
     547#: plugins/gallery/items_actions.php:324 
     548msgid "Generating missing thumbs" 
     549msgstr "" 
     550 
     551#: plugins/gallery/items_adv.php:214 
     552msgid "Thumbnails" 
    541553msgstr "" 
    542554 
    543555#: plugins/gallery/items_adv.php:215 
    544 msgid "Thumbnails" 
     556msgid "Generate missing thumbnails" 
    545557msgstr "" 
    546558 
    547559#: plugins/gallery/items_adv.php:216 
    548 msgid "Generate missing thumbnails" 
    549 msgstr "" 
    550  
    551 #: plugins/gallery/items_adv.php:217 
    552560msgid "Force thumbnail regeneration" 
    553561msgstr "" 
    554562 
    555 #: plugins/gallery/items_adv.php:432 
     563#: plugins/gallery/items_adv.php:431 
    556564msgid "Selection" 
    557565msgstr "" 
    558566 
     567#: plugins/gallery/items_adv.php:433 
     568msgid "none" 
     569msgstr "" 
     570 
    559571#: plugins/gallery/items_adv.php:434 
    560 msgid "none" 
    561 msgstr "" 
    562  
    563 #: plugins/gallery/items_adv.php:435 
    564572msgid "invert" 
    565573msgstr "" 
    566574 
    567 #: plugins/gallery/maintenance.php:36 
     575#: plugins/gallery/maintenance.php:42 
    568576msgid "Theme is invalid" 
    569577msgstr "" 
    570578 
    571 #: plugins/gallery/maintenance.php:51 
     579#: plugins/gallery/maintenance.php:57 
    572580#, php-format 
    573581msgid "Theme %s already exists, delete it first." 
    574582msgstr "" 
    575583 
    576 #: plugins/gallery/maintenance.php:119 
     584#: plugins/gallery/maintenance.php:125 
    577585#, php-format 
    578586msgid "Could not remove theme %s" 
    579587msgstr "" 
    580588 
    581 #: plugins/gallery/maintenance.php:140 
     589#: plugins/gallery/maintenance.php:146 
    582590msgid "Are you sure you want to delete selected themes ?" 
    583591msgstr "" 
    584592 
    585 #: plugins/gallery/maintenance.php:153 
     593#: plugins/gallery/maintenance.php:159 
    586594msgid "The theme has been successfully adapted." 
    587595msgstr "" 
    588596 
    589 #: plugins/gallery/maintenance.php:156 
     597#: plugins/gallery/maintenance.php:162 
    590598msgid "The theme has been successfully installed." 
    591599msgstr "" 
    592600 
    593 #: plugins/gallery/maintenance.php:159 
     601#: plugins/gallery/maintenance.php:165 
    594602msgid "The theme has been successfully deleted." 
    595603msgstr "" 
    596604 
    597 #: plugins/gallery/maintenance.php:186 
     605#: plugins/gallery/maintenance.php:192 
    598606msgid "Theme Adapter" 
    599607msgstr "" 
    600608 
    601 #: plugins/gallery/maintenance.php:187 
     609#: plugins/gallery/maintenance.php:193 
    602610msgid "This section enables to adapt gallery themes to a Dotclear theme, if needed." 
    603611msgstr "" 
    604612 
    605 #: plugins/gallery/maintenance.php:188 
     613#: plugins/gallery/maintenance.php:194 
    606614msgid "<strong>Caution :</strong> use the theme adapter only if you experience some layout problems when viewing galleries or images on your blog." 
    607615msgstr "" 
    608616 
    609 #: plugins/gallery/maintenance.php:189 
     617#: plugins/gallery/maintenance.php:195 
    610618msgid "Dotclear theme" 
    611619msgstr "" 
    612620 
    613 #: plugins/gallery/maintenance.php:190 
     621#: plugins/gallery/maintenance.php:196 
    614622msgid "Force template regeneration" 
    615623msgstr "" 
    616624 
    617 #: plugins/gallery/maintenance.php:191 
     625#: plugins/gallery/maintenance.php:197 
    618626msgid "Adapt" 
    619627msgstr "" 
    620628 
    621 #: plugins/gallery/maintenance.php:197 
     629#: plugins/gallery/maintenance.php:203 
    622630msgid "Gallery Themes" 
    623631msgstr "" 
    624632 
    625 #: plugins/gallery/maintenance.php:208 
     633#: plugins/gallery/maintenance.php:214 
    626634msgid "Uninstall selected themes" 
    627635msgstr "" 
    628636 
    629 #: plugins/gallery/maintenance.php:214 
     637#: plugins/gallery/maintenance.php:220 
    630638msgid "Upload a new Gallery theme" 
    631639msgstr "" 
    632640 
    633 #: plugins/gallery/maintenance.php:226 
     641#: plugins/gallery/maintenance.php:232 
    634642msgid "Download a new Gallery theme" 
    635643msgstr "" 
    636644 
    637 #: plugins/gallery/newitems.php:50 
     645#: plugins/gallery/newitems.php:54 
    638646msgid "Deleting orphan media" 
    639647msgstr "" 
    640648 
    641 #: plugins/gallery/newitems.php:51 
     649#: plugins/gallery/newitems.php:55 
    642650msgid "Deleting orphan image-posts" 
    643651msgstr "" 
    644652 
    645 #: plugins/gallery/newitems.php:52 
     653#: plugins/gallery/newitems.php:56 
    646654#, php-format 
    647655msgid "Creating media : %s" 
    648656msgstr "" 
    649657 
    650 #: plugins/gallery/newitems.php:53 
     658#: plugins/gallery/newitems.php:57 
    651659#, php-format 
    652660msgid "Creating image-post for : %s" 
    653661msgstr "" 
    654662 
    655 #: plugins/gallery/newitems.php:62 
     663#: plugins/gallery/newitems.php:58 
     664#, php-format 
     665msgid "Creating thumbnail for : %s" 
     666msgstr "" 
     667 
     668#: plugins/gallery/newitems.php:67 
    656669msgid "New entries" 
    657670msgstr "" 
    658671 
    659 #: plugins/gallery/newitems.php:68 
     672#: plugins/gallery/newitems.php:73 
    660673msgid "New Items" 
    661674msgstr "" 
    662675 
    663 #: plugins/gallery/newitems.php:69 
     676#: plugins/gallery/newitems.php:74 
    664677msgid "Select directory to analyse : " 
    665678msgstr "" 
    666679 
    667 #: plugins/gallery/newitems.php:72 plugins/gallery/newitems.php:90 
     680#: plugins/gallery/newitems.php:77 plugins/gallery/newitems.php:97 
    668681msgid "proceed" 
    669682msgstr "" 
    670683 
    671 #: plugins/gallery/newitems.php:75 
     684#: plugins/gallery/newitems.php:80 
    672685msgid "Directory results" 
    673686msgstr "" 
    674687 
    675 #: plugins/gallery/newitems.php:78 
     688#: plugins/gallery/newitems.php:83 
    676689msgid "Number of orphan media (ie. media entries in database whose matching file no more exists):" 
    677690msgstr "" 
    678691 
    679 #: plugins/gallery/newitems.php:79 plugins/gallery/options.php:283 
     692#: plugins/gallery/newitems.php:84 plugins/gallery/options.php:277 
    680693msgid "Delete orphan media" 
    681694msgstr "" 
    682695 
    683 #: plugins/gallery/newitems.php:80 
     696#: plugins/gallery/newitems.php:85 
    684697msgid "Number of orphan items (ie. image-post associated to a non-existent media in DB) :" 
    685698msgstr "" 
    686699 
    687 #: plugins/gallery/newitems.php:81 plugins/gallery/options.php:285 
     700#: plugins/gallery/newitems.php:86 plugins/gallery/options.php:279 
    688701msgid "Delete orphan items" 
    689702msgstr "" 
    690703 
    691 #: plugins/gallery/newitems.php:82 
     704#: plugins/gallery/newitems.php:87 
    692705msgid "Number of new media detected :" 
    693706msgstr "" 
    694707 
    695 #: plugins/gallery/newitems.php:83 plugins/gallery/options.php:287 
     708#: plugins/gallery/newitems.php:88 plugins/gallery/options.php:281 
    696709msgid "Create media in database" 
    697710msgstr "" 
    698711 
    699 #: plugins/gallery/newitems.php:84 
     712#: plugins/gallery/newitems.php:89 
    700713msgid "Number of media without post associated :" 
    701714msgstr "" 
    702715 
    703 #: plugins/gallery/newitems.php:85 plugins/gallery/options.php:289 
     716#: plugins/gallery/newitems.php:90 plugins/gallery/options.php:283 
    704717msgid "Create image-post associated to media" 
    705718msgstr "" 
    706719 
    707 #: plugins/gallery/newitems.php:88 plugins/gallery/options.php:291 
     720#: plugins/gallery/newitems.php:91 
     721msgid "Number of media in directory :" 
     722msgstr "" 
     723 
     724#: plugins/gallery/newitems.php:92 
     725msgid "Force thumbnails creation" 
     726msgstr "" 
     727 
     728#: plugins/gallery/newitems.php:95 plugins/gallery/options.php:285 
    708729msgid "Create post-image for each new media" 
    709730msgstr "" 
    710731 
    711 #: plugins/gallery/newitems.php:89 plugins/gallery/options.php:293 
     732#: plugins/gallery/newitems.php:96 plugins/gallery/options.php:287 
    712733msgid "Set post date to image exif date" 
    713734msgstr "" 
    714735 
    715 #: plugins/gallery/newitems.php:93 
     736#: plugins/gallery/newitems.php:100 
    716737msgid "Operations" 
    717738msgstr "" 
    718739 
    719 #: plugins/gallery/options.php:151 plugins/gallery/options.php:152 
     740#: plugins/gallery/options.php:145 plugins/gallery/options.php:146 
    720741msgid "No integration" 
    721742msgstr "" 
    722743 
    723 #: plugins/gallery/options.php:151 
     744#: plugins/gallery/options.php:145 
    724745msgid "Selected galleries" 
    725746msgstr "" 
    726747 
    727 #: plugins/gallery/options.php:152 
     748#: plugins/gallery/options.php:146 
    728749msgid "All images" 
    729750msgstr "" 
    730751 
    731 #: plugins/gallery/options.php:152 
     752#: plugins/gallery/options.php:146 
    732753msgid "Selected images" 
    733754msgstr "" 
    734755 
    735 #: plugins/gallery/options.php:193 
     756#: plugins/gallery/options.php:187 
    736757msgid "Options have been successfully updated." 
    737758msgstr "" 
    738759 
    739 #: plugins/gallery/options.php:219 plugins/gallery/options.php:232 
     760#: plugins/gallery/options.php:213 plugins/gallery/options.php:226 
    740761msgid "Plugin Activation" 
    741762msgstr "" 
    742763 
    743 #: plugins/gallery/options.php:222 
     764#: plugins/gallery/options.php:216 
    744765msgid "The plugin cannot be enabled. Please check in your about:config that public_path points to an existing directory." 
    745766msgstr "" 
    746767 
    747 #: plugins/gallery/options.php:224 
     768#: plugins/gallery/options.php:218 
    748769msgid "The plugin is not enabled for this blog yet. Click below to enable it" 
    749770msgstr "" 
    750771 
    751 #: plugins/gallery/options.php:225 
     772#: plugins/gallery/options.php:219 
    752773msgid "Enable plugin" 
    753774msgstr "" 
    754775 
     776#: plugins/gallery/options.php:227 
     777msgid "Disable plugin for this blog" 
     778msgstr "" 
     779 
    755780#: plugins/gallery/options.php:233 
    756 msgid "Disable plugin for this blog" 
    757 msgstr "" 
    758  
    759 #: plugins/gallery/options.php:239 
    760781msgid "General options" 
    761782msgstr "" 
    762783 
    763 #: plugins/gallery/options.php:240 
     784#: plugins/gallery/options.php:234 
    764785msgid "Public-side options" 
    765786msgstr "" 
    766787 
    767 #: plugins/gallery/options.php:241 
     788#: plugins/gallery/options.php:235 
    768789msgid "Number of galleries per page" 
    769790msgstr "" 
    770791 
    771 #: plugins/gallery/options.php:244 
     792#: plugins/gallery/options.php:238 
    772793msgid "Number of images per page" 
    773794msgstr "" 
    774795 
    775 #: plugins/gallery/options.php:247 plugins/gallery/options.php:263 
     796#: plugins/gallery/options.php:241 plugins/gallery/options.php:257 
    776797msgid "Galleries list sort by" 
    777798msgstr "" 
    778799 
    779 #: plugins/gallery/options.php:250 plugins/gallery/options.php:266 
     800#: plugins/gallery/options.php:244 plugins/gallery/options.php:260 
    780801msgid "Galleries list order" 
    781802msgstr "" 
    782803 
     804#: plugins/gallery/options.php:247 
     805msgid "Group galeries by category" 
     806msgstr "" 
     807 
     808#: plugins/gallery/options.php:250 
     809msgid "Default gallery theme" 
     810msgstr "" 
     811 
    783812#: plugins/gallery/options.php:253 
    784 msgid "Group galeries by category" 
     813msgid "Default gallery theme when integrated" 
    785814msgstr "" 
    786815 
    787816#: plugins/gallery/options.php:256 
    788 msgid "Default gallery theme" 
    789 msgstr "" 
    790  
    791 #: plugins/gallery/options.php:259 
    792 msgid "Default gallery theme when integrated" 
    793 msgstr "" 
    794  
    795 #: plugins/gallery/options.php:262 
    796817msgid "Administration-side options" 
    797818msgstr "" 
    798819 
    799 #: plugins/gallery/options.php:269 
     820#: plugins/gallery/options.php:263 
    800821msgid "Images list sort by" 
    801822msgstr "" 
    802823 
    803 #: plugins/gallery/options.php:272 
     824#: plugins/gallery/options.php:266 
    804825msgid "Images list order" 
    805826msgstr "" 
    806827 
    807 #: plugins/gallery/options.php:281 
     828#: plugins/gallery/options.php:275 
    808829msgid "New Items default options" 
    809830msgstr "" 
    810831 
    811 #: plugins/gallery/options.php:300 
     832#: plugins/gallery/options.php:294 
    812833msgid "Integration options" 
    813834msgstr "" 
    814835 
    815 #: plugins/gallery/options.php:301 
     836#: plugins/gallery/options.php:295 
    816837msgid "Several blog pages display lists of entries. This section enables to include images and/or galleries inside these lists" 
    817838msgstr "" 
    818839 
    819 #: plugins/gallery/options.php:302 
     840#: plugins/gallery/options.php:296 
    820841msgid "You can choose either to display all galleries/images or only galleries/images that have the selected state." 
    821842msgstr "" 
    822843 
    823 #: plugins/gallery/options.php:321 
     844#: plugins/gallery/options.php:315 
    824845msgid "Advanced options" 
    825846msgstr "" 
    826847 
    827 #: plugins/gallery/options.php:322 
     848#: plugins/gallery/options.php:316 
    828849msgid "All the following values will define default URLs for gallery items" 
    829850msgstr "" 
    830851 
     852#: plugins/gallery/options.php:317 
     853msgid "Galleries URL prefix" 
     854msgstr "" 
     855 
     856#: plugins/gallery/options.php:320 
     857msgid "Gallery URL prefix" 
     858msgstr "" 
     859 
    831860#: plugins/gallery/options.php:323 
    832 msgid "Galleries URL prefix" 
    833 msgstr "" 
    834  
    835 #: plugins/gallery/options.php:326 
    836 msgid "Gallery URL prefix" 
    837 msgstr "" 
    838  
    839 #: plugins/gallery/options.php:329 
    840861msgid "Image URL prefix" 
    841862msgstr "" 
  • plugins/gallery/trunk/locales/fr/main.po

    r1903 r2361  
    55"Project-Id-Version: \n" 
    66"Report-Msgid-Bugs-To: \n" 
    7 "POT-Creation-Date: 2009-11-24 16:43+0100\n" 
     7"POT-Creation-Date: 2010-06-14 09:37+0200\n" 
    88"PO-Revision-Date: \n" 
    99"Last-Translator: Kozlika <kozlika@free.fr>\n" 
     
    1313"Content-Transfer-Encoding: 8bit\n" 
    1414 
     15msgid "Galleries" 
     16msgstr "Galeries" 
     17 
     18msgid "This gallery's comments feed" 
     19msgstr "Fil des commentaires de cette galerie" 
     20 
     21msgid "This gallery's images feed" 
     22msgstr "Fil des images de cette galerie" 
     23 
     24msgid "This image's comments feed" 
     25msgstr "Fil des commentaires de cette image" 
     26 
     27msgid "next galleries" 
     28msgstr "galeries suivantes" 
     29 
     30msgid "next images" 
     31msgstr "images suivantes" 
     32 
     33msgid "previous galleries" 
     34msgstr "galeries précédentes" 
     35 
     36msgid "previous images" 
     37msgstr "images précédentes" 
     38 
     39msgid "%d galleries" 
     40msgstr "%d galeries" 
     41 
     42msgid "%d gallery" 
     43msgstr "%d galerie" 
     44 
     45msgid "%d image" 
     46msgstr "%d image" 
     47 
     48msgid "%d images" 
     49msgstr "%d images" 
     50 
    1551msgid "No category" 
    1652msgstr "Sans catégorie" 
    1753 
    18 msgid "Galleries" 
    19 msgstr "Galeries" 
    20  
    21 msgid "This gallery's comments feed" 
    22 msgstr "Fil des commentaires de cette galerie" 
    23  
    24 msgid "This gallery's images feed" 
    25 msgstr "Fil des images de cette galerie" 
    26  
    27 msgid "This image's comments feed" 
    28 msgstr "Fil des commentaires de cette image" 
    29  
    30 msgid "next galleries" 
    31 msgstr "galeries suivantes" 
    32  
    33 msgid "next images" 
    34 msgstr "images suivantes" 
    35  
    36 msgid "previous galleries" 
    37 msgstr "galeries précédentes" 
    38  
    39 msgid "previous images" 
    40 msgstr "images précédentes" 
    41  
    42 #, php-format 
    43 msgid "%d galleries" 
    44 msgstr "%d galeries" 
    45  
    46 #, php-format 
    47 msgid "%d gallery" 
    48 msgstr "%d galerie" 
    49  
    50 #, php-format 
    51 msgid "%d image" 
    52 msgstr "%d image" 
    53  
    54 #, php-format 
    55 msgid "%d images" 
    56 msgstr "%d images" 
    57  
    5854msgid "All galleries" 
    5955msgstr "Toutes les galeries" 
     
    140136msgstr "Média non trouvé" 
    141137 
    142 #, php-format 
    143138msgid "Theme %s is not writeable" 
    144139msgstr "Le thème %s n'est pas accessible en écriture." 
    145140 
    146 #, php-format 
    147141msgid "Theme \"%s\" already contains gallery template files" 
    148142msgstr "Le thème \"%s\" contient déjà des fichiers de template pour Gallery" 
    149143 
    150 #, php-format 
    151144msgid "Theme \"%s\" does not need to be adapted, no html templates are overriden from default theme." 
    152145msgstr "Le thème \"%s\" n'a pas besoin d'être adapté, il ne redéfinit pas les templates du thème par défaut" 
    153146 
    154 #, php-format 
    155147msgid "Could not create directory %s. Error is : %s" 
    156148msgstr "Impossible de créer le répertoire %s. Erreur : %s" 
    157149 
    158 #, php-format 
    159150msgid "Could not generate %s template. Aborting." 
    160151msgstr "Impossible de générer le template %s. Abandon." 
     
    211202msgstr "En définir une" 
    212203 
    213 #, php-format 
    214204msgid "This gallery has %d image" 
    215205msgstr "Cette galerie possède %d image" 
    216206 
    217 #, php-format 
    218207msgid "This gallery has %d images" 
    219208msgstr "Cette galerie possède %d images" 
     
    291280msgstr "Résultat du traitement" 
    292281 
     282msgid "Abort processing" 
     283msgstr "Annuler le traitement" 
     284 
    293285msgid "Actions" 
    294286msgstr "Actions" 
    295287 
    296 #, fuzzy 
    297 msgid "This gallery does not exits" 
    298 msgstr "Cet utilisateur n'existe pas" 
    299  
    300 #, php-format 
     288msgid "Request" 
     289msgstr "Requête" 
     290 
     291msgid "Result" 
     292msgstr "Résultat" 
     293 
     294msgid "This gallery does not exit" 
     295msgstr "Cette gallery n'existe pas" 
     296 
    301297msgid "Choose a media to attach to gallery %s by clicking on %s." 
    302298msgstr "Choisissez un media à attacher à la galerie %s, en cliquant sur %s." 
     
    332328msgstr "Voir le média associé" 
    333329 
    334 #, php-format 
    335330msgid "This image belongs to %d galleries" 
    336331msgstr "Cette image appartient à %d galeries" 
    337332 
    338 #, php-format 
    339333msgid "This image belongs to %d gallery" 
    340334msgstr "Cette image appartient à %d galerie" 
     
    379373msgstr "Mise à jour de la date des images" 
    380374 
    381 msgid "Abort processing" 
    382 msgstr "Annuler le traitement" 
    383  
    384 msgid "Request" 
    385 msgstr "Requête" 
    386  
    387 msgid "Result" 
    388 msgstr "Résultat" 
     375msgid "Generating missing thumbs" 
     376msgstr "Création les miniatures manquantes" 
    389377 
    390378msgid "Thumbnails" 
     
    409397msgstr "Le thème n'est pas valide" 
    410398 
    411 #, php-format 
    412399msgid "Theme %s already exists, delete it first." 
    413400msgstr "Le thème \"%s\" existe déjà. Effacez-le d'abord." 
    414401 
    415 #, php-format 
    416402msgid "Could not remove theme %s" 
    417403msgstr "Impossible de supprimer le thème %s" 
     
    465451msgstr "Suppression des billets-images orphelins" 
    466452 
    467 #, php-format 
    468453msgid "Creating media : %s" 
    469454msgstr "Création du média : %s" 
    470455 
    471 #, php-format 
    472456msgid "Creating image-post for : %s" 
    473457msgstr "Création du billet-image pour : %s" 
    474458 
     459msgid "Creating thumbnail for : %s" 
     460msgstr "Création de la miniature de : %s" 
     461 
    475462msgid "New entries" 
    476463msgstr "Gestion des nouvelles images" 
     
    479466msgstr "Nouvelles images" 
    480467 
    481 msgid "Select directory to analyse : " 
    482 msgstr "Sélectionnez le répertoire à analyser." 
     468msgid "Select directory to analyse :" 
     469msgstr "Sélectionnez le répertoire à analyser :" 
    483470 
    484471msgid "proceed" 
     
    495482 
    496483msgid "Number of orphan items (ie. image-post associated to a non-existent media in DB) :" 
    497 msgstr "Nombre de médias orphelins (ie. médias présents en base de données mais dont le fichier n'existe plus) :" 
     484msgstr "Nombre d'images orphelines (ie. billets-images associés à un média inexistant en base) :" 
    498485 
    499486msgid "Delete orphan items" 
     
    512499msgstr "Créer les billets-images pour les médias dans le dossier" 
    513500 
     501msgid "Number of media in directory :" 
     502msgstr "Nombre de médias dans le répertoire :" 
     503 
     504msgid "Force thumbnails creation" 
     505msgstr "Forcer la création des miniatures" 
     506 
    514507msgid "Create post-image for each new media" 
    515508msgstr "Créer un billet-image pour chaque nouveau média" 
     
    613606msgid "Image URL prefix" 
    614607msgstr "Préfixe pour les URLs d'images" 
    615  
    616 #~ msgid "Also create image-posts for them" 
    617 #~ msgstr "Créer aussi les billets-images associés" 
    618  
    619 #~ msgid "Delete orphan media. (An orphan media is a media present in database, but whose file no more exists)" 
    620 #~ msgstr "Supprimer les médias orphelins. (Un média orphelin est un media présent en base de données mais dont le fichier n'existe plus.)" 
    621  
    622 #~ msgid "Delete orphan image-posts (an orphan image-post is an image-post no more associated to a media, or whose media has been deleted)" 
    623 #~ msgstr "Supprimer les billets-images orphelins (un billet-image orphelin est un billet-image associé à un media qui n'existe plus en base)" 
    624  
    625 #~ msgid "Scan dir for new media" 
    626 #~ msgstr "Rechercher les nouveaux médias dans le répertoire" 
    627  
    628 #~ msgid "Create image-posts for media in dir" 
    629 #~ msgstr "Créer les billets-images pour les médias dans le dossier" 
    630  
    631 #~ msgid "Create missing thumbnails" 
    632 #~ msgstr "Créer les miniatures manquantes" 
    633  
    634 #~ msgid "%s entries found" 
    635 #~ msgstr "%s entrées trouvées" 
    636  
    637 #~ msgid "Create thumbs for media" 
    638 #~ msgstr "Création des miniatures pour le média" 
    639  
    640 #~ msgid "Fetch new media" 
    641 #~ msgstr "Recherche des nouveaux médias" 
    642  
    643 #~ msgid "Fetch media without thumbnails" 
    644 #~ msgstr "Recherche des médias sans miniature" 
    645  
    646 #~ msgid "Retrieve galleries" 
    647 #~ msgstr "Récupération des galeries" 
    648  
    649 #~ msgid "Whole blog" 
    650 #~ msgstr "Tout le blog" 
    651  
    652 #~ msgid "Search subdirectories (available only for image-posts)" 
    653 #~ msgstr "Rechercher dans les sous-répertoires (valable seulement pour les billets-images)" 
    654  
    655 #~ msgid "Gallery mass update" 
    656 #~ msgstr "Mise à jour en masse des galeries" 
    657  
    658 #~ msgid "Update all galeries" 
    659 #~ msgstr "Mettre à jour toutes les galeries" 
    660  
    661 #~ msgid "Change" 
    662 #~ msgstr "Changer" 
    663  
    664 #~ msgid "Insert gallery" 
    665 #~ msgstr "Insérer une galerie" 
    666  
    667 #~ msgid "Insert image from gallery" 
    668 #~ msgstr "Insérer une image depuis une galerie" 
    669  
    670 #~ msgid "Display mode" 
    671 #~ msgstr "Affichage" 
    672  
    673 #~ msgid "Both" 
    674 #~ msgstr "Galeries et catégories" 
  • plugins/gallery/trunk/newitems.php

    r2154 r2361  
    5656          "dotclear.msg.creating_media = '".html::escapeJS(__('Creating media : %s'))."';\n". 
    5757          "dotclear.msg.creating_item = '".html::escapeJS(__('Creating image-post for : %s'))."';\n". 
     58          "dotclear.msg.creating_thumbnail = '".html::escapeJS(__('Creating thumbnail for : %s'))."';\n". 
    5859     "\n//]]>\n". 
    5960     "</script>\n";  
     
    7172echo '<form action="#" method="post" id="dir-form" onsubmit="return false;">'. 
    7273     '<fieldset><legend>'.__('New Items').'</legend>'. 
    73      '<p><label class="classic">'.__('Select directory to analyse : '). 
     74     '<p><label class="classic">'.__('Select directory to analyse :')."&nbsp;". 
    7475     form::combo('media_dir',$dirs_combo,'').'</label></p> '. 
    7576 
     
    8889     '<tr><td>'.__('Number of media without post associated :').'</td><td id="nbmediawithoutpost" class="tdresult">&nbsp;</td>'. 
    8990          '<td>'.form::checkbox('create_img_post',1,$c_create_items).'</td><td>'.__('Create image-post associated to media').'</td></tr>'. 
     91     '<tr><td>'.__('Number of media in directory :').'</td><td id="nbcurmedia" class="tdresult">&nbsp;</td>'. 
     92          '<td>'.form::checkbox('force_thumbnails',1,$c_create_media).'</td><td>'.__('Force thumbnails creation').'</td></tr>'. 
    9093     '</table>'. 
    9194     '<h2>Options</h2>'. 
Note: See TracChangeset for help on using the changeset viewer.

Sites map