diff options
author | Thialfihar <thialfihar@gmail.com> | 2010-05-15 16:09:49 +0000 |
---|---|---|
committer | Thialfihar <thialfihar@gmail.com> | 2010-05-15 16:09:49 +0000 |
commit | 2c5a80a16f3699287971b3fcdf38fbb4c42b84ae (patch) | |
tree | a9e58544798970dfeac6a739830ce8d396e27133 /res | |
parent | 363dcb62b81cff2a2b5ec275ece76c00045d2ec9 (diff) | |
download | open-keychain-2c5a80a16f3699287971b3fcdf38fbb4c42b84ae.tar.gz open-keychain-2c5a80a16f3699287971b3fcdf38fbb4c42b84ae.tar.bz2 open-keychain-2c5a80a16f3699287971b3fcdf38fbb4c42b84ae.zip |
added pass phrase cache to preferences, not used yet, but preference and about menu item now show up in every activity
Diffstat (limited to 'res')
-rw-r--r-- | res/layout/preferences.xml | 41 | ||||
-rw-r--r-- | res/values/strings.xml | 8 |
2 files changed, 47 insertions, 2 deletions
diff --git a/res/layout/preferences.xml b/res/layout/preferences.xml index 350e965b4..81690987a 100644 --- a/res/layout/preferences.xml +++ b/res/layout/preferences.xml @@ -28,10 +28,47 @@ android:layout_marginRight="?android:attr/scrollbarSize"> <TextView + android:id="@+id/section_general" + android:text="@string/section_general" + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:textAppearance="?android:attr/textAppearanceLarge"/> + + <View + android:layout_width="fill_parent" + android:layout_height="1dip" + android:background="?android:attr/listDivider" + android:layout_marginBottom="5dip"/> + + <LinearLayout + android:layout_width="fill_parent" + android:layout_height="wrap_content" + android:orientation="horizontal"> + + <TextView + android:id="@+id/label_passPhraseCache" + android:text="@string/label_passPhraseCache" + android:textAppearance="?android:attr/textAppearanceMedium" + android:layout_height="wrap_content" + android:layout_width="0dip" + android:layout_weight="1" + android:layout_gravity="center_vertical" + android:paddingRight="10dip"/> + + <Spinner + android:id="@+id/passPhraseCache" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="center_vertical"/> + + </LinearLayout> + + <TextView android:id="@+id/section_defaults" android:text="@string/section_defaults" android:layout_width="fill_parent" android:layout_height="wrap_content" + android:layout_marginTop="5dip" android:textAppearance="?android:attr/textAppearanceLarge"/> <View @@ -61,9 +98,9 @@ android:layout_height="wrap_content" android:layout_gravity="center_vertical"/> - </LinearLayout> + </LinearLayout> - <LinearLayout + <LinearLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> diff --git a/res/values/strings.xml b/res/values/strings.xml index 5bb4dc2ba..aaeec61ab 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -42,6 +42,7 @@ <!-- section_lowerCase: capitalized words, no punctuation --> <string name="section_userIds">User IDs</string> <string name="section_keys">Keys</string> + <string name="section_general">General</string> <string name="section_defaults">Defaults</string> <!-- btn_lowerCase: capitalized words, no punctuation --> @@ -92,6 +93,7 @@ <string name="label_hashAlgorithm">Hash Algorithm</string> <string name="label_asymmetric">Public Key</string> <string name="label_symmetric">Pass Phrase</string> + <string name="label_passPhraseCache">Pass Phrase Cache</string> <string name="noKeysSelected">Select</string> <string name="oneKeySelected">1 Selected</string> @@ -111,6 +113,12 @@ <string name="choice_signOnly">Sign only</string> <string name="choice_encryptOnly">Encrypt only</string> <string name="choice_signAndEncrypt">Sign and Encrypt</string> + <string name="choice_15secs">15 secs</string> + <string name="choice_1min">1 min</string> + <string name="choice_3mins">3 mins</string> + <string name="choice_5mins">5 mins</string> + <string name="choice_10mins">10 mins</string> + <string name="choice_untilQuit">until quit</string> <string name="dsa">DSA</string> <string name="elgamal">ElGamal</string> |