Aegis/app/src/main/res/values/strings.xml

71 lines
3.6 KiB
XML
Raw Normal View History

2016-08-15 21:29:41 +02:00
<resources>
<string name="app_name">Aegis</string>
<string name="action_settings">Settings</string>
<string name="action_import">Import</string>
<string name="action_delete">Delete</string>
2018-06-07 00:30:49 +02:00
<string name="action_default_image">Set default image</string>
<string name="discard">Discard</string>
<string name="save">Save</string>
<string name="title_activity_intro">IntroActivity</string>
2016-09-30 01:07:56 +02:00
<string name="settings">Preferences</string>
2018-04-10 00:45:48 +02:00
<string name="pref_dark_mode_title">Dark mode</string>
<string name="pref_dark_mode_summary">Enable this to use darker colors</string>
<string name="pref_issuer_title">Show the issuer</string>
<string name="pref_issuer_summary">Enable this to show the issuer next to the profile name</string>
<string name="pref_timeout_title">Timeout</string>
<string name="pref_timeout_summary">Automatically lock the database after %1$s seconds of inactivity</string>
<string name="pref_slots_title">Key slots</string>
<string name="pref_slots_summary">Manage the list of keys that can decrypt the database</string>
<string name="pref_import_title">Import</string>
<string name="pref_import_summary">Import a database</string>
<string name="pref_export_title">Export</string>
<string name="pref_export_summary">Export the database</string>
<string name="pref_secure_screen_title">Screen security</string>
<string name="pref_secure_screen_summary">Block screenshots and other attempts to capture the screen within the app</string>
<string name="pref_encryption_title">Encryption</string>
<string name="pref_encryption_summary">Encrypt the database and unlock it with a password or fingerprint</string>
<string name="fingerprint_hint">Touch sensor</string>
<string name="fingerprint_not_recognized">Fingerprint not recognized. Try again</string>
<string name="fingerprint_success">Fingerprint recognized</string>
2017-08-06 21:45:27 +02:00
<string name="choose_authentication_method">Encryption</string>
<string name="authentication_method_none">None</string>
2017-08-06 21:45:27 +02:00
<string name="authentication_method_none_description">The database will be stored in plain text</string>
<string name="authentication_method_password">Password</string>
2017-08-06 21:45:27 +02:00
<string name="authentication_method_password_description">The database will be encrypted with a key derived from a password</string>
2018-06-06 18:01:35 +02:00
<string name="authentication_method_fingerprint">Fingerprint</string>
2017-08-06 21:45:27 +02:00
<string name="authentication_method_fingerprint_description">In addition to a password, fingerprints registered on this device can be used to decrypt the database</string>
<string name="authentication_method_set_password">Password</string>
<string name="authentication_enter_password">Enter your password</string>
<string name="authentication">Open the database</string>
<string name="set_password">Please enter a password</string>
<string name="set_password_confirm">Please confirm the password</string>
<string-array name="authentication_methods">
<item>None</item>
<item>Password</item>
2018-06-06 18:01:35 +02:00
<item>Fingerprint</item>
</string-array>
2017-08-06 21:45:27 +02:00
<string-array name="otp_types_array">
<item>TOTP</item>
<item>HOTP</item>
</string-array>
<string-array name="otp_algo_array">
<item>SHA1</item>
<item>SHA256</item>
<item>SHA512</item>
</string-array>
<string-array name="otp_digits_array">
<item>6</item>
<item>8</item>
</string-array>
2017-08-06 21:45:27 +02:00
<!-- TODO: Remove or change this placeholder text -->
<string name="hello_blank_fragment">Hello blank fragment</string>
2016-08-15 21:29:41 +02:00
</resources>