From bc3c30ebc548c9b1b184166e940d66cc91752a28 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Fri, 11 Mar 2016 21:44:54 +0545 Subject: Internationalize Form_Button text The text of a Form_Button is not translated internally. Some Form_Button calls already had the button text enclosed in gettext(), this does it for the remaining ones. --- src/usr/local/www/diag_smart.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/usr/local/www/diag_smart.php') diff --git a/src/usr/local/www/diag_smart.php b/src/usr/local/www/diag_smart.php index 4de1338..1fced4f 100644 --- a/src/usr/local/www/diag_smart.php +++ b/src/usr/local/www/diag_smart.php @@ -294,7 +294,7 @@ switch ($action) { if (!empty($pconfig['smartmonemail'])) { $form->addGlobal(new Form_Button( 'test', - 'Send test email', + gettext('Send test email'), null, 'fa-send' ))->addClass('btn-info'); @@ -314,7 +314,7 @@ switch ($action) { $btnview = new Form_Button( 'submit', - 'View', + gettext('View'), null, 'fa-file-o' ); @@ -394,7 +394,7 @@ switch ($action) { $btntest = new Form_Button( 'submit', - 'Test', + gettext('Test'), null, 'fa-wrench' ); @@ -467,7 +467,7 @@ switch ($action) { $btnview = new Form_Button( 'submit', - 'View', + gettext('View'), null, 'fa-file-o' ); @@ -521,7 +521,7 @@ switch ($action) { // Abort $btnabort = new Form_Button( 'submit', - 'Abort', + gettext('Abort'), null, 'fa-times' ); -- cgit v1.1