From 4303acdfbc82c3e968f10ac4ec52444649ed5602 Mon Sep 17 00:00:00 2001 From: SecretR Date: Mon, 4 Mar 2013 14:06:04 +0200 Subject: [PATCH] Fix '$' breaking translation (double quote constants) --- e107_languages/English/admin/lan_admin.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/e107_languages/English/admin/lan_admin.php b/e107_languages/English/admin/lan_admin.php index 82d57d07d..1820a5233 100644 --- a/e107_languages/English/admin/lan_admin.php +++ b/e107_languages/English/admin/lan_admin.php @@ -360,18 +360,18 @@ define("LAN_UI_NOPID_ERROR", "There is no Primary ID set"); define("LAN_UI_BATCHDEL_ERROR", "Batch delete not allowed!"); define("LAN_UI_404_BODY_ERROR", "Requested page was not found!"); define("LAN_UI_404_TITLE_ERROR", "Page Not Found"); -define("LAN_UI_404_METHOD_ERROR", "Action %1$s not found!"); +define("LAN_UI_404_METHOD_ERROR", "Action %1\$s not found!"); define("LAN_UI_403_BODY_ERROR", "Access to the requested page is denied."); define("LAN_UI_403_TITLE_ERROR", "Access denied"); -define("LAN_UI_FORM_METHOD_ERROR", "FATAL ERROR: The field name %1$s is not allowed. Please rename the key %1$s to something else in your fields array and database table (if required)."); +define("LAN_UI_FORM_METHOD_ERROR", "FATAL ERROR: The field name %1\$s is not allowed. Please rename the key %1\$s to something else in your fields array and database table (if required)."); //FIXME - remove % code and HTML from LANS below and replace with "[x]" and bbcode. -define("LAN_UI_BATCH_UPDATE_SUCCESS", "%1$s set for %2$d record(s)."); -define("LAN_UI_BATCH_REVERSED_SUCCESS", "%1$d records successfully reversed."); -define("LAN_UI_BATCH_BOOL_SUCCESS", "%1$d records successfully updated."); -define("LAN_UI_BATCH_DEATTACH_SUCCESS", "%1$s removed from %2$d record(s)."); +define("LAN_UI_BATCH_UPDATE_SUCCESS", "%1\$s set for %2\$d record(s)."); +define("LAN_UI_BATCH_REVERSED_SUCCESS", "%1\$d records successfully reversed."); +define("LAN_UI_BATCH_BOOL_SUCCESS", "%1\$d records successfully updated."); +define("LAN_UI_BATCH_DEATTACH_SUCCESS", "%1\$s removed from %2\$d record(s)."); -define("LAN_UI_EDIT_LABEL", "Update record #%1$s"); +define("LAN_UI_EDIT_LABEL", "Update record #%1\$s"); define("LAN_UI_CREATE_LABEL", "Create new record"); define("LAN_UI_PREF_LABEL", "Settings"); define("LAN_UI_DELETE_LABEL", "Confirm Delete");