notecipher / app / res / values / strings.xml @ 72d577fb
History | View | Annotate | Download (4.2 KB)
| 1 |
<?xml version="1.0" encoding="utf-8"?>
|
|---|---|
| 2 |
<resources xmlns:xliff="rn:oasis:names:tc:xliff:document:1.2"> |
| 3 |
<string name="app_name">NoteCipher</string> |
| 4 |
<string name="no_notes">No Notes Yet</string> |
| 5 |
<string name="menu_insert">Add Note</string> |
| 6 |
<string name="menu_delete">Delete Item</string> |
| 7 |
<string name="menu_rekey">Change Passphrase</string> |
| 8 |
<string name="menu_share">Share</string> |
| 9 |
<string name="menu_view">Export</string> |
| 10 |
<string name="menu_save">Save Note</string> |
| 11 |
<string name="menu_lock">Lock Notes</string> |
| 12 |
<string name="menu_bigger">Bigger</string> |
| 13 |
<string name="menu_smaller">Smaller</string> |
| 14 |
|
| 15 |
<string name="title">Summary</string> |
| 16 |
<string name="body">Note Text</string> |
| 17 |
<string name="confirm">Save Note</string> |
| 18 |
<string name="edit_note">Edit Note</string> |
| 19 |
<string name="confirm_delete">Do you want to delete the original, unencrypted file?</string> |
| 20 |
<string name="on_import">Imported new file: <xliff:g id="file_name">%1$s</xliff:g></string> |
| 21 |
<string name="err_size">Imported file size is too large</string> |
| 22 |
<string name="err_export">Error exporting image: <xliff:g id="img_name">%1$s</xliff:g></string> |
| 23 |
<string name="on_start">Tap anywhere to create a new note</string> |
| 24 |
<string name="err_pass">Unable to unlock your notes. Are you sure you entered the right passphrase?</string> |
| 25 |
<string name="button_ok">Okay</string> |
| 26 |
<string name="button_cancel">Cancel</string> |
| 27 |
<string name="rekey_message">Enter a *new* passphrase. It must contain at least one uppercase, one lowercase and one number, and be longer than six characters.</string> |
| 28 |
<string name="do_rekey">Encrypting your existing notes with the new passphrase (patience…)</string> |
| 29 |
<string name="enter_pass">Enter your passphrase:</string> |
| 30 |
<string name="new_pass">Welcome! Enter a strong passphrase to secure your notes. It must contain at least one uppercase, one lowercase and one number, and be longer than six characters.</string> |
| 31 |
<string name="pass_err_length">Your passphrase was not long enough</string> |
| 32 |
<string name="pass_err_upper">Your passphrase did not contain any uppercase letters</string> |
| 33 |
<string name="pass_err_lower">Your passphrase did not contain any lowercase letters</string> |
| 34 |
<string name="pass_err_num">Your passphrase did not contain any numbers</string> |
| 35 |
<string name="pass_err">Error during passphrase change!</string> |
| 36 |
|
| 37 |
<string name="lock_screen_open">Open</string> |
| 38 |
<string name="title_activity_lock_screen">NoteCipher Locked</string> |
| 39 |
<string name="lock_screen_create_passphrase">Create passphrase</string> |
| 40 |
<string name="lock_screen_passphrase_hint">Enter passphrase</string> |
| 41 |
<string name="lock_screen_passphrase_not_set_enter">Enter new passphrase</string> |
| 42 |
<string name="lock_screen_passphrase_not_set_confirm">Confirm new passphrase</string> |
| 43 |
<string name="lock_screen_passphrases_not_matching">Passphrases did not match, please try again</string> |
| 44 |
|
| 45 |
<string name="enter_title">Enter title</string> |
| 46 |
<string name="enter_note_text">Enter note text</string> |
| 47 |
<string name="share_file">Share File</string> |
| 48 |
<string name="saving_tmp_file_failed">Saving Temporary File Failed!</string> |
| 49 |
<string name="share_text">Share Text</string> |
| 50 |
<string name="image_data">Image Data</string> |
| 51 |
<string name="err_loading_note">Something went wrong when loading your note: <xliff:g id="error_msg">%1$s</xliff:g></string> |
| 52 |
<string name="unable_to_delete_original">Unable to delete original</string> |
| 53 |
|
| 54 |
<!-- Settings Strings -->
|
| 55 |
<string name="settings">Settings</string> |
| 56 |
<string name="general_settings">General Settings</string> |
| 57 |
<string name="change_timeout_prompt_title">Change Lock Timeout</string> |
| 58 |
<string name="change_timeout_prompt">After how many minutes of inactivity should NoteCipher lock itself?</string> |
| 59 |
<string name="use_lines_in_notes">Use lines in notes</string> |
| 60 |
<string name="use_lines_in_notes_summ">If enabled, empty lines will be displayed on all notes to resemble a notepad</string> |
| 61 |
<string name="vibrate_when_unlocked">Vibrate when unlocked</string> |
| 62 |
<string name="vibrate_when_unlocked_summ">If enabled, the device will vibrate every time NoteCipher is unlocked with a passphrase</string> |
| 63 |
<string name="change_passphrase">Change Passphrase</string> |
| 64 |
|
| 65 |
</resources>
|