From fbe55b8f85dcf610dbdbded8859b0f84d0712eb1 Mon Sep 17 00:00:00 2001 From: lusan Date: Tue, 3 Mar 2020 14:58:09 +0100 Subject: [PATCH] - Fix quotes for translations - Add new route to provide all translations in local language defined "/core/ajax/translations.ajax.php" -Add ajaxUnit test --- core/ajax/translations.ajax.php | 32 +++++++++++ src/Ajax/TranslationsAjax.php | 57 +++++++++++++++++++ .../Ajax/TranslationsAjaxTest.php | 36 ++++++++++++ translations/en_US.yml | 6 +- translations/fr_FR.yml | 2 +- 5 files changed, 129 insertions(+), 4 deletions(-) create mode 100644 core/ajax/translations.ajax.php create mode 100644 src/Ajax/TranslationsAjax.php create mode 100644 tests/phpunit_tests/Ajax/TranslationsAjaxTest.php diff --git a/core/ajax/translations.ajax.php b/core/ajax/translations.ajax.php new file mode 100644 index 000000000..6649bd727 --- /dev/null +++ b/core/ajax/translations.ajax.php @@ -0,0 +1,32 @@ +. + * + * @Support + * @Email + * @Authors/Contributors: Sylvaner, Byackee, cyrilphoenix71, ColonelMoutarde, edgd1er, slobberbone, Astral0, DanoneKiD + */ + +use NextDom\Ajax\TranslationsAjax; + +require_once(__DIR__ . '/../../src/core.php'); + +try { + echo (new TranslationsAjax())->allTranslations(); +} catch (Exception $e) { + echo $e->getMessage(); +} + diff --git a/src/Ajax/TranslationsAjax.php b/src/Ajax/TranslationsAjax.php new file mode 100644 index 000000000..4e5cb2008 --- /dev/null +++ b/src/Ajax/TranslationsAjax.php @@ -0,0 +1,57 @@ +. + * + * @Support + * @Email + * @Authors/Contributors: Sylvaner, Byackee, cyrilphoenix71, ColonelMoutarde, edgd1er, slobberbone, Astral0, DanoneKiD + */ + +namespace NextDom\Ajax; + +use NextDom\Helpers\TranslateHelper; +use Symfony\Component\Translation\Loader\YamlFileLoader; +use Symfony\Component\Translation\Translator; + +/** + * Class TranslationsController + * @package NextDom\Controller\Pages + */ +class TranslationsAjax extends BaseAjax +{ + /** + * @var Translator Translate tool + */ + private static $translator = null; + + /** + * @return false|string + * @throws \Exception + */ + public function allTranslations() + { + $language = TranslateHelper::getLanguage(); + $filename = TranslateHelper::getPathTranslationFile($language); + + self::$translator = new Translator($language, null, NEXTDOM_DATA . '/cache/i18n'); + self::$translator->addLoader('yaml', new YamlFileLoader()); + self::$translator->addResource('yaml', $filename, $language); + + $arrayOfTranslations = self::$translator->getCatalogue()->all(); + + return \json_encode($arrayOfTranslations); + } +} diff --git a/tests/phpunit_tests/Ajax/TranslationsAjaxTest.php b/tests/phpunit_tests/Ajax/TranslationsAjaxTest.php new file mode 100644 index 000000000..1f6aaf0ff --- /dev/null +++ b/tests/phpunit_tests/Ajax/TranslationsAjaxTest.php @@ -0,0 +1,36 @@ +. + * + * @Support + * @Email + * @Authors/Contributors: Sylvaner, Byackee, cyrilphoenix71, ColonelMoutarde, edgd1er, slobberbone, Astral0, DanoneKiD + */ + +use NextDom\Ajax\CronAjax; +use NextDom\Ajax\TranslationsAjax; + +require_once('BaseAjaxTest.php'); + +class TranslationsAjaxTest extends BaseAjaxTest +{ + + public function testTranslationsIsJsonValid() + { + $this->assertJson((new TranslationsAjax())->allTranslations(), 'available translations'); + } + +} diff --git a/translations/en_US.yml b/translations/en_US.yml index 239be65ef..ba55ff515 100644 --- a/translations/en_US.yml +++ b/translations/en_US.yml @@ -174,7 +174,7 @@ core: error-404: 404 - Page not found error-ajax: Unknown Ajax request error-bad-action: Misuse of a feature - incorrect-sys-date: The system date is incorrect (before or after %s %s): + incorrect-sys-date: 'The system date is incorrect (before or after %s %s):' dashboard: all-categories: All grid-config: Configure the size of the grid @@ -196,7 +196,7 @@ firstuse: market-content: By adding or connecting a Market Jeedom account for installing plugins ... market-noaccount: I have no Market account market-password-placeholder: Password... - market-productname-placeholder: ? + market-productname-placeholder: '?' market-title: Connect your market has Jeedom to NextDom! market-username-placeholder: Username... market-wantaccount: I want to create one! @@ -943,7 +943,7 @@ welcome: "Arrêt de ": "Arrêt de" "De nouvelles mises à jour sont disponibles : ": "New updates are available :" "Système à jour": "System up to date" -"OK": "OK" + OK: "OK" "Cron actif": "Cron active" "Scénario actif": "Scenario active" "Démarré": "Started" diff --git a/translations/fr_FR.yml b/translations/fr_FR.yml index 2e6a3f267..c7b19fe23 100644 --- a/translations/fr_FR.yml +++ b/translations/fr_FR.yml @@ -196,7 +196,7 @@ firstuse: market-content: En ajoutant ou connectant un compte Market Jeedom pour l'installation de plugins... market-noaccount: Je n'ai pas de compte Market market-password-placeholder: Mot de passe... - market-productname-placeholder: ? + market-productname-placeholder: '?' market-title: Connectez votre market Jeedom à NextDom ! market-username-placeholder: Nom d'utilisateur... market-wantaccount: Je veux en créer un !