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' => 'Profils',
'form' => [
'email' => [
'label' => 'E-pasta adrese',
],
'name' => [
'label' => 'Vārds',
],
'password' => [
'label' => 'Jaunā parole',
],
'password_confirmation' => [
'label' => 'Jaunās paroles apstiprinājums',
],
'actions' => [
'save' => [
'label' => 'Saglabāt izmaiņas',
],
],
],
'notifications' => [
'saved' => [
'title' => 'Izmaiņas saglabātas',
],
],
'actions' => [
'cancel' => [
'label' => 'Atcelt',
],
],
];
@@ -0,0 +1,35 @@
<?php
return [
'title' => 'Apstipriniet savu e-pasta adresi',
'heading' => 'Apstipriniet savu e-pasta adresi',
'actions' => [
'resend_notification' => [
'label' => 'Nosūtīt vēlreiz',
],
],
'messages' => [
'notification_not_received' => 'Nesaņēmāt mūsu nosūtīto e-pastu?',
'notification_sent' => 'Uz adresi :email tika nosūtīts e-pasts ar norādēm, kā apstiprināt savu e-pasta adresi.',
],
'notifications' => [
'notification_resent' => [
'title' => 'E-pasts tika nosūtīts atkārtoti.',
],
'notification_resend_throttled' => [
'title' => 'Pārāk daudz mēģinājumu',
'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.',
],
],
];
+61
View File
@@ -0,0 +1,61 @@
<?php
return [
'title' => 'Pieteikšanās',
'heading' => 'Pierakstīties savā kontā',
'actions' => [
'register' => [
'before' => 'vai',
'label' => 'reģistrēties',
],
'request_password_reset' => [
'label' => 'Aizmirsāt paroli?',
],
],
'form' => [
'email' => [
'label' => 'E-pasta adrese',
],
'password' => [
'label' => 'Parole',
],
'remember' => [
'label' => 'Atcerēties mani',
],
'actions' => [
'authenticate' => [
'label' => 'Pierakstīties',
],
],
],
'messages' => [
'failed' => 'Šie akreditācijas dati neatbilst mūsu ierakstiem.',
],
'notifications' => [
'throttled' => [
'title' => 'Pārāk daudz pieteikšanās mēģinājumu.',
'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.',
],
],
];
@@ -0,0 +1,46 @@
<?php
return [
'title' => 'Paroles maiņa',
'heading' => 'Aizmirsāt paroli?',
'actions' => [
'login' => [
'label' => 'atpakaļ uz pieteikšanās lapu',
],
],
'form' => [
'email' => [
'label' => 'E-pasta adrese',
],
'actions' => [
'request' => [
'label' => 'Sūtīt e-pastu',
],
],
],
'notifications' => [
'sent' => [
'body' => 'Jūs saņemsiet e-pastu, ja Jūsu konts eksistē.',
],
'throttled' => [
'title' => 'Pārāk daudz mēģinājumu',
'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.',
],
],
];
@@ -0,0 +1,43 @@
<?php
return [
'title' => 'Paroles maiņa',
'heading' => 'Mainīt paroli',
'form' => [
'email' => [
'label' => 'E-pasta adrese',
],
'password' => [
'label' => 'Parole',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Paroles apstiprinājums',
],
'actions' => [
'reset' => [
'label' => 'Mainīt paroli',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Pārāk daudz mēģinājumu',
'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.',
],
],
];
+56
View File
@@ -0,0 +1,56 @@
<?php
return [
'title' => 'Reģistrācija',
'heading' => 'Reģistrēties',
'actions' => [
'login' => [
'before' => 'vai',
'label' => 'pierakstīties savā kontā',
],
],
'form' => [
'email' => [
'label' => 'E-pasta adrese',
],
'name' => [
'label' => 'Vārds',
],
'password' => [
'label' => 'Parole',
'validation_attribute' => 'password',
],
'password_confirmation' => [
'label' => 'Paroles apstiprinājums',
],
'actions' => [
'register' => [
'label' => 'Reģistrēties',
],
],
],
'notifications' => [
'throttled' => [
'title' => 'Pārāk daudz reģistrēšanās mēģinājumu',
'body' => 'Lūdzu, mēģiniet vēlreiz pēc :seconds sekundēm.',
],
],
];