Changeset 5874
- Timestamp:
- Apr 16, 2010, 12:08:37 AM (15 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/admin/include/themes.class.php
r5452 r5874 382 382 { 383 383 $theme['parent'] = $val[1]; 384 } 385 if (preg_match('/["\']activable["\'].*?(true|false)/', $theme_data, $val)) 386 { 387 $theme['activable'] = get_boolean($val[1]); 384 388 } 385 389 -
trunk/admin/themes_installed.php
r5642 r5874 100 100 { 101 101 // is the theme "activable" ? 102 $fs_theme['activable'] = true; 102 if (isset($fs_theme['activable']) and !$fs_theme['activable']) 103 { 104 $fs_theme['activate_tooltip'] = l10n('This theme was not designed to be directly activated'); 105 } 106 else 107 { 108 $fs_theme['activable'] = true; 109 } 103 110 104 111 $missing_parent = $themes->missing_parent_theme($theme_id); -
trunk/language/en_UK/admin.lang.php
r5853 r5874 765 765 $lang['There is no other theme available.'] = 'There is no other theme available.'; 766 766 $lang['Add another set of photos'] = 'Add another set of photos'; 767 768 767 $lang['Order of menubar items has been updated successfully.'] = 'Order of menubar items has been updated successfully.'; 768 $lang['This theme was not designed to be directly activated'] = 'This theme was not designed to be directly activated'; 769 769 ?> -
trunk/language/fr_FR/admin.lang.php
r5853 r5874 770 770 $lang['delete'] = 'effacer'; 771 771 $lang['Add another set of photos'] = 'Ajouter d\'autres photos'; 772 773 772 $lang['Order of menubar items has been updated successfully.'] = 'L\'ordre des éléments du menu a été mis à jour avec succès.'; 773 $lang['This theme was not designed to be directly activated'] = 'Ce thème n\'est pas conçu pour être activé directement'; 774 774 ?>
Note: See TracChangeset
for help on using the changeset viewer.