From a540d42743dcda6c349ff5bc26ca95458914327e Mon Sep 17 00:00:00 2001 From: matyii Date: Wed, 3 Jan 2024 21:17:07 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9C=20Hungarian=20translation=20added!?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/translations/hu.yaml | 20 ++++++++++++++++++++ tests/Factories/TranslationFactoryTest.php | 1 + 2 files changed, 21 insertions(+) create mode 100644 app/translations/hu.yaml diff --git a/app/translations/hu.yaml b/app/translations/hu.yaml new file mode 100644 index 0000000..47aefe5 --- /dev/null +++ b/app/translations/hu.yaml @@ -0,0 +1,20 @@ +home: Főoldal +download: Mappa letöltése +search: Keresés +file: + name: Fájlnév + size: Méret + date: Dátum + info: Információk a fájlról +powered_by: Üzemeltetve +scroll_to_top: Görgetés a tetejére +toggle_theme: Világos/Sötét mód kapcsolása + +error: + directory_not_found: A mappa nem található + file_not_found: A fájl nem található + file_size_exceeded: A fájl túl nagy + no_results_found: Nincs találat + unexpected: Váratlan hiba történt + +enable_debugging: Kapcsolja be a hibakeresést további információkért \ No newline at end of file diff --git a/tests/Factories/TranslationFactoryTest.php b/tests/Factories/TranslationFactoryTest.php index 1412071..5144ef6 100644 --- a/tests/Factories/TranslationFactoryTest.php +++ b/tests/Factories/TranslationFactoryTest.php @@ -23,6 +23,7 @@ class TranslationFactoryTest extends TestCase $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('es')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('et')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('fr')); + $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('hu')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('id')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('it')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('kr'));