From 63a7312fae4ec49320a6eae6c5d7be6d88ffd4c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= Date: Fri, 28 Apr 2017 10:17:56 +0200 Subject: [PATCH 1/4] Update plugin.php --- e107_admin/plugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e107_admin/plugin.php b/e107_admin/plugin.php index fac5e7186..911503aa6 100644 --- a/e107_admin/plugin.php +++ b/e107_admin/plugin.php @@ -322,7 +322,7 @@ class plugin_ui extends e_admin_ui - return array('caption'=>"Updates to be Installed", 'text'=>$text); + return array('caption'=>EPL_ADLAN_247, 'text'=>$text); } From 63a3951a2f89c318420427e074fc3c1c43477438 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= Date: Fri, 28 Apr 2017 10:19:57 +0200 Subject: [PATCH 2/4] Update lan_plugin.php --- e107_languages/English/admin/lan_plugin.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/e107_languages/English/admin/lan_plugin.php b/e107_languages/English/admin/lan_plugin.php index a3e3d00a5..5d482aa00 100644 --- a/e107_languages/English/admin/lan_plugin.php +++ b/e107_languages/English/admin/lan_plugin.php @@ -288,7 +288,8 @@ define ("EPL_ADLAN_244","Only 5 Media Categories are permitted during installati define ("EPL_ADLAN_245","Adding Media Category: [x]"); define ("EPL_ADLAN_246","Deleting All Media Categories owned by : [x]"); - +define ("EPL_ADLAN_247","Updates to be Installed"); + define ("EPL_ADLAN_249","Adding Extended Field: "); define ("EPL_ADLAN_250","Removing Extended Field: "); define ("EPL_ADLAN_251","Extended Field left in place: "); From 42321795303b74a11fe02a430c279745a926b3da Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= Date: Fri, 28 Apr 2017 10:47:14 +0200 Subject: [PATCH 3/4] Update lan_lancheck.php --- e107_languages/English/admin/lan_lancheck.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/e107_languages/English/admin/lan_lancheck.php b/e107_languages/English/admin/lan_lancheck.php index 49540abcb..4982abd6e 100644 --- a/e107_languages/English/admin/lan_lancheck.php +++ b/e107_languages/English/admin/lan_lancheck.php @@ -25,7 +25,10 @@ define("LAN_CHECK_26", "Front"); define("LAN_CHECK_PAGE_TITLE", "Languages"); define("LAN_CHECK_27", "Number of language-pack errors found"); define("LAN_CHECK_28", "Identical"); -//define("LAN_CHECK_29", "Missing"); +define("LAN_CHECK_29", "Identical string (warning only)"); +define("LAN_CHECK_30", "Missing bbcodes"); +define("LAN_CHECK_31", "Missing [ and/or ] character(s)"); +define("LAN_CHECK_32", "Missing HTML tags"); define("LANG_LAN_23", "Create Language-Pack (zip)"); define("LANG_LAN_30", "Release Date"); @@ -43,4 +46,4 @@ define("LANG_LAN_120", "Please make sure you are using default folder names in e define("LANG_LAN_AGR", "Note: By using these tools you agree to share your language pack(s) with the e107 community."); -?> \ No newline at end of file +?> From 2cbb2be20bccf99010f66ecd7f07127a9f275519 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor?= Date: Fri, 28 Apr 2017 10:51:45 +0200 Subject: [PATCH 4/4] Update lancheck.php --- e107_admin/lancheck.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/e107_admin/lancheck.php b/e107_admin/lancheck.php index 321389c37..9648c772e 100644 --- a/e107_admin/lancheck.php +++ b/e107_admin/lancheck.php @@ -1317,16 +1317,16 @@ class lancheck if($eng_line == $trans_line && !empty($eng_line)) { - $warning[] = "".$def. ": Identical string (warning only) "; + $warning[] = "".$def. ": ".LAN_CHECK_29.""; } if((strpos($eng_line,"[link=")!==FALSE && strpos($trans_line,"[link=")===FALSE) || (strpos($eng_line,"[b]")!==FALSE && strpos($trans_line,"[b]")===FALSE)) { - $error[] = $def. ": Missing bbcodes"; + $error[] = $def. ": ".LAN_CHECK_30; } elseif((strpos($eng_line,"[")!==FALSE && strpos($trans_line,"[")===FALSE) || (strpos($eng_line,"]")!==FALSE && strpos($trans_line, "]")===FALSE)) { - $error[] = $def. ": Missing [ and/or ] character(s)"; + $error[] = $def. ": ".LAN_CHECK_31; } if((strpos($eng_line,"--LINK--")!==false && strpos($trans_line,"--LINK--")===false)) @@ -1351,7 +1351,7 @@ class lancheck if(($stripped == $trans_line)) { // echo "

".$def. "
".$stripped."
".$trans_line; - $error[] = $def. ": Missing HTML tags" ; + $error[] = $def. ": ".LAN_CHECK_32; } }