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 /include/functions_category.inc.php | |
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 'include/functions_category.inc.php')
-rw-r--r-- | include/functions_category.inc.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/functions_category.inc.php b/include/functions_category.inc.php index d35114ca3..c0f9aee1e 100644 --- a/include/functions_category.inc.php +++ b/include/functions_category.inc.php @@ -286,9 +286,9 @@ function get_category_preferred_image_orders() return trigger_event('get_category_preferred_image_orders', array( - array(l10n('default_sort'), '', true), + array(l10n('Default'), '', true), array(l10n('Average rate'), 'average_rate DESC', $conf['rate']), - array(l10n('most_visited_cat'), 'hit DESC', true), + array(l10n('Most visited'), 'hit DESC', true), array(l10n('Creation date'), 'date_creation DESC', true), array(l10n('Post date'), 'date_available DESC', true), array(l10n('File name'), 'file ASC', true), @@ -297,7 +297,7 @@ function get_category_preferred_image_orders() 'rank ASC', ('categories' == @$page['section'] and !isset($page['flat']) and !isset($page['chronology_field']) ) ), - array( l10n('permissions'), 'level DESC', is_admin() ) + array( l10n('Permissions'), 'level DESC', is_admin() ) )); } @@ -479,7 +479,7 @@ function get_display_images_count($cat_nb_images, $cat_count_images, $cat_count_ //no descendant categories or descendants do not contain images if (! $short_message) { - $display_text.= ' '.l10n('images_available_cpl'); + $display_text.= ' '.l10n('in this category'); } } else |