diff options
author | Alexander Grahn <agrahn@users.noreply.github.com> | 2024-08-11 22:27:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-11 20:27:20 +0000 |
commit | f803465e403c43615d5ad134d4b6cd17c4a89917 (patch) | |
tree | 04173405dd4362d1d586faab9012def41d1fd061 /app/src/main/res/values | |
parent | d62516399e36be62a282d4be305381f9e1703fc7 (diff) |
add user ID input field (password creation/edit), may fix #1458 (#3161)
* add user ID input field (password creation/edit), may fix #1458
* fix: revert change to username label
* refactor: rework FieldItem to drop hard-coded strings
* refactor: drop unnecessary `.apply`
---------
Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
Diffstat (limited to 'app/src/main/res/values')
-rw-r--r-- | app/src/main/res/values/strings.xml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 5c2a7b93..522a82b3 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -77,6 +77,7 @@ <!-- PGP Handler --> <string name="crypto_name_hint">Name</string> + <string name="crypto_username_hint">Username</string> <string name="crypto_pass_label">Password</string> <string name="crypto_extra_label">Extra content</string> <string name="crypto_encrypt_username_label">Encrypt username</string> @@ -88,6 +89,7 @@ <string name="action_search">Search</string> <string name="password">Password</string> <string name="username">Username</string> + <string name="otp_label_format">OTP (expires in %ds)</string> <string name="copy_label">Copy</string> <string name="edit_password">Edit password</string> <string name="copy_password">Copy password</string> |