diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-09-21 20:19:41 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-09-21 20:19:41 +0000 |
commit | b472955f7d994ad66f62a39b8e1dbb541ac17a4f (patch) | |
tree | 181fb183a5db684dcdb01c7f2e1ec33561898268 /admin/include/functions.php | |
parent | 33f504da183388b8a3568928e5946892649a1907 (diff) |
feature 1616: rename "category" into "album" (3rd commit; still to come)
git-svn-id: http://piwigo.org/svn/trunk@6988 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/include/functions.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/include/functions.php b/admin/include/functions.php index 5a65f9995..718fa7236 100644 --- a/admin/include/functions.php +++ b/admin/include/functions.php @@ -1062,7 +1062,7 @@ SELECT uppercats { array_push( $page['errors'], - l10n('You cannot move a category in its own sub category') + l10n('You cannot move a album in its own sub album') ); return; } @@ -1172,7 +1172,7 @@ function create_virtual_category($category_name, $parent_id=null) // is the given category name only containing blank spaces ? if (preg_match('/^\s*$/', $category_name)) { - return array('error' => l10n('The name of a category should not be empty')); + return array('error' => l10n('The name of an album must not be empty')); } $parent_id = !empty($parent_id) ? $parent_id : 'NULL'; |