mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-05 08:45:08 -05:00
Fix string resources
This commit is contained in:
parent
36d8c9f608
commit
c71cdc1432
@ -429,7 +429,7 @@ public class EncryptActivity extends DrawerActivity implements EncryptActivityIn
|
||||
mTabsAdapterContent.addTab(EncryptMessageFragment.class,
|
||||
mMessageFragmentBundle, getString(R.string.label_message));
|
||||
mTabsAdapterContent.addTab(EncryptFileFragment.class,
|
||||
mFileFragmentBundle, getString(R.string.label_file));
|
||||
mFileFragmentBundle, getString(R.string.label_files));
|
||||
mViewPagerContent.setCurrentItem(mSwitchToContent);
|
||||
|
||||
mUseArmor = Preferences.getPreferences(this).getDefaultAsciiArmor();
|
||||
|
@ -23,7 +23,7 @@
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:text="@string/from"/>
|
||||
android:text="@string/label_asymmetric_from"/>
|
||||
<Spinner
|
||||
android:id="@+id/sign"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -106,6 +106,7 @@
|
||||
<string name="label_sign">Sign</string>
|
||||
<string name="label_message">Message</string>
|
||||
<string name="label_file">File</string>
|
||||
<string name="label_files">File(s)</string>
|
||||
<string name="label_file_colon">File:</string>
|
||||
<string name="label_no_passphrase">No Passphrase</string>
|
||||
<string name="label_passphrase">Passphrase</string>
|
||||
@ -115,14 +116,15 @@
|
||||
<string name="label_conceal_pgp_application">Let others know that you\'re using OpenKeychain</string>
|
||||
<string name="label_conceal_pgp_application_summary">Writes \'OpenKeychain v2.7\' to OpenPGP signatures, ciphertext, and exported keys</string>
|
||||
<string name="label_select_public_keys">Recipients</string>
|
||||
<string name="label_asymmetric_from">From:</string>
|
||||
<string name="label_to">To</string>
|
||||
<string name="label_delete_after_encryption">Delete After Encryption</string>
|
||||
<string name="label_delete_after_decryption">Delete After Decryption</string>
|
||||
<string name="label_share_after_encryption">Share After Encryption</string>
|
||||
<string name="label_encryption_algorithm">Encryption Algorithm</string>
|
||||
<string name="label_hash_algorithm">Hash Algorithm</string>
|
||||
<string name="label_asymmetric">with Public Key</string>
|
||||
<string name="label_symmetric">with Passphrase</string>
|
||||
<string name="label_asymmetric">With Public Key</string>
|
||||
<string name="label_symmetric">With Passphrase</string>
|
||||
<string name="label_passphrase_cache_ttl">Passphrase Cache</string>
|
||||
<string name="label_message_compression">Message Compression</string>
|
||||
<string name="label_file_compression">File Compression</string>
|
||||
@ -168,7 +170,6 @@
|
||||
</plurals>
|
||||
|
||||
<string name="secret_key">Secret Key:</string>
|
||||
<string name="from">From:</string>
|
||||
|
||||
<!-- choice -->
|
||||
<string name="choice_none">None</string>
|
||||
@ -202,7 +203,7 @@
|
||||
<string name="wrong_passphrase">Wrong passphrase.</string>
|
||||
<string name="set_a_passphrase">Set a passphrase first.</string>
|
||||
<string name="no_filemanager_installed">No compatible file manager installed.</string>
|
||||
<string name="filemanager_no_write">The file manager does not support saving.</string>
|
||||
<string name="filemanager_no_write">The file manager does not support saving files.</string>
|
||||
<string name="passphrases_do_not_match">The passphrases didn\'t match.</string>
|
||||
<string name="passphrase_must_not_be_empty">Please enter a passphrase.</string>
|
||||
<string name="passphrase_for_symmetric_encryption">Symmetric encryption.</string>
|
||||
|
Loading…
Reference in New Issue
Block a user