mirror of
https://github.com/tips-of-mine/gestion-certificats2.git
synced 2025-07-02 01:08:43 +02:00
Add files via upload
This commit is contained in:
84
app/src/Lang/en.json
Normal file
84
app/src/Lang/en.json
Normal file
@ -0,0 +1,84 @@
|
||||
{
|
||||
"app_name": "Certificate Management",
|
||||
"login_title": "Login - Certificate Management",
|
||||
"login_heading": "Log in to the application",
|
||||
"username": "Username",
|
||||
"password": "Password",
|
||||
"login_button": "Log In",
|
||||
"dark_mode": "Dark Mode",
|
||||
"light_mode": "Light Mode",
|
||||
"dashboard_title": "Dashboard",
|
||||
"welcome": "Welcome, {username}!",
|
||||
"logout": "Log Out",
|
||||
"certificates": "Certificates",
|
||||
"functional_perimeters": "Functional Perimeters",
|
||||
"users": "Users",
|
||||
"quick_actions": "Quick Actions",
|
||||
"create_new_certificate": "Create a new certificate",
|
||||
"create_new_perimeter": "Create a new perimeter",
|
||||
"new_user": "New user",
|
||||
"certificate_name": "Certificate Name",
|
||||
"type": "Type",
|
||||
"expiration_date": "Expiration Date",
|
||||
"status": "Status",
|
||||
"revoked": "Revoked",
|
||||
"active": "Active",
|
||||
"actions": "Actions",
|
||||
"revoke_certificate": "Revoke",
|
||||
"confirm_revoke": "Are you sure you want to revoke this certificate? This action is irreversible and will invalidate the certificate.",
|
||||
"perimeter_name": "Perimeter Name",
|
||||
"intermediate_cert_file": "Intermediate Certificate File",
|
||||
"created_at": "Created On",
|
||||
"create_perimeter_button": "Create Perimeter",
|
||||
"create_new_user": "Create a new user",
|
||||
"user_role": "Role",
|
||||
"admin": "Administrator",
|
||||
"user": "User",
|
||||
"create_user_button": "Create User",
|
||||
"delete_user": "Delete",
|
||||
"confirm_delete_user": "Are you sure you want to delete this user? This action is irreversible.",
|
||||
"new_certificate_heading": "Create a New Certificate",
|
||||
"subdomain_name": "Subdomain / CN Name",
|
||||
"select_perimeter": "Select a Functional Perimeter",
|
||||
"select_perimeter_placeholder": "Choose a perimeter",
|
||||
"create_certificate": "Create Certificate",
|
||||
"root": "Root",
|
||||
"intermediate": "Intermediate",
|
||||
"simple": "Simple",
|
||||
"back_to_dashboard": "Back to Dashboard",
|
||||
"back_to_cert_list": "Back to Certificate List",
|
||||
"back_to_perimeter_list": "Back to Perimeter List",
|
||||
"back_to_user_list": "Back to User List",
|
||||
"no_certificates_yet": "No certificates have been created yet.",
|
||||
"no_perimeters_yet": "No functional perimeters have been created yet.",
|
||||
"no_users_yet": "No users have been created yet.",
|
||||
"login_error_empty_fields": "Please enter your username and password.",
|
||||
"login_error_credentials": "Incorrect username or password.",
|
||||
"permission_denied": "You do not have the necessary permissions to access this page.",
|
||||
"cert_create_error_empty_fields": "Subdomain name and functional perimeter are required.",
|
||||
"cert_create_error_perimeter_not_found": "Selected functional perimeter not found.",
|
||||
"cert_create_success": "Certificate created successfully.",
|
||||
"cert_create_error": "Error creating certificate: {output}",
|
||||
"cert_revoke_error_id_missing": "Certificate ID missing for revocation.",
|
||||
"cert_revoke_error_not_found": "Certificate not found for revocation.",
|
||||
"cert_revoke_error_ca_revocation": "ROOT and INTERMEDIATE certificates cannot be revoked via the interface for PKI security reasons.",
|
||||
"cert_revoke_error_already_revoked": "This certificate is already revoked.",
|
||||
"cert_revoke_success": "Certificate revoked successfully.",
|
||||
"cert_revoke_error": "Error revoking certificate: {output}",
|
||||
"perimeter_create_error_empty_name": "Functional perimeter name is required.",
|
||||
"perimeter_create_error_exists": "A functional perimeter with this name already exists.",
|
||||
"perimeter_create_success": "Functional perimeter and its intermediate certificate created successfully.",
|
||||
"perimeter_create_error": "Error creating functional perimeter: {output}",
|
||||
"user_create_error_empty_fields": "Username and password are required.",
|
||||
"user_create_error_invalid_role": "Invalid user role.",
|
||||
"user_create_error_exists": "A user with the username '{username}' already exists.",
|
||||
"user_create_success": "User '{username}' created successfully.",
|
||||
"user_create_error_db": "Error creating user in the database.",
|
||||
"user_delete_error_id_missing": "User ID missing for deletion.",
|
||||
"user_delete_error_self_delete": "You cannot delete your own account.",
|
||||
"user_delete_error_last_admin": "Cannot delete the last administrator account.",
|
||||
"user_delete_success": "User '{username}' deleted successfully.",
|
||||
"user_delete_error_not_found": "User not found for deletion.",
|
||||
"user_delete_error_db": "Error deleting user from the database.",
|
||||
"self_delete_not_allowed": "You cannot delete yourself."
|
||||
}
|
Reference in New Issue
Block a user