Changeset 13558 for extensions
- Timestamp:
- Mar 14, 2012, 2:53:41 PM (13 years ago)
- Location:
- extensions/simple_themes/simple
- Files:
-
- 4 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/simple_themes/simple/README.md
r13557 r13558 42 42 Changelog 43 43 --------- 44 45 ### version 2.5.3 (22/01/2012) 46 47 * add an option and admin page to choose the layout for albums (with description 48 under or next to the album thumbnail) 49 50 ### version 2.5.2 (20/12/2011) 51 52 * more flexible layout for thumbnails 53 * more flexible layout for categories 54 * restore the possibility to hide thumbnails caption. 55 * center image in slideshow 44 56 45 57 ### version 2.5.1 (18/10/2011) -
extensions/simple_themes/simple/language/en_UK/theme.lang.php
r13549 r13558 2 2 3 3 $lang['Show/hide menu'] = 'Show/hide menu'; 4 $lang['Album title and description'] = 'Album title and description'; 5 $lang['under the album thumbnail'] = 'under the album thumbnail'; 6 $lang['next to the album thumbnail'] = 'next to the album thumbnail'; 4 7 5 8 ?> -
extensions/simple_themes/simple/language/fr_FR/theme.lang.php
r13549 r13558 2 2 3 3 $lang['Show/hide menu'] = 'Afficher/cacher le menu'; 4 $lang['Album title and description'] = 'Titre et description de l\'album'; 5 $lang['under the album thumbnail'] = 'sous la miniature représentante'; 6 $lang['next to the album thumbnail'] = 'à côté de la miniature représentante'; 4 7 5 8 ?> -
extensions/simple_themes/simple/local_head.tpl
r13546 r13558 1 {if $load_css} 2 {if $simple_conf.albumDisplay eq 'line'} 3 {combine_css path="themes/simple/option_album_title_line.css" order=-10} 4 {/if} 5 {/if} -
extensions/simple_themes/simple/themeconf.inc.php
r13557 r13558 2 2 /* 3 3 Theme Name: Simple Grey 4 Version: 2.5. 24 Version: 2.5.3 5 5 Description: Simple Grey 6 6 Theme URI: http://piwigo.org/ext/extension_view.php?eid=308 … … 29 29 30 30 // debug - do not combine files 31 // $conf['template_combine_files'] = false; 31 $conf['template_combine_files'] = false; 32 33 if (!isset($conf['simple'])) 34 { 35 $conf['simple'] = serialize(array('albumDisplay' => 'column')); 36 } 37 $conf['simple'] = unserialize($conf['simple']); 38 39 add_event_handler('loc_begin_page_header', 'simple_set_config'); 40 function simple_set_config() 41 { 42 global $template, $conf; 43 44 $template->assign('simple_conf', $conf['simple']); 45 } 32 46 33 47 ?>
Note: See TracChangeset
for help on using the changeset viewer.