12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- return [
-
- 'label' => 'Profilis',
-
- 'form' => [
-
- 'email' => [
- 'label' => 'El. paštas',
- ],
-
- 'name' => [
- 'label' => 'Vardas',
- ],
-
- 'password' => [
- 'label' => 'Naujas slaptažodis',
- ],
-
- 'password_confirmation' => [
- 'label' => 'Patvirtinkite naują slaptažodį',
- ],
-
- 'actions' => [
-
- 'save' => [
- 'label' => 'Išsaugoti',
- ],
-
- ],
-
- ],
-
- 'notifications' => [
-
- 'saved' => [
- 'title' => 'Išsaugota',
- ],
-
- ],
-
- 'actions' => [
-
- 'cancel' => [
- 'label' => 'atgal',
- ],
-
- ],
-
- ];
|