From d7012af3e27e264bead699ebbca1146caac032d7 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Mon, 4 Nov 2013 09:28:12 +0100 Subject: [PATCH] add translation files for thelia core system --- core/lib/Thelia/Config/I18n/en_US.php | 26 ++++++++++++++++++++++++++ core/lib/Thelia/Config/I18n/es_ES.php | 26 ++++++++++++++++++++++++++ core/lib/Thelia/Config/I18n/fr_FR.php | 26 ++++++++++++++++++++++++++ core/lib/Thelia/Config/I18n/it_IT.php | 26 ++++++++++++++++++++++++++ core/lib/Thelia/Core/Thelia.php | 3 +++ 5 files changed, 107 insertions(+) create mode 100644 core/lib/Thelia/Config/I18n/en_US.php create mode 100644 core/lib/Thelia/Config/I18n/es_ES.php create mode 100644 core/lib/Thelia/Config/I18n/fr_FR.php create mode 100644 core/lib/Thelia/Config/I18n/it_IT.php diff --git a/core/lib/Thelia/Config/I18n/en_US.php b/core/lib/Thelia/Config/I18n/en_US.php new file mode 100644 index 000000000..7eb24949a --- /dev/null +++ b/core/lib/Thelia/Config/I18n/en_US.php @@ -0,0 +1,26 @@ +. */ +/* */ +/*************************************************************************************/ + +return array( + +); \ No newline at end of file diff --git a/core/lib/Thelia/Config/I18n/es_ES.php b/core/lib/Thelia/Config/I18n/es_ES.php new file mode 100644 index 000000000..7eb24949a --- /dev/null +++ b/core/lib/Thelia/Config/I18n/es_ES.php @@ -0,0 +1,26 @@ +. */ +/* */ +/*************************************************************************************/ + +return array( + +); \ No newline at end of file diff --git a/core/lib/Thelia/Config/I18n/fr_FR.php b/core/lib/Thelia/Config/I18n/fr_FR.php new file mode 100644 index 000000000..7eb24949a --- /dev/null +++ b/core/lib/Thelia/Config/I18n/fr_FR.php @@ -0,0 +1,26 @@ +. */ +/* */ +/*************************************************************************************/ + +return array( + +); \ No newline at end of file diff --git a/core/lib/Thelia/Config/I18n/it_IT.php b/core/lib/Thelia/Config/I18n/it_IT.php new file mode 100644 index 000000000..7eb24949a --- /dev/null +++ b/core/lib/Thelia/Config/I18n/it_IT.php @@ -0,0 +1,26 @@ +. */ +/* */ +/*************************************************************************************/ + +return array( + +); \ No newline at end of file diff --git a/core/lib/Thelia/Core/Thelia.php b/core/lib/Thelia/Core/Thelia.php index 3d476ad30..2b4229f3c 100755 --- a/core/lib/Thelia/Core/Thelia.php +++ b/core/lib/Thelia/Core/Thelia.php @@ -150,6 +150,9 @@ class Thelia extends Kernel } //Load translation from templates + //core translation + $dirs[] = THELIA_ROOT . "/core/lib/Thelia/Config/I18n"; + //admin template if(is_dir($dir = THELIA_TEMPLATE_DIR . '/admin/default/I18n')) { $dirs[] = $dir;