diff options
author | rvelices <rv-github@modusoptimus.com> | 2008-03-08 01:38:37 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2008-03-08 01:38:37 +0000 |
commit | fe23062161d1e50a97685822c8ab94cdc2d43263 (patch) | |
tree | e3455673a4ebedc519afc03b1195a21eb4edb398 /template/yoga/menubar.tpl | |
parent | c68914a3b962b39f341eb4a42f467f7c1143a8b9 (diff) |
- upload.tpl goes smarty
- start some language cleanup and a small attempt to standardize a bit ...
- debug_language now calls trigger_error instead of echo when missing language key
git-svn-id: http://piwigo.org/svn/trunk@2265 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | template/yoga/menubar.tpl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/template/yoga/menubar.tpl b/template/yoga/menubar.tpl index a7e01fcad..7169ff39f 100644 --- a/template/yoga/menubar.tpl +++ b/template/yoga/menubar.tpl @@ -36,7 +36,7 @@ <a href="{$U_UPLOAD}">{'upload_picture'|@translate}</a> </li></ul> {/if} - <p class="totalImages">{$NB_PICTURE} {'total'|@translate}</p> + <p class="totalImages">{$pwg->l10n_dec('%d element', '%d elements', $NB_PICTURE)}</p> </dd> </dl> @@ -50,12 +50,12 @@ <li> {if !empty($tag.add) } <a href="{$tag.add.URL}" - title="{$pwg->l10n_dec('%d picture are also linked to current tags', '%d pictures are also linked to current tags', $tag.add.COUNTER)}" + title="{$pwg->l10n_dec('%d element are also linked to current tags', '%d elements are also linked to current tags', $tag.add.COUNTER)}" rel="nofollow"> <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" /> </a> {/if} - <a href="{$tag.U_TAG}" class="{$tag.CLASS}" title="{'See pictures linked to this tag only'|@translate}">{$tag.NAME}</a> + <a href="{$tag.U_TAG}" class="{$tag.CLASS}" title="{'See elements linked to this tag only'|@translate}">{$tag.NAME}</a> </li> {/foreach} </ul> @@ -146,7 +146,7 @@ </label> {/if} <p> - <input class="submit" type="submit" name="login" value="{'submit'|@translate}"> + <input class="submit" type="submit" name="login" value="{'Submit'|@translate}"> </p> <ul class="actions"> |