diff options
author | Paul Arthur <flowerysong00@yahoo.com> | 2012-03-31 18:08:56 -0400 |
---|---|---|
committer | Paul Arthur <paul.arthur@flowerysong.com> | 2012-04-12 21:13:29 -0400 |
commit | 774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a (patch) | |
tree | 2d938b4c7d3dd2252e43cbc68b4739d9e15c854d /admin | |
parent | f65076b93d91fe9718cf9bef37638d64290b9f28 (diff) | |
download | ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.tar.gz ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.tar.bz2 ampache-774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a.zip |
Switch from ngettext() to T_ngettext()
Diffstat (limited to 'admin')
-rw-r--r-- | admin/catalog.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/admin/catalog.php b/admin/catalog.php index 62c8657b..6ba47060 100644 --- a/admin/catalog.php +++ b/admin/catalog.php @@ -135,13 +135,13 @@ switch ($_REQUEST['action']) { if (count($song)) { $catalog->remove_songs($song); - $body = ngettext('Song Removed', 'Songs Removed', count($song)); + $body = T_ngettext('Song Removed', 'Songs Removed', count($song)); } else { $body = T_('No Songs Removed'); } $url = Config::get('web_path') . '/admin/catalog.php'; - $title = ngettext('Disabled Song Processed','Disabled Songs Processed',count($song)); + $title = T_ngettext('Disabled Song Processed','Disabled Songs Processed',count($song)); show_confirmation($title,$body,$url); break; case 'clean_all_catalogs': |