mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-23 01:01:20 +00:00
61 lines
2.4 KiB
PHP
61 lines
2.4 KiB
PHP
<?php
|
||
|
||
declare(strict_types=1);
|
||
|
||
/**
|
||
* @copyright 2020 Ad Aures
|
||
* @license https://www.gnu.org/licenses/agpl-3.0.en.html AGPL3
|
||
* @link https://castopod.org/
|
||
*/
|
||
|
||
return [
|
||
'edit_role' => "Змінити роль «%{name}»",
|
||
'ban' => 'Забанити',
|
||
'unban' => 'Розбанити',
|
||
'delete' => 'Видалити',
|
||
'create' => 'Новий користувач',
|
||
'view' => "{username}інформація",
|
||
'all_users' => 'Усі користувачі',
|
||
'list' => [
|
||
'user' => 'Користувач',
|
||
'role' => 'Роль',
|
||
'banned' => 'Забанені?',
|
||
],
|
||
'form' => [
|
||
'email' => 'Пошта',
|
||
'username' => 'Ім\'я користувача',
|
||
'password' => 'Пароль',
|
||
'new_password' => 'Новий пароль',
|
||
'role' => 'Роль',
|
||
'roles' => 'Ролі',
|
||
'permissions' => 'Дозволи',
|
||
'submit_create' => 'Створити користувача',
|
||
'submit_edit' => 'Зберегти',
|
||
'submit_password_change' => 'Змінити',
|
||
],
|
||
'delete_form' => [
|
||
'title' => 'Видалити користувача?',
|
||
'disclaimer' =>
|
||
"You are about to delete {user} permanently. They will not be able to access the admin area anymore.",
|
||
'understand' => 'I understand, I want to delete {user} permanently',
|
||
'submit' => 'Delete',
|
||
],
|
||
'messages' => [
|
||
'createSuccess' =>
|
||
'User created successfully! A welcome email was sent to {username} with a login link, they will be prompted with a password reset upon first authentication.',
|
||
'roleEditSuccess' =>
|
||
"{username}'s roles have been successfully updated.",
|
||
'banSuccess' => '{username} has been banned.',
|
||
'unbanSuccess' => '{username} has been unbanned.',
|
||
'editOwnerError' =>
|
||
'{username} is the instance owner, one does not simply touch the owner…',
|
||
'banSuperAdminError' =>
|
||
'{username} is a superadmin, one does not simply ban a superadmin…',
|
||
'deleteOwnerError' =>
|
||
'{username} is the instance owner, one does not simply delete the owner…',
|
||
'deleteSuperAdminError' =>
|
||
'{username} is a superadmin, one does not simply delete a superadmin…',
|
||
'deleteSuccess' => '{username} has been deleted.',
|
||
],
|
||
];
|