Changeset 2361
- Timestamp:
- 06/14/10 09:46:27 (13 years ago)
- Location:
- plugins/gallery/trunk
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/gallery/trunk/_admin.php
r1938 r2361 28 28 $core->rest->addFunction('galGetNewMedia', array('galleryRest','galGetNewMedia')); 29 29 $core->rest->addFunction('galGetGalleries', array('galleryRest','galGetGalleries')); 30 $core->rest->addFunction('galGetCurrentMedia', array('galleryRest','galGetCurrentMedia')); 30 31 31 32 # Update methods … … 116 117 } 117 118 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 118 139 } 119 140 -
plugins/gallery/trunk/_define.php
r1690 r2361 16 16 /* Description*/ "Image Gallery for Dotclear2", 17 17 /* Author */ "Bruno Hondelatte", 18 /* Version */ '0.4alpha ',18 /* Version */ '0.4alpha2', 19 19 /* Permissions */ 'usage,contentadmin' 20 20 ); -
plugins/gallery/trunk/class.dc.gallery.php
r2272 r2361 737 737 } 738 738 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; 739 772 } 740 773 -
plugins/gallery/trunk/galthumbnail.php
r2154 r2361 30 30 } 31 31 if ($gal_id == null) { 32 $core->error->add(__('This gallery does not exi ts'));32 $core->error->add(__('This gallery does not exist')); 33 33 $display_page=false; 34 34 } -
plugins/gallery/trunk/js/_newitems.js
r2154 r2361 1 var media = {newMedia: [], withoutPost: [] };1 var media = {newMedia: [], withoutPost: [], currentMedia: []}; 2 2 var newMediaError=''; 3 3 var waitingImage = '<img src="index.php?pf=gallery/progress.gif"/>'; … … 14 14 15 15 function cleanup () { 16 media = {newMedia: [], withoutPost: [] };16 media = {newMedia: [], withoutPost: [], currentMedia: []}; 17 17 newMediaError=''; 18 18 … … 21 21 $("#nbnewmedia").html(waitingImage); 22 22 $("#nbmediawithoutpost").html(waitingImage); 23 $("#nbcurmedia").html(waitingImage); 23 24 24 25 } … … 56 57 newMediaError=$(data).find('message').text(); 57 58 $("#nbnewmedia").text("#ERR#"+newMediaError); 59 } 60 61 } 62 function 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); 58 74 } 59 75 … … 121 137 data: {f: 'galGetMediaWithoutPost', "mediaDir": media_dir}, 122 138 success: onGetWithoutPost 139 }); 140 nQueuedManager.add({ 141 type: 'GET', 142 url: 'services.php', 143 data: {f: 'galGetCurrentMedia', "mediaDir": media_dir}, 144 success: onGetCurrentMedia 123 145 }); 124 146 }); … … 188 210 } 189 211 } 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 } 190 226 }); 191 227 -
plugins/gallery/trunk/locales/_pot/main.pot
r1903 r2361 8 8 "Project-Id-Version: Dotclear 2 gallery module\n" 9 9 "Report-Msgid-Bugs-To: \n" 10 "POT-Creation-Date: 20 09-11-24 16:43+0100\n"10 "POT-Creation-Date: 2010-06-14 09:37+0200\n" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 16 16 "Content-Transfer-Encoding: 8bit\n" 17 17 18 #: plugins/gallery/Copie de _public_tpl.php:11819 #: plugins/gallery/_public_tpl.php:118 plugins/gallery/_public_widgets.php:2720 msgid "No category"21 msgstr ""22 23 18 #: plugins/gallery/__html_tpl_dummy.php:9 plugins/gallery/_admin.php:17 24 19 #: plugins/gallery/_public_widgets.php:102 plugins/gallery/_widgets.php:21 25 #: plugins/gallery/gal.php:49 1 plugins/gallery/gals.php:27226 #: plugins/gallery/gals.php:28 3 plugins/gallery/gals.php:29127 #: plugins/gallery/gals_actions.php:15 6 plugins/gallery/item.php:35528 #: plugins/gallery/item.php:36 0 plugins/gallery/item.php:37629 #: plugins/gallery/items.php:33 6 plugins/gallery/items.php:33730 #: plugins/gallery/items_adv.php:33 8 plugins/gallery/items_adv.php:33931 #: plugins/gallery/maintenance.php:1 79 plugins/gallery/maintenance.php:18032 #: plugins/gallery/newitems.php:6 2 plugins/gallery/newitems.php:6333 #: plugins/gallery/options.php: 202 plugins/gallery/options.php:20334 #: plugins/gallery/options.php:30 620 #: 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 35 30 msgid "Galleries" 36 31 msgstr "" … … 64 59 msgstr "" 65 60 66 #: plugins/gallery/_admin.php:3 3861 #: plugins/gallery/_admin.php:361 67 62 #, php-format 68 63 msgid "%d galleries" 69 64 msgstr "" 70 65 71 #: plugins/gallery/_admin.php:3 3866 #: plugins/gallery/_admin.php:361 72 67 #, php-format 73 68 msgid "%d gallery" 74 69 msgstr "" 75 70 76 #: plugins/gallery/_admin.php:3 4171 #: plugins/gallery/_admin.php:364 77 72 #, php-format 78 73 msgid "%d image" 79 74 msgstr "" 80 75 81 #: plugins/gallery/_admin.php:3 4176 #: plugins/gallery/_admin.php:364 82 77 #, php-format 83 78 msgid "%d images" 84 79 msgstr "" 85 80 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 82 msgid "No category" 83 msgstr "" 84 85 #: plugins/gallery/_public_widgets.php:174 plugins/gallery/options.php:145 87 86 msgid "All galleries" 88 87 msgstr "" … … 92 91 msgstr "" 93 92 94 #: plugins/gallery/_public_widgets.php:22 0plugins/gallery/_widgets.php:4593 #: plugins/gallery/_public_widgets.php:224 plugins/gallery/_widgets.php:45 95 94 msgid "Last images" 96 95 msgstr "" 97 96 98 #: plugins/gallery/_public_widgets.php:2 4897 #: plugins/gallery/_public_widgets.php:252 99 98 msgid "Image Information" 100 99 msgstr "" … … 188 187 msgstr "" 189 188 190 #: plugins/gallery/class.dc.gallery.php: 49189 #: plugins/gallery/class.dc.gallery.php:50 191 190 msgid "Filename" 192 191 msgstr "" 193 192 194 #: plugins/gallery/class.dc.gallery.php: 921193 #: plugins/gallery/class.dc.gallery.php:1037 195 194 msgid "Media not found" 196 195 msgstr "" … … 211 210 msgstr "" 212 211 213 #: plugins/gallery/class.dc.gallery.themeadapter.php:13 8212 #: plugins/gallery/class.dc.gallery.themeadapter.php:139 214 213 #, php-format 215 214 msgid "Could not create directory %s. Error is : %s" 216 215 msgstr "" 217 216 218 #: plugins/gallery/class.dc.gallery.themeadapter.php:14 4217 #: plugins/gallery/class.dc.gallery.themeadapter.php:145 219 218 #, php-format 220 219 msgid "Could not generate %s template. Aborting." 221 220 msgstr "" 222 221 223 #: plugins/gallery/class.dc.gallerylists.php:35 plugins/gallery/gal.php:52 4224 #: plugins/gallery/gal.php:6 68 plugins/gallery/gals.php:376225 #: plugins/gallery/item.php:36 1 plugins/gallery/items.php:338226 #: plugins/gallery/items_adv.php:3 40 plugins/gallery/maintenance.php:181227 #: plugins/gallery/newitems.php:6 4 plugins/gallery/options.php:204228 #: plugins/gallery/options.php: 305222 #: 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 229 228 msgid "Images" 230 229 msgstr "" … … 234 233 msgstr "" 235 234 236 #: plugins/gallery/gal.php: 39 plugins/gallery/gals.php:293235 #: plugins/gallery/gal.php:44 plugins/gallery/gals.php:292 237 236 msgid "New gallery" 238 237 msgstr "" 239 238 240 #: plugins/gallery/gal.php:5 0239 #: plugins/gallery/gal.php:54 241 240 msgid "Use blog settings" 242 241 msgstr "" 243 242 244 #: plugins/gallery/gal.php:5 2 plugins/gallery/options.php:173243 #: plugins/gallery/gal.php:56 plugins/gallery/options.php:167 245 244 msgid "same as gallery theme" 246 245 msgstr "" 247 246 248 #: plugins/gallery/gal.php:19 0247 #: plugins/gallery/gal.php:194 249 248 msgid "Edit gallery" 250 249 msgstr "" 251 250 252 #: plugins/gallery/gal.php: 198251 #: plugins/gallery/gal.php:202 253 252 msgid "next gallery" 254 253 msgstr "" 255 254 256 #: plugins/gallery/gal.php:20 5255 #: plugins/gallery/gal.php:209 257 256 msgid "previous gallery" 258 257 msgstr "" 259 258 260 #: plugins/gallery/gal.php:4 27259 #: plugins/gallery/gal.php:431 261 260 msgid "The gallery has been successfully updated." 262 261 msgstr "" 263 262 264 #: plugins/gallery/gal.php:43 0263 #: plugins/gallery/gal.php:434 265 264 msgid "The gallery has been successfully created." 266 265 msgstr "" 267 266 268 #: plugins/gallery/gal.php:4 57 plugins/gallery/gal.php:492269 #: plugins/gallery/items.php:42 6 plugins/gallery/items_adv.php:428267 #: plugins/gallery/gal.php:461 plugins/gallery/gal.php:496 268 #: plugins/gallery/items.php:425 plugins/gallery/items_adv.php:427 270 269 msgid "Gallery" 271 270 msgstr "" 272 271 273 #: plugins/gallery/gal.php:47 1272 #: plugins/gallery/gal.php:475 274 273 msgid "view gallery" 275 274 msgstr "" 276 275 277 #: plugins/gallery/gal.php:4 79276 #: plugins/gallery/gal.php:483 278 277 msgid "Preview gallery" 279 278 msgstr "" 280 279 281 #: plugins/gallery/gal.php: 498280 #: plugins/gallery/gal.php:502 282 281 msgid "Presentation thumbnail" 283 282 msgstr "" 284 283 285 #: plugins/gallery/gal.php:51 1 plugins/gallery/gal.php:512284 #: plugins/gallery/gal.php:515 plugins/gallery/gal.php:516 286 285 msgid "Remove" 287 286 msgstr "" 288 287 289 #: plugins/gallery/gal.php:5 18288 #: plugins/gallery/gal.php:522 290 289 msgid "This gallery has no presentation thumbnail" 291 290 msgstr "" 292 291 293 #: plugins/gallery/gal.php:5 19292 #: plugins/gallery/gal.php:523 294 293 msgid "Define one" 295 294 msgstr "" 296 295 297 #: plugins/gallery/gal.php:52 1296 #: plugins/gallery/gal.php:525 298 297 #, php-format 299 298 msgid "This gallery has %d image" 300 299 msgstr "" 301 300 302 #: plugins/gallery/gal.php:52 1301 #: plugins/gallery/gal.php:525 303 302 #, php-format 304 303 msgid "This gallery has %d images" 305 304 msgstr "" 306 305 307 #: plugins/gallery/gal.php:54 4 plugins/gallery/item.php:403306 #: plugins/gallery/gal.php:548 plugins/gallery/item.php:407 308 307 msgid "Gallery status:" 309 308 msgstr "" 310 309 311 #: plugins/gallery/gal.php:56 2310 #: plugins/gallery/gal.php:566 312 311 msgid "Selected gallery" 313 312 msgstr "" 314 313 315 #: plugins/gallery/gal.php:56 4314 #: plugins/gallery/gal.php:568 316 315 msgid "Gallery password:" 317 316 msgstr "" 318 317 319 #: plugins/gallery/gal.php:59 5318 #: plugins/gallery/gal.php:599 320 319 msgid "Settings" 321 320 msgstr "" 322 321 323 #: plugins/gallery/gal.php: 599322 #: plugins/gallery/gal.php:603 324 323 msgid "Select below the image filters you wish to set for this gallery (at least 1 must be selected)" 325 324 msgstr "" 326 325 327 #: plugins/gallery/gal.php:60 1326 #: plugins/gallery/gal.php:605 328 327 msgid "Media dir" 329 328 msgstr "" 330 329 331 #: plugins/gallery/gal.php:60 2330 #: plugins/gallery/gal.php:606 332 331 msgid "include subdirs" 333 332 msgstr "" 334 333 335 #: plugins/gallery/gal.php:6 07334 #: plugins/gallery/gal.php:611 336 335 msgid "Include sub-categories" 337 336 msgstr "" 338 337 339 #: plugins/gallery/gal.php:6 09338 #: plugins/gallery/gal.php:613 340 339 msgid "User" 341 340 msgstr "" 342 341 343 #: plugins/gallery/gal.php:61 4342 #: plugins/gallery/gal.php:618 344 343 msgid "Sort" 345 344 msgstr "" 346 345 347 #: plugins/gallery/gal.php:61 5 plugins/gallery/maintenance.php:199346 #: plugins/gallery/gal.php:619 plugins/gallery/maintenance.php:205 348 347 msgid "Theme" 349 348 msgstr "" 350 349 351 #: plugins/gallery/gal.php:6 16350 #: plugins/gallery/gal.php:620 352 351 msgid "Gallery theme" 353 352 msgstr "" 354 353 355 #: plugins/gallery/gal.php:6 17354 #: plugins/gallery/gal.php:621 356 355 msgid "Gallery integrated theme" 357 356 msgstr "" 358 357 359 #: plugins/gallery/gal.php:6 69 plugins/gallery/gals.php:377360 #: plugins/gallery/item.php:49 0 plugins/gallery/items.php:464361 #: plugins/gallery/items_adv.php:46 8 plugins/gallery/maintenance.php:182362 #: plugins/gallery/newitems.php: 65 plugins/gallery/options.php:205358 #: 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 363 362 msgid "Manage new items" 364 363 msgstr "" 365 364 366 #: plugins/gallery/gal.php:67 0 plugins/gallery/gals.php:378367 #: plugins/gallery/item.php:49 1 plugins/gallery/items.php:465368 #: plugins/gallery/items_adv.php:46 9 plugins/gallery/maintenance.php:183369 #: plugins/gallery/newitems.php:10 0 plugins/gallery/options.php:185370 #: plugins/gallery/options.php: 202 plugins/gallery/options.php:206365 #: 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 371 370 msgid "Options" 372 371 msgstr "" 373 372 374 #: plugins/gallery/gals.php:17 2373 #: plugins/gallery/gals.php:171 375 374 msgid "update" 375 msgstr "" 376 377 #: plugins/gallery/gals.php:176 plugins/gallery/items.php:219 378 #: plugins/gallery/items_adv.php:223 379 msgid "Select for integration" 376 380 msgstr "" 377 381 378 382 #: plugins/gallery/gals.php:177 plugins/gallery/items.php:220 379 383 #: plugins/gallery/items_adv.php:224 380 msgid "Select for integration"381 msgstr ""382 383 #: plugins/gallery/gals.php:178 plugins/gallery/items.php:221384 #: plugins/gallery/items_adv.php:225385 384 msgid "unselect for integration" 386 385 msgstr "" 387 386 388 #: plugins/gallery/gals.php:28 3387 #: plugins/gallery/gals.php:282 389 388 msgid "Main menu" 390 389 msgstr "" 391 390 392 #: plugins/gallery/gals.php:28 7391 #: plugins/gallery/gals.php:286 393 392 msgid "Invalid theme dir detected in blog settings. Please update gallery_themes_path setting in about:config." 394 393 msgstr "" 395 394 396 #: plugins/gallery/gals.php:3 40 plugins/gallery/items.php:393397 #: plugins/gallery/items_adv.php:39 5395 #: plugins/gallery/gals.php:339 plugins/gallery/items.php:392 396 #: plugins/gallery/items_adv.php:394 398 397 msgid "Clear filter" 399 398 msgstr "" … … 407 406 msgstr "" 408 407 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 410 410 msgid "Processing result" 411 411 msgstr "" 412 412 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 415 msgid "Abort processing" 416 msgstr "" 417 418 #: plugins/gallery/gals_actions.php:239 plugins/gallery/items_actions.php:308 419 #: plugins/gallery/items_actions.php:327 414 420 msgid "Actions" 415 421 msgstr "" 416 422 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 426 msgid "Request" 427 msgstr "" 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 432 msgid "Result" 433 msgstr "" 434 435 #: plugins/gallery/galthumbnail.php:32 418 436 msgid "This gallery does not exits" 419 437 msgstr "" 420 438 421 #: plugins/gallery/galthumbnail.php:8 8439 #: plugins/gallery/galthumbnail.php:87 422 440 #, php-format 423 441 msgid "Choose a media to attach to gallery %s by clicking on %s." 424 442 msgstr "" 425 443 426 #: plugins/gallery/item.php:12 1444 #: plugins/gallery/item.php:125 427 445 msgid "Edit image" 428 446 msgstr "" 429 447 430 #: plugins/gallery/item.php:13 0448 #: plugins/gallery/item.php:134 431 449 msgid "next item" 432 450 msgstr "" 433 451 434 #: plugins/gallery/item.php:1 37452 #: plugins/gallery/item.php:141 435 453 msgid "previous item" 436 454 msgstr "" 437 455 438 #: plugins/gallery/item.php: 297456 #: plugins/gallery/item.php:301 439 457 msgid "The image has been successfully updated." 440 458 msgstr "" 441 459 442 #: plugins/gallery/item.php:30 0460 #: plugins/gallery/item.php:304 443 461 msgid "The image has been successfully created." 444 462 msgstr "" 445 463 446 #: plugins/gallery/item.php:3 27464 #: plugins/gallery/item.php:331 447 465 msgid "view item" 448 466 msgstr "" 449 467 450 #: plugins/gallery/item.php:33 4468 #: plugins/gallery/item.php:338 451 469 msgid "Preview image" 452 470 msgstr "" 453 471 454 #: plugins/gallery/item.php:36 2472 #: plugins/gallery/item.php:366 455 473 msgid "Image" 456 474 msgstr "" 457 475 458 #: plugins/gallery/item.php:3 69476 #: plugins/gallery/item.php:373 459 477 msgid "Media" 460 478 msgstr "" 461 479 462 #: plugins/gallery/item.php:37 0480 #: plugins/gallery/item.php:374 463 481 msgid "View associated media" 464 482 msgstr "" 465 483 466 #: plugins/gallery/item.php:37 2484 #: plugins/gallery/item.php:376 467 485 #, php-format 468 486 msgid "This image belongs to %d galleries" 469 487 msgstr "" 470 488 471 #: plugins/gallery/item.php:37 2489 #: plugins/gallery/item.php:376 472 490 #, php-format 473 491 msgid "This image belongs to %d gallery" 474 492 msgstr "" 475 493 476 #: plugins/gallery/item.php:42 1494 #: plugins/gallery/item.php:425 477 495 msgid "Selected image" 478 496 msgstr "" 479 497 498 #: plugins/gallery/items.php:208 plugins/gallery/items_adv.php:208 499 msgid "Remove image-post" 500 msgstr "" 501 480 502 #: 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:210485 503 msgid "set date to media exif date" 486 504 msgstr "" 487 505 488 #: plugins/gallery/items.php:21 3 plugins/gallery/items_adv.php:213506 #: plugins/gallery/items.php:212 plugins/gallery/items_adv.php:212 489 507 msgid "add tags" 490 508 msgstr "" 491 509 492 #: plugins/gallery/items.php:31 9 plugins/gallery/items_adv.php:320493 #: plugins/gallery/newitems.php:4 2510 #: plugins/gallery/items.php:318 plugins/gallery/items_adv.php:319 511 #: plugins/gallery/newitems.php:45 494 512 msgid "Gallery Items" 495 513 msgstr "" 496 514 497 #: plugins/gallery/items.php:32 8 plugins/gallery/items_adv.php:323515 #: plugins/gallery/items.php:327 plugins/gallery/items_adv.php:322 498 516 msgid "Show / Hide thumbnails" 499 517 msgstr "" 500 518 501 #: plugins/gallery/items.php:3 50 plugins/gallery/items_adv.php:352519 #: plugins/gallery/items.php:349 plugins/gallery/items_adv.php:351 502 520 msgid "Gallery:" 503 521 msgstr "" 504 522 505 #: plugins/gallery/items.php:35 3 plugins/gallery/items_adv.php:355523 #: plugins/gallery/items.php:352 plugins/gallery/items_adv.php:354 506 524 msgid "Media dir:" 507 525 msgstr "" 508 526 509 #: plugins/gallery/items.php:42 1 plugins/gallery/items_adv.php:423527 #: plugins/gallery/items.php:420 plugins/gallery/items_adv.php:422 510 528 msgid "Gallery content" 511 529 msgstr "" 512 530 513 #: plugins/gallery/items.php:42 3 plugins/gallery/items_adv.php:425531 #: plugins/gallery/items.php:422 plugins/gallery/items_adv.php:424 514 532 msgid "filtered" 515 533 msgstr "" 516 534 517 #: plugins/gallery/items_actions.php:20 0535 #: plugins/gallery/items_actions.php:204 518 536 msgid "Waiting..." 519 537 msgstr "" 520 538 521 #: plugins/gallery/items_actions.php:20 1539 #: plugins/gallery/items_actions.php:205 522 540 msgid "updating date to media exif" 523 541 msgstr "" 524 542 525 #: plugins/gallery/items_actions.php:30 0543 #: plugins/gallery/items_actions.php:305 526 544 msgid "Fix images date" 527 545 msgstr "" 528 546 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 548 msgid "Generating missing thumbs" 549 msgstr "" 550 551 #: plugins/gallery/items_adv.php:214 552 msgid "Thumbnails" 541 553 msgstr "" 542 554 543 555 #: plugins/gallery/items_adv.php:215 544 msgid " Thumbnails"556 msgid "Generate missing thumbnails" 545 557 msgstr "" 546 558 547 559 #: plugins/gallery/items_adv.php:216 548 msgid "Generate missing thumbnails"549 msgstr ""550 551 #: plugins/gallery/items_adv.php:217552 560 msgid "Force thumbnail regeneration" 553 561 msgstr "" 554 562 555 #: plugins/gallery/items_adv.php:43 2563 #: plugins/gallery/items_adv.php:431 556 564 msgid "Selection" 557 565 msgstr "" 558 566 567 #: plugins/gallery/items_adv.php:433 568 msgid "none" 569 msgstr "" 570 559 571 #: plugins/gallery/items_adv.php:434 560 msgid "none"561 msgstr ""562 563 #: plugins/gallery/items_adv.php:435564 572 msgid "invert" 565 573 msgstr "" 566 574 567 #: plugins/gallery/maintenance.php: 36575 #: plugins/gallery/maintenance.php:42 568 576 msgid "Theme is invalid" 569 577 msgstr "" 570 578 571 #: plugins/gallery/maintenance.php:5 1579 #: plugins/gallery/maintenance.php:57 572 580 #, php-format 573 581 msgid "Theme %s already exists, delete it first." 574 582 msgstr "" 575 583 576 #: plugins/gallery/maintenance.php:1 19584 #: plugins/gallery/maintenance.php:125 577 585 #, php-format 578 586 msgid "Could not remove theme %s" 579 587 msgstr "" 580 588 581 #: plugins/gallery/maintenance.php:14 0589 #: plugins/gallery/maintenance.php:146 582 590 msgid "Are you sure you want to delete selected themes ?" 583 591 msgstr "" 584 592 585 #: plugins/gallery/maintenance.php:15 3593 #: plugins/gallery/maintenance.php:159 586 594 msgid "The theme has been successfully adapted." 587 595 msgstr "" 588 596 589 #: plugins/gallery/maintenance.php:1 56597 #: plugins/gallery/maintenance.php:162 590 598 msgid "The theme has been successfully installed." 591 599 msgstr "" 592 600 593 #: plugins/gallery/maintenance.php:1 59601 #: plugins/gallery/maintenance.php:165 594 602 msgid "The theme has been successfully deleted." 595 603 msgstr "" 596 604 597 #: plugins/gallery/maintenance.php:1 86605 #: plugins/gallery/maintenance.php:192 598 606 msgid "Theme Adapter" 599 607 msgstr "" 600 608 601 #: plugins/gallery/maintenance.php:1 87609 #: plugins/gallery/maintenance.php:193 602 610 msgid "This section enables to adapt gallery themes to a Dotclear theme, if needed." 603 611 msgstr "" 604 612 605 #: plugins/gallery/maintenance.php:1 88613 #: plugins/gallery/maintenance.php:194 606 614 msgid "<strong>Caution :</strong> use the theme adapter only if you experience some layout problems when viewing galleries or images on your blog." 607 615 msgstr "" 608 616 609 #: plugins/gallery/maintenance.php:1 89617 #: plugins/gallery/maintenance.php:195 610 618 msgid "Dotclear theme" 611 619 msgstr "" 612 620 613 #: plugins/gallery/maintenance.php:19 0621 #: plugins/gallery/maintenance.php:196 614 622 msgid "Force template regeneration" 615 623 msgstr "" 616 624 617 #: plugins/gallery/maintenance.php:19 1625 #: plugins/gallery/maintenance.php:197 618 626 msgid "Adapt" 619 627 msgstr "" 620 628 621 #: plugins/gallery/maintenance.php: 197629 #: plugins/gallery/maintenance.php:203 622 630 msgid "Gallery Themes" 623 631 msgstr "" 624 632 625 #: plugins/gallery/maintenance.php:2 08633 #: plugins/gallery/maintenance.php:214 626 634 msgid "Uninstall selected themes" 627 635 msgstr "" 628 636 629 #: plugins/gallery/maintenance.php:2 14637 #: plugins/gallery/maintenance.php:220 630 638 msgid "Upload a new Gallery theme" 631 639 msgstr "" 632 640 633 #: plugins/gallery/maintenance.php:2 26641 #: plugins/gallery/maintenance.php:232 634 642 msgid "Download a new Gallery theme" 635 643 msgstr "" 636 644 637 #: plugins/gallery/newitems.php:5 0645 #: plugins/gallery/newitems.php:54 638 646 msgid "Deleting orphan media" 639 647 msgstr "" 640 648 641 #: plugins/gallery/newitems.php:5 1649 #: plugins/gallery/newitems.php:55 642 650 msgid "Deleting orphan image-posts" 643 651 msgstr "" 644 652 645 #: plugins/gallery/newitems.php:5 2653 #: plugins/gallery/newitems.php:56 646 654 #, php-format 647 655 msgid "Creating media : %s" 648 656 msgstr "" 649 657 650 #: plugins/gallery/newitems.php:5 3658 #: plugins/gallery/newitems.php:57 651 659 #, php-format 652 660 msgid "Creating image-post for : %s" 653 661 msgstr "" 654 662 655 #: plugins/gallery/newitems.php:62 663 #: plugins/gallery/newitems.php:58 664 #, php-format 665 msgid "Creating thumbnail for : %s" 666 msgstr "" 667 668 #: plugins/gallery/newitems.php:67 656 669 msgid "New entries" 657 670 msgstr "" 658 671 659 #: plugins/gallery/newitems.php: 68672 #: plugins/gallery/newitems.php:73 660 673 msgid "New Items" 661 674 msgstr "" 662 675 663 #: plugins/gallery/newitems.php: 69676 #: plugins/gallery/newitems.php:74 664 677 msgid "Select directory to analyse : " 665 678 msgstr "" 666 679 667 #: plugins/gallery/newitems.php:7 2 plugins/gallery/newitems.php:90680 #: plugins/gallery/newitems.php:77 plugins/gallery/newitems.php:97 668 681 msgid "proceed" 669 682 msgstr "" 670 683 671 #: plugins/gallery/newitems.php: 75684 #: plugins/gallery/newitems.php:80 672 685 msgid "Directory results" 673 686 msgstr "" 674 687 675 #: plugins/gallery/newitems.php: 78688 #: plugins/gallery/newitems.php:83 676 689 msgid "Number of orphan media (ie. media entries in database whose matching file no more exists):" 677 690 msgstr "" 678 691 679 #: plugins/gallery/newitems.php: 79 plugins/gallery/options.php:283692 #: plugins/gallery/newitems.php:84 plugins/gallery/options.php:277 680 693 msgid "Delete orphan media" 681 694 msgstr "" 682 695 683 #: plugins/gallery/newitems.php:8 0696 #: plugins/gallery/newitems.php:85 684 697 msgid "Number of orphan items (ie. image-post associated to a non-existent media in DB) :" 685 698 msgstr "" 686 699 687 #: plugins/gallery/newitems.php:8 1 plugins/gallery/options.php:285700 #: plugins/gallery/newitems.php:86 plugins/gallery/options.php:279 688 701 msgid "Delete orphan items" 689 702 msgstr "" 690 703 691 #: plugins/gallery/newitems.php:8 2704 #: plugins/gallery/newitems.php:87 692 705 msgid "Number of new media detected :" 693 706 msgstr "" 694 707 695 #: plugins/gallery/newitems.php:8 3 plugins/gallery/options.php:287708 #: plugins/gallery/newitems.php:88 plugins/gallery/options.php:281 696 709 msgid "Create media in database" 697 710 msgstr "" 698 711 699 #: plugins/gallery/newitems.php:8 4712 #: plugins/gallery/newitems.php:89 700 713 msgid "Number of media without post associated :" 701 714 msgstr "" 702 715 703 #: plugins/gallery/newitems.php: 85 plugins/gallery/options.php:289716 #: plugins/gallery/newitems.php:90 plugins/gallery/options.php:283 704 717 msgid "Create image-post associated to media" 705 718 msgstr "" 706 719 707 #: plugins/gallery/newitems.php:88 plugins/gallery/options.php:291 720 #: plugins/gallery/newitems.php:91 721 msgid "Number of media in directory :" 722 msgstr "" 723 724 #: plugins/gallery/newitems.php:92 725 msgid "Force thumbnails creation" 726 msgstr "" 727 728 #: plugins/gallery/newitems.php:95 plugins/gallery/options.php:285 708 729 msgid "Create post-image for each new media" 709 730 msgstr "" 710 731 711 #: plugins/gallery/newitems.php: 89 plugins/gallery/options.php:293732 #: plugins/gallery/newitems.php:96 plugins/gallery/options.php:287 712 733 msgid "Set post date to image exif date" 713 734 msgstr "" 714 735 715 #: plugins/gallery/newitems.php: 93736 #: plugins/gallery/newitems.php:100 716 737 msgid "Operations" 717 738 msgstr "" 718 739 719 #: plugins/gallery/options.php:1 51 plugins/gallery/options.php:152740 #: plugins/gallery/options.php:145 plugins/gallery/options.php:146 720 741 msgid "No integration" 721 742 msgstr "" 722 743 723 #: plugins/gallery/options.php:1 51744 #: plugins/gallery/options.php:145 724 745 msgid "Selected galleries" 725 746 msgstr "" 726 747 727 #: plugins/gallery/options.php:1 52748 #: plugins/gallery/options.php:146 728 749 msgid "All images" 729 750 msgstr "" 730 751 731 #: plugins/gallery/options.php:1 52752 #: plugins/gallery/options.php:146 732 753 msgid "Selected images" 733 754 msgstr "" 734 755 735 #: plugins/gallery/options.php:1 93756 #: plugins/gallery/options.php:187 736 757 msgid "Options have been successfully updated." 737 758 msgstr "" 738 759 739 #: plugins/gallery/options.php:21 9 plugins/gallery/options.php:232760 #: plugins/gallery/options.php:213 plugins/gallery/options.php:226 740 761 msgid "Plugin Activation" 741 762 msgstr "" 742 763 743 #: plugins/gallery/options.php:2 22764 #: plugins/gallery/options.php:216 744 765 msgid "The plugin cannot be enabled. Please check in your about:config that public_path points to an existing directory." 745 766 msgstr "" 746 767 747 #: plugins/gallery/options.php:2 24768 #: plugins/gallery/options.php:218 748 769 msgid "The plugin is not enabled for this blog yet. Click below to enable it" 749 770 msgstr "" 750 771 751 #: plugins/gallery/options.php:2 25772 #: plugins/gallery/options.php:219 752 773 msgid "Enable plugin" 753 774 msgstr "" 754 775 776 #: plugins/gallery/options.php:227 777 msgid "Disable plugin for this blog" 778 msgstr "" 779 755 780 #: plugins/gallery/options.php:233 756 msgid "Disable plugin for this blog"757 msgstr ""758 759 #: plugins/gallery/options.php:239760 781 msgid "General options" 761 782 msgstr "" 762 783 763 #: plugins/gallery/options.php:2 40784 #: plugins/gallery/options.php:234 764 785 msgid "Public-side options" 765 786 msgstr "" 766 787 767 #: plugins/gallery/options.php:2 41788 #: plugins/gallery/options.php:235 768 789 msgid "Number of galleries per page" 769 790 msgstr "" 770 791 771 #: plugins/gallery/options.php:2 44792 #: plugins/gallery/options.php:238 772 793 msgid "Number of images per page" 773 794 msgstr "" 774 795 775 #: plugins/gallery/options.php:24 7 plugins/gallery/options.php:263796 #: plugins/gallery/options.php:241 plugins/gallery/options.php:257 776 797 msgid "Galleries list sort by" 777 798 msgstr "" 778 799 779 #: plugins/gallery/options.php:2 50 plugins/gallery/options.php:266800 #: plugins/gallery/options.php:244 plugins/gallery/options.php:260 780 801 msgid "Galleries list order" 781 802 msgstr "" 782 803 804 #: plugins/gallery/options.php:247 805 msgid "Group galeries by category" 806 msgstr "" 807 808 #: plugins/gallery/options.php:250 809 msgid "Default gallery theme" 810 msgstr "" 811 783 812 #: plugins/gallery/options.php:253 784 msgid " Group galeries by category"813 msgid "Default gallery theme when integrated" 785 814 msgstr "" 786 815 787 816 #: plugins/gallery/options.php:256 788 msgid "Default gallery theme"789 msgstr ""790 791 #: plugins/gallery/options.php:259792 msgid "Default gallery theme when integrated"793 msgstr ""794 795 #: plugins/gallery/options.php:262796 817 msgid "Administration-side options" 797 818 msgstr "" 798 819 799 #: plugins/gallery/options.php:26 9820 #: plugins/gallery/options.php:263 800 821 msgid "Images list sort by" 801 822 msgstr "" 802 823 803 #: plugins/gallery/options.php:2 72824 #: plugins/gallery/options.php:266 804 825 msgid "Images list order" 805 826 msgstr "" 806 827 807 #: plugins/gallery/options.php:2 81828 #: plugins/gallery/options.php:275 808 829 msgid "New Items default options" 809 830 msgstr "" 810 831 811 #: plugins/gallery/options.php: 300832 #: plugins/gallery/options.php:294 812 833 msgid "Integration options" 813 834 msgstr "" 814 835 815 #: plugins/gallery/options.php: 301836 #: plugins/gallery/options.php:295 816 837 msgid "Several blog pages display lists of entries. This section enables to include images and/or galleries inside these lists" 817 838 msgstr "" 818 839 819 #: plugins/gallery/options.php: 302840 #: plugins/gallery/options.php:296 820 841 msgid "You can choose either to display all galleries/images or only galleries/images that have the selected state." 821 842 msgstr "" 822 843 823 #: plugins/gallery/options.php:3 21844 #: plugins/gallery/options.php:315 824 845 msgid "Advanced options" 825 846 msgstr "" 826 847 827 #: plugins/gallery/options.php:3 22848 #: plugins/gallery/options.php:316 828 849 msgid "All the following values will define default URLs for gallery items" 829 850 msgstr "" 830 851 852 #: plugins/gallery/options.php:317 853 msgid "Galleries URL prefix" 854 msgstr "" 855 856 #: plugins/gallery/options.php:320 857 msgid "Gallery URL prefix" 858 msgstr "" 859 831 860 #: plugins/gallery/options.php:323 832 msgid "Galleries URL prefix"833 msgstr ""834 835 #: plugins/gallery/options.php:326836 msgid "Gallery URL prefix"837 msgstr ""838 839 #: plugins/gallery/options.php:329840 861 msgid "Image URL prefix" 841 862 msgstr "" -
plugins/gallery/trunk/locales/fr/main.po
r1903 r2361 5 5 "Project-Id-Version: \n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: 20 09-11-24 16:43+0100\n"7 "POT-Creation-Date: 2010-06-14 09:37+0200\n" 8 8 "PO-Revision-Date: \n" 9 9 "Last-Translator: Kozlika <kozlika@free.fr>\n" … … 13 13 "Content-Transfer-Encoding: 8bit\n" 14 14 15 msgid "Galleries" 16 msgstr "Galeries" 17 18 msgid "This gallery's comments feed" 19 msgstr "Fil des commentaires de cette galerie" 20 21 msgid "This gallery's images feed" 22 msgstr "Fil des images de cette galerie" 23 24 msgid "This image's comments feed" 25 msgstr "Fil des commentaires de cette image" 26 27 msgid "next galleries" 28 msgstr "galeries suivantes" 29 30 msgid "next images" 31 msgstr "images suivantes" 32 33 msgid "previous galleries" 34 msgstr "galeries précédentes" 35 36 msgid "previous images" 37 msgstr "images précédentes" 38 39 msgid "%d galleries" 40 msgstr "%d galeries" 41 42 msgid "%d gallery" 43 msgstr "%d galerie" 44 45 msgid "%d image" 46 msgstr "%d image" 47 48 msgid "%d images" 49 msgstr "%d images" 50 15 51 msgid "No category" 16 52 msgstr "Sans catégorie" 17 53 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-format43 msgid "%d galleries"44 msgstr "%d galeries"45 46 #, php-format47 msgid "%d gallery"48 msgstr "%d galerie"49 50 #, php-format51 msgid "%d image"52 msgstr "%d image"53 54 #, php-format55 msgid "%d images"56 msgstr "%d images"57 58 54 msgid "All galleries" 59 55 msgstr "Toutes les galeries" … … 140 136 msgstr "Média non trouvé" 141 137 142 #, php-format143 138 msgid "Theme %s is not writeable" 144 139 msgstr "Le thème %s n'est pas accessible en écriture." 145 140 146 #, php-format147 141 msgid "Theme \"%s\" already contains gallery template files" 148 142 msgstr "Le thème \"%s\" contient déjà des fichiers de template pour Gallery" 149 143 150 #, php-format151 144 msgid "Theme \"%s\" does not need to be adapted, no html templates are overriden from default theme." 152 145 msgstr "Le thème \"%s\" n'a pas besoin d'être adapté, il ne redéfinit pas les templates du thème par défaut" 153 146 154 #, php-format155 147 msgid "Could not create directory %s. Error is : %s" 156 148 msgstr "Impossible de créer le répertoire %s. Erreur : %s" 157 149 158 #, php-format159 150 msgid "Could not generate %s template. Aborting." 160 151 msgstr "Impossible de générer le template %s. Abandon." … … 211 202 msgstr "En définir une" 212 203 213 #, php-format214 204 msgid "This gallery has %d image" 215 205 msgstr "Cette galerie possède %d image" 216 206 217 #, php-format218 207 msgid "This gallery has %d images" 219 208 msgstr "Cette galerie possède %d images" … … 291 280 msgstr "Résultat du traitement" 292 281 282 msgid "Abort processing" 283 msgstr "Annuler le traitement" 284 293 285 msgid "Actions" 294 286 msgstr "Actions" 295 287 296 #, fuzzy 297 msgid "This gallery does not exits" 298 msgstr "Cet utilisateur n'existe pas" 299 300 #, php-format 288 msgid "Request" 289 msgstr "Requête" 290 291 msgid "Result" 292 msgstr "Résultat" 293 294 msgid "This gallery does not exit" 295 msgstr "Cette gallery n'existe pas" 296 301 297 msgid "Choose a media to attach to gallery %s by clicking on %s." 302 298 msgstr "Choisissez un media à attacher à la galerie %s, en cliquant sur %s." … … 332 328 msgstr "Voir le média associé" 333 329 334 #, php-format335 330 msgid "This image belongs to %d galleries" 336 331 msgstr "Cette image appartient à %d galeries" 337 332 338 #, php-format339 333 msgid "This image belongs to %d gallery" 340 334 msgstr "Cette image appartient à %d galerie" … … 379 373 msgstr "Mise à jour de la date des images" 380 374 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" 375 msgid "Generating missing thumbs" 376 msgstr "Création les miniatures manquantes" 389 377 390 378 msgid "Thumbnails" … … 409 397 msgstr "Le thème n'est pas valide" 410 398 411 #, php-format412 399 msgid "Theme %s already exists, delete it first." 413 400 msgstr "Le thème \"%s\" existe déjà. Effacez-le d'abord." 414 401 415 #, php-format416 402 msgid "Could not remove theme %s" 417 403 msgstr "Impossible de supprimer le thème %s" … … 465 451 msgstr "Suppression des billets-images orphelins" 466 452 467 #, php-format468 453 msgid "Creating media : %s" 469 454 msgstr "Création du média : %s" 470 455 471 #, php-format472 456 msgid "Creating image-post for : %s" 473 457 msgstr "Création du billet-image pour : %s" 474 458 459 msgid "Creating thumbnail for : %s" 460 msgstr "Création de la miniature de : %s" 461 475 462 msgid "New entries" 476 463 msgstr "Gestion des nouvelles images" … … 479 466 msgstr "Nouvelles images" 480 467 481 msgid "Select directory to analyse : 482 msgstr "Sélectionnez le répertoire à analyser ."468 msgid "Select directory to analyse :" 469 msgstr "Sélectionnez le répertoire à analyser :" 483 470 484 471 msgid "proceed" … … 495 482 496 483 msgid "Number of orphan items (ie. image-post associated to a non-existent media in DB) :" 497 msgstr "Nombre d e médias orphelins (ie. médias présents en base de données mais dont le fichier n'existe plus) :"484 msgstr "Nombre d'images orphelines (ie. billets-images associés à un média inexistant en base) :" 498 485 499 486 msgid "Delete orphan items" … … 512 499 msgstr "Créer les billets-images pour les médias dans le dossier" 513 500 501 msgid "Number of media in directory :" 502 msgstr "Nombre de médias dans le répertoire :" 503 504 msgid "Force thumbnails creation" 505 msgstr "Forcer la création des miniatures" 506 514 507 msgid "Create post-image for each new media" 515 508 msgstr "Créer un billet-image pour chaque nouveau média" … … 613 606 msgid "Image URL prefix" 614 607 msgstr "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 56 56 "dotclear.msg.creating_media = '".html::escapeJS(__('Creating media : %s'))."';\n". 57 57 "dotclear.msg.creating_item = '".html::escapeJS(__('Creating image-post for : %s'))."';\n". 58 "dotclear.msg.creating_thumbnail = '".html::escapeJS(__('Creating thumbnail for : %s'))."';\n". 58 59 "\n//]]>\n". 59 60 "</script>\n"; … … 71 72 echo '<form action="#" method="post" id="dir-form" onsubmit="return false;">'. 72 73 '<fieldset><legend>'.__('New Items').'</legend>'. 73 '<p><label class="classic">'.__('Select directory to analyse : ').74 '<p><label class="classic">'.__('Select directory to analyse :')." ". 74 75 form::combo('media_dir',$dirs_combo,'').'</label></p> '. 75 76 … … 88 89 '<tr><td>'.__('Number of media without post associated :').'</td><td id="nbmediawithoutpost" class="tdresult"> </td>'. 89 90 '<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"> </td>'. 92 '<td>'.form::checkbox('force_thumbnails',1,$c_create_media).'</td><td>'.__('Force thumbnails creation').'</td></tr>'. 90 93 '</table>'. 91 94 '<h2>Options</h2>'.
Note: See TracChangeset
for help on using the changeset viewer.