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'));