diff options
author | nikrou <nikrou@piwigo.org> | 2010-03-03 11:18:21 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2010-03-03 11:18:21 +0000 |
commit | 11751ccd2c0b90f24820e409d905d2f0def9525d (patch) | |
tree | fce1af8137b5cd0c7a1150f87de0db462ed1218a /admin/user_list.php | |
parent | f0a6aeedfafb2e67464a11bcd34db0975d191cc7 (diff) |
Feature 1451 : fix mispelling and missing translations
git-svn-id: http://piwigo.org/svn/trunk@5036 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/user_list.php | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/admin/user_list.php b/admin/user_list.php index 1583de0a1..b69bac20e 100644 --- a/admin/user_list.php +++ b/admin/user_list.php @@ -215,7 +215,7 @@ if ($conf['double_password_type_in_admin'] == true) array_push( $page['infos'], sprintf( - l10n('user \"%s\" added'), + l10n('user "%s" added'), $_POST['login'] ) ); @@ -235,7 +235,7 @@ else if ($conf['double_password_type_in_admin'] == false) array_push( $page['infos'], sprintf( - l10n('user \"%s\" added'), + l10n('user "%s" added'), $_POST['login'] ) ); @@ -592,6 +592,7 @@ $template->assign('language_options', get_languages()); $template->assign('language_selected', isset($_POST['pref_submit']) ? $_POST['language'] : get_default_language()); +Log::getInstance()->debug($status); // Status options foreach (get_enums(USER_INFOS_TABLE, 'status') as $status) { @@ -693,7 +694,7 @@ foreach ($visible_user_list as $local_user) } $properties[] = (isset($local_user['enabled_high']) and ($local_user['enabled_high'] == 'true')) - ? l10n('') : l10n(''); + ? l10n('High definition') : l10n(''); $template->append( 'users', |