Changeset 16622
- Timestamp:
- Jul 11, 2012, 3:06:22 PM (12 years ago)
- Location:
- extensions/BatchDownloader
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/BatchDownloader/admin/template/config.tpl
r16598 r16622 53 53 </select> 54 54 {else} 55 {'There is no group in this gallery.'|@translate} <a href="admin.php?page=group_list">{'Group smanagement'|@translate}</a>55 {'There is no group in this gallery.'|@translate} <a href="admin.php?page=group_list">{'Group management'|@translate}</a> 56 56 {/if} 57 57 </label> … … 72 72 73 73 <ul> 74 <li >74 <li style="display:none;"> 75 75 <label> 76 76 <span class="property">{'Maximum photo size'|@translate}</span> -
extensions/BatchDownloader/admin/template/style.css
r16400 r16622 19 19 } 20 20 21 .table2 .throw { 22 font-size:100%; 23 } 24 TABLE.table2 THEAD TD { 25 padding: 0 5px !important; 26 } 21 27 .table2 .action { 22 28 width:70px; 23 29 } 24 30 .table2 .user { 25 width:1 20px;31 width:150px; 26 32 } 27 33 .table2 .date { 28 width:1 80px;34 width:190px; 29 35 } 30 36 .table2 .size { … … 38 44 } 39 45 .table2 .status { 40 width: 100px;46 width:80px; 41 47 } 48 49 .ui-slider { background:#666;border-radius:2px;border:1px solid #888; } 50 .ui-slider .ui-slider-handle { border:1px solid #ccc;background:#444;border-radius:0.6em; } 51 .ui-slider .ui-slider-range { background:#888;border-radius:2px; } -
extensions/BatchDownloader/include/BatchDownloader.class.php
r16609 r16622 330 330 $total_size = 0; 331 331 foreach ($images_to_add as $row) 332 { 333 $zip->addFile(PHPWG_ROOT_PATH . $row['path'], $row['id'].'_'. $row['name'].'.'.get_extension($row['file']));332 { 333 $zip->addFile(PHPWG_ROOT_PATH . $row['path'], $row['id'].'_'.str2url($row['name']).'.'.get_extension($row['file'])); 334 334 335 335 array_push($images_added, $row['id']); … … 344 344 // archive comment 345 345 global $conf; 346 $comment = 'Generated on '.date('r').' with PHP ZipArchive '.PHP_VERSION.' by Piwigo AdvancedDownloader.';346 $comment = 'Generated on '.date('r').' with PHP ZipArchive '.PHP_VERSION.' by Piwigo Batch Downloader.'; 347 347 $comment.= "\n".$conf['gallery_title'].' - '.get_absolute_root_url(); 348 348 if (!empty($this->conf['archive_comment'])) -
extensions/BatchDownloader/language/fr_FR/plugin.lang.php
r16609 r16622 6 6 $lang['Random'] = 'Aléatoire'; 7 7 $lang['User collection'] = 'Collection utilisateur'; 8 $lang['Nb images'] = 'Nb images';8 $lang['Nb images'] = 'Nb photos'; 9 9 $lang['Nb archives'] = 'Nb archives'; 10 10 $lang['Total size'] = 'Taille totale';
Note: See TracChangeset
for help on using the changeset viewer.