diff --git a/app/translations/hr.yaml b/app/translations/hr.yaml new file mode 100644 index 0000000..62cdf58 --- /dev/null +++ b/app/translations/hr.yaml @@ -0,0 +1,20 @@ +home: Početna +download: Preuzmi ovaj Direktorij +search: Traži +file: + name: Naziv Datoteke + size: Veličina + date: Datum + info: Podaci o Datoteci +powered_by: Pokreće +scroll_to_top: Povratak na Vrh +toggle_theme: Prebacivanje Svijetlog/Tamnog Načina Rada + +error: + directory_not_found: Direktorij ne postoji + file_not_found: Datoteka nije pronađena + file_size_exceeded: Veličina datoteke je prevelika + no_results_found: Nema rezultata + unexpected: Došlo je do neočekivane pogreške + +enable_debugging: Omogućite otklanjanje pogrešaka za dodatne informacije diff --git a/tests/Factories/TranslationFactoryTest.php b/tests/Factories/TranslationFactoryTest.php index 5144ef6..76f2a5e 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('hr')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('hu')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('id')); $this->assertInstanceOf(MessageCatalogue::class, $translator->getCatalogue('it'));