feat: add routes, lang, tests, stubs, docs, and docker configurations

This commit is contained in:
2026-05-21 16:05:16 +07:00
parent fad70d096b
commit 28a06315b8
3385 changed files with 177070 additions and 0 deletions
@@ -0,0 +1,51 @@
<?php
return [
'label' => 'Profil',
'form' => [
'email' => [
'label' => 'Adresa e-pošte',
],
'name' => [
'label' => 'Ime',
],
'password' => [
'label' => 'Nova lozinka',
],
'password_confirmation' => [
'label' => 'Potvrdite novu lozinku',
],
'actions' => [
'save' => [
'label' => 'Sačuvaj promene',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Sačuvano',
],
],
'actions' => [
'cancel' => [
'label' => 'Otkaži',
],
],
];
@@ -0,0 +1,35 @@
<?php
return [
'title' => 'Potvrdite svoju adresu e-pošte',
'heading' => 'Potvrdite svoju adresu e-pošte',
'actions' => [
'resend_notification' => [
'label' => 'Ponovo pošalji',
],
],
'messages' => [
'notification_not_received' => 'Niste primili e-poštu koju smo poslali?',
'notification_sent' => 'Poslali smo e-poštu na :email sa uputstvom o tome kako potvrditi svoju adresu e-pošte.',
],
'notifications' => [
'notification_resent' => [
'title' => 'Ponovo smo poslali e-poštu.',
],
'notification_resend_throttled' => [
'title' => 'Previše pokušaja ponovnog slanja',
'body' => 'Molim vas, pokušajte ponovno za :seconds sekundi.',
],
],
];
@@ -0,0 +1,61 @@
<?php
return [
'title' => 'Prijava',
'heading' => 'Prijavite se',
'actions' => [
'register' => [
'before' => 'ili',
'label' => 'se registrirajte za korisnički nalog',
],
'request_password_reset' => [
'label' => 'Zaboravljena lozinka?',
],
],
'form' => [
'email' => [
'label' => 'Adresa e-pošte',
],
'password' => [
'label' => 'Lozinka',
],
'remember' => [
'label' => 'Zapamti me',
],
'actions' => [
'authenticate' => [
'label' => 'Prijavite se',
],
],
],
'messages' => [
'failed' => 'Pogrešno korisničko ime ili lozinka',
],
'notifications' => [
'throttled' => [
'title' => 'Previše pokušaja prijave',
'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Resetuj svoju lozinku',
'heading' => 'Zaboravljena lozinka?',
'actions' => [
'login' => [
'label' => 'nazad na prijavu',
],
],
'form' => [
'email' => [
'label' => 'Adresa e-pošte',
],
'actions' => [
'request' => [
'label' => 'Pošalji e-poštu',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Ako vaš nalog ne postoji, nećete dobiti e-poštu.',
],
'throttled' => [
'title' => 'Previše zahteva',
'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Resetuj svoju lozinku',
'heading' => 'Resetuj svoju lozinku',
'form' => [
'email' => [
'label' => 'Adresa e-pošte',
],
'password' => [
'label' => 'Lozinka',
'validation_attribute' => 'lozinka',
],
'password_confirmation' => [
'label' => 'Potvrdite lozinku',
],
'actions' => [
'reset' => [
'label' => 'Resetuj lozinku',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Predao se previše pokušaja resetovanja.',
'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.',
],
],
];
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Registracija',
'heading' => 'Registrujte se',
'actions' => [
'login' => [
'before' => 'ili',
'label' => 'Prijavite se',
],
],
'form' => [
'email' => [
'label' => 'Adresa e-pošte',
],
'name' => [
'label' => 'Ime',
],
'password' => [
'label' => 'Lozinka',
'validation_attribute' => 'lozinka',
],
'password_confirmation' => [
'label' => 'Potvrdite lozinku',
],
'actions' => [
'register' => [
'label' => 'Registrujte se',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Previše pokušaja registracije',
'body' => 'Molim vas, pokušajte ponovo za :seconds sekundi.',
],
],
];
+33
View File
@@ -0,0 +1,33 @@
<?php
return [
'title' => 'Nadzorna tabla',
'actions' => [
'filter' => [
'label' => 'Filter',
'modal' => [
'heading' => 'Filter',
'actions' => [
'apply' => [
'label' => 'Primeni',
],
],
],
],
],
];
@@ -0,0 +1,25 @@
<?php
return [
'form' => [
'actions' => [
'save' => [
'label' => 'Sačuvaj izmene',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Sačuvano',
],
],
];