From 25ab8f266f78537098ff0f3ee6b7d8051c303200 Mon Sep 17 00:00:00 2001 From: emanuele Date: Thu, 16 Feb 2012 20:47:30 +0100 Subject: [PATCH] Added Spanish (thanks 4Kstore) and Polish (thanks phantomm) translations; Moved language files to a directory; revision changed to 1.4 --- .../IntegrationHooks.english-utf8.php | 0 IntegrationHooks/IntegrationHooks.english.php | 31 +++++++++++++++++ .../IntegrationHooks.english_british-utf8.php | 31 +++++++++++++++++ .../IntegrationHooks.english_british.php | 31 +++++++++++++++++ .../IntegrationHooks.polish-utf8.php | 33 +++++++++++++++++++ IntegrationHooks/IntegrationHooks.polish.php | 33 +++++++++++++++++++ .../IntegrationHooks.russian-utf8.php | 0 .../IntegrationHooks.russian.php | 0 .../IntegrationHooks.spanish_latin-utf8.php | 32 ++++++++++++++++++ .../IntegrationHooks.spanish_latin.php | 32 ++++++++++++++++++ Subs-IntegrationHooks.php | 4 +-- install.php | 2 +- package-info.xml | 12 +++---- 13 files changed, 230 insertions(+), 11 deletions(-) rename IntegrationHooks.english.php => IntegrationHooks/IntegrationHooks.english-utf8.php (100%) create mode 100644 IntegrationHooks/IntegrationHooks.english.php create mode 100644 IntegrationHooks/IntegrationHooks.english_british-utf8.php create mode 100644 IntegrationHooks/IntegrationHooks.english_british.php create mode 100644 IntegrationHooks/IntegrationHooks.polish-utf8.php create mode 100644 IntegrationHooks/IntegrationHooks.polish.php rename IntegrationHooks.russian-utf8.php => IntegrationHooks/IntegrationHooks.russian-utf8.php (100%) rename IntegrationHooks.russian.php => IntegrationHooks/IntegrationHooks.russian.php (100%) create mode 100644 IntegrationHooks/IntegrationHooks.spanish_latin-utf8.php create mode 100644 IntegrationHooks/IntegrationHooks.spanish_latin.php diff --git a/IntegrationHooks.english.php b/IntegrationHooks/IntegrationHooks.english-utf8.php similarity index 100% rename from IntegrationHooks.english.php rename to IntegrationHooks/IntegrationHooks.english-utf8.php diff --git a/IntegrationHooks/IntegrationHooks.english.php b/IntegrationHooks/IntegrationHooks.english.php new file mode 100644 index 0000000..e7bb706 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.english.php @@ -0,0 +1,31 @@ + \ No newline at end of file diff --git a/IntegrationHooks/IntegrationHooks.english_british-utf8.php b/IntegrationHooks/IntegrationHooks.english_british-utf8.php new file mode 100644 index 0000000..e7bb706 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.english_british-utf8.php @@ -0,0 +1,31 @@ + \ No newline at end of file diff --git a/IntegrationHooks/IntegrationHooks.english_british.php b/IntegrationHooks/IntegrationHooks.english_british.php new file mode 100644 index 0000000..e7bb706 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.english_british.php @@ -0,0 +1,31 @@ + \ No newline at end of file diff --git a/IntegrationHooks/IntegrationHooks.polish-utf8.php b/IntegrationHooks/IntegrationHooks.polish-utf8.php new file mode 100644 index 0000000..5a3a079 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.polish-utf8.php @@ -0,0 +1,33 @@ + \ No newline at end of file diff --git a/IntegrationHooks/IntegrationHooks.polish.php b/IntegrationHooks/IntegrationHooks.polish.php new file mode 100644 index 0000000..f781483 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.polish.php @@ -0,0 +1,33 @@ + \ No newline at end of file diff --git a/IntegrationHooks.russian-utf8.php b/IntegrationHooks/IntegrationHooks.russian-utf8.php similarity index 100% rename from IntegrationHooks.russian-utf8.php rename to IntegrationHooks/IntegrationHooks.russian-utf8.php diff --git a/IntegrationHooks.russian.php b/IntegrationHooks/IntegrationHooks.russian.php similarity index 100% rename from IntegrationHooks.russian.php rename to IntegrationHooks/IntegrationHooks.russian.php diff --git a/IntegrationHooks/IntegrationHooks.spanish_latin-utf8.php b/IntegrationHooks/IntegrationHooks.spanish_latin-utf8.php new file mode 100644 index 0000000..4637115 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.spanish_latin-utf8.php @@ -0,0 +1,32 @@ + \ No newline at end of file diff --git a/IntegrationHooks/IntegrationHooks.spanish_latin.php b/IntegrationHooks/IntegrationHooks.spanish_latin.php new file mode 100644 index 0000000..4637115 --- /dev/null +++ b/IntegrationHooks/IntegrationHooks.spanish_latin.php @@ -0,0 +1,32 @@ + \ No newline at end of file diff --git a/Subs-IntegrationHooks.php b/Subs-IntegrationHooks.php index 734b949..a209f29 100644 --- a/Subs-IntegrationHooks.php +++ b/Subs-IntegrationHooks.php @@ -8,7 +8,7 @@ * @copyright 2011 [SiNaN], Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * - * @version 1.3 + * @version 1.4 */ if (!defined('SMF')) @@ -18,7 +18,7 @@ function hooks_admin_areas($areas) { global $context, $txt; - loadLanguage('IntegrationHooks'); + loadLanguage('IntegrationHooks/IntegrationHooks'); $areas['config']['areas']['modsettings']['subsections']['hooks'] = array($txt['hooks_title_list']); } diff --git a/install.php b/install.php index 9c2696f..8db28ba 100644 --- a/install.php +++ b/install.php @@ -8,7 +8,7 @@ * @copyright 2011 [SiNaN], Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * - * @version 1.3 + * @version 1.4 */ if (file_exists(dirname(__FILE__) . '/SSI.php') && !defined('SMF')) diff --git a/package-info.xml b/package-info.xml index a143e16..8ffa3e7 100644 --- a/package-info.xml +++ b/package-info.xml @@ -12,29 +12,25 @@ * @copyright 2011 [SiNaN], Simple Machines * @license http://www.simplemachines.org/about/smf/license.php BSD * - * @version 1.3 + * @version 1.4 */ --> [SiNaN]:IntegrationHooks Integration Hooks Report - 1.3 + 1.4 modification - - - + install.php - - - + install.php