diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-02 14:54:22 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-02 14:54:22 +0000 |
commit | 2e890e9597da29346a1fbe0db45f48e4a2be86e7 (patch) | |
tree | f189c8320f38340bc3d7a94d799e05e0587d95cb /admin/template/goto/plugins_update.tpl | |
parent | 35694a636ef34dba5384e1a530b837208b9e55f9 (diff) |
Feature 1451 : localization with gettext
Use php-gettext (developpement version rev43, because of php5.3) as fallback
Use native language (english) instead of key for translation
Keep directory en_UK for english customization
Need some refactoring for plurals
Todo : managing plugins in the same way
git-svn-id: http://piwigo.org/svn/trunk@5021 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/goto/plugins_update.tpl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/admin/template/goto/plugins_update.tpl b/admin/template/goto/plugins_update.tpl index efc5acaa3..470b53558 100644 --- a/admin/template/goto/plugins_update.tpl +++ b/admin/template/goto/plugins_update.tpl @@ -16,13 +16,13 @@ jQuery().ready(function(){ldelim} {if isset($plugins_not_uptodate)} <br> -<b>{'plugins_need_update'|@translate}</b> +<b>{'Plugins which need upgrade'|@translate}</b> <table class="table2 plugins"> <thead> <tr class="throw"> <td>{'Name'|@translate}</td> - <td>{'plugins_actual_version'|@translate}</td> - <td>{'plugins_new_version'|@translate}</td> + <td>{'Current<br>version'|@translate}</td> + <td>{'Available<br>version'|@translate}</td> <td>{'Actions'|@translate}</td> </tr> </thead> @@ -32,7 +32,7 @@ jQuery().ready(function(){ldelim} <td style="text-align:center;">{$plugin.VERSION}</td> <td style="text-align:center;"><a href="{$plugin.EXT_URL}" onclick="window.open(this.href); return false;" class="cluetip" title="{$plugin.EXT_NAME}|{$plugin.NEW_VER_DESC|htmlspecialchars|nl2br}">{$plugin.NEW_VERSION}</a></td> <td style="text-align:center;"><a href="{$plugin.URL_UPDATE}" onclick="return confirm('{'plugins_confirm_upgrade'|@translate|@escape:javascript}');">{'plugins_auto_update'|@translate}</a> - / <a href="{$plugin.URL_DOWNLOAD}">{'plugins_download'|@translate}</a></td> + / <a href="{$plugin.URL_DOWNLOAD}">{'Download file'|@translate}</a></td> </tr> {/foreach} </table> @@ -41,7 +41,7 @@ jQuery().ready(function(){ldelim} {if isset($plugins_uptodate)} <br> -<b>{'plugins_dontneed_update'|@translate}</b> +<b>{'Plugins up to date'|@translate}</b> <table class="table2 plugins"> <thead> <tr class="throw"> @@ -61,7 +61,7 @@ jQuery().ready(function(){ldelim} {if isset($plugins_cant_check)} <br> -<b>{'plugins_cant_check'|@translate}</b> +<b>{'Plugin versions can\'t be checked'|@translate}</b> <table class="table2 plugins"> <thead> <tr class="throw"> |