summaryrefslogtreecommitdiffstats
path: root/admin
diff options
context:
space:
mode:
authorPaul Arthur <flowerysong00@yahoo.com>2012-03-31 18:08:56 -0400
committerPaul Arthur <paul.arthur@flowerysong.com>2012-04-12 21:13:29 -0400
commit774e53db7d9abdba72a0b7c49829dcdbdb2e0e1a (patch)
tree2d938b4c7d3dd2252e43cbc68b4739d9e15c854d /admin
parentf65076b93d91fe9718cf9bef37638d64290b9f28 (diff)
downloadampache-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.php4
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':