diff options
author | plegall <plg@piwigo.org> | 2010-03-23 12:04:31 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2010-03-23 12:04:31 +0000 |
commit | f60f59a4c6099b387eae41691275a8dbec6f6f0d (patch) | |
tree | 65155460ec6d968341ebc2e1b37946e09aca4f4f /admin/themes/default/template/themes_installed.tpl | |
parent | 87f5424cca63ddce78c25853881d0116e0c0c5ee (diff) |
bug fixed: hide border on admin/configuration fieldsets to avoid empty legend.
Add missing i18n on admin.tpl, admin header/footer, pLoader page, theme
manager.
git-svn-id: http://piwigo.org/svn/trunk@5284 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/themes/default/template/themes_installed.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/themes/default/template/themes_installed.tpl b/admin/themes/default/template/themes_installed.tpl index 4b050c51c..28d4df66a 100644 --- a/admin/themes/default/template/themes_installed.tpl +++ b/admin/themes/default/template/themes_installed.tpl @@ -5,12 +5,12 @@ <div id="themesContent"> <fieldset> -<legend>Active Themes</legend> +<legend>{'Active Themes'|@translate}</legend> {if isset($active_themes)} <div class="themeBoxes"> {foreach from=$active_themes item=theme} <div class="themeBox{if $theme.is_default} themeDefault{/if}"> - <div class="themeName">{$theme.name}{if $theme.is_default} <em>(default)</em>{/if}</div> + <div class="themeName">{$theme.name}{if $theme.is_default} <em>({'default'|@translate})</em>{/if}</div> <div class="themeShot"><img src="{$theme.screenshot}"></div> <div class="themeActions"> <a href="{$deactivate_baseurl}{$theme.id}" title="{'Forbid this theme to users'|@translate}">{'Deactivate'|@translate}</a> @@ -26,7 +26,7 @@ {if isset($inactive_themes)} <fieldset> -<legend>Inactive Themes</legend> +<legend>{'Inactive Themes'|@translate}</legend> <div class="themeBoxes"> {foreach from=$inactive_themes item=theme} <div class="themeBox"> |