83 lines
4.2 KiB
TOML
83 lines
4.2 KiB
TOML
hide_button = "Hide"
|
|
change_name_button = "Change name"
|
|
change_login_button = "Change login"
|
|
change_password_button = "Change password"
|
|
delete_account_button = "Delete account"
|
|
couldnt_get_user_info_send_again = "Couldn't get user information. Send the message again"
|
|
unknown_command_use_help = "Unknown command. Use /help to get info on existing commands"
|
|
help_command = """
|
|
These commands are supported:
|
|
|
|
/start — displays the welcome message
|
|
/help — displays this text
|
|
/set_master_pass — sets the master password
|
|
/menu — gives you a menu to manage your accounts
|
|
/add_account — adds the account
|
|
/get_account — gets the account
|
|
/get_accounts — gets a list of accounts
|
|
/delete — deletes the account
|
|
/delete_all — deletes all the accounts and the master password
|
|
/export — exports all the accounts in a json file
|
|
/import — loads the accounts from a json file
|
|
/gen_password — generates 10 secure passwords
|
|
/cancel — cancels the current action
|
|
/change_language - allows you to change the language"""
|
|
no_file_send = "Expected you to send a file"
|
|
file_too_large = "File is larger that 200 MiB. Please split it into multiple files"
|
|
couldnt_get_file_name = "Couldn't get file name. Please try again"
|
|
following_accounts_have_problems = "Following accounts have problems:"
|
|
duplicate_names = "Duplicate names"
|
|
accounts_already_in_db = "Accounts with these names already exist in the database"
|
|
invalid_fields = "Accounts have invalid fields"
|
|
fix_that_and_send_again = "Fix those errors and send the file again"
|
|
error_downloading_file = "Error downloading the file"
|
|
error_getting_account_names = "Error getting existing account names"
|
|
error_parsing_json_file = "Error parsing the json file"
|
|
successfully_canceled = "Successfully canceled"
|
|
invalid_password = "The password is invalid. Change it and send it again"
|
|
couldnt_get_message_text = "Couldn't get the text of the message. Send the message again"
|
|
invalid_file_name = "Invalid file name. The program expected you to send a file with .json extension"
|
|
account_already_exists = "Account with that names already exists"
|
|
master_password_too_weak = "Master password is too weak"
|
|
no_lowercase = "It doesn't have any lowercase characters"
|
|
no_uppercase = "It doesn't have any uppercase characters"
|
|
no_numbers = "It doesn't have any numbers"
|
|
master_pass_too_short = "It is shorter than 8 characters"
|
|
change_master_password_and_send_again = "Change the master password and send it again"
|
|
wrong_master_password = "Wrong master password. Try again"
|
|
invalid_login = "Invalid login. Change it and send it again"
|
|
start_command = "Hi! This bot can be used to store the passwords securely. Use /help command to get the list of commands"
|
|
master_password_dont_match = "Master password didn't match. Use the command again"
|
|
success = "Success"
|
|
send_master_password_again = "Send the master password again"
|
|
master_password_is_set = "Master password has already been set"
|
|
send_new_master_password = "Send new master password"
|
|
no_accounts_found = "No accounts found"
|
|
choose_account = "Choose the account"
|
|
couldnt_create_following_accounts = "Couldn't create the following accounts"
|
|
send_master_password = "Send the master password"
|
|
something_went_wrong = "Something went wrong. Try again later"
|
|
nothing_to_cancel = "Nothing to cancel"
|
|
send_account_name = "Send account name"
|
|
send_login = "Send login"
|
|
error_deleting_message = "Error deleting the message"
|
|
account_not_found = "Account wasn't found"
|
|
send_new_name = "Send new name"
|
|
send_new_login = "Send new login"
|
|
send_new_password = "Send new password"
|
|
send_json_file = "Send the json file to import"
|
|
send_master_pass_to_delete_everything = "Send master password to delete EVERY ACCOUNT. THIS ACTION CANNOT BE UNDONE"
|
|
everything_was_deleted = "Every account was deleted"
|
|
send_password = "Send password"
|
|
send_master_pass_to_delete_account = "Send the master password to delete the account"
|
|
no_special_characters = "No special characters in the master password"
|
|
invalid_name = "Invalid name"
|
|
word_name = "Name"
|
|
word_login = "Login"
|
|
word_password = "Password"
|
|
decrypt_button = "Decrypt"
|
|
delete_message_button = "Delete message"
|
|
menu_button = "Back to the menu"
|
|
choose_language = "Choose the language"
|
|
master_password_is_not_set = "Master password is not set. Use /cancel to cancel the current action and /set_master_pass to set it"
|