castopod/modules/Auth/Language/el/User.php

61 lines
2.6 KiB
PHP
Raw Normal View History

<?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 [
2022-11-25 18:44:19 +01:00
'edit_role' => "Επεξεργασία ρόλων {username}",
'ban' => 'Αποκλεισμός',
'unban' => 'Κατάργηση αποκλεισμού',
'delete' => 'Διαγραφή',
'create' => 'Νέος χρήστης',
'view' => "πληροφορίες του {username}",
'all_users' => 'Όλοι οι χρήστες',
'list' => [
2022-11-25 18:44:19 +01:00
'user' => 'Χρήστης',
'role' => 'Ρόλος',
'banned' => 'Αποκλεισμένος;',
],
'form' => [
2022-11-25 18:44:19 +01:00
'email' => 'Ηλεκτρονικό ταχυδρομείο',
'username' => 'Όνομα Χρήστη',
'password' => 'Κωδικόs πρόσβασης',
'new_password' => 'Νέος Κωδικός Πρόσβασης',
'role' => 'Ρόλος',
'roles' => 'Ρόλοι',
'permissions' => 'Δικαιώματα',
'submit_create' => 'Δημιουργία χρήστη',
'submit_edit' => 'Αποθήκευση',
'submit_password_change' => 'Αλλαγή!',
],
2022-11-04 12:03:24 +01:00
'delete_form' => [
2022-11-25 18:44:19 +01:00
'title' => 'Διαγραφή {user}',
2022-11-04 12:03:24 +01:00
'disclaimer' =>
2022-11-25 18:44:19 +01:00
"Πρόκειται να διαγράψετε το {user} οριστικά. Δεν θα μπορούν πλέον να έχουν πρόσβαση στην περιοχή διαχείρισης.",
'understand' => 'Καταλαβαίνω, θέλω να διαγράψω {user} μόνιμα',
'submit' => 'Διαγραφή',
],
'messages' => [
'createSuccess' =>
'User created successfully! {username} will be prompted with a password reset upon first authentication.',
'roleEditSuccess' =>
2022-11-25 18:44:19 +01:00
"οι ρόλοι του {username} έχουν ενημερωθεί με επιτυχία.",
'banSuccess' => 'Ο/Η {username} έχει αποκλειστεί.',
'unbanSuccess' => '{username} has been unbanned.',
2022-09-23 17:51:26 +02:00
'editOwnerError' =>
'{username} is the instance owner, you cannot edit its roles.',
'banSuperAdminError' =>
'{username} is a superadmin, one does not simply ban a superadmin…',
2022-11-04 12:03:24 +01:00
'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.',
],
];