diff options
author | rub <rub@piwigo.org> | 2007-03-11 23:02:13 +0000 |
---|---|---|
committer | rub <rub@piwigo.org> | 2007-03-11 23:02:13 +0000 |
commit | 051145723de0cb7678d78ebbf74cf5fced4cdd7f (patch) | |
tree | dc8448cd19998ffdec306b36eed92690f4935499 /template/yoga/admin/configuration.tpl | |
parent | b79c8aceae62df26ab17049c9ce9330fdac3ab35 (diff) |
Fix Mathias requests about French words.
Rename completely general tab into main tab.
git-svn-id: http://piwigo.org/svn/trunk@1894 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template/yoga/admin/configuration.tpl')
-rw-r--r-- | template/yoga/admin/configuration.tpl | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/template/yoga/admin/configuration.tpl b/template/yoga/admin/configuration.tpl index 5d2372587..52cb270e2 100644 --- a/template/yoga/admin/configuration.tpl +++ b/template/yoga/admin/configuration.tpl @@ -9,64 +9,64 @@ <form method="post" action="{F_ACTION}" class="properties"> -<!-- BEGIN general --> -<fieldset id="generalConf"> +<!-- BEGIN main --> +<fieldset id="mainConf"> <ul> <li> <span class="property"> <label for="gallery_title">{lang:Gallery title}</label> </span> - <input type="text" maxlength="255" size="50" name="gallery_title" id="gallery_title" value="{general.CONF_GALLERY_TITLE}" /> + <input type="text" maxlength="255" size="50" name="gallery_title" id="gallery_title" value="{main.CONF_GALLERY_TITLE}" /> </li> <li> <span class="property"> <label for="page_banner">{lang:Page banner}</label> </span> - <textarea class="description" name="page_banner" id="page_banner">{general.CONF_PAGE_BANNER}</textarea> + <textarea class="description" name="page_banner" id="page_banner">{main.CONF_PAGE_BANNER}</textarea> </li> <li> <span class="property"> <label for="gallery_url">{lang:Gallery URL}</label> </span> - <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{general.CONF_GALLERY_URL}" /> + <input type="text" maxlength="255" size="50" name="gallery_url" id="gallery_url" value="{main.CONF_GALLERY_URL}" /> </li> <li> <span class="property">{lang:Lock gallery}</span> - <label><input type="radio" class="radio" name="gallery_locked" value="true" {general.GALLERY_LOCKED_YES} />{lang:Yes}</label> - <label><input type="radio" class="radio" name="gallery_locked" value="false" {general.GALLERY_LOCKED_NO} />{lang:No}</label> + <label><input type="radio" class="radio" name="gallery_locked" value="true" {main.GALLERY_LOCKED_YES} />{lang:Yes}</label> + <label><input type="radio" class="radio" name="gallery_locked" value="false" {main.GALLERY_LOCKED_NO} />{lang:No}</label> </li> <li> <span class="property">{lang:Rating}</span> - <label><input type="radio" class="radio" name="rate" value="true" {general.RATE_YES} />{lang:Yes}</label> - <label><input type="radio" class="radio" name="rate" value="false" {general.RATE_NO} />{lang:No}</label> + <label><input type="radio" class="radio" name="rate" value="true" {main.RATE_YES} />{lang:Yes}</label> + <label><input type="radio" class="radio" name="rate" value="false" {main.RATE_NO} />{lang:No}</label> </li> <li> <span class="property">{lang:Rating by guests}</span> - <label><input type="radio" class="radio" name="rate_anonymous" value="true" {general.RATE_ANONYMOUS_YES} />{lang:Yes}</label> - <label><input type="radio" class="radio" name="rate_anonymous" value="false" {general.RATE_ANONYMOUS_NO} />{lang:No}</label> + <label><input type="radio" class="radio" name="rate_anonymous" value="true" {main.RATE_ANONYMOUS_YES} />{lang:Yes}</label> + <label><input type="radio" class="radio" name="rate_anonymous" value="false" {main.RATE_ANONYMOUS_NO} />{lang:No}</label> </li> <li> <label> <span class="property">{lang:Email admin when a new user registers}</span> - <input type="checkbox" name="email_admin_on_new_user" {general.EMAIL_ADMIN_ON_NEW_USER} /> + <input type="checkbox" name="email_admin_on_new_user" {main.EMAIL_ADMIN_ON_NEW_USER} /> </label> </li> <li> <label for="allow_user_registration"> <span class="property">{lang:Allow user registration}</span> - <input type="checkbox" name="allow_user_registration" id="allow_user_registration" {general.ALLOW_USER_REGISTRATION} /> + <input type="checkbox" name="allow_user_registration" id="allow_user_registration" {main.ALLOW_USER_REGISTRATION} /> </label> </li> </ul> </fieldset> -<!-- END general --> +<!-- END main --> <!-- BEGIN history --> <fieldset id="historyConf"> |