From: Joe Hunt Date: Tue, 22 Jan 2013 22:34:52 +0000 (+0100) Subject: Text not gettextized in /admin/backups.php. X-Git-Tag: 2.3-final~335 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=7b429726b63cd0ad02c5bd32a344e2764758e31a;p=fa-stable.git Text not gettextized in /admin/backups.php. --- diff --git a/admin/backups.php b/admin/backups.php index 8d7bfbc0..5eee6256 100644 --- a/admin/backups.php +++ b/admin/backups.php @@ -165,7 +165,7 @@ if (get_post('upload')) display_error(_("You can only upload *.sql backup files")); elseif (is_uploaded_file($tmpname)) { rename($tmpname, BACKUP_PATH . $fname); - display_notification( "File uploaded to backup directory"); + display_notification(_("File uploaded to backup directory")); $Ajax->activate('backups'); } else display_error(_("File was not uploaded into the system."));