feat: add routes, lang, tests, stubs, docs, and docker configurations
This commit is contained in:
@@ -0,0 +1,51 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'label' => 'Profil',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poštni naslov',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Ime',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Novo geslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potrdite novo geslo',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'save' => [
|
||||
'label' => 'Shrani spremembe',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'saved' => [
|
||||
'title' => 'Shranjeno',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'cancel' => [
|
||||
'label' => 'Prekliči',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+35
@@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Potrdite svoj e-poštni naslov',
|
||||
|
||||
'heading' => 'Potrdite svoj e-poštni naslov',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'resend_notification' => [
|
||||
'label' => 'Ponovno pošlji',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
'notification_not_received' => 'Niste prejeli e-pošte, ki smo vam jo poslali?',
|
||||
'notification_sent' => 'Poslali smo e-poštno sporočilo na :email z navodili, kako potrditi svoj e-poštni naslov.',
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'notification_resent' => [
|
||||
'title' => 'Ponovno smo poslali e-poštno sporočilo.',
|
||||
],
|
||||
|
||||
'notification_resend_throttled' => [
|
||||
'title' => 'Preveč poskusov ponovnega pošiljanja',
|
||||
'body' => 'Poskusite znova čez :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Prijava',
|
||||
|
||||
'heading' => 'Prijava',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'before' => 'ali',
|
||||
'label' => 'ustvarite račun',
|
||||
],
|
||||
|
||||
'request_password_reset' => [
|
||||
'label' => 'Ste pozabili geslo?',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poštni naslov',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Geslo',
|
||||
],
|
||||
|
||||
'remember' => [
|
||||
'label' => 'Zapomni si me',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'authenticate' => [
|
||||
'label' => 'Prijava',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'messages' => [
|
||||
|
||||
'failed' => 'Ti podatki se ne ujemajo z našimi.',
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Preveč poskusov prijave',
|
||||
'body' => 'Poskusite znova čez :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
+42
@@ -0,0 +1,42 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Ponastavite svoje geslo',
|
||||
|
||||
'heading' => 'Ste pozabili geslo?',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'label' => 'nazaj na prijavo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poštni naslov',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'request' => [
|
||||
'label' => 'Pošlji e-pošto',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Preveč zahtevkov',
|
||||
'body' => 'Prosimo, poskusite znova čez :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Ponastavite svoje geslo',
|
||||
|
||||
'heading' => 'Ponastavite svoje geslo',
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poštni naslov',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Geslo',
|
||||
'validation_attribute' => 'geslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potrdite geslo',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'reset' => [
|
||||
'label' => 'Ponastavi geslo',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Preveč poskusov ponastavitve',
|
||||
'body' => 'Poskusite znova čez :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
@@ -0,0 +1,56 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
|
||||
'title' => 'Registracija',
|
||||
|
||||
'heading' => 'Registracija',
|
||||
|
||||
'actions' => [
|
||||
|
||||
'login' => [
|
||||
'before' => 'ali',
|
||||
'label' => 'prijavite se v svoj račun',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'form' => [
|
||||
|
||||
'email' => [
|
||||
'label' => 'E-poštni naslov',
|
||||
],
|
||||
|
||||
'name' => [
|
||||
'label' => 'Ime',
|
||||
],
|
||||
|
||||
'password' => [
|
||||
'label' => 'Geslo',
|
||||
'validation_attribute' => 'geslo',
|
||||
],
|
||||
|
||||
'password_confirmation' => [
|
||||
'label' => 'Potrdite geslo',
|
||||
],
|
||||
|
||||
'actions' => [
|
||||
|
||||
'register' => [
|
||||
'label' => 'Registracija',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
'notifications' => [
|
||||
|
||||
'throttled' => [
|
||||
'title' => 'Preveč poskusov registracije',
|
||||
'body' => 'Poskusite znova čez :seconds sekund.',
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user