diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-09-21 21:14:54 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-09-21 21:14:54 +0000 |
commit | 5ff171684eec339ed83119eb57e124174c07d465 (patch) | |
tree | aeeaa7a472aa683da26e035ffb873a99b1096219 /admin/photos_add_direct.php | |
parent | b472955f7d994ad66f62a39b8e1dbb541ac17a4f (diff) |
feature 1616: rename "category" into "album" (4th commit; almost there)
git-svn-id: http://piwigo.org/svn/trunk@6993 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/photos_add_direct.php')
-rw-r--r-- | admin/photos_add_direct.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/photos_add_direct.php b/admin/photos_add_direct.php index d12d8971d..727045c6a 100644 --- a/admin/photos_add_direct.php +++ b/admin/photos_add_direct.php @@ -112,7 +112,7 @@ if (isset($_GET['processed'])) array_push( $page['infos'], sprintf( - l10n('Category "%s" has been added'), + l10n('Album "%s" has been added'), '<em>'.$category_name.'</em>' ) ); @@ -346,7 +346,7 @@ SELECT array_push( $page['infos'], sprintf( - l10n('Category "%s" now contains %d photos'), + l10n('Album "%s" now contains %d photos'), '<em>'.$category_name.'</em>', $count ) @@ -457,7 +457,7 @@ if (pwg_db_num_rows($result) > 0) } } -// existing category +// existing album $query = ' SELECT id,name,uppercats,global_rank FROM '.CATEGORIES_TABLE.' |