Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

UA & RU Translation #19

Merged
merged 2 commits into from
Jan 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions resources/lang/ru/default.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

return [
'heading' => 'Экран блокировки',
'button' => [
'switch_account' => 'Сменить аккаунт',
'submit_label' => 'Войти'
],
'notification' => [
'title' => 'Ошибка входа',
'message' => 'Вы были перенаправлены на страницу входа после неудачной попытки входа.',
]
];
13 changes: 13 additions & 0 deletions resources/lang/uk/default.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

return [
'heading' => 'Екран блокування',
'button' => [
'switch_account' => 'Змінити обліковий запис',
'submit_label' => 'Увійти'
],
'notification' => [
'title' => 'Помилка входу',
'message' => 'Ви були перенаправлені на сторінку входу після невдалої спроби входу.',
]
];
2 changes: 1 addition & 1 deletion resources/views/livewire/locker-screen.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div @class([
'flex items-center justify-center min-h-screen bg-gray-100 text-gray-900',
'flex items-center justify-center min-h-screen bg-gray-100 text-gray-900 filament-login-page',
'dark:bg-gray-900 dark:text-white' => config('filament.dark_mode'),
])>
<div class="px-6 -mt-16 md:mt-0 md:px-2 max-w-md space-y-8 w-screen">
Expand Down