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/configuration.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/configuration.tpl | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/admin/template/goto/configuration.tpl b/admin/template/goto/configuration.tpl index 9f335d36c..065a2ad76 100644 --- a/admin/template/goto/configuration.tpl +++ b/admin/template/goto/configuration.tpl @@ -2,7 +2,7 @@ {include file='include/autosize.inc.tpl'} <div class="titrePage"> - <h2>{'title_configuration'|@translate} {$TABSHEET_TITLE}</h2> + <h2>{'Piwigo configuration'|@translate} {$TABSHEET_TITLE}</h2> </div> {if !isset($default)} @@ -69,14 +69,14 @@ <li> <label> - <span class="property">{'obligatory_user_mail_address'|@translate}</span> + <span class="property">{'Mail address is obligatory for all users'|@translate}</span> <input type="checkbox" name="obligatory_user_mail_address" {if ($main.obligatory_user_mail_address)}checked="checked"{/if}> </label> </li> <li> <label> - <span class="property">{'Email administrators when a new user registers'|@translate}</span> + <span class="property">{'Email admins when a new user registers'|@translate}</span> <input type="checkbox" name="email_admin_on_new_user" {if ($main.email_admin_on_new_user)}checked="checked"{/if}> </label> </li> @@ -89,15 +89,15 @@ <legend></legend> <ul> <li> - <label><span class="property">{'conf_history_guest'|@translate}</span><input type="checkbox" name="history_guest" {if ($history.history_guest)}checked="checked"{/if}></label> + <label><span class="property">{'Save page visits by guests'|@translate}</span><input type="checkbox" name="history_guest" {if ($history.history_guest)}checked="checked"{/if}></label> </li> <li> - <label><span class="property">{'conf_history_user'|@translate}</span><input type="checkbox" name="log" {if ($history.log)}checked="checked"{/if}></label> + <label><span class="property">{'Save page visits by users'|@translate}</span><input type="checkbox" name="log" {if ($history.log)}checked="checked"{/if}></label> </li> <li> - <label><span class="property">{'conf_history_admin'|@translate}</span><input type="checkbox" name="history_admin" {if ($history.history_admin)}checked="checked"{/if}></label> + <label><span class="property">{'Save page visits by administrators'|@translate}</span><input type="checkbox" name="history_admin" {if ($history.history_admin)}checked="checked"{/if}></label> </li> </ul> </fieldset> @@ -132,14 +132,14 @@ <li> <label> - <span class="property">{'Email administrators when a valid comment is entered'|@translate}</span> + <span class="property">{'Email admins when a valid comment is entered'|@translate}</span> <input type="checkbox" name="email_admin_on_comment" {if ($comments.email_admin_on_comment)}checked="checked"{/if}> </label> </li> <li> <label> - <span class="property">{'Email administrators when a comment requires validation'|@translate}</span> + <span class="property">{'Email admins when a comment requires validation'|@translate}</span> <input type="checkbox" name="email_admin_on_comment_validation" {if ($comments.email_admin_on_comment_validation)}checked="checked"{/if}> </label> </li> @@ -188,7 +188,7 @@ </li> <li> <label> - <span class="property">{'Email administrators when a picture is uploaded'|@translate}</span> + <span class="property">{'Email admins when a picture is uploaded'|@translate}</span> <input type="checkbox" name="email_admin_on_picture_uploaded" {if ($upload.email_admin_on_picture_uploaded)}checked="checked"{/if}> </label> </li> |