feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adresa e-pošte',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Ime',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Nova lozinka',
|
||||
'validation_attribute' => 'lozinka',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdite novu lozinku',
|
||||
'validation_attribute' => 'potvrda lozinke',
|
||||
],
|
||||
|
||||
'current_password' => [
|
||||
'label' => 'Trenutna lozinka',
|
||||
'below_content' => 'Zbog bezbednosti morate da potvrdite lozinku za nastavak.',
|
||||
'validation_attribute' => 'trenutna lozinka',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Sačuvaj izmene',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor_authentication' => [
|
||||
'label' => 'Dvostruka autentifikacija (2FA)',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'email_change_verification_sent' => [
|
||||
'title' => 'Zahtev za izmenu adrese e-pošte je poslat',
|
||||
'body' => 'Zahtev za izmenu adrese e-pošte je poslat na :email. Proverite svoju e-poštu kako bi verifikovali promenu.',
|
||||
],
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Sačuvano',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Odustani',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Vendored
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Verifikacija adrese vaše e-pošte',
|
||||
|
||||
'heading' => 'Verifikacija adrese vaše e-pošte',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Ponovo pošalji',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Još uvek niste primili e-poštu?',
|
||||
'notification_sent' => 'Poslali smo poruku na :email sa instrukcijama za verifikaciju adrese vaše e-pošte.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Ponovo smo poslali poruku.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Previše ponovnih slanja',
|
||||
'body' => 'Pokušajte ponovo za :seconds s.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,85 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Prijava',
|
||||
|
||||
'heading' => 'Prijava',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'ili',
|
||||
'label' => 'se registruj',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Zaboravili ste lozinku?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adresa e-pošte',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Lozinka',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Zapamti me',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Prijavi se',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'multi_factor' => [
|
||||
|
||||
'heading' => 'Potvrdi svoj identitet',
|
||||
|
||||
'subheading' => 'Kako bi nastavili sa prijavom potrebno je da potvrdite svoj identitet.',
|
||||
|
||||
'form' => [
|
||||
|
||||
'provider' => [
|
||||
'label' => 'Kako želite da potvrdite svoj identitet?',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Potvrdi prijavu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Dati akreditivi ne odgovaraju našim zapisima.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Previše pokušaja prijave',
|
||||
'body' => 'Pokušajte ponovo za :seconds s.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+46
@@ -0,0 +1,46 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Resetujte lozinku',
|
||||
|
||||
'heading' => 'Zaboravili ste lozinku?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'nazad na prijavu',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adresa e-pošte',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Pošalji poruku',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'sent' => [
|
||||
'body' => 'Ako vaš nalog ne postoji nećete dobiti poruku e-poštom.',
|
||||
],
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Previše slanja',
|
||||
'body' => 'Pokušajte ponovo za :seconds s.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+43
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Resetujte lozinku',
|
||||
|
||||
'heading' => 'Resetujte lozinku',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adresa e-pošte',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Lozinka',
|
||||
'validation_attribute' => 'lozinka',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdite lozinku',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Resetujte lozinku',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Previše pokušaja resetovanja',
|
||||
'body' => 'Pokušajte ponovo za :seconds s.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Registracija',
|
||||
|
||||
'heading' => 'Registracija',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'ili',
|
||||
'label' => 'se prijavite na postojeći nalog',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'Adresa e-pošte',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Ime',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Lozinka',
|
||||
'validation_attribute' => 'lozinka',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potvrdite lozinku',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Registruj se',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Previše pokušaja registracije',
|
||||
'body' => 'Pokušajte ponovo za :seconds s.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user