1
0
mirror of https://github.com/e107inc/e107.git synced 2025-04-22 13:41:52 +02:00

Fix '$' breaking translation (double quote constants)

This commit is contained in:
SecretR 2013-03-04 14:06:04 +02:00
parent ef51b62590
commit 4303acdfbc

@ -360,18 +360,18 @@ define("LAN_UI_NOPID_ERROR", "There is no <strong>Primary ID</strong> 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 <strong>%1$s</strong> not found!");
define("LAN_UI_404_METHOD_ERROR", "Action <strong>%1\$s</strong> 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 <strong>%1$s</strong> is not allowed. Please rename the key <strong>%1$s</strong> to something else in your fields array and database table (if required).");
define("LAN_UI_FORM_METHOD_ERROR", "FATAL ERROR: The field name <strong>%1\$s</strong> is not allowed. Please rename the key <strong>%1\$s</strong> 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", "<strong>%1$s</strong> set for <strong>%2$d</strong> record(s).");
define("LAN_UI_BATCH_REVERSED_SUCCESS", "<strong>%1$d</strong> records successfully reversed.");
define("LAN_UI_BATCH_BOOL_SUCCESS", "<strong>%1$d</strong> records successfully updated.");
define("LAN_UI_BATCH_DEATTACH_SUCCESS", "<strong>%1$s</strong> removed from <strong>%2$d</strong> record(s).");
define("LAN_UI_BATCH_UPDATE_SUCCESS", "<strong>%1\$s</strong> set for <strong>%2\$d</strong> record(s).");
define("LAN_UI_BATCH_REVERSED_SUCCESS", "<strong>%1\$d</strong> records successfully reversed.");
define("LAN_UI_BATCH_BOOL_SUCCESS", "<strong>%1\$d</strong> records successfully updated.");
define("LAN_UI_BATCH_DEATTACH_SUCCESS", "<strong>%1\$s</strong> removed from <strong>%2\$d</strong> 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");