diff options
author | mistic100 <mistic@piwigo.org> | 2013-11-18 20:06:43 +0000 |
---|---|---|
committer | mistic100 <mistic@piwigo.org> | 2013-11-18 20:06:43 +0000 |
commit | a89a16f2819116e29a8f05530a9b96a259371a3a (patch) | |
tree | d8cf8aae65896d14a6a39b530e52d53d62865b03 /plugins/language_switch/flags.tpl | |
parent | 4dd7b0e42f8249e31cf04a13d51a526bbbda8352 (diff) |
make flags useable anywhere
git-svn-id: http://piwigo.org/svn/trunk@25564 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'plugins/language_switch/flags.tpl')
-rw-r--r-- | plugins/language_switch/flags.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/language_switch/flags.tpl b/plugins/language_switch/flags.tpl index 3846d645c..089e39604 100644 --- a/plugins/language_switch/flags.tpl +++ b/plugins/language_switch/flags.tpl @@ -1,11 +1,11 @@ <li id="languageSwitch">{strip}<a id="languageSwitchLink" title="{'Language'|@translate}" class="pwg-state-default pwg-button" rel="nofollow"> - <span class="pwg-icon flags langflag-{$lang_switch.Active.code}"> </span><span class="pwg-button-text">{'Language'|@translate}</span> + <span class="pwg-icon langflag-{$lang_switch.Active.code}"> </span><span class="pwg-button-text">{'Language'|@translate}</span> </a> <div id="languageSwitchBox" class="switchBox"> <div class="switchBoxTitle">{'Language'|@translate}</div> {foreach from=$lang_switch.flags item=flag name=f} <a rel="nofollow" href="{$flag.url}"> - {if $lang_info.direction=="ltr"}<span class="pwg-icon flags langflag-{$flag.code}">{$flag.alt}</span>{$flag.title}{else}{$flag.title}<span class="pwg-icon flags langflag-{$flag.code}">{$flag.alt}</span>{/if} + {if $lang_info.direction=="ltr"}<span class="pwg-icon langflag-{$flag.code}">{$flag.alt}</span>{$flag.title}{else}{$flag.title}<span class="pwg-icon langflag-{$flag.code}">{$flag.alt}</span>{/if} </a> {if ($smarty.foreach.f.index+1)%3 == 0}<br>{/if} {/foreach} |