diff --git a/src/keepass2android/AboutDialog.cs b/src/keepass2android/AboutDialog.cs index c49481e7..56555568 100644 --- a/src/keepass2android/AboutDialog.cs +++ b/src/keepass2android/AboutDialog.cs @@ -19,6 +19,7 @@ using System; using Android.App; using Android.Content; using Android.OS; +using Android.Runtime; using Android.Widget; using Android.Content.PM; @@ -29,6 +30,16 @@ namespace keepass2android public AboutDialog(Context context):base (context) { } + public AboutDialog(Context context, int theme) + : base(context, theme) + { + } + + public AboutDialog(IntPtr javaRef, JniHandleOwnership transfer) : base(javaRef, transfer) + { + + } + protected override void OnCreate(Bundle savedInstanceState) { base.OnCreate(savedInstanceState); @@ -38,7 +49,43 @@ namespace keepass2android SetVersion(); SetContributors(); - + FindViewById(Resource.Id.suggest).Click += delegate + { + try + { + Util.GotoUrl(Context, Resource.String.SuggestionsURL); + } + catch (ActivityNotFoundException) + { + Toast.MakeText(Context, Resource.String.no_url_handler, ToastLength.Long).Show(); + } + + }; + FindViewById(Resource.Id.rate).Click += delegate + { + try + { + Util.GotoMarket(Context); + } + catch (ActivityNotFoundException) + { + Toast.MakeText(Context, Resource.String.no_url_handler, ToastLength.Long).Show(); + } + }; + FindViewById(Resource.Id.translate).Click += delegate + { + try + { + Util.GotoUrl(Context, Resource.String.TranslationURL); + } + catch (ActivityNotFoundException) + { + Toast.MakeText(Context, Resource.String.no_url_handler, ToastLength.Long).Show(); + } + }; FindViewById(Resource.Id.donate).Click += delegate + { + Util.GotoDonateUrl(Context); + }; } private void SetContributors() diff --git a/src/keepass2android/EntryActivity.cs b/src/keepass2android/EntryActivity.cs index 60f7fb85..4fd5aea9 100644 --- a/src/keepass2android/EntryActivity.cs +++ b/src/keepass2android/EntryActivity.cs @@ -845,40 +845,17 @@ namespace keepass2android UpdateTogglePasswordMenu(); - IMenuItem gotoUrl = menu.FindItem(Resource.Id.menu_goto_url); - //Disabled IMenuItem copyUser = menu.FindItem(Resource.Id.menu_copy_user); - //Disabled IMenuItem copyPass = menu.FindItem(Resource.Id.menu_copy_pass); - - // In API >= 11 onCreateOptionsMenu may be called before onCreate completes - // so _entry may not be set - if (Entry == null) - { - gotoUrl.SetVisible(false); - //Disabled copyUser.SetVisible(false); - //Disabled copyPass.SetVisible(false); - } - else - { - String url = Entry.Strings.ReadSafe(PwDefs.UrlField); - if (String.IsNullOrEmpty(url)) - { - // disable button if url is not available - gotoUrl.SetVisible(false); - } - if (String.IsNullOrEmpty(Entry.Strings.ReadSafe(PwDefs.UserNameField))) - { - // disable button if username is not available - //Disabled copyUser.SetVisible(false); - } - if (String.IsNullOrEmpty(Entry.Strings.ReadSafe(PwDefs.PasswordField))) - { - // disable button if password is not available - //Disabled copyPass.SetVisible(false); - } - } return true; } + public override bool OnPrepareOptionsMenu(IMenu menu) + { + Util.PrepareDonateOptionMenu(menu, this); + return base.OnPrepareOptionsMenu(menu); + } + + + private void UpdateTogglePasswordMenu() { IMenuItem togglePassword = _menu.FindItem(Resource.Id.menu_toggle_pass); @@ -943,17 +920,7 @@ namespace keepass2android switch (item.ItemId) { case Resource.Id.menu_donate: - try - { - Util.GotoDonateUrl(this); - } - catch (ActivityNotFoundException) - { - Toast.MakeText(this, Resource.String.error_failed_to_launch_link, ToastLength.Long).Show(); - return false; - } - - return true; + return Util.GotoDonateUrl(this); case Resource.Id.menu_toggle_pass: if (_showPassword) { @@ -969,48 +936,8 @@ namespace keepass2android return true; - case Resource.Id.menu_goto_url: - return GotoUrl(); - /* TODO: required? - case Resource.Id.menu_copy_user: - timeoutCopyToClipboard(_entry.Strings.ReadSafe (PwDefs.UserNameField)); - return true; - - case Resource.Id.menu_copy_pass: - timeoutCopyToClipboard(_entry.Strings.ReadSafe (PwDefs.UserNameField)); - return true; - */ - case Resource.Id.menu_rate: - try - { - Util.GotoMarket(this); - } - catch (ActivityNotFoundException) - { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - case Resource.Id.menu_suggest_improvements: - try - { - Util.GotoUrl(this, Resource.String.SuggestionsURL); - } - catch (ActivityNotFoundException) - { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; case Resource.Id.menu_lock: - return true; - case Resource.Id.menu_translate: - try - { - Util.GotoUrl(this, Resource.String.TranslationURL); - } - catch (ActivityNotFoundException) - { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } + App.Kp2a.LockDatabase(); return true; case Android.Resource.Id.Home: //Currently the action bar only displays the home button when we come from a previous activity. diff --git a/src/keepass2android/EntryEditActivity.cs b/src/keepass2android/EntryEditActivity.cs index 2b747a93..52dc8bcb 100644 --- a/src/keepass2android/EntryEditActivity.cs +++ b/src/keepass2android/EntryEditActivity.cs @@ -221,25 +221,20 @@ namespace keepass2android // Save button - View save = FindViewById(Resource.Id.entry_save); - if (save == null) - { - //save is not part of layout for API >= 14 -> use action bar - ActionBar.SetCustomView(Resource.Layout.SaveButton); - ActionBar.SetDisplayShowCustomEnabled(true); - ActionBar.SetDisplayShowTitleEnabled(false); - ActionBar.SetDisplayUseLogoEnabled(false); - ActionBar.SetDisplayShowHomeEnabled(false); - ActionBar.SetDisplayOptions(ActionBarDisplayOptions.ShowCustom, - ActionBarDisplayOptions.ShowCustom); - save = FindViewById(Resource.Id.entry_save); - - } + ActionBar.SetCustomView(Resource.Layout.SaveButton); + ActionBar.SetDisplayShowCustomEnabled(true); + ActionBar.SetDisplayShowTitleEnabled(false); + ActionBar.SetDisplayUseLogoEnabled(false); + ActionBar.SetDisplayShowHomeEnabled(false); + ActionBar.SetDisplayOptions(ActionBarDisplayOptions.ShowCustom, + ActionBarDisplayOptions.ShowCustom); + var save = FindViewById(Resource.Id.entry_save); save.Click += (sender, e) => { SaveEntry(); - }; + + FindViewById(Resource.Id.entry_save_cancel).Click += (sender, args) => Finish(); // Respect mask password setting MakePasswordVisibleOrHidden(); @@ -696,6 +691,13 @@ namespace keepass2android if (binariesLabel != null) binariesLabel.Visibility = State.Entry.Binaries.UCount > 0 ? ViewStates.Visible : ViewStates.Gone; } + + public override bool OnPrepareOptionsMenu(IMenu menu) + { + Util.PrepareDonateOptionMenu(menu, this); + return base.OnPrepareOptionsMenu(menu); + } + public override bool OnCreateOptionsMenu(IMenu menu) { base.OnCreateOptionsMenu(menu); @@ -709,36 +711,7 @@ namespace keepass2android public override bool OnOptionsItemSelected(IMenuItem item) { switch ( item.ItemId ) { case Resource.Id.menu_donate: - try { - Util.GotoDonateUrl(this); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.error_failed_to_launch_link, ToastLength.Long).Show(); - return false; - } - - return true; - case Resource.Id.menu_rate: - try { - Util.GotoMarket(this); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - case Resource.Id.menu_suggest_improvements: - try { - Util.GotoUrl(this, Resource.String.SuggestionsURL); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - case Resource.Id.menu_translate: - try { - Util.GotoUrl(this, Resource.String.TranslationURL); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - + return Util.GotoDonateUrl(this); } diff --git a/src/keepass2android/GroupBaseActivity.cs b/src/keepass2android/GroupBaseActivity.cs index 4949dd65..8c74c73f 100644 --- a/src/keepass2android/GroupBaseActivity.cs +++ b/src/keepass2android/GroupBaseActivity.cs @@ -321,11 +321,7 @@ namespace keepass2android else item.SetVisible(true); } - item = menu.FindItem(Resource.Id.menu_change_master_key); - if (item != null) - { - item.SetVisible(App.Kp2a.GetDb().CanWrite); - } + return true; } @@ -342,12 +338,13 @@ namespace keepass2android menu.FindItem(Resource.Id.menu_sort).SetTitle(resId); } - + public override bool OnPrepareOptionsMenu(IMenu menu) { if ( ! base.OnPrepareOptionsMenu(menu) ) { return false; } - + + Util.PrepareDonateOptionMenu(menu, this); SetSortMenuText(menu); return true; @@ -356,14 +353,7 @@ namespace keepass2android public override bool OnOptionsItemSelected(IMenuItem item) { switch ( item.ItemId ) { case Resource.Id.menu_donate: - try { - Util.GotoDonateUrl(this); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.error_failed_to_launch_link, ToastLength.Long).Show(); - return false; - } - - return true; + return Util.GotoDonateUrl(this); case Resource.Id.menu_lock: App.Kp2a.LockDatabase(); return true; @@ -377,10 +367,6 @@ namespace keepass2android DatabaseSettingsActivity.Launch(this); return true; - case Resource.Id.menu_change_master_key: - SetPassword(); - return true; - case Resource.Id.menu_sync: Synchronize(); return true; @@ -388,27 +374,6 @@ namespace keepass2android case Resource.Id.menu_sort: ToggleSort(); return true; - case Resource.Id.menu_rate: - try { - Util.GotoMarket(this); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - case Resource.Id.menu_suggest_improvements: - try { - Util.GotoUrl(this, Resource.String.SuggestionsURL); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; - case Resource.Id.menu_translate: - try { - Util.GotoUrl(this, Resource.String.TranslationURL); - } catch (ActivityNotFoundException) { - Toast.MakeText(this, Resource.String.no_url_handler, ToastLength.Long).Show(); - } - return true; case Android.Resource.Id.Home: //Currently the action bar only displays the home button when we come from a previous activity. //So we can simply Finish. See this page for information on how to do this in more general (future?) cases: @@ -523,12 +488,7 @@ namespace keepass2android } - private void SetPassword() { - SetPasswordDialog dialog = new SetPasswordDialog(this); - dialog.Show(); - } - - public class RefreshTask : OnFinish { + public class RefreshTask : OnFinish { readonly GroupBaseActivity _act; public RefreshTask(Handler handler, GroupBaseActivity act):base(handler) { _act = act; diff --git a/src/keepass2android/Resources/Resource.designer.cs b/src/keepass2android/Resources/Resource.designer.cs index 63290ae2..bf2fcb93 100644 --- a/src/keepass2android/Resources/Resource.designer.cs +++ b/src/keepass2android/Resources/Resource.designer.cs @@ -1253,712 +1253,709 @@ namespace keepass2android public const int device_access_new_account = 2130837666; // aapt resource value: 0x7f0200a3 - public const int device_access_new_account_dark = 2130837667; + public const int device_access_new_account_holodark = 2130837667; // aapt resource value: 0x7f0200a4 - public const int device_access_new_account_holodark = 2130837668; + public const int device_access_not_secure = 2130837668; // aapt resource value: 0x7f0200a5 - public const int device_access_not_secure = 2130837669; + public const int dialog_bubble_step02 = 2130837669; // aapt resource value: 0x7f0200a6 - public const int dialog_bubble_step02 = 2130837670; + public const int dialog_bubble_step07 = 2130837670; // aapt resource value: 0x7f0200a7 - public const int dialog_bubble_step07 = 2130837671; + public const int donate_cake = 2130837671; // aapt resource value: 0x7f0200a8 - public const int donate_cake = 2130837672; + public const int EntryFieldHeaderBackground = 2130837672; // aapt resource value: 0x7f0200a9 - public const int EntryFieldHeaderBackground = 2130837673; + public const int extra_string_header = 2130837673; // aapt resource value: 0x7f0200aa - public const int extra_string_header = 2130837674; + public const int GreenButton = 2130837674; // aapt resource value: 0x7f0200ab - public const int GreenButton = 2130837675; + public const int highlight_pressed = 2130837675; // aapt resource value: 0x7f0200ac - public const int highlight_pressed = 2130837676; + public const int hint_popup = 2130837676; // aapt resource value: 0x7f0200ad - public const int hint_popup = 2130837677; + public const int ic00 = 2130837677; // aapt resource value: 0x7f0200ae - public const int ic00 = 2130837678; + public const int ic01 = 2130837678; // aapt resource value: 0x7f0200af - public const int ic01 = 2130837679; + public const int ic02 = 2130837679; // aapt resource value: 0x7f0200b0 - public const int ic02 = 2130837680; + public const int ic03 = 2130837680; // aapt resource value: 0x7f0200b1 - public const int ic03 = 2130837681; + public const int ic04 = 2130837681; // aapt resource value: 0x7f0200b2 - public const int ic04 = 2130837682; + public const int ic05 = 2130837682; // aapt resource value: 0x7f0200b3 - public const int ic05 = 2130837683; + public const int ic06 = 2130837683; // aapt resource value: 0x7f0200b4 - public const int ic06 = 2130837684; + public const int ic07 = 2130837684; // aapt resource value: 0x7f0200b5 - public const int ic07 = 2130837685; + public const int ic08 = 2130837685; // aapt resource value: 0x7f0200b6 - public const int ic08 = 2130837686; + public const int ic09 = 2130837686; // aapt resource value: 0x7f0200b7 - public const int ic09 = 2130837687; + public const int ic10 = 2130837687; // aapt resource value: 0x7f0200b8 - public const int ic10 = 2130837688; + public const int ic11 = 2130837688; // aapt resource value: 0x7f0200b9 - public const int ic11 = 2130837689; + public const int ic12 = 2130837689; // aapt resource value: 0x7f0200ba - public const int ic12 = 2130837690; + public const int ic13 = 2130837690; // aapt resource value: 0x7f0200bb - public const int ic13 = 2130837691; + public const int ic14 = 2130837691; // aapt resource value: 0x7f0200bc - public const int ic14 = 2130837692; + public const int ic15 = 2130837692; // aapt resource value: 0x7f0200bd - public const int ic15 = 2130837693; + public const int ic16 = 2130837693; // aapt resource value: 0x7f0200be - public const int ic16 = 2130837694; + public const int ic17 = 2130837694; // aapt resource value: 0x7f0200bf - public const int ic17 = 2130837695; + public const int ic18 = 2130837695; // aapt resource value: 0x7f0200c0 - public const int ic18 = 2130837696; + public const int ic19 = 2130837696; // aapt resource value: 0x7f0200c1 - public const int ic19 = 2130837697; + public const int ic20 = 2130837697; // aapt resource value: 0x7f0200c2 - public const int ic20 = 2130837698; + public const int ic21 = 2130837698; // aapt resource value: 0x7f0200c3 - public const int ic21 = 2130837699; + public const int ic22 = 2130837699; // aapt resource value: 0x7f0200c4 - public const int ic22 = 2130837700; + public const int ic23 = 2130837700; // aapt resource value: 0x7f0200c5 - public const int ic23 = 2130837701; + public const int ic24 = 2130837701; // aapt resource value: 0x7f0200c6 - public const int ic24 = 2130837702; + public const int ic25 = 2130837702; // aapt resource value: 0x7f0200c7 - public const int ic25 = 2130837703; + public const int ic26 = 2130837703; // aapt resource value: 0x7f0200c8 - public const int ic26 = 2130837704; + public const int ic27 = 2130837704; // aapt resource value: 0x7f0200c9 - public const int ic27 = 2130837705; + public const int ic28 = 2130837705; // aapt resource value: 0x7f0200ca - public const int ic28 = 2130837706; + public const int ic29 = 2130837706; // aapt resource value: 0x7f0200cb - public const int ic29 = 2130837707; + public const int ic30 = 2130837707; // aapt resource value: 0x7f0200cc - public const int ic30 = 2130837708; + public const int ic31 = 2130837708; // aapt resource value: 0x7f0200cd - public const int ic31 = 2130837709; + public const int ic32 = 2130837709; // aapt resource value: 0x7f0200ce - public const int ic32 = 2130837710; + public const int ic33 = 2130837710; // aapt resource value: 0x7f0200cf - public const int ic33 = 2130837711; + public const int ic34 = 2130837711; // aapt resource value: 0x7f0200d0 - public const int ic34 = 2130837712; + public const int ic35 = 2130837712; // aapt resource value: 0x7f0200d1 - public const int ic35 = 2130837713; + public const int ic36 = 2130837713; // aapt resource value: 0x7f0200d2 - public const int ic36 = 2130837714; + public const int ic37 = 2130837714; // aapt resource value: 0x7f0200d3 - public const int ic37 = 2130837715; + public const int ic38 = 2130837715; // aapt resource value: 0x7f0200d4 - public const int ic38 = 2130837716; + public const int ic39 = 2130837716; // aapt resource value: 0x7f0200d5 - public const int ic39 = 2130837717; + public const int ic40 = 2130837717; // aapt resource value: 0x7f0200d6 - public const int ic40 = 2130837718; + public const int ic41 = 2130837718; // aapt resource value: 0x7f0200d7 - public const int ic41 = 2130837719; + public const int ic42 = 2130837719; // aapt resource value: 0x7f0200d8 - public const int ic42 = 2130837720; + public const int ic43 = 2130837720; // aapt resource value: 0x7f0200d9 - public const int ic43 = 2130837721; + public const int ic44 = 2130837721; // aapt resource value: 0x7f0200da - public const int ic44 = 2130837722; + public const int ic45 = 2130837722; // aapt resource value: 0x7f0200db - public const int ic45 = 2130837723; + public const int ic46 = 2130837723; // aapt resource value: 0x7f0200dc - public const int ic46 = 2130837724; + public const int ic47 = 2130837724; // aapt resource value: 0x7f0200dd - public const int ic47 = 2130837725; + public const int ic48 = 2130837725; // aapt resource value: 0x7f0200de - public const int ic48 = 2130837726; + public const int ic49 = 2130837726; // aapt resource value: 0x7f0200df - public const int ic49 = 2130837727; + public const int ic50 = 2130837727; // aapt resource value: 0x7f0200e0 - public const int ic50 = 2130837728; + public const int ic51 = 2130837728; // aapt resource value: 0x7f0200e1 - public const int ic51 = 2130837729; + public const int ic52 = 2130837729; // aapt resource value: 0x7f0200e2 - public const int ic52 = 2130837730; + public const int ic53 = 2130837730; // aapt resource value: 0x7f0200e3 - public const int ic53 = 2130837731; + public const int ic54 = 2130837731; // aapt resource value: 0x7f0200e4 - public const int ic54 = 2130837732; + public const int ic55 = 2130837732; // aapt resource value: 0x7f0200e5 - public const int ic55 = 2130837733; + public const int ic56 = 2130837733; // aapt resource value: 0x7f0200e6 - public const int ic56 = 2130837734; + public const int ic57 = 2130837734; // aapt resource value: 0x7f0200e7 - public const int ic57 = 2130837735; + public const int ic58 = 2130837735; // aapt resource value: 0x7f0200e8 - public const int ic58 = 2130837736; + public const int ic59 = 2130837736; // aapt resource value: 0x7f0200e9 - public const int ic59 = 2130837737; + public const int ic60 = 2130837737; // aapt resource value: 0x7f0200ea - public const int ic60 = 2130837738; + public const int ic61 = 2130837738; // aapt resource value: 0x7f0200eb - public const int ic61 = 2130837739; + public const int ic62 = 2130837739; // aapt resource value: 0x7f0200ec - public const int ic62 = 2130837740; + public const int ic63 = 2130837740; // aapt resource value: 0x7f0200ed - public const int ic63 = 2130837741; + public const int ic64 = 2130837741; // aapt resource value: 0x7f0200ee - public const int ic64 = 2130837742; + public const int ic65 = 2130837742; // aapt resource value: 0x7f0200ef - public const int ic65 = 2130837743; + public const int ic66 = 2130837743; // aapt resource value: 0x7f0200f0 - public const int ic66 = 2130837744; + public const int ic67 = 2130837744; // aapt resource value: 0x7f0200f1 - public const int ic67 = 2130837745; + public const int ic68 = 2130837745; // aapt resource value: 0x7f0200f2 - public const int ic68 = 2130837746; + public const int ic99_blank = 2130837746; // aapt resource value: 0x7f0200f3 - public const int ic99_blank = 2130837747; + public const int ic_action_eye_open = 2130837747; // aapt resource value: 0x7f0200f4 - public const int ic_action_eye_open = 2130837748; + public const int ic_action_search = 2130837748; // aapt resource value: 0x7f0200f5 - public const int ic_action_search = 2130837749; + public const int ic_action_search_holodark = 2130837749; // aapt resource value: 0x7f0200f6 - public const int ic_action_search_holodark = 2130837750; + public const int ic_dialog_keyboard = 2130837750; // aapt resource value: 0x7f0200f7 - public const int ic_dialog_keyboard = 2130837751; + public const int ic_keepass2android = 2130837751; // aapt resource value: 0x7f0200f8 - public const int ic_keepass2android = 2130837752; + public const int ic_keepass2android_nonet = 2130837752; // aapt resource value: 0x7f0200f9 - public const int ic_keepass2android_nonet = 2130837753; + public const int ic_launcher = 2130837753; // aapt resource value: 0x7f0200fa - public const int ic_launcher = 2130837754; + public const int ic_launcher_folder_small = 2130837754; // aapt resource value: 0x7f0200fb - public const int ic_launcher_folder_small = 2130837755; + public const int ic_launcher_gray = 2130837755; // aapt resource value: 0x7f0200fc - public const int ic_launcher_gray = 2130837756; + public const int ic_launcher_gray_bday = 2130837756; // aapt resource value: 0x7f0200fd - public const int ic_launcher_gray_bday = 2130837757; + public const int ic_launcher_offline = 2130837757; // aapt resource value: 0x7f0200fe - public const int ic_launcher_offline = 2130837758; + public const int ic_launcher_red = 2130837758; // aapt resource value: 0x7f0200ff - public const int ic_launcher_red = 2130837759; + public const int ic_menu_add_field_holo_light = 2130837759; // aapt resource value: 0x7f020100 - public const int ic_menu_add_field_holo_light = 2130837760; + public const int ic_menu_add_field_holodark = 2130837760; // aapt resource value: 0x7f020101 - public const int ic_menu_add_field_holodark = 2130837761; + public const int ic_menu_copy_holo_light = 2130837761; // aapt resource value: 0x7f020102 - public const int ic_menu_copy_holo_light = 2130837762; + public const int ic_menu_remove_field_holo_light = 2130837762; // aapt resource value: 0x7f020103 - public const int ic_menu_remove_field_holo_light = 2130837763; + public const int ic_menu_remove_field_holodark = 2130837763; // aapt resource value: 0x7f020104 - public const int ic_menu_remove_field_holodark = 2130837764; + public const int ic_menu_view = 2130837764; // aapt resource value: 0x7f020105 - public const int ic_menu_view = 2130837765; + public const int ic_mic_dialog = 2130837765; // aapt resource value: 0x7f020106 - public const int ic_mic_dialog = 2130837766; + public const int ic_storage_androidget = 2130837766; // aapt resource value: 0x7f020107 - public const int ic_storage_androidget = 2130837767; + public const int ic_storage_androidsend = 2130837767; // aapt resource value: 0x7f020108 - public const int ic_storage_androidsend = 2130837768; + public const int ic_storage_dropbox = 2130837768; // aapt resource value: 0x7f020109 - public const int ic_storage_dropbox = 2130837769; + public const int ic_storage_dropboxKP2A = 2130837769; // aapt resource value: 0x7f02010a - public const int ic_storage_dropboxKP2A = 2130837770; + public const int ic_storage_file = 2130837770; // aapt resource value: 0x7f02010b - public const int ic_storage_file = 2130837771; + public const int ic_storage_ftp = 2130837771; // aapt resource value: 0x7f02010c - public const int ic_storage_ftp = 2130837772; + public const int ic_storage_gdrive = 2130837772; // aapt resource value: 0x7f02010d - public const int ic_storage_gdrive = 2130837773; + public const int ic_storage_http = 2130837773; // aapt resource value: 0x7f02010e - public const int ic_storage_http = 2130837774; + public const int ic_storage_https = 2130837774; // aapt resource value: 0x7f02010f - public const int ic_storage_https = 2130837775; + public const int ic_storage_sftp = 2130837775; // aapt resource value: 0x7f020110 - public const int ic_storage_sftp = 2130837776; + public const int ic_storage_skydrive = 2130837776; // aapt resource value: 0x7f020111 - public const int ic_storage_skydrive = 2130837777; + public const int ic_subtype_keyboard = 2130837777; // aapt resource value: 0x7f020112 - public const int ic_subtype_keyboard = 2130837778; + public const int ic_subtype_mic = 2130837778; // aapt resource value: 0x7f020113 - public const int ic_subtype_mic = 2130837779; + public const int ic_suggest_scroll_background = 2130837779; // aapt resource value: 0x7f020114 - public const int ic_suggest_scroll_background = 2130837780; + public const int ic_suggest_strip_microphone = 2130837780; // aapt resource value: 0x7f020115 - public const int ic_suggest_strip_microphone = 2130837781; + public const int ic_suggest_strip_microphone_swipe = 2130837781; // aapt resource value: 0x7f020116 - public const int ic_suggest_strip_microphone_swipe = 2130837782; + public const int ic_unlocked_gray = 2130837782; // aapt resource value: 0x7f020117 - public const int ic_unlocked_gray = 2130837783; + public const int keyboard_background = 2130837783; // aapt resource value: 0x7f020118 - public const int keyboard_background = 2130837784; + public const int keyboard_dark_background = 2130837784; // aapt resource value: 0x7f020119 - public const int keyboard_dark_background = 2130837785; + public const int keyboard_hint_0 = 2130837785; // aapt resource value: 0x7f02011a - public const int keyboard_hint_0 = 2130837786; + public const int keyboard_hint_1 = 2130837786; // aapt resource value: 0x7f02011b - public const int keyboard_hint_1 = 2130837787; + public const int keyboard_hint_2 = 2130837787; // aapt resource value: 0x7f02011c - public const int keyboard_hint_2 = 2130837788; + public const int keyboard_hint_3 = 2130837788; // aapt resource value: 0x7f02011d - public const int keyboard_hint_3 = 2130837789; + public const int keyboard_hint_4 = 2130837789; // aapt resource value: 0x7f02011e - public const int keyboard_hint_4 = 2130837790; + public const int keyboard_hint_5 = 2130837790; // aapt resource value: 0x7f02011f - public const int keyboard_hint_5 = 2130837791; + public const int keyboard_hint_6 = 2130837791; // aapt resource value: 0x7f020120 - public const int keyboard_hint_6 = 2130837792; + public const int keyboard_hint_7 = 2130837792; // aapt resource value: 0x7f020121 - public const int keyboard_hint_7 = 2130837793; + public const int keyboard_hint_8 = 2130837793; // aapt resource value: 0x7f020122 - public const int keyboard_hint_8 = 2130837794; + public const int keyboard_hint_9 = 2130837794; // aapt resource value: 0x7f020123 - public const int keyboard_hint_9 = 2130837795; + public const int keyboard_key_feedback = 2130837795; // aapt resource value: 0x7f020124 - public const int keyboard_key_feedback = 2130837796; + public const int keyboard_key_feedback_background = 2130837796; // aapt resource value: 0x7f020125 - public const int keyboard_key_feedback_background = 2130837797; + public const int keyboard_key_feedback_more_background = 2130837797; // aapt resource value: 0x7f020126 - public const int keyboard_key_feedback_more_background = 2130837798; + public const int keyboard_popup_panel_background = 2130837798; // aapt resource value: 0x7f020127 - public const int keyboard_popup_panel_background = 2130837799; + public const int keyboard_suggest_strip = 2130837799; // aapt resource value: 0x7f020128 - public const int keyboard_suggest_strip = 2130837800; + public const int keyboard_suggest_strip_divider = 2130837800; // aapt resource value: 0x7f020129 - public const int keyboard_suggest_strip_divider = 2130837801; + public const int list_selector_background_pressed = 2130837801; // aapt resource value: 0x7f02012a - public const int list_selector_background_pressed = 2130837802; + public const int location_web_site = 2130837802; // aapt resource value: 0x7f02012b - public const int location_web_site = 2130837803; + public const int location_web_site_holodark = 2130837803; // aapt resource value: 0x7f02012c - public const int location_web_site_holodark = 2130837804; + public const int mic_slash = 2130837804; // aapt resource value: 0x7f02012d - public const int mic_slash = 2130837805; + public const int navigation_accept = 2130837805; // aapt resource value: 0x7f02012e - public const int navigation_accept = 2130837806; + public const int navigation_accept_dark = 2130837806; // aapt resource value: 0x7f02012f - public const int navigation_accept_dark = 2130837807; + public const int navigation_cancel = 2130837807; // aapt resource value: 0x7f020130 - public const int navigation_cancel = 2130837808; + public const int navigation_cancel_holodark = 2130837808; // aapt resource value: 0x7f020131 - public const int navigation_cancel_holodark = 2130837809; + public const int navigation_previous_item = 2130837809; // aapt resource value: 0x7f020132 - public const int navigation_previous_item = 2130837810; + public const int navigation_previous_item_dark = 2130837810; // aapt resource value: 0x7f020133 - public const int navigation_previous_item_dark = 2130837811; + public const int notify = 2130837811; // aapt resource value: 0x7f020134 - public const int notify = 2130837812; + public const int notify_keyboard = 2130837812; // aapt resource value: 0x7f020135 - public const int notify_keyboard = 2130837813; + public const int ok_cancel = 2130837813; // aapt resource value: 0x7f020136 - public const int ok_cancel = 2130837814; + public const int oktoberfest = 2130837814; // aapt resource value: 0x7f020137 - public const int oktoberfest = 2130837815; + public const int old_ic_launcher_gray = 2130837815; // aapt resource value: 0x7f020138 - public const int old_ic_launcher_gray = 2130837816; + public const int RedButton = 2130837816; // aapt resource value: 0x7f020139 - public const int RedButton = 2130837817; + public const int section_header = 2130837817; // aapt resource value: 0x7f02013a - public const int section_header = 2130837818; + public const int speak_now_level0 = 2130837818; // aapt resource value: 0x7f02013b - public const int speak_now_level0 = 2130837819; + public const int speak_now_level1 = 2130837819; // aapt resource value: 0x7f02013c - public const int speak_now_level1 = 2130837820; + public const int speak_now_level2 = 2130837820; // aapt resource value: 0x7f02013d - public const int speak_now_level2 = 2130837821; + public const int speak_now_level3 = 2130837821; // aapt resource value: 0x7f02013e - public const int speak_now_level3 = 2130837822; + public const int speak_now_level4 = 2130837822; // aapt resource value: 0x7f02013f - public const int speak_now_level4 = 2130837823; + public const int speak_now_level5 = 2130837823; // aapt resource value: 0x7f020140 - public const int speak_now_level5 = 2130837824; + public const int speak_now_level6 = 2130837824; // aapt resource value: 0x7f020141 - public const int speak_now_level6 = 2130837825; + public const int sym_bkeyboard_123_mic = 2130837825; // aapt resource value: 0x7f020142 - public const int sym_bkeyboard_123_mic = 2130837826; + public const int sym_bkeyboard_delete = 2130837826; // aapt resource value: 0x7f020143 - public const int sym_bkeyboard_delete = 2130837827; + public const int sym_bkeyboard_done = 2130837827; // aapt resource value: 0x7f020144 - public const int sym_bkeyboard_done = 2130837828; + public const int sym_bkeyboard_kp2a = 2130837828; // aapt resource value: 0x7f020145 - public const int sym_bkeyboard_kp2a = 2130837829; + public const int sym_bkeyboard_mic = 2130837829; // aapt resource value: 0x7f020146 - public const int sym_bkeyboard_mic = 2130837830; + public const int sym_bkeyboard_num0 = 2130837830; // aapt resource value: 0x7f020147 - public const int sym_bkeyboard_num0 = 2130837831; + public const int sym_bkeyboard_num1 = 2130837831; // aapt resource value: 0x7f020148 - public const int sym_bkeyboard_num1 = 2130837832; + public const int sym_bkeyboard_num2 = 2130837832; // aapt resource value: 0x7f020149 - public const int sym_bkeyboard_num2 = 2130837833; + public const int sym_bkeyboard_num3 = 2130837833; // aapt resource value: 0x7f02014a - public const int sym_bkeyboard_num3 = 2130837834; + public const int sym_bkeyboard_num4 = 2130837834; // aapt resource value: 0x7f02014b - public const int sym_bkeyboard_num4 = 2130837835; + public const int sym_bkeyboard_num5 = 2130837835; // aapt resource value: 0x7f02014c - public const int sym_bkeyboard_num5 = 2130837836; + public const int sym_bkeyboard_num6 = 2130837836; // aapt resource value: 0x7f02014d - public const int sym_bkeyboard_num6 = 2130837837; + public const int sym_bkeyboard_num7 = 2130837837; // aapt resource value: 0x7f02014e - public const int sym_bkeyboard_num7 = 2130837838; + public const int sym_bkeyboard_num8 = 2130837838; // aapt resource value: 0x7f02014f - public const int sym_bkeyboard_num8 = 2130837839; + public const int sym_bkeyboard_num9 = 2130837839; // aapt resource value: 0x7f020150 - public const int sym_bkeyboard_num9 = 2130837840; + public const int sym_bkeyboard_numalt = 2130837840; // aapt resource value: 0x7f020151 - public const int sym_bkeyboard_numalt = 2130837841; + public const int sym_bkeyboard_numpound = 2130837841; // aapt resource value: 0x7f020152 - public const int sym_bkeyboard_numpound = 2130837842; + public const int sym_bkeyboard_numstar = 2130837842; // aapt resource value: 0x7f020153 - public const int sym_bkeyboard_numstar = 2130837843; + public const int sym_bkeyboard_return = 2130837843; // aapt resource value: 0x7f020154 - public const int sym_bkeyboard_return = 2130837844; + public const int sym_bkeyboard_search = 2130837844; // aapt resource value: 0x7f020155 - public const int sym_bkeyboard_search = 2130837845; + public const int sym_bkeyboard_settings = 2130837845; // aapt resource value: 0x7f020156 - public const int sym_bkeyboard_settings = 2130837846; + public const int sym_bkeyboard_shift = 2130837846; // aapt resource value: 0x7f020157 - public const int sym_bkeyboard_shift = 2130837847; + public const int sym_bkeyboard_shift_locked = 2130837847; // aapt resource value: 0x7f020158 - public const int sym_bkeyboard_shift_locked = 2130837848; + public const int sym_bkeyboard_space = 2130837848; // aapt resource value: 0x7f020159 - public const int sym_bkeyboard_space = 2130837849; + public const int sym_bkeyboard_tab = 2130837849; // aapt resource value: 0x7f02015a - public const int sym_bkeyboard_tab = 2130837850; + public const int sym_keyboard = 2130837850; // aapt resource value: 0x7f02015b - public const int sym_keyboard = 2130837851; + public const int sym_keyboard_123_mic = 2130837851; // aapt resource value: 0x7f02015c - public const int sym_keyboard_123_mic = 2130837852; + public const int sym_keyboard_delete = 2130837852; // aapt resource value: 0x7f02015d - public const int sym_keyboard_delete = 2130837853; + public const int sym_keyboard_done = 2130837853; // aapt resource value: 0x7f02015e - public const int sym_keyboard_done = 2130837854; + public const int sym_keyboard_feedback_123_mic = 2130837854; // aapt resource value: 0x7f02015f - public const int sym_keyboard_feedback_123_mic = 2130837855; + public const int sym_keyboard_feedback_delete = 2130837855; // aapt resource value: 0x7f020160 - public const int sym_keyboard_feedback_delete = 2130837856; + public const int sym_keyboard_feedback_done = 2130837856; // aapt resource value: 0x7f020161 - public const int sym_keyboard_feedback_done = 2130837857; + public const int sym_keyboard_feedback_kp2a = 2130837857; // aapt resource value: 0x7f020162 - public const int sym_keyboard_feedback_kp2a = 2130837858; + public const int sym_keyboard_feedback_language_arrows_left = 2130837858; // aapt resource value: 0x7f020163 - public const int sym_keyboard_feedback_language_arrows_left = 2130837859; + public const int sym_keyboard_feedback_language_arrows_right = 2130837859; // aapt resource value: 0x7f020164 - public const int sym_keyboard_feedback_language_arrows_right = 2130837860; + public const int sym_keyboard_feedback_mic = 2130837860; // aapt resource value: 0x7f020165 - public const int sym_keyboard_feedback_mic = 2130837861; + public const int sym_keyboard_feedback_numalt = 2130837861; // aapt resource value: 0x7f020166 - public const int sym_keyboard_feedback_numalt = 2130837862; + public const int sym_keyboard_feedback_return = 2130837862; // aapt resource value: 0x7f020167 - public const int sym_keyboard_feedback_return = 2130837863; + public const int sym_keyboard_feedback_search = 2130837863; // aapt resource value: 0x7f020168 - public const int sym_keyboard_feedback_search = 2130837864; + public const int sym_keyboard_feedback_settings = 2130837864; // aapt resource value: 0x7f020169 - public const int sym_keyboard_feedback_settings = 2130837865; + public const int sym_keyboard_feedback_shift = 2130837865; // aapt resource value: 0x7f02016a - public const int sym_keyboard_feedback_shift = 2130837866; + public const int sym_keyboard_feedback_shift_locked = 2130837866; // aapt resource value: 0x7f02016b - public const int sym_keyboard_feedback_shift_locked = 2130837867; + public const int sym_keyboard_feedback_space = 2130837867; // aapt resource value: 0x7f02016c - public const int sym_keyboard_feedback_space = 2130837868; + public const int sym_keyboard_feedback_tab = 2130837868; // aapt resource value: 0x7f02016d - public const int sym_keyboard_feedback_tab = 2130837869; + public const int sym_keyboard_kp2a = 2130837869; // aapt resource value: 0x7f02016e - public const int sym_keyboard_kp2a = 2130837870; + public const int sym_keyboard_language_arrows_left = 2130837870; // aapt resource value: 0x7f02016f - public const int sym_keyboard_language_arrows_left = 2130837871; + public const int sym_keyboard_language_arrows_right = 2130837871; // aapt resource value: 0x7f020170 - public const int sym_keyboard_language_arrows_right = 2130837872; + public const int sym_keyboard_mic = 2130837872; // aapt resource value: 0x7f020171 - public const int sym_keyboard_mic = 2130837873; + public const int sym_keyboard_num0 = 2130837873; // aapt resource value: 0x7f020172 - public const int sym_keyboard_num0 = 2130837874; + public const int sym_keyboard_num1 = 2130837874; // aapt resource value: 0x7f020173 - public const int sym_keyboard_num1 = 2130837875; + public const int sym_keyboard_num2 = 2130837875; // aapt resource value: 0x7f020174 - public const int sym_keyboard_num2 = 2130837876; + public const int sym_keyboard_num3 = 2130837876; // aapt resource value: 0x7f020175 - public const int sym_keyboard_num3 = 2130837877; + public const int sym_keyboard_num4 = 2130837877; // aapt resource value: 0x7f020176 - public const int sym_keyboard_num4 = 2130837878; + public const int sym_keyboard_num5 = 2130837878; // aapt resource value: 0x7f020177 - public const int sym_keyboard_num5 = 2130837879; + public const int sym_keyboard_num6 = 2130837879; // aapt resource value: 0x7f020178 - public const int sym_keyboard_num6 = 2130837880; + public const int sym_keyboard_num7 = 2130837880; // aapt resource value: 0x7f020179 - public const int sym_keyboard_num7 = 2130837881; + public const int sym_keyboard_num8 = 2130837881; // aapt resource value: 0x7f02017a - public const int sym_keyboard_num8 = 2130837882; + public const int sym_keyboard_num9 = 2130837882; // aapt resource value: 0x7f02017b - public const int sym_keyboard_num9 = 2130837883; + public const int sym_keyboard_numalt = 2130837883; // aapt resource value: 0x7f02017c - public const int sym_keyboard_numalt = 2130837884; + public const int sym_keyboard_numpound = 2130837884; // aapt resource value: 0x7f02017d - public const int sym_keyboard_numpound = 2130837885; + public const int sym_keyboard_numstar = 2130837885; // aapt resource value: 0x7f02017e - public const int sym_keyboard_numstar = 2130837886; + public const int sym_keyboard_return = 2130837886; // aapt resource value: 0x7f02017f - public const int sym_keyboard_return = 2130837887; + public const int sym_keyboard_search = 2130837887; // aapt resource value: 0x7f020180 - public const int sym_keyboard_search = 2130837888; + public const int sym_keyboard_settings = 2130837888; // aapt resource value: 0x7f020181 - public const int sym_keyboard_settings = 2130837889; + public const int sym_keyboard_shift = 2130837889; // aapt resource value: 0x7f020182 - public const int sym_keyboard_shift = 2130837890; + public const int sym_keyboard_shift_lock = 2130837890; // aapt resource value: 0x7f020183 - public const int sym_keyboard_shift_lock = 2130837891; + public const int sym_keyboard_shift_locked = 2130837891; // aapt resource value: 0x7f020184 - public const int sym_keyboard_shift_locked = 2130837892; + public const int sym_keyboard_space = 2130837892; // aapt resource value: 0x7f020185 - public const int sym_keyboard_space = 2130837893; + public const int sym_keyboard_space_led = 2130837893; // aapt resource value: 0x7f020186 - public const int sym_keyboard_space_led = 2130837894; + public const int sym_keyboard_tab = 2130837894; // aapt resource value: 0x7f020187 - public const int sym_keyboard_tab = 2130837895; + public const int transparent = 2130837895; // aapt resource value: 0x7f020188 - public const int transparent = 2130837896; + public const int vdots = 2130837896; // aapt resource value: 0x7f020189 - public const int vdots = 2130837897; + public const int vdots_holodark = 2130837897; // aapt resource value: 0x7f02018a - public const int vdots_holodark = 2130837898; + public const int voice_ime_background = 2130837898; // aapt resource value: 0x7f02018b - public const int voice_ime_background = 2130837899; + public const int voice_swipe_hint = 2130837899; // aapt resource value: 0x7f02018c - public const int voice_swipe_hint = 2130837900; + public const int working = 2130837900; // aapt resource value: 0x7f02018d - public const int working = 2130837901; - - // aapt resource value: 0x7f02018e - public const int YellowButton = 2130837902; + public const int YellowButton = 2130837901; static Drawable() { @@ -1973,194 +1970,194 @@ namespace keepass2android public partial class Id { - // aapt resource value: 0x7f08001a - public const int Credit = 2131230746; + // aapt resource value: 0x7f08001e + public const int Credit = 2131230750; - // aapt resource value: 0x7f08001b - public const int Credit2 = 2131230747; + // aapt resource value: 0x7f08001f + public const int Credit2 = 2131230751; - // aapt resource value: 0x7f0800c6 - public const int IconGridView = 2131230918; + // aapt resource value: 0x7f0800ca + public const int IconGridView = 2131230922; - // aapt resource value: 0x7f0800c8 - public const int LatinKeyboardBaseView = 2131230920; + // aapt resource value: 0x7f0800cc + public const int LatinKeyboardBaseView = 2131230924; - // aapt resource value: 0x7f0800c7 - public const int LatinkeyboardBaseView = 2131230919; + // aapt resource value: 0x7f0800cb + public const int LatinkeyboardBaseView = 2131230923; - // aapt resource value: 0x7f0800f3 - public const int QuickUnlock_button = 2131230963; + // aapt resource value: 0x7f0800f7 + public const int QuickUnlock_button = 2131230967; - // aapt resource value: 0x7f0800f4 - public const int QuickUnlock_buttonLock = 2131230964; + // aapt resource value: 0x7f0800f8 + public const int QuickUnlock_buttonLock = 2131230968; - // aapt resource value: 0x7f0800f1 - public const int QuickUnlock_label = 2131230961; + // aapt resource value: 0x7f0800f5 + public const int QuickUnlock_label = 2131230965; - // aapt resource value: 0x7f0800f2 - public const int QuickUnlock_password = 2131230962; + // aapt resource value: 0x7f0800f6 + public const int QuickUnlock_password = 2131230966; - // aapt resource value: 0x7f0800a8 - public const int RelativeLayout = 2131230888; + // aapt resource value: 0x7f0800ac + public const int RelativeLayout = 2131230892; - // aapt resource value: 0x7f0800a7 - public const int ScrollView = 2131230887; + // aapt resource value: 0x7f0800ab + public const int ScrollView = 2131230891; // aapt resource value: 0x7f080009 public const int about_title = 2131230729; - // aapt resource value: 0x7f0800a5 - public const int accept_button = 2131230885; + // aapt resource value: 0x7f0800a9 + public const int accept_button = 2131230889; - // aapt resource value: 0x7f080064 - public const int add_advanced = 2131230820; + // aapt resource value: 0x7f080068 + public const int add_advanced = 2131230824; - // aapt resource value: 0x7f0800ba - public const int add_entry = 2131230906; + // aapt resource value: 0x7f0800be + public const int add_entry = 2131230910; - // aapt resource value: 0x7f0800b9 - public const int add_group = 2131230905; + // aapt resource value: 0x7f0800bd + public const int add_group = 2131230909; - // aapt resource value: 0x7f08010e - public const int add_url_entry = 2131230990; + // aapt resource value: 0x7f080113 + public const int add_url_entry = 2131230995; - // aapt resource value: 0x7f080063 - public const int advanced_container = 2131230819; - - // aapt resource value: 0x7f080024 - public const int afc_button_go_back = 2131230756; - - // aapt resource value: 0x7f080025 - public const int afc_button_go_forward = 2131230757; - - // aapt resource value: 0x7f080033 - public const int afc_button_ok = 2131230771; - - // aapt resource value: 0x7f08003a - public const int afc_button_sort_by_date_asc = 2131230778; - - // aapt resource value: 0x7f08003b - public const int afc_button_sort_by_date_desc = 2131230779; - - // aapt resource value: 0x7f080036 - public const int afc_button_sort_by_name_asc = 2131230774; - - // aapt resource value: 0x7f080037 - public const int afc_button_sort_by_name_desc = 2131230775; - - // aapt resource value: 0x7f080038 - public const int afc_button_sort_by_size_asc = 2131230776; - - // aapt resource value: 0x7f080039 - public const int afc_button_sort_by_size_desc = 2131230777; - - // aapt resource value: 0x7f080022 - public const int afc_checkbox_selection = 2131230754; - - // aapt resource value: 0x7f080030 - public const int afc_footer_view_divider = 2131230768; - - // aapt resource value: 0x7f08001c - public const int afc_fragment_files = 2131230748; - - // aapt resource value: 0x7f080029 - public const int afc_header_view_divider = 2131230761; - - // aapt resource value: 0x7f08001e - public const int afc_imageview_icon = 2131230750; - - // aapt resource value: 0x7f08001f - public const int afc_imageview_locked_symbol = 2131230751; - - // aapt resource value: 0x7f08001d - public const int afc_listview_menu = 2131230749; - - // aapt resource value: 0x7f08012a - public const int afc_menuitem_home = 2131231018; - - // aapt resource value: 0x7f08012d - public const int afc_menuitem_new_folder = 2131231021; - - // aapt resource value: 0x7f08012b - public const int afc_menuitem_sort = 2131231019; - - // aapt resource value: 0x7f08012c - public const int afc_menuitem_switch_viewmode = 2131231020; - - // aapt resource value: 0x7f08003d - public const int afc_progress_bar = 2131230781; - - // aapt resource value: 0x7f08003c - public const int afc_text1 = 2131230780; - - // aapt resource value: 0x7f08003e - public const int afc_textview = 2131230782; - - // aapt resource value: 0x7f080021 - public const int afc_textview_file_info = 2131230753; - - // aapt resource value: 0x7f080020 - public const int afc_textview_filename = 2131230752; - - // aapt resource value: 0x7f08002a - public const int afc_textview_full_dir_name = 2131230762; - - // aapt resource value: 0x7f080035 - public const int afc_textview_home = 2131230773; - - // aapt resource value: 0x7f080032 - public const int afc_textview_saveas_filename = 2131230770; - - // aapt resource value: 0x7f08002d - public const int afc_view_files_container = 2131230765; - - // aapt resource value: 0x7f08002e - public const int afc_view_files_footer_view = 2131230766; - - // aapt resource value: 0x7f08002f - public const int afc_view_loading = 2131230767; + // aapt resource value: 0x7f080067 + public const int advanced_container = 2131230823; // aapt resource value: 0x7f080028 - public const int afc_view_locations = 2131230760; + public const int afc_button_go_back = 2131230760; - // aapt resource value: 0x7f080027 - public const int afc_view_locations_container = 2131230759; + // aapt resource value: 0x7f080029 + public const int afc_button_go_forward = 2131230761; - // aapt resource value: 0x7f080034 - public const int afc_viewgroup_bookmarks = 2131230772; + // aapt resource value: 0x7f080037 + public const int afc_button_ok = 2131230775; - // aapt resource value: 0x7f080026 - public const int afc_viewgroup_button_locations = 2131230758; - - // aapt resource value: 0x7f08002c - public const int afc_viewgroup_files = 2131230764; - - // aapt resource value: 0x7f080031 - public const int afc_viewgroup_footer = 2131230769; - - // aapt resource value: 0x7f08002b - public const int afc_viewgroup_footer_container = 2131230763; - - // aapt resource value: 0x7f080023 - public const int afc_viewgroup_header = 2131230755; - - // aapt resource value: 0x7f080041 - public const int afc_widget_search_view_button_clear = 2131230785; + // aapt resource value: 0x7f08003e + public const int afc_button_sort_by_date_asc = 2131230782; // aapt resource value: 0x7f08003f - public const int afc_widget_search_view_button_search = 2131230783; + public const int afc_button_sort_by_date_desc = 2131230783; + + // aapt resource value: 0x7f08003a + public const int afc_button_sort_by_name_asc = 2131230778; + + // aapt resource value: 0x7f08003b + public const int afc_button_sort_by_name_desc = 2131230779; + + // aapt resource value: 0x7f08003c + public const int afc_button_sort_by_size_asc = 2131230780; + + // aapt resource value: 0x7f08003d + public const int afc_button_sort_by_size_desc = 2131230781; + + // aapt resource value: 0x7f080026 + public const int afc_checkbox_selection = 2131230758; + + // aapt resource value: 0x7f080034 + public const int afc_footer_view_divider = 2131230772; + + // aapt resource value: 0x7f080020 + public const int afc_fragment_files = 2131230752; + + // aapt resource value: 0x7f08002d + public const int afc_header_view_divider = 2131230765; + + // aapt resource value: 0x7f080022 + public const int afc_imageview_icon = 2131230754; + + // aapt resource value: 0x7f080023 + public const int afc_imageview_locked_symbol = 2131230755; + + // aapt resource value: 0x7f080021 + public const int afc_listview_menu = 2131230753; + + // aapt resource value: 0x7f08012f + public const int afc_menuitem_home = 2131231023; + + // aapt resource value: 0x7f080132 + public const int afc_menuitem_new_folder = 2131231026; + + // aapt resource value: 0x7f080130 + public const int afc_menuitem_sort = 2131231024; + + // aapt resource value: 0x7f080131 + public const int afc_menuitem_switch_viewmode = 2131231025; + + // aapt resource value: 0x7f080041 + public const int afc_progress_bar = 2131230785; // aapt resource value: 0x7f080040 - public const int afc_widget_search_view_textview_search = 2131230784; + public const int afc_text1 = 2131230784; - // aapt resource value: 0x7f080018 - public const int android_filechooser_contrib = 2131230744; + // aapt resource value: 0x7f080042 + public const int afc_textview = 2131230786; - // aapt resource value: 0x7f080015 - public const int author = 2131230741; + // aapt resource value: 0x7f080025 + public const int afc_textview_file_info = 2131230757; - // aapt resource value: 0x7f080066 - public const int binaries = 2131230822; + // aapt resource value: 0x7f080024 + public const int afc_textview_filename = 2131230756; + + // aapt resource value: 0x7f08002e + public const int afc_textview_full_dir_name = 2131230766; + + // aapt resource value: 0x7f080039 + public const int afc_textview_home = 2131230777; + + // aapt resource value: 0x7f080036 + public const int afc_textview_saveas_filename = 2131230774; + + // aapt resource value: 0x7f080031 + public const int afc_view_files_container = 2131230769; + + // aapt resource value: 0x7f080032 + public const int afc_view_files_footer_view = 2131230770; + + // aapt resource value: 0x7f080033 + public const int afc_view_loading = 2131230771; + + // aapt resource value: 0x7f08002c + public const int afc_view_locations = 2131230764; + + // aapt resource value: 0x7f08002b + public const int afc_view_locations_container = 2131230763; + + // aapt resource value: 0x7f080038 + public const int afc_viewgroup_bookmarks = 2131230776; + + // aapt resource value: 0x7f08002a + public const int afc_viewgroup_button_locations = 2131230762; + + // aapt resource value: 0x7f080030 + public const int afc_viewgroup_files = 2131230768; + + // aapt resource value: 0x7f080035 + public const int afc_viewgroup_footer = 2131230773; + + // aapt resource value: 0x7f08002f + public const int afc_viewgroup_footer_container = 2131230767; + + // aapt resource value: 0x7f080027 + public const int afc_viewgroup_header = 2131230759; + + // aapt resource value: 0x7f080045 + public const int afc_widget_search_view_button_clear = 2131230789; + + // aapt resource value: 0x7f080043 + public const int afc_widget_search_view_button_search = 2131230787; + + // aapt resource value: 0x7f080044 + public const int afc_widget_search_view_textview_search = 2131230788; + + // aapt resource value: 0x7f08001c + public const int android_filechooser_contrib = 2131230748; + + // aapt resource value: 0x7f080019 + public const int author = 2131230745; + + // aapt resource value: 0x7f08006a + public const int binaries = 2131230826; // aapt resource value: 0x7f080008 public const int black = 2131230728; @@ -2168,140 +2165,140 @@ namespace keepass2android // aapt resource value: 0x7f080005 public const int bold = 2131230725; - // aapt resource value: 0x7f080077 - public const int bottom_bar = 2131230839; + // aapt resource value: 0x7f08007b + public const int bottom_bar = 2131230843; - // aapt resource value: 0x7f08009f - public const int bottom_layout = 2131230879; + // aapt resource value: 0x7f0800a3 + public const int bottom_layout = 2131230883; - // aapt resource value: 0x7f08009a - public const int browse_button = 2131230874; + // aapt resource value: 0x7f08009e + public const int browse_button = 2131230878; - // aapt resource value: 0x7f0800ef - public const int btnPluginsOnline = 2131230959; + // aapt resource value: 0x7f0800f3 + public const int btnPluginsOnline = 2131230963; - // aapt resource value: 0x7f080046 - public const int btn_change_location = 2131230790; + // aapt resource value: 0x7f08004a + public const int btn_change_location = 2131230794; - // aapt resource value: 0x7f08004f - public const int btn_create = 2131230799; - - // aapt resource value: 0x7f0800ad - public const int btn_length12 = 2131230893; - - // aapt resource value: 0x7f0800ac - public const int btn_length16 = 2131230892; - - // aapt resource value: 0x7f0800af - public const int btn_length6 = 2131230895; - - // aapt resource value: 0x7f0800ae - public const int btn_length8 = 2131230894; - - // aapt resource value: 0x7f0800f9 - public const int button = 2131230969; - - // aapt resource value: 0x7f0800fa - public const int button_text = 2131230970; - - // aapt resource value: 0x7f0800bf - public const int cancel = 2131230911; - - // aapt resource value: 0x7f0800a6 - public const int cancel_button = 2131230886; - - // aapt resource value: 0x7f0800bc - public const int cancel_insert_element = 2131230908; - - // aapt resource value: 0x7f080042 - public const int candidates = 2131230786; - - // aapt resource value: 0x7f08010b - public const int cbCaseSensitive = 2131230987; - - // aapt resource value: 0x7f08010c - public const int cbExcludeExpiredEntries = 2131230988; - - // aapt resource value: 0x7f080101 - public const int cbRegEx = 2131230977; - - // aapt resource value: 0x7f08010a - public const int cbSearchInGroupName = 2131230986; - - // aapt resource value: 0x7f080107 - public const int cbSearchInNotes = 2131230983; - - // aapt resource value: 0x7f080108 - public const int cbSearchInOtherStrings = 2131230984; - - // aapt resource value: 0x7f080106 - public const int cbSearchInPassword = 2131230982; - - // aapt resource value: 0x7f080109 - public const int cbSearchInTags = 2131230985; - - // aapt resource value: 0x7f080103 - public const int cbSearchInTitle = 2131230979; - - // aapt resource value: 0x7f080104 - public const int cbSearchInUrl = 2131230980; - - // aapt resource value: 0x7f080105 - public const int cbSearchInUsername = 2131230981; - - // aapt resource value: 0x7f0800b8 - public const int cb_brackets = 2131230904; - - // aapt resource value: 0x7f0800b3 - public const int cb_digits = 2131230899; - - // aapt resource value: 0x7f0800ed - public const int cb_enabled = 2131230957; - - // aapt resource value: 0x7f0800b2 - public const int cb_lowercase = 2131230898; - - // aapt resource value: 0x7f0800b4 - public const int cb_minus = 2131230900; - - // aapt resource value: 0x7f0800b6 - public const int cb_space = 2131230902; - - // aapt resource value: 0x7f0800b7 - public const int cb_specials = 2131230903; - - // aapt resource value: 0x7f0800b5 - public const int cb_underline = 2131230901; + // aapt resource value: 0x7f080053 + public const int btn_create = 2131230803; // aapt resource value: 0x7f0800b1 - public const int cb_uppercase = 2131230897; + public const int btn_length12 = 2131230897; - // aapt resource value: 0x7f080014 - public const int contributors_title = 2131230740; + // aapt resource value: 0x7f0800b0 + public const int btn_length16 = 2131230896; - // aapt resource value: 0x7f08009d - public const int create = 2131230877; + // aapt resource value: 0x7f0800b3 + public const int btn_length6 = 2131230899; - // aapt resource value: 0x7f08011c - public const int cred_password = 2131231004; + // aapt resource value: 0x7f0800b2 + public const int btn_length8 = 2131230898; - // aapt resource value: 0x7f08011d - public const int cred_remember_mode = 2131231005; + // aapt resource value: 0x7f0800fd + public const int button = 2131230973; - // aapt resource value: 0x7f08011b - public const int cred_username = 2131231003; + // aapt resource value: 0x7f0800fe + public const int button_text = 2131230974; - // aapt resource value: 0x7f080059 - public const int delete_extra = 2131230809; + // aapt resource value: 0x7f0800c3 + public const int cancel = 2131230915; - // aapt resource value: 0x7f0800e8 - public const int deny_button = 2131230952; + // aapt resource value: 0x7f0800aa + public const int cancel_button = 2131230890; - // aapt resource value: 0x7f080013 - public const int disclaimer = 2131230739; + // aapt resource value: 0x7f0800c0 + public const int cancel_insert_element = 2131230912; - // aapt resource value: 0x7f080012 - public const int disclaimer_title = 2131230738; + // aapt resource value: 0x7f080046 + public const int candidates = 2131230790; + + // aapt resource value: 0x7f080110 + public const int cbCaseSensitive = 2131230992; + + // aapt resource value: 0x7f080111 + public const int cbExcludeExpiredEntries = 2131230993; + + // aapt resource value: 0x7f080106 + public const int cbRegEx = 2131230982; + + // aapt resource value: 0x7f08010f + public const int cbSearchInGroupName = 2131230991; + + // aapt resource value: 0x7f08010c + public const int cbSearchInNotes = 2131230988; + + // aapt resource value: 0x7f08010d + public const int cbSearchInOtherStrings = 2131230989; + + // aapt resource value: 0x7f08010b + public const int cbSearchInPassword = 2131230987; + + // aapt resource value: 0x7f08010e + public const int cbSearchInTags = 2131230990; + + // aapt resource value: 0x7f080108 + public const int cbSearchInTitle = 2131230984; + + // aapt resource value: 0x7f080109 + public const int cbSearchInUrl = 2131230985; + + // aapt resource value: 0x7f08010a + public const int cbSearchInUsername = 2131230986; + + // aapt resource value: 0x7f0800bc + public const int cb_brackets = 2131230908; + + // aapt resource value: 0x7f0800b7 + public const int cb_digits = 2131230903; + + // aapt resource value: 0x7f0800f1 + public const int cb_enabled = 2131230961; + + // aapt resource value: 0x7f0800b6 + public const int cb_lowercase = 2131230902; + + // aapt resource value: 0x7f0800b8 + public const int cb_minus = 2131230904; + + // aapt resource value: 0x7f0800ba + public const int cb_space = 2131230906; + + // aapt resource value: 0x7f0800bb + public const int cb_specials = 2131230907; + + // aapt resource value: 0x7f0800b9 + public const int cb_underline = 2131230905; + + // aapt resource value: 0x7f0800b5 + public const int cb_uppercase = 2131230901; + + // aapt resource value: 0x7f080018 + public const int contributors_title = 2131230744; + + // aapt resource value: 0x7f0800a1 + public const int create = 2131230881; + + // aapt resource value: 0x7f080121 + public const int cred_password = 2131231009; + + // aapt resource value: 0x7f080122 + public const int cred_remember_mode = 2131231010; + + // aapt resource value: 0x7f080120 + public const int cred_username = 2131231008; + + // aapt resource value: 0x7f08005d + public const int delete_extra = 2131230813; + + // aapt resource value: 0x7f0800ec + public const int deny_button = 2131230956; + + // aapt resource value: 0x7f080017 + public const int disclaimer = 2131230743; + + // aapt resource value: 0x7f080016 + public const int disclaimer_title = 2131230742; // aapt resource value: 0x7f08000a public const int divider1 = 2131230730; @@ -2309,152 +2306,158 @@ namespace keepass2android // aapt resource value: 0x7f08000e public const int divider2 = 2131230734; - // aapt resource value: 0x7f080011 - public const int divider3 = 2131230737; + // aapt resource value: 0x7f080015 + public const int divider3 = 2131230741; - // aapt resource value: 0x7f080052 - public const int donate_question = 2131230802; + // aapt resource value: 0x7f080014 + public const int donate = 2131230740; - // aapt resource value: 0x7f08006e - public const int edit_extra = 2131230830; - - // aapt resource value: 0x7f0800e7 - public const int enable_quickunlock = 2131230951; - - // aapt resource value: 0x7f080065 - public const int entry_binaries_label = 2131230821; - - // aapt resource value: 0x7f080062 - public const int entry_comment = 2131230818; - - // aapt resource value: 0x7f080061 - public const int entry_comment_label = 2131230817; - - // aapt resource value: 0x7f08004b - public const int entry_confpassword = 2131230795; - - // aapt resource value: 0x7f08007a - public const int entry_contents = 2131230842; - - // aapt resource value: 0x7f08008d - public const int entry_created = 2131230861; - - // aapt resource value: 0x7f08008c - public const int entry_created_label = 2131230860; - - // aapt resource value: 0x7f080079 - public const int entry_divider2 = 2131230841; - - // aapt resource value: 0x7f080078 - public const int entry_edit = 2131230840; - - // aapt resource value: 0x7f08006d - public const int entry_expires = 2131230829; - - // aapt resource value: 0x7f08006c - public const int entry_expires_checkbox = 2131230828; - - // aapt resource value: 0x7f08006b - public const int entry_expires_label = 2131230827; + // aapt resource value: 0x7f080056 + public const int donate_question = 2131230806; // aapt resource value: 0x7f080072 - public const int entry_extra = 2131230834; + public const int edit_extra = 2131230834; - // aapt resource value: 0x7f080073 - public const int entry_icon = 2131230835; - - // aapt resource value: 0x7f080090 - public const int entry_modified = 2131230864; - - // aapt resource value: 0x7f08008f - public const int entry_modified_label = 2131230863; - - // aapt resource value: 0x7f08006a - public const int entry_override_url = 2131230826; + // aapt resource value: 0x7f0800eb + public const int enable_quickunlock = 2131230955; // aapt resource value: 0x7f080069 - public const int entry_override_url_label = 2131230825; + public const int entry_binaries_label = 2131230825; - // aapt resource value: 0x7f08004a - public const int entry_password = 2131230794; + // aapt resource value: 0x7f080066 + public const int entry_comment = 2131230822; - // aapt resource value: 0x7f08005f - public const int entry_password_label = 2131230815; + // aapt resource value: 0x7f080065 + public const int entry_comment_label = 2131230821; - // aapt resource value: 0x7f0800fb - public const int entry_save = 2131230971; + // aapt resource value: 0x7f08004f + public const int entry_confpassword = 2131230799; - // aapt resource value: 0x7f08005a - public const int entry_scroll = 2131230810; - - // aapt resource value: 0x7f08007b - public const int entry_table = 2131230843; - - // aapt resource value: 0x7f080068 - public const int entry_tags = 2131230824; - - // aapt resource value: 0x7f080067 - public const int entry_tags_label = 2131230823; - - // aapt resource value: 0x7f080074 - public const int entry_text = 2131230836; - - // aapt resource value: 0x7f080075 - public const int entry_text_detail = 2131230837; - - // aapt resource value: 0x7f08005c - public const int entry_title = 2131230812; - - // aapt resource value: 0x7f08005e - public const int entry_url = 2131230814; - - // aapt resource value: 0x7f080081 - public const int entry_url_label = 2131230849; - - // aapt resource value: 0x7f08005d - public const int entry_user_name = 2131230813; - - // aapt resource value: 0x7f08007d - public const int entry_user_name_label = 2131230845; - - // aapt resource value: 0x7f080087 - public const int entryfield_container_comment = 2131230855; - - // aapt resource value: 0x7f08008b - public const int entryfield_container_created = 2131230859; + // aapt resource value: 0x7f08007e + public const int entry_contents = 2131230846; // aapt resource value: 0x7f080091 - public const int entryfield_container_expires = 2131230865; + public const int entry_created = 2131230865; - // aapt resource value: 0x7f08008e - public const int entryfield_container_modified = 2131230862; + // aapt resource value: 0x7f080090 + public const int entry_created_label = 2131230864; - // aapt resource value: 0x7f08008a - public const int entryfield_container_overrideurl = 2131230858; - - // aapt resource value: 0x7f080084 - public const int entryfield_container_password = 2131230852; - - // aapt resource value: 0x7f080089 - public const int entryfield_container_tags = 2131230857; - - // aapt resource value: 0x7f080080 - public const int entryfield_container_url = 2131230848; + // aapt resource value: 0x7f08007d + public const int entry_divider2 = 2131230845; // aapt resource value: 0x7f08007c - public const int entryfield_container_username = 2131230844; - - // aapt resource value: 0x7f080070 - public const int extra_container = 2131230832; - - // aapt resource value: 0x7f080088 - public const int extra_strings = 2131230856; - - // aapt resource value: 0x7f08006f - public const int extra_title_container = 2131230831; + public const int entry_edit = 2131230844; // aapt resource value: 0x7f080071 - public const int extra_vdots = 2131230833; + public const int entry_expires = 2131230833; + + // aapt resource value: 0x7f080070 + public const int entry_expires_checkbox = 2131230832; + + // aapt resource value: 0x7f08006f + public const int entry_expires_label = 2131230831; + + // aapt resource value: 0x7f080076 + public const int entry_extra = 2131230838; + + // aapt resource value: 0x7f080077 + public const int entry_icon = 2131230839; + + // aapt resource value: 0x7f080094 + public const int entry_modified = 2131230868; + + // aapt resource value: 0x7f080093 + public const int entry_modified_label = 2131230867; + + // aapt resource value: 0x7f08006e + public const int entry_override_url = 2131230830; + + // aapt resource value: 0x7f08006d + public const int entry_override_url_label = 2131230829; + + // aapt resource value: 0x7f08004e + public const int entry_password = 2131230798; + + // aapt resource value: 0x7f080063 + public const int entry_password_label = 2131230819; + + // aapt resource value: 0x7f0800ff + public const int entry_save = 2131230975; + + // aapt resource value: 0x7f080100 + public const int entry_save_cancel = 2131230976; + + // aapt resource value: 0x7f08005e + public const int entry_scroll = 2131230814; + + // aapt resource value: 0x7f08007f + public const int entry_table = 2131230847; + + // aapt resource value: 0x7f08006c + public const int entry_tags = 2131230828; + + // aapt resource value: 0x7f08006b + public const int entry_tags_label = 2131230827; + + // aapt resource value: 0x7f080078 + public const int entry_text = 2131230840; + + // aapt resource value: 0x7f080079 + public const int entry_text_detail = 2131230841; + + // aapt resource value: 0x7f080060 + public const int entry_title = 2131230816; + + // aapt resource value: 0x7f080062 + public const int entry_url = 2131230818; + + // aapt resource value: 0x7f080085 + public const int entry_url_label = 2131230853; + + // aapt resource value: 0x7f080061 + public const int entry_user_name = 2131230817; + + // aapt resource value: 0x7f080081 + public const int entry_user_name_label = 2131230849; + + // aapt resource value: 0x7f08008b + public const int entryfield_container_comment = 2131230859; + + // aapt resource value: 0x7f08008f + public const int entryfield_container_created = 2131230863; + + // aapt resource value: 0x7f080095 + public const int entryfield_container_expires = 2131230869; + + // aapt resource value: 0x7f080092 + public const int entryfield_container_modified = 2131230866; + + // aapt resource value: 0x7f08008e + public const int entryfield_container_overrideurl = 2131230862; + + // aapt resource value: 0x7f080088 + public const int entryfield_container_password = 2131230856; + + // aapt resource value: 0x7f08008d + public const int entryfield_container_tags = 2131230861; + + // aapt resource value: 0x7f080084 + public const int entryfield_container_url = 2131230852; + + // aapt resource value: 0x7f080080 + public const int entryfield_container_username = 2131230848; + + // aapt resource value: 0x7f080074 + public const int extra_container = 2131230836; + + // aapt resource value: 0x7f08008c + public const int extra_strings = 2131230860; + + // aapt resource value: 0x7f080073 + public const int extra_title_container = 2131230835; + + // aapt resource value: 0x7f080075 + public const int extra_vdots = 2131230837; // aapt resource value: 0x7f080010 public const int feedback = 2131230736; @@ -2462,233 +2465,218 @@ namespace keepass2android // aapt resource value: 0x7f08000f public const int feedback_title = 2131230735; - // aapt resource value: 0x7f080092 - public const int file_filename = 2131230866; + // aapt resource value: 0x7f080096 + public const int file_filename = 2131230870; - // aapt resource value: 0x7f080093 - public const int file_listtop = 2131230867; + // aapt resource value: 0x7f080097 + public const int file_listtop = 2131230871; - // aapt resource value: 0x7f0800a2 - public const int file_select = 2131230882; + // aapt resource value: 0x7f0800a6 + public const int file_select = 2131230886; - // aapt resource value: 0x7f0800d0 - public const int filename = 2131230928; + // aapt resource value: 0x7f0800d4 + public const int filename = 2131230932; - // aapt resource value: 0x7f080098 - public const int filename_form = 2131230872; + // aapt resource value: 0x7f08009c + public const int filename_form = 2131230876; - // aapt resource value: 0x7f0800cd - public const int filename_group = 2131230925; + // aapt resource value: 0x7f0800d1 + public const int filename_group = 2131230929; - // aapt resource value: 0x7f0800ce - public const int filename_label = 2131230926; + // aapt resource value: 0x7f0800d2 + public const int filename_label = 2131230930; - // aapt resource value: 0x7f0800cf - public const int filenamescroll = 2131230927; - - // aapt resource value: 0x7f080044 - public const int filestorage_label = 2131230788; - - // aapt resource value: 0x7f080043 - public const int filestorage_logo = 2131230787; - - // aapt resource value: 0x7f08009e - public const int fnv_cancel = 2131230878; - - // aapt resource value: 0x7f0800a3 - public const int fssa_progress_bar = 2131230883; - - // aapt resource value: 0x7f080016 - public const int further_authors = 2131230742; + // aapt resource value: 0x7f0800d3 + public const int filenamescroll = 2131230931; // aapt resource value: 0x7f080048 - public const int generate_button = 2131230792; + public const int filestorage_label = 2131230792; - // aapt resource value: 0x7f0800aa - public const int generate_password_button = 2131230890; + // aapt resource value: 0x7f080047 + public const int filestorage_logo = 2131230791; - // aapt resource value: 0x7f0800c0 - public const int group_icon = 2131230912; + // aapt resource value: 0x7f0800a2 + public const int fnv_cancel = 2131230882; - // aapt resource value: 0x7f0800c2 - public const int group_label = 2131230914; + // aapt resource value: 0x7f0800a7 + public const int fssa_progress_bar = 2131230887; - // aapt resource value: 0x7f0800bd - public const int group_name = 2131230909; + // aapt resource value: 0x7f08001a + public const int further_authors = 2131230746; + + // aapt resource value: 0x7f08004c + public const int generate_button = 2131230796; + + // aapt resource value: 0x7f0800ae + public const int generate_password_button = 2131230894; + + // aapt resource value: 0x7f0800c4 + public const int group_icon = 2131230916; + + // aapt resource value: 0x7f0800c6 + public const int group_label = 2131230918; // aapt resource value: 0x7f0800c1 - public const int group_text = 2131230913; + public const int group_name = 2131230913; - // aapt resource value: 0x7f08011a - public const int help = 2131231002; + // aapt resource value: 0x7f0800c5 + public const int group_text = 2131230917; + + // aapt resource value: 0x7f08011f + public const int help = 2131231007; // aapt resource value: 0x7f080004 public const int hybrid = 2131230724; - // aapt resource value: 0x7f0800c3 - public const int icon = 2131230915; + // aapt resource value: 0x7f0800c7 + public const int icon = 2131230919; - // aapt resource value: 0x7f08005b - public const int icon_button = 2131230811; + // aapt resource value: 0x7f08005f + public const int icon_button = 2131230815; - // aapt resource value: 0x7f0800c4 - public const int icon_image = 2131230916; - - // aapt resource value: 0x7f0800c5 - public const int icon_text = 2131230917; - - // aapt resource value: 0x7f0800f7 - public const int image = 2131230967; + // aapt resource value: 0x7f0800c8 + public const int icon_image = 2131230920; // aapt resource value: 0x7f0800c9 - public const int imgIcon = 2131230921; + public const int icon_text = 2131230921; - // aapt resource value: 0x7f0800a0 - public const int imglogo = 2131230880; + // aapt resource value: 0x7f0800fb + public const int image = 2131230971; - // aapt resource value: 0x7f080053 - public const int imgoktfest = 2131230803; + // aapt resource value: 0x7f0800cd + public const int imgIcon = 2131230925; - // aapt resource value: 0x7f0800d8 - public const int init_otp = 2131230936; + // aapt resource value: 0x7f0800a4 + public const int imglogo = 2131230884; - // aapt resource value: 0x7f080117 - public const int initial_dir = 2131230999; + // aapt resource value: 0x7f080057 + public const int imgoktfest = 2131230807; - // aapt resource value: 0x7f0800bb - public const int insert_element = 2131230907; + // aapt resource value: 0x7f0800dc + public const int init_otp = 2131230940; + + // aapt resource value: 0x7f08011c + public const int initial_dir = 2131231004; + + // aapt resource value: 0x7f0800bf + public const int insert_element = 2131230911; // aapt resource value: 0x7f080006 public const int italic = 2131230726; - // aapt resource value: 0x7f080019 - public const int keyboard_contrib = 2131230745; + // aapt resource value: 0x7f08001d + public const int keyboard_contrib = 2131230749; - // aapt resource value: 0x7f0800d4 - public const int keyfileLine = 2131230932; + // aapt resource value: 0x7f0800d8 + public const int keyfileLine = 2131230936; - // aapt resource value: 0x7f08004e - public const int keyfile_filename = 2131230798; + // aapt resource value: 0x7f080052 + public const int keyfile_filename = 2131230802; - // aapt resource value: 0x7f08004c - public const int keyfile_title = 2131230796; + // aapt resource value: 0x7f080050 + public const int keyfile_title = 2131230800; - // aapt resource value: 0x7f0800e6 - public const int kill_app = 2131230950; + // aapt resource value: 0x7f0800ea + public const int kill_app = 2131230954; - // aapt resource value: 0x7f0800a1 - public const int label_app_name = 2131230881; + // aapt resource value: 0x7f0800a5 + public const int label_app_name = 2131230885; - // aapt resource value: 0x7f080045 - public const int label_filename = 2131230789; + // aapt resource value: 0x7f080049 + public const int label_filename = 2131230793; - // aapt resource value: 0x7f080099 - public const int label_open_by_filename = 2131230873; + // aapt resource value: 0x7f08009d + public const int label_open_by_filename = 2131230877; - // aapt resource value: 0x7f08009b - public const int label_open_by_filename_details = 2131230875; + // aapt resource value: 0x7f08009f + public const int label_open_by_filename_details = 2131230879; - // aapt resource value: 0x7f080094 - public const int label_warning = 2131230868; + // aapt resource value: 0x7f080098 + public const int label_warning = 2131230872; - // aapt resource value: 0x7f0800b0 - public const int length = 2131230896; + // aapt resource value: 0x7f0800b4 + public const int length = 2131230900; - // aapt resource value: 0x7f0800ab - public const int length_label = 2131230891; + // aapt resource value: 0x7f0800af + public const int length_label = 2131230895; - // aapt resource value: 0x7f080100 - public const int linearLayout1 = 2131230976; + // aapt resource value: 0x7f080105 + public const int linearLayout1 = 2131230981; - // aapt resource value: 0x7f0800f5 - public const int main_image = 2131230965; - - // aapt resource value: 0x7f080135 - public const int menu_about = 2131231029; + // aapt resource value: 0x7f0800f9 + public const int main_image = 2131230969; // aapt resource value: 0x7f080136 - public const int menu_app_settings = 2131231030; + public const int menu_about = 2131231030; + + // aapt resource value: 0x7f080137 + public const int menu_app_settings = 2131231031; // aapt resource value: 0x7f08013c public const int menu_change_db = 2131231036; - // aapt resource value: 0x7f080139 - public const int menu_change_master_key = 2131231033; - - // aapt resource value: 0x7f080130 - public const int menu_donate = 2131231024; - - // aapt resource value: 0x7f080131 - public const int menu_goto_url = 2131231025; - - // aapt resource value: 0x7f08012e - public const int menu_lock = 2131231022; + // aapt resource value: 0x7f080135 + public const int menu_donate = 2131231029; // aapt resource value: 0x7f080133 - public const int menu_rate = 2131231027; - - // aapt resource value: 0x7f080137 - public const int menu_search = 2131231031; + public const int menu_lock = 2131231027; // aapt resource value: 0x7f080138 - public const int menu_search_advanced = 2131231032; + public const int menu_search = 2131231032; + + // aapt resource value: 0x7f080139 + public const int menu_search_advanced = 2131231033; // aapt resource value: 0x7f08013b public const int menu_sort = 2131231035; - // aapt resource value: 0x7f080132 - public const int menu_suggest_improvements = 2131231026; - // aapt resource value: 0x7f08013a public const int menu_sync = 2131231034; - // aapt resource value: 0x7f08012f - public const int menu_toggle_pass = 2131231023; - // aapt resource value: 0x7f080134 - public const int menu_translate = 2131231028; - - // aapt resource value: 0x7f080120 - public const int mode_email = 2131231008; + public const int menu_toggle_pass = 2131231028; // aapt resource value: 0x7f080125 - public const int mode_email_with_settings_key = 2131231013; + public const int mode_email = 2131231013; - // aapt resource value: 0x7f080121 - public const int mode_im = 2131231009; + // aapt resource value: 0x7f08012a + public const int mode_email_with_settings_key = 2131231018; // aapt resource value: 0x7f080126 - public const int mode_im_with_settings_key = 2131231014; + public const int mode_im = 2131231014; - // aapt resource value: 0x7f08011e - public const int mode_normal = 2131231006; + // aapt resource value: 0x7f08012b + public const int mode_im_with_settings_key = 2131231019; // aapt resource value: 0x7f080123 - public const int mode_normal_with_settings_key = 2131231011; + public const int mode_normal = 2131231011; // aapt resource value: 0x7f080128 - public const int mode_symbols = 2131231016; + public const int mode_normal_with_settings_key = 2131231016; - // aapt resource value: 0x7f080129 - public const int mode_symbols_with_settings_key = 2131231017; + // aapt resource value: 0x7f08012d + public const int mode_symbols = 2131231021; - // aapt resource value: 0x7f08011f - public const int mode_url = 2131231007; + // aapt resource value: 0x7f08012e + public const int mode_symbols_with_settings_key = 2131231022; // aapt resource value: 0x7f080124 - public const int mode_url_with_settings_key = 2131231012; + public const int mode_url = 2131231012; - // aapt resource value: 0x7f080122 - public const int mode_webentry = 2131231010; + // aapt resource value: 0x7f080129 + public const int mode_url_with_settings_key = 2131231017; // aapt resource value: 0x7f080127 - public const int mode_webentry_with_settings_key = 2131231015; + public const int mode_webentry = 2131231015; - // aapt resource value: 0x7f080055 - public const int no_donate = 2131230805; + // aapt resource value: 0x7f08012c + public const int mode_webentry_with_settings_key = 2131231020; - // aapt resource value: 0x7f08010f - public const int no_results = 2131230991; + // aapt resource value: 0x7f080059 + public const int no_donate = 2131230809; + + // aapt resource value: 0x7f080114 + public const int no_results = 2131230996; // aapt resource value: 0x7f080000 public const int none = 2131230720; @@ -2696,221 +2684,230 @@ namespace keepass2android // aapt resource value: 0x7f080001 public const int normal = 2131230721; - // aapt resource value: 0x7f0800be - public const int ok = 2131230910; - - // aapt resource value: 0x7f080054 - public const int ok_donate = 2131230804; - - // aapt resource value: 0x7f08009c - public const int open = 2131230876; - - // aapt resource value: 0x7f0800dc - public const int otp1 = 2131230940; - - // aapt resource value: 0x7f0800dd - public const int otp2 = 2131230941; - - // aapt resource value: 0x7f0800de - public const int otp3 = 2131230942; - - // aapt resource value: 0x7f0800df - public const int otp4 = 2131230943; - - // aapt resource value: 0x7f0800e0 - public const int otp5 = 2131230944; - - // aapt resource value: 0x7f0800e1 - public const int otp6 = 2131230945; - - // aapt resource value: 0x7f0800da - public const int otpEntry = 2131230938; - - // aapt resource value: 0x7f0800d7 - public const int otpInitView = 2131230935; - - // aapt resource value: 0x7f0800e2 - public const int otpSecretLine = 2131230946; - - // aapt resource value: 0x7f0800d6 - public const int otpView = 2131230934; - - // aapt resource value: 0x7f0800db - public const int otp_expl = 2131230939; - - // aapt resource value: 0x7f0800d9 - public const int otps_pending = 2131230937; - - // aapt resource value: 0x7f0800e4 - public const int otpsecret_format_spinner = 2131230948; - - // aapt resource value: 0x7f080111 - public const int pass_conf_password = 2131230993; - - // aapt resource value: 0x7f0800d5 - public const int pass_keyfile = 2131230933; - - // aapt resource value: 0x7f0800e5 - public const int pass_ok = 2131230949; - - // aapt resource value: 0x7f0800e3 - public const int pass_otpsecret = 2131230947; - - // aapt resource value: 0x7f080110 - public const int pass_password = 2131230992; - - // aapt resource value: 0x7f0800a9 - public const int password = 2131230889; - - // aapt resource value: 0x7f0800d3 - public const int passwordLine = 2131230931; - - // aapt resource value: 0x7f080085 - public const int password_container = 2131230853; - - // aapt resource value: 0x7f0800d1 - public const int password_label = 2131230929; - - // aapt resource value: 0x7f0800d2 - public const int password_mode_spinner = 2131230930; - - // aapt resource value: 0x7f080060 - public const int password_section = 2131230816; - - // aapt resource value: 0x7f080047 - public const int password_title = 2131230791; - - // aapt resource value: 0x7f080086 - public const int password_vdots = 2131230854; - - // aapt resource value: 0x7f080017 - public const int plugin1 = 2131230743; - - // aapt resource value: 0x7f0800e9 - public const int plugin_scroll = 2131230953; - - // aapt resource value: 0x7f080113 - public const int portsep = 2131230995; - - // aapt resource value: 0x7f0800f8 - public const int progress = 2131230968; + // aapt resource value: 0x7f0800c2 + public const int ok = 2131230914; // aapt resource value: 0x7f080058 - public const int protection = 2131230808; + public const int ok_donate = 2131230808; - // aapt resource value: 0x7f0800f0 - public const int qu_filename = 2131230960; + // aapt resource value: 0x7f0800a0 + public const int open = 2131230880; - // aapt resource value: 0x7f080050 - public const int rounds = 2131230800; + // aapt resource value: 0x7f0800e0 + public const int otp1 = 2131230944; - // aapt resource value: 0x7f080051 - public const int rounds_explaination = 2131230801; + // aapt resource value: 0x7f0800e1 + public const int otp2 = 2131230945; + + // aapt resource value: 0x7f0800e2 + public const int otp3 = 2131230946; + + // aapt resource value: 0x7f0800e3 + public const int otp4 = 2131230947; + + // aapt resource value: 0x7f0800e4 + public const int otp5 = 2131230948; + + // aapt resource value: 0x7f0800e5 + public const int otp6 = 2131230949; + + // aapt resource value: 0x7f0800de + public const int otpEntry = 2131230942; + + // aapt resource value: 0x7f0800db + public const int otpInitView = 2131230939; + + // aapt resource value: 0x7f0800e6 + public const int otpSecretLine = 2131230950; + + // aapt resource value: 0x7f0800da + public const int otpView = 2131230938; + + // aapt resource value: 0x7f0800df + public const int otp_expl = 2131230943; + + // aapt resource value: 0x7f0800dd + public const int otps_pending = 2131230941; + + // aapt resource value: 0x7f0800e8 + public const int otpsecret_format_spinner = 2131230952; + + // aapt resource value: 0x7f080116 + public const int pass_conf_password = 2131230998; + + // aapt resource value: 0x7f0800d9 + public const int pass_keyfile = 2131230937; + + // aapt resource value: 0x7f0800e9 + public const int pass_ok = 2131230953; + + // aapt resource value: 0x7f0800e7 + public const int pass_otpsecret = 2131230951; + + // aapt resource value: 0x7f080115 + public const int pass_password = 2131230997; + + // aapt resource value: 0x7f0800ad + public const int password = 2131230893; + + // aapt resource value: 0x7f0800d7 + public const int passwordLine = 2131230935; + + // aapt resource value: 0x7f080089 + public const int password_container = 2131230857; + + // aapt resource value: 0x7f0800d5 + public const int password_label = 2131230933; + + // aapt resource value: 0x7f0800d6 + public const int password_mode_spinner = 2131230934; + + // aapt resource value: 0x7f080064 + public const int password_section = 2131230820; + + // aapt resource value: 0x7f08004b + public const int password_title = 2131230795; + + // aapt resource value: 0x7f08008a + public const int password_vdots = 2131230858; + + // aapt resource value: 0x7f08001b + public const int plugin1 = 2131230747; + + // aapt resource value: 0x7f0800ed + public const int plugin_scroll = 2131230957; + + // aapt resource value: 0x7f080118 + public const int portsep = 2131231000; + + // aapt resource value: 0x7f0800fc + public const int progress = 2131230972; + + // aapt resource value: 0x7f08005c + public const int protection = 2131230812; + + // aapt resource value: 0x7f0800f4 + public const int qu_filename = 2131230964; + + // aapt resource value: 0x7f080012 + public const int rate = 2131230738; + + // aapt resource value: 0x7f080054 + public const int rounds = 2131230804; + + // aapt resource value: 0x7f080055 + public const int rounds_explaination = 2131230805; // aapt resource value: 0x7f080002 public const int satellite = 2131230722; - // aapt resource value: 0x7f0800ea - public const int scopes_list = 2131230954; - // aapt resource value: 0x7f0800ee - public const int scopes_title = 2131230958; + public const int scopes_list = 2131230958; - // aapt resource value: 0x7f0800ff - public const int scrollView1 = 2131230975; + // aapt resource value: 0x7f0800f2 + public const int scopes_title = 2131230962; - // aapt resource value: 0x7f0800fe - public const int searchEditText = 2131230974; + // aapt resource value: 0x7f080104 + public const int scrollView1 = 2131230980; - // aapt resource value: 0x7f0800fd - public const int search_button = 2131230973; + // aapt resource value: 0x7f080103 + public const int searchEditText = 2131230979; // aapt resource value: 0x7f080102 - public const int search_in_label = 2131230978; + public const int search_button = 2131230978; - // aapt resource value: 0x7f0800fc - public const int search_label = 2131230972; + // aapt resource value: 0x7f080107 + public const int search_in_label = 2131230983; - // aapt resource value: 0x7f08010d - public const int select_other_entry = 2131230989; + // aapt resource value: 0x7f080101 + public const int search_label = 2131230977; // aapt resource value: 0x7f080112 - public const int sftp_host = 2131230994; + public const int select_other_entry = 2131230994; - // aapt resource value: 0x7f080118 - public const int sftp_initial_dir = 2131231000; + // aapt resource value: 0x7f080117 + public const int sftp_host = 2131230999; - // aapt resource value: 0x7f080116 - public const int sftp_password = 2131230998; + // aapt resource value: 0x7f08011d + public const int sftp_initial_dir = 2131231005; - // aapt resource value: 0x7f080114 - public const int sftp_port = 2131230996; - - // aapt resource value: 0x7f080115 - public const int sftp_user = 2131230997; - - // aapt resource value: 0x7f080097 - public const int start_create = 2131230871; + // aapt resource value: 0x7f08011b + public const int sftp_password = 2131231003; // aapt resource value: 0x7f080119 - public const int start_create_import = 2131231001; + public const int sftp_port = 2131231001; - // aapt resource value: 0x7f080095 - public const int start_open_file = 2131230869; + // aapt resource value: 0x7f08011a + public const int sftp_user = 2131231002; - // aapt resource value: 0x7f080096 - public const int start_open_url = 2131230870; + // aapt resource value: 0x7f08009b + public const int start_create = 2131230875; + + // aapt resource value: 0x7f08011e + public const int start_create_import = 2131231006; + + // aapt resource value: 0x7f080099 + public const int start_open_file = 2131230873; + + // aapt resource value: 0x7f08009a + public const int start_open_url = 2131230874; + + // aapt resource value: 0x7f080011 + public const int suggest = 2131230737; // aapt resource value: 0x7f080003 public const int terrain = 2131230723; - // aapt resource value: 0x7f0800f6 - public const int text = 2131230966; + // aapt resource value: 0x7f0800fa + public const int text = 2131230970; - // aapt resource value: 0x7f0800a4 - public const int textView = 2131230884; + // aapt resource value: 0x7f0800a8 + public const int textView = 2131230888; - // aapt resource value: 0x7f080056 - public const int title = 2131230806; - - // aapt resource value: 0x7f080049 - public const int toggle_password = 2131230793; - - // aapt resource value: 0x7f080076 - public const int top = 2131230838; - - // aapt resource value: 0x7f0800eb - public const int txtAuthor = 2131230955; - - // aapt resource value: 0x7f0800ca - public const int txtLabel = 2131230922; - - // aapt resource value: 0x7f0800ec - public const int txtShortDesc = 2131230956; - - // aapt resource value: 0x7f0800cc - public const int txtStatus = 2131230924; - - // aapt resource value: 0x7f0800cb - public const int txtVersion = 2131230923; - - // aapt resource value: 0x7f080082 - public const int url_container = 2131230850; - - // aapt resource value: 0x7f080083 - public const int url_vdots = 2131230851; + // aapt resource value: 0x7f08005a + public const int title = 2131230810; // aapt resource value: 0x7f08004d - public const int use_keyfile = 2131230797; + public const int toggle_password = 2131230797; - // aapt resource value: 0x7f08007e - public const int username_container = 2131230846; + // aapt resource value: 0x7f08007a + public const int top = 2131230842; - // aapt resource value: 0x7f08007f - public const int username_vdots = 2131230847; + // aapt resource value: 0x7f080013 + public const int translate = 2131230739; - // aapt resource value: 0x7f080057 - public const int value = 2131230807; + // aapt resource value: 0x7f0800ef + public const int txtAuthor = 2131230959; + + // aapt resource value: 0x7f0800ce + public const int txtLabel = 2131230926; + + // aapt resource value: 0x7f0800f0 + public const int txtShortDesc = 2131230960; + + // aapt resource value: 0x7f0800d0 + public const int txtStatus = 2131230928; + + // aapt resource value: 0x7f0800cf + public const int txtVersion = 2131230927; + + // aapt resource value: 0x7f080086 + public const int url_container = 2131230854; + + // aapt resource value: 0x7f080087 + public const int url_vdots = 2131230855; + + // aapt resource value: 0x7f080051 + public const int use_keyfile = 2131230801; + + // aapt resource value: 0x7f080082 + public const int username_container = 2131230850; + + // aapt resource value: 0x7f080083 + public const int username_vdots = 2131230851; + + // aapt resource value: 0x7f08005b + public const int value = 2131230811; // aapt resource value: 0x7f08000d public const int versionB = 2131230733; @@ -3353,530 +3350,545 @@ namespace keepass2android public partial class String { - // aapt resource value: 0x7f090130 - public const int AboutText = 2131296560; + // aapt resource value: 0x7f090133 + public const int AboutText = 2131296563; - // aapt resource value: 0x7f09012b - public const int AcceptAllServerCertificates_default = 2131296555; + // aapt resource value: 0x7f09012e + public const int AcceptAllServerCertificates_default = 2131296558; - // aapt resource value: 0x7f090120 - public const int AcceptAllServerCertificates_key = 2131296544; + // aapt resource value: 0x7f090122 + public const int AcceptAllServerCertificates_key = 2131296546; - // aapt resource value: 0x7f090226 - public const int AcceptAllServerCertificates_summary = 2131296806; + // aapt resource value: 0x7f09022c + public const int AcceptAllServerCertificates_summary = 2131296812; - // aapt resource value: 0x7f090225 - public const int AcceptAllServerCertificates_title = 2131296805; + // aapt resource value: 0x7f09022b + public const int AcceptAllServerCertificates_title = 2131296811; - // aapt resource value: 0x7f090211 - public const int AddUrlToEntryDialog_text = 2131296785; + // aapt resource value: 0x7f090214 + public const int AddUrlToEntryDialog_text = 2131296788; - // aapt resource value: 0x7f090210 - public const int AddUrlToEntryDialog_title = 2131296784; + // aapt resource value: 0x7f090213 + public const int AddUrlToEntryDialog_title = 2131296787; - // aapt resource value: 0x7f090247 - public const int AddingEntry = 2131296839; + // aapt resource value: 0x7f09024d + public const int AddingEntry = 2131296845; - // aapt resource value: 0x7f090248 - public const int AddingGroup = 2131296840; + // aapt resource value: 0x7f09024e + public const int AddingGroup = 2131296846; // aapt resource value: 0x7f090015 public const int ApplicationName = 2131296277; - // aapt resource value: 0x7f09023d - public const int AskDeletePermanentlyEntry = 2131296829; - - // aapt resource value: 0x7f09023e - public const int AskDeletePermanentlyGroup = 2131296830; - - // aapt resource value: 0x7f09023f - public const int AskDeletePermanently_title = 2131296831; - - // aapt resource value: 0x7f090242 - public const int AskDiscardChanges = 2131296834; - // aapt resource value: 0x7f090243 - public const int AskDiscardChanges_title = 2131296835; + public const int AskDeletePermanentlyEntry = 2131296835; - // aapt resource value: 0x7f090237 - public const int AskOverwriteBinary = 2131296823; + // aapt resource value: 0x7f090244 + public const int AskDeletePermanentlyGroup = 2131296836; - // aapt resource value: 0x7f09023a - public const int AskOverwriteBinary_no = 2131296826; + // aapt resource value: 0x7f090245 + public const int AskDeletePermanently_title = 2131296837; - // aapt resource value: 0x7f090238 - public const int AskOverwriteBinary_title = 2131296824; - - // aapt resource value: 0x7f090239 - public const int AskOverwriteBinary_yes = 2131296825; - - // aapt resource value: 0x7f090241 - public const int AskReloadFile = 2131296833; - - // aapt resource value: 0x7f090240 - public const int AskReloadFile_title = 2131296832; - - // aapt resource value: 0x7f09023b - public const int AttachFailed = 2131296827; - - // aapt resource value: 0x7f09010f - public const int BinaryDirectory_default = 2131296527; - - // aapt resource value: 0x7f09010e - public const int BinaryDirectory_key = 2131296526; - - // aapt resource value: 0x7f090209 - public const int BinaryDirectory_summary = 2131296777; - - // aapt resource value: 0x7f090208 - public const int BinaryDirectory_title = 2131296776; - - // aapt resource value: 0x7f09026b - public const int CannotMoveGroupHere = 2131296875; - - // aapt resource value: 0x7f0902ac - public const int CertificateFailure = 2131296940; - - // aapt resource value: 0x7f0902ab - public const int CertificateWarning = 2131296939; - - // aapt resource value: 0x7f0902bd - public const int ChangeLog = 2131296957; - - // aapt resource value: 0x7f0902bc - public const int ChangeLog_0_7 = 2131296956; - - // aapt resource value: 0x7f0902ba - public const int ChangeLog_0_8 = 2131296954; - - // aapt resource value: 0x7f0902b9 - public const int ChangeLog_0_8_1 = 2131296953; - - // aapt resource value: 0x7f0902b8 - public const int ChangeLog_0_8_2 = 2131296952; - - // aapt resource value: 0x7f0902b7 - public const int ChangeLog_0_8_3 = 2131296951; - - // aapt resource value: 0x7f0902b6 - public const int ChangeLog_0_8_4 = 2131296950; - - // aapt resource value: 0x7f0902b5 - public const int ChangeLog_0_8_5 = 2131296949; - - // aapt resource value: 0x7f0902b4 - public const int ChangeLog_0_8_6 = 2131296948; - - // aapt resource value: 0x7f0902b3 - public const int ChangeLog_0_9 = 2131296947; - - // aapt resource value: 0x7f0902b2 - public const int ChangeLog_0_9_1 = 2131296946; - - // aapt resource value: 0x7f0902b1 - public const int ChangeLog_0_9_2 = 2131296945; - - // aapt resource value: 0x7f0902b0 - public const int ChangeLog_0_9_3 = 2131296944; - - // aapt resource value: 0x7f0902af - public const int ChangeLog_0_9_3_r5 = 2131296943; - - // aapt resource value: 0x7f0902bb - public const int ChangeLog_keptDonate = 2131296955; - - // aapt resource value: 0x7f0902ae - public const int ChangeLog_title = 2131296942; - - // aapt resource value: 0x7f090121 - public const int CheckForFileChangesOnSave_key = 2131296545; - - // aapt resource value: 0x7f09022a - public const int CheckForFileChangesOnSave_summary = 2131296810; - - // aapt resource value: 0x7f090229 - public const int CheckForFileChangesOnSave_title = 2131296809; - - // aapt resource value: 0x7f09025c - public const int CheckingDatabaseForChanges = 2131296860; - - // aapt resource value: 0x7f090250 - public const int CheckingTargetFileForChanges = 2131296848; - - // aapt resource value: 0x7f09014f - public const int ClearClipboard = 2131296591; - - // aapt resource value: 0x7f090228 - public const int ClearOfflineCache_question = 2131296808; - - // aapt resource value: 0x7f090227 - public const int ClearOfflineCache_title = 2131296807; - - // aapt resource value: 0x7f090125 - public const int CopyToClipboardNotification_key = 2131296549; - - // aapt resource value: 0x7f09025e - public const int CouldNotLoadFromRemote = 2131296862; - - // aapt resource value: 0x7f09025d - public const int CouldNotSaveToRemote = 2131296861; - - // aapt resource value: 0x7f090292 - public const int CouldntLoadOtpAuxFile = 2131296914; - - // aapt resource value: 0x7f090293 - public const int CouldntLoadOtpAuxFile_Hint = 2131296915; - - // aapt resource value: 0x7f090299 - public const int CouldntParseOtpSecret = 2131296921; - - // aapt resource value: 0x7f090131 - public const int CreditsText = 2131296561; - - // aapt resource value: 0x7f090132 - public const int CreditsTextSFTP = 2131296562; - - // aapt resource value: 0x7f09024e - public const int DecodingDatabase = 2131296846; + // aapt resource value: 0x7f090248 + public const int AskDiscardChanges = 2131296840; // aapt resource value: 0x7f090249 - public const int DeletingEntry = 2131296841; + public const int AskDiscardChanges_title = 2131296841; - // aapt resource value: 0x7f09024a - public const int DeletingGroup = 2131296842; + // aapt resource value: 0x7f09023d + public const int AskOverwriteBinary = 2131296829; - // aapt resource value: 0x7f090257 - public const int DownloadingRemoteFile = 2131296855; + // aapt resource value: 0x7f090240 + public const int AskOverwriteBinary_no = 2131296832; - // aapt resource value: 0x7f090269 - public const int ErrorOcurred = 2131296873; + // aapt resource value: 0x7f09023e + public const int AskOverwriteBinary_title = 2131296830; - // aapt resource value: 0x7f09029b - public const int ErrorUpdatingOtpAuxFile = 2131296923; + // aapt resource value: 0x7f09023f + public const int AskOverwriteBinary_yes = 2131296831; - // aapt resource value: 0x7f09014b - public const int FileHandling_prefs = 2131296587; + // aapt resource value: 0x7f090247 + public const int AskReloadFile = 2131296839; - // aapt resource value: 0x7f090114 - public const int FileHandling_prefs_key = 2131296532; + // aapt resource value: 0x7f090246 + public const int AskReloadFile_title = 2131296838; - // aapt resource value: 0x7f090181 - public const int FileNotFound = 2131296641; + // aapt resource value: 0x7f090241 + public const int AttachFailed = 2131296833; - // aapt resource value: 0x7f09025a - public const int FilesInSync = 2131296858; + // aapt resource value: 0x7f090110 + public const int BinaryDirectory_default = 2131296528; - // aapt resource value: 0x7f090192 - public const int InvalidPassword = 2131296658; - - // aapt resource value: 0x7f09011b - public const int LastInfoVersionCode_key = 2131296539; - - // aapt resource value: 0x7f090261 - public const int LoadedFromRemoteInSync = 2131296865; - - // aapt resource value: 0x7f09011e - public const int LockWhenNavigateBack_key = 2131296542; - - // aapt resource value: 0x7f090222 - public const int LockWhenNavigateBack_summary = 2131296802; - - // aapt resource value: 0x7f090221 - public const int LockWhenNavigateBack_title = 2131296801; - - // aapt resource value: 0x7f09011d - public const int LockWhenScreenOff_key = 2131296541; - - // aapt resource value: 0x7f090220 - public const int LockWhenScreenOff_summary = 2131296800; - - // aapt resource value: 0x7f09021f - public const int LockWhenScreenOff_title = 2131296799; - - // aapt resource value: 0x7f090122 - public const int MarketURL = 2131296546; - - // aapt resource value: 0x7f09019c - public const int MaskedPassword = 2131296668; - - // aapt resource value: 0x7f090252 - public const int MessageSyncQuestion = 2131296850; - - // aapt resource value: 0x7f090255 - public const int NoOverwrite = 2131296853; - - // aapt resource value: 0x7f090260 - public const int NotifyOpenFromLocalDueToConflict = 2131296864; - - // aapt resource value: 0x7f090127 - public const int OpenKp2aKeyboardAutomatically_key = 2131296551; - - // aapt resource value: 0x7f090230 - public const int OpenKp2aKeyboardAutomatically_summary = 2131296816; - - // aapt resource value: 0x7f09022f - public const int OpenKp2aKeyboardAutomatically_title = 2131296815; - - // aapt resource value: 0x7f09029a - public const int OtpKeyError = 2131296922; - - // aapt resource value: 0x7f09024f - public const int ParsingDatabase = 2131296847; - - // aapt resource value: 0x7f09012d - public const int PreloadDatabaseEnabled_key = 2131296557; - - // aapt resource value: 0x7f090236 - public const int PreloadDatabaseEnabled_summary = 2131296822; - - // aapt resource value: 0x7f090235 - public const int PreloadDatabaseEnabled_title = 2131296821; - - // aapt resource value: 0x7f090115 - public const int QuickUnlockDefaultEnabled_key = 2131296533; - - // aapt resource value: 0x7f090200 - public const int QuickUnlockDefaultEnabled_summary = 2131296768; - - // aapt resource value: 0x7f0901ff - public const int QuickUnlockDefaultEnabled_title = 2131296767; - - // aapt resource value: 0x7f090119 - public const int QuickUnlockIconHidden16_key = 2131296537; - - // aapt resource value: 0x7f090204 - public const int QuickUnlockIconHidden16_summary = 2131296772; - - // aapt resource value: 0x7f090203 - public const int QuickUnlockIconHidden16_title = 2131296771; - - // aapt resource value: 0x7f090118 - public const int QuickUnlockIconHidden_key = 2131296536; - - // aapt resource value: 0x7f090202 - public const int QuickUnlockIconHidden_summary = 2131296770; - - // aapt resource value: 0x7f090201 - public const int QuickUnlockIconHidden_title = 2131296769; - - // aapt resource value: 0x7f090117 - public const int QuickUnlockLength_default = 2131296535; - - // aapt resource value: 0x7f090116 - public const int QuickUnlockLength_key = 2131296534; - - // aapt resource value: 0x7f090206 - public const int QuickUnlockLength_summary = 2131296774; - - // aapt resource value: 0x7f090205 - public const int QuickUnlockLength_title = 2131296773; - - // aapt resource value: 0x7f0901fd - public const int QuickUnlock_button = 2131296765; - - // aapt resource value: 0x7f090207 - public const int QuickUnlock_fail = 2131296775; - - // aapt resource value: 0x7f0901fc - public const int QuickUnlock_label = 2131296764; - - // aapt resource value: 0x7f0901fe - public const int QuickUnlock_lockButton = 2131296766; - - // aapt resource value: 0x7f09014a - public const int QuickUnlock_prefs = 2131296586; - - // aapt resource value: 0x7f090113 - public const int QuickUnlock_prefs_key = 2131296531; - - // aapt resource value: 0x7f09023c - public const int RecycleBin = 2131296828; - - // aapt resource value: 0x7f09010b - public const int RememberRecentFiles_key = 2131296523; - - // aapt resource value: 0x7f0901f0 - public const int RememberRecentFiles_summary = 2131296752; - - // aapt resource value: 0x7f0901ef - public const int RememberRecentFiles_title = 2131296751; - - // aapt resource value: 0x7f090263 - public const int RemoteDatabaseUnchanged = 2131296867; - - // aapt resource value: 0x7f090265 - public const int ResolvedCacheConflictByUsingLocalOtpAux = 2131296869; - - // aapt resource value: 0x7f090264 - public const int ResolvedCacheConflictByUsingRemoteOtpAux = 2131296868; - - // aapt resource value: 0x7f090259 - public const int RestoringRemoteFile = 2131296857; - - // aapt resource value: 0x7f0902a9 - public const int SCOPE_CURRENT_ENTRY_explanation = 2131296937; - - // aapt resource value: 0x7f0902a8 - public const int SCOPE_CURRENT_ENTRY_title = 2131296936; - - // aapt resource value: 0x7f0902a7 - public const int SCOPE_DATABASE_ACTIONS_explanation = 2131296935; - - // aapt resource value: 0x7f0902a6 - public const int SCOPE_DATABASE_ACTIONS_title = 2131296934; - - // aapt resource value: 0x7f09020d - public const int SaveAttachmentDialog_open = 2131296781; + // aapt resource value: 0x7f09010f + public const int BinaryDirectory_key = 2131296527; // aapt resource value: 0x7f09020c - public const int SaveAttachmentDialog_save = 2131296780; + public const int BinaryDirectory_summary = 2131296780; // aapt resource value: 0x7f09020b - public const int SaveAttachmentDialog_text = 2131296779; + public const int BinaryDirectory_title = 2131296779; - // aapt resource value: 0x7f09020a - public const int SaveAttachmentDialog_title = 2131296778; + // aapt resource value: 0x7f090271 + public const int CannotMoveGroupHere = 2131296881; - // aapt resource value: 0x7f09020f - public const int SaveAttachment_Failed = 2131296783; + // aapt resource value: 0x7f0902b2 + public const int CertificateFailure = 2131296946; - // aapt resource value: 0x7f09020e - public const int SaveAttachment_doneMessage = 2131296782; + // aapt resource value: 0x7f0902b1 + public const int CertificateWarning = 2131296945; - // aapt resource value: 0x7f09029c - public const int SavingOtpAuxFile = 2131296924; + // aapt resource value: 0x7f0902c3 + public const int ChangeLog = 2131296963; - // aapt resource value: 0x7f09024b - public const int SettingPassword = 2131296843; + // aapt resource value: 0x7f0902c2 + public const int ChangeLog_0_7 = 2131296962; - // aapt resource value: 0x7f09022c - public const int ShowCopyToClipboardNotification_summary = 2131296812; + // aapt resource value: 0x7f0902c0 + public const int ChangeLog_0_8 = 2131296960; - // aapt resource value: 0x7f09022b - public const int ShowCopyToClipboardNotification_title = 2131296811; + // aapt resource value: 0x7f0902bf + public const int ChangeLog_0_8_1 = 2131296959; - // aapt resource value: 0x7f09022e - public const int ShowKp2aKeyboardNotification_summary = 2131296814; + // aapt resource value: 0x7f0902be + public const int ChangeLog_0_8_2 = 2131296958; - // aapt resource value: 0x7f09022d - public const int ShowKp2aKeyboardNotification_title = 2131296813; + // aapt resource value: 0x7f0902bd + public const int ChangeLog_0_8_3 = 2131296957; - // aapt resource value: 0x7f09012c - public const int ShowUnlockedNotification_key = 2131296556; + // aapt resource value: 0x7f0902bc + public const int ChangeLog_0_8_4 = 2131296956; - // aapt resource value: 0x7f090234 - public const int ShowUnlockedNotification_summary = 2131296820; + // aapt resource value: 0x7f0902bb + public const int ChangeLog_0_8_5 = 2131296955; - // aapt resource value: 0x7f090233 - public const int ShowUnlockedNotification_title = 2131296819; + // aapt resource value: 0x7f0902ba + public const int ChangeLog_0_8_6 = 2131296954; - // aapt resource value: 0x7f09010a - public const int ShowUsernameInList_key = 2131296522; + // aapt resource value: 0x7f0902b9 + public const int ChangeLog_0_9 = 2131296953; - // aapt resource value: 0x7f0901ee - public const int ShowUsernameInList_summary = 2131296750; + // aapt resource value: 0x7f0902b8 + public const int ChangeLog_0_9_1 = 2131296952; - // aapt resource value: 0x7f0901ed - public const int ShowUsernameInList_title = 2131296749; + // aapt resource value: 0x7f0902b7 + public const int ChangeLog_0_9_2 = 2131296951; + + // aapt resource value: 0x7f0902b6 + public const int ChangeLog_0_9_3 = 2131296950; + + // aapt resource value: 0x7f0902b5 + public const int ChangeLog_0_9_3_r5 = 2131296949; + + // aapt resource value: 0x7f0902c1 + public const int ChangeLog_keptDonate = 2131296961; + + // aapt resource value: 0x7f0902b4 + public const int ChangeLog_title = 2131296948; // aapt resource value: 0x7f090123 - public const int SuggestionsURL = 2131296547; + public const int CheckForFileChangesOnSave_key = 2131296547; - // aapt resource value: 0x7f09025b - public const int SynchronizedDatabaseSuccessfully = 2131296859; + // aapt resource value: 0x7f090230 + public const int CheckForFileChangesOnSave_summary = 2131296816; - // aapt resource value: 0x7f090256 - public const int SynchronizingCachedDatabase = 2131296854; - - // aapt resource value: 0x7f090253 - public const int SynchronizingDatabase = 2131296851; - - // aapt resource value: 0x7f090266 - public const int SynchronizingOtpAuxFile = 2131296870; - - // aapt resource value: 0x7f090109 - public const int TanExpiresOnUse_key = 2131296521; - - // aapt resource value: 0x7f0901ec - public const int TanExpiresOnUse_summary = 2131296748; - - // aapt resource value: 0x7f0901eb - public const int TanExpiresOnUse_title = 2131296747; - - // aapt resource value: 0x7f090251 - public const int TitleSyncQuestion = 2131296849; - - // aapt resource value: 0x7f09024d - public const int TransformingKey = 2131296845; - - // aapt resource value: 0x7f090124 - public const int TranslationURL = 2131296548; - - // aapt resource value: 0x7f09024c - public const int UndoingChanges = 2131296844; + // aapt resource value: 0x7f09022f + public const int CheckForFileChangesOnSave_title = 2131296815; // aapt resource value: 0x7f090262 - public const int UpdatedCachedFileOnLoad = 2131296866; + public const int CheckingDatabaseForChanges = 2131296866; - // aapt resource value: 0x7f09025f - public const int UpdatedRemoteFileOnLoad = 2131296863; + // aapt resource value: 0x7f090256 + public const int CheckingTargetFileForChanges = 2131296854; - // aapt resource value: 0x7f090258 - public const int UploadingFile = 2131296856; + // aapt resource value: 0x7f090152 + public const int ClearClipboard = 2131296594; - // aapt resource value: 0x7f09011a - public const int UsageCount_key = 2131296538; + // aapt resource value: 0x7f09022e + public const int ClearOfflineCache_question = 2131296814; - // aapt resource value: 0x7f09011c - public const int UseFileTransactions_key = 2131296540; + // aapt resource value: 0x7f09022d + public const int ClearOfflineCache_title = 2131296813; - // aapt resource value: 0x7f09021e - public const int UseFileTransactions_summary = 2131296798; + // aapt resource value: 0x7f090128 + public const int CopyToClipboardNotification_key = 2131296552; - // aapt resource value: 0x7f09021d - public const int UseFileTransactions_title = 2131296797; + // aapt resource value: 0x7f090264 + public const int CouldNotLoadFromRemote = 2131296868; - // aapt resource value: 0x7f090126 - public const int UseKp2aKeyboard_key = 2131296550; + // aapt resource value: 0x7f090263 + public const int CouldNotSaveToRemote = 2131296867; - // aapt resource value: 0x7f09011f - public const int UseOfflineCache_key = 2131296543; + // aapt resource value: 0x7f090298 + public const int CouldntLoadOtpAuxFile = 2131296920; - // aapt resource value: 0x7f090224 - public const int UseOfflineCache_summary = 2131296804; + // aapt resource value: 0x7f090299 + public const int CouldntLoadOtpAuxFile_Hint = 2131296921; - // aapt resource value: 0x7f090223 - public const int UseOfflineCache_title = 2131296803; + // aapt resource value: 0x7f09029f + public const int CouldntParseOtpSecret = 2131296927; - // aapt resource value: 0x7f090254 - public const int YesSynchronize = 2131296852; - - // aapt resource value: 0x7f09012e - public const int about_feedback = 2131296558; - - // aapt resource value: 0x7f09012f - public const int about_homepage = 2131296559; - - // aapt resource value: 0x7f090133 - public const int accept = 2131296563; - - // aapt resource value: 0x7f090217 - public const int add_binary = 2131296791; + // aapt resource value: 0x7f090134 + public const int CreditsText = 2131296564; // aapt resource value: 0x7f090135 - public const int add_entry = 2131296565; + public const int CreditsTextSFTP = 2131296565; - // aapt resource value: 0x7f090218 - public const int add_extra_string = 2131296792; + // aapt resource value: 0x7f090254 + public const int DecodingDatabase = 2131296852; - // aapt resource value: 0x7f090137 - public const int add_group = 2131296567; + // aapt resource value: 0x7f09024f + public const int DeletingEntry = 2131296847; - // aapt resource value: 0x7f090138 - public const int add_group_title = 2131296568; + // aapt resource value: 0x7f090250 + public const int DeletingGroup = 2131296848; + + // aapt resource value: 0x7f09025d + public const int DownloadingRemoteFile = 2131296861; + + // aapt resource value: 0x7f09026f + public const int ErrorOcurred = 2131296879; + + // aapt resource value: 0x7f0902a1 + public const int ErrorUpdatingOtpAuxFile = 2131296929; + + // aapt resource value: 0x7f09014e + public const int FileHandling_prefs = 2131296590; + + // aapt resource value: 0x7f090115 + public const int FileHandling_prefs_key = 2131296533; + + // aapt resource value: 0x7f090184 + public const int FileNotFound = 2131296644; + + // aapt resource value: 0x7f090260 + public const int FilesInSync = 2131296864; + + // aapt resource value: 0x7f090195 + public const int InvalidPassword = 2131296661; + + // aapt resource value: 0x7f09011c + public const int LastInfoVersionCode_key = 2131296540; + + // aapt resource value: 0x7f090267 + public const int LoadedFromRemoteInSync = 2131296871; + + // aapt resource value: 0x7f09011f + public const int LockWhenNavigateBack_key = 2131296543; + + // aapt resource value: 0x7f090225 + public const int LockWhenNavigateBack_summary = 2131296805; + + // aapt resource value: 0x7f090224 + public const int LockWhenNavigateBack_title = 2131296804; + + // aapt resource value: 0x7f09011e + public const int LockWhenScreenOff_key = 2131296542; + + // aapt resource value: 0x7f090223 + public const int LockWhenScreenOff_summary = 2131296803; + + // aapt resource value: 0x7f090222 + public const int LockWhenScreenOff_title = 2131296802; + + // aapt resource value: 0x7f090125 + public const int MarketURL = 2131296549; + + // aapt resource value: 0x7f09019f + public const int MaskedPassword = 2131296671; + + // aapt resource value: 0x7f090258 + public const int MessageSyncQuestion = 2131296856; + + // aapt resource value: 0x7f090120 + public const int NoDonateOption_key = 2131296544; + + // aapt resource value: 0x7f090228 + public const int NoDonateOption_question = 2131296808; + + // aapt resource value: 0x7f090227 + public const int NoDonateOption_summary = 2131296807; + + // aapt resource value: 0x7f090226 + public const int NoDonateOption_title = 2131296806; + + // aapt resource value: 0x7f09025b + public const int NoOverwrite = 2131296859; + + // aapt resource value: 0x7f090266 + public const int NotifyOpenFromLocalDueToConflict = 2131296870; + + // aapt resource value: 0x7f09012a + public const int OpenKp2aKeyboardAutomatically_key = 2131296554; + + // aapt resource value: 0x7f090236 + public const int OpenKp2aKeyboardAutomatically_summary = 2131296822; + + // aapt resource value: 0x7f090235 + public const int OpenKp2aKeyboardAutomatically_title = 2131296821; + + // aapt resource value: 0x7f0902a0 + public const int OtpKeyError = 2131296928; + + // aapt resource value: 0x7f090255 + public const int ParsingDatabase = 2131296853; + + // aapt resource value: 0x7f090130 + public const int PreloadDatabaseEnabled_key = 2131296560; + + // aapt resource value: 0x7f09023c + public const int PreloadDatabaseEnabled_summary = 2131296828; + + // aapt resource value: 0x7f09023b + public const int PreloadDatabaseEnabled_title = 2131296827; + + // aapt resource value: 0x7f090116 + public const int QuickUnlockDefaultEnabled_key = 2131296534; + + // aapt resource value: 0x7f090203 + public const int QuickUnlockDefaultEnabled_summary = 2131296771; + + // aapt resource value: 0x7f090202 + public const int QuickUnlockDefaultEnabled_title = 2131296770; + + // aapt resource value: 0x7f09011a + public const int QuickUnlockIconHidden16_key = 2131296538; + + // aapt resource value: 0x7f090207 + public const int QuickUnlockIconHidden16_summary = 2131296775; + + // aapt resource value: 0x7f090206 + public const int QuickUnlockIconHidden16_title = 2131296774; + + // aapt resource value: 0x7f090119 + public const int QuickUnlockIconHidden_key = 2131296537; + + // aapt resource value: 0x7f090205 + public const int QuickUnlockIconHidden_summary = 2131296773; + + // aapt resource value: 0x7f090204 + public const int QuickUnlockIconHidden_title = 2131296772; + + // aapt resource value: 0x7f090118 + public const int QuickUnlockLength_default = 2131296536; + + // aapt resource value: 0x7f090117 + public const int QuickUnlockLength_key = 2131296535; + + // aapt resource value: 0x7f090209 + public const int QuickUnlockLength_summary = 2131296777; + + // aapt resource value: 0x7f090208 + public const int QuickUnlockLength_title = 2131296776; + + // aapt resource value: 0x7f090200 + public const int QuickUnlock_button = 2131296768; + + // aapt resource value: 0x7f09020a + public const int QuickUnlock_fail = 2131296778; + + // aapt resource value: 0x7f0901ff + public const int QuickUnlock_label = 2131296767; + + // aapt resource value: 0x7f090201 + public const int QuickUnlock_lockButton = 2131296769; + + // aapt resource value: 0x7f09014d + public const int QuickUnlock_prefs = 2131296589; + + // aapt resource value: 0x7f090114 + public const int QuickUnlock_prefs_key = 2131296532; + + // aapt resource value: 0x7f090242 + public const int RecycleBin = 2131296834; + + // aapt resource value: 0x7f09010c + public const int RememberRecentFiles_key = 2131296524; + + // aapt resource value: 0x7f0901f3 + public const int RememberRecentFiles_summary = 2131296755; + + // aapt resource value: 0x7f0901f2 + public const int RememberRecentFiles_title = 2131296754; + + // aapt resource value: 0x7f090269 + public const int RemoteDatabaseUnchanged = 2131296873; + + // aapt resource value: 0x7f09026b + public const int ResolvedCacheConflictByUsingLocalOtpAux = 2131296875; + + // aapt resource value: 0x7f09026a + public const int ResolvedCacheConflictByUsingRemoteOtpAux = 2131296874; + + // aapt resource value: 0x7f09025f + public const int RestoringRemoteFile = 2131296863; + + // aapt resource value: 0x7f0902af + public const int SCOPE_CURRENT_ENTRY_explanation = 2131296943; + + // aapt resource value: 0x7f0902ae + public const int SCOPE_CURRENT_ENTRY_title = 2131296942; + + // aapt resource value: 0x7f0902ad + public const int SCOPE_DATABASE_ACTIONS_explanation = 2131296941; + + // aapt resource value: 0x7f0902ac + public const int SCOPE_DATABASE_ACTIONS_title = 2131296940; + + // aapt resource value: 0x7f090210 + public const int SaveAttachmentDialog_open = 2131296784; + + // aapt resource value: 0x7f09020f + public const int SaveAttachmentDialog_save = 2131296783; + + // aapt resource value: 0x7f09020e + public const int SaveAttachmentDialog_text = 2131296782; + + // aapt resource value: 0x7f09020d + public const int SaveAttachmentDialog_title = 2131296781; + + // aapt resource value: 0x7f090212 + public const int SaveAttachment_Failed = 2131296786; + + // aapt resource value: 0x7f090211 + public const int SaveAttachment_doneMessage = 2131296785; + + // aapt resource value: 0x7f0902a2 + public const int SavingOtpAuxFile = 2131296930; + + // aapt resource value: 0x7f090251 + public const int SettingPassword = 2131296849; + + // aapt resource value: 0x7f090232 + public const int ShowCopyToClipboardNotification_summary = 2131296818; + + // aapt resource value: 0x7f090231 + public const int ShowCopyToClipboardNotification_title = 2131296817; + + // aapt resource value: 0x7f090234 + public const int ShowKp2aKeyboardNotification_summary = 2131296820; + + // aapt resource value: 0x7f090233 + public const int ShowKp2aKeyboardNotification_title = 2131296819; + + // aapt resource value: 0x7f09012f + public const int ShowUnlockedNotification_key = 2131296559; + + // aapt resource value: 0x7f09023a + public const int ShowUnlockedNotification_summary = 2131296826; + + // aapt resource value: 0x7f090239 + public const int ShowUnlockedNotification_title = 2131296825; + + // aapt resource value: 0x7f09010b + public const int ShowUsernameInList_key = 2131296523; + + // aapt resource value: 0x7f0901f1 + public const int ShowUsernameInList_summary = 2131296753; + + // aapt resource value: 0x7f0901f0 + public const int ShowUsernameInList_title = 2131296752; + + // aapt resource value: 0x7f090126 + public const int SuggestionsURL = 2131296550; + + // aapt resource value: 0x7f090261 + public const int SynchronizedDatabaseSuccessfully = 2131296865; + + // aapt resource value: 0x7f09025c + public const int SynchronizingCachedDatabase = 2131296860; + + // aapt resource value: 0x7f090259 + public const int SynchronizingDatabase = 2131296857; + + // aapt resource value: 0x7f09026c + public const int SynchronizingOtpAuxFile = 2131296876; + + // aapt resource value: 0x7f09010a + public const int TanExpiresOnUse_key = 2131296522; + + // aapt resource value: 0x7f0901ef + public const int TanExpiresOnUse_summary = 2131296751; + + // aapt resource value: 0x7f0901ee + public const int TanExpiresOnUse_title = 2131296750; + + // aapt resource value: 0x7f090257 + public const int TitleSyncQuestion = 2131296855; + + // aapt resource value: 0x7f090253 + public const int TransformingKey = 2131296851; + + // aapt resource value: 0x7f090127 + public const int TranslationURL = 2131296551; + + // aapt resource value: 0x7f090252 + public const int UndoingChanges = 2131296850; + + // aapt resource value: 0x7f090268 + public const int UpdatedCachedFileOnLoad = 2131296872; + + // aapt resource value: 0x7f090265 + public const int UpdatedRemoteFileOnLoad = 2131296869; + + // aapt resource value: 0x7f09025e + public const int UploadingFile = 2131296862; + + // aapt resource value: 0x7f09011b + public const int UsageCount_key = 2131296539; + + // aapt resource value: 0x7f09011d + public const int UseFileTransactions_key = 2131296541; + + // aapt resource value: 0x7f090221 + public const int UseFileTransactions_summary = 2131296801; + + // aapt resource value: 0x7f090220 + public const int UseFileTransactions_title = 2131296800; + + // aapt resource value: 0x7f090129 + public const int UseKp2aKeyboard_key = 2131296553; + + // aapt resource value: 0x7f090121 + public const int UseOfflineCache_key = 2131296545; + + // aapt resource value: 0x7f09022a + public const int UseOfflineCache_summary = 2131296810; + + // aapt resource value: 0x7f090229 + public const int UseOfflineCache_title = 2131296809; + + // aapt resource value: 0x7f09025a + public const int YesSynchronize = 2131296858; + + // aapt resource value: 0x7f090131 + public const int about_feedback = 2131296561; + + // aapt resource value: 0x7f090132 + public const int about_homepage = 2131296562; + + // aapt resource value: 0x7f090124 + public const int about_prefs_key = 2131296548; // aapt resource value: 0x7f090136 - public const int add_url_entry = 2131296566; + public const int accept = 2131296566; + + // aapt resource value: 0x7f09021a + public const int add_binary = 2131296794; + + // aapt resource value: 0x7f090138 + public const int add_entry = 2131296568; + + // aapt resource value: 0x7f09021b + public const int add_extra_string = 2131296795; + + // aapt resource value: 0x7f09013a + public const int add_group = 2131296570; + + // aapt resource value: 0x7f09013b + public const int add_group_title = 2131296571; + + // aapt resource value: 0x7f090139 + public const int add_url_entry = 2131296569; // aapt resource value: 0x7f09005a public const int added_word = 2131296346; @@ -4061,11 +4073,11 @@ namespace keepass2android // aapt resource value: 0x7f0900ef public const int afc_yesterday = 2131296495; - // aapt resource value: 0x7f09013a - public const int algorithm = 2131296570; + // aapt resource value: 0x7f09013d + public const int algorithm = 2131296573; - // aapt resource value: 0x7f09013b - public const int algorithm_colon = 2131296571; + // aapt resource value: 0x7f09013e + public const int algorithm_colon = 2131296574; // aapt resource value: 0x7f0900fc public const int algorithm_key = 2131296508; @@ -4148,26 +4160,26 @@ namespace keepass2android // aapt resource value: 0x7f0900fd public const int app_key = 2131296509; - // aapt resource value: 0x7f09013c - public const int app_name = 2131296572; + // aapt resource value: 0x7f09013f + public const int app_name = 2131296575; - // aapt resource value: 0x7f09013e - public const int app_name_nonet = 2131296574; + // aapt resource value: 0x7f090141 + public const int app_name_nonet = 2131296577; - // aapt resource value: 0x7f090140 - public const int app_timeout = 2131296576; + // aapt resource value: 0x7f090143 + public const int app_timeout = 2131296579; // aapt resource value: 0x7f0900fe public const int app_timeout_key = 2131296510; - // aapt resource value: 0x7f090141 - public const int app_timeout_summary = 2131296577; + // aapt resource value: 0x7f090144 + public const int app_timeout_summary = 2131296580; - // aapt resource value: 0x7f090145 - public const int application = 2131296581; + // aapt resource value: 0x7f090148 + public const int application = 2131296584; - // aapt resource value: 0x7f090146 - public const int application_settings = 2131296582; + // aapt resource value: 0x7f090149 + public const int application_settings = 2131296585; // aapt resource value: 0x7f090010 public const int auth_client_needs_enabling_title = 2131296272; @@ -4187,8 +4199,8 @@ namespace keepass2android // aapt resource value: 0x7f09000f public const int auth_client_using_bad_version_title = 2131296271; - // aapt resource value: 0x7f0901e3 - public const int author = 2131296739; + // aapt resource value: 0x7f0901e6 + public const int author = 2131296742; // aapt resource value: 0x7f090047 public const int auto_cap = 2131296327; @@ -4223,8 +4235,8 @@ namespace keepass2android // aapt resource value: 0x7f090088 public const int auto_submit_summary = 2131296392; - // aapt resource value: 0x7f090154 - public const int available_through_keyboard = 2131296596; + // aapt resource value: 0x7f090157 + public const int available_through_keyboard = 2131296599; // aapt resource value: 0x7f090055 public const int bigram_suggestion = 2131296341; @@ -4232,38 +4244,38 @@ namespace keepass2android // aapt resource value: 0x7f090056 public const int bigram_suggestion_summary = 2131296342; - // aapt resource value: 0x7f09014e - public const int brackets = 2131296590; + // aapt resource value: 0x7f090151 + public const int brackets = 2131296593; - // aapt resource value: 0x7f0902c2 - public const int browser_intall_text = 2131296962; + // aapt resource value: 0x7f0902c8 + public const int browser_intall_text = 2131296968; - // aapt resource value: 0x7f0902c3 - public const int building_search_idx = 2131296963; + // aapt resource value: 0x7f0902c9 + public const int building_search_idx = 2131296969; - // aapt resource value: 0x7f090286 - public const int button_change_location = 2131296902; + // aapt resource value: 0x7f09028c + public const int button_change_location = 2131296908; // aapt resource value: 0x7f090081 public const int cancel = 2131296385; - // aapt resource value: 0x7f0901f4 - public const int caseSensitive = 2131296756; + // aapt resource value: 0x7f0901f7 + public const int caseSensitive = 2131296759; // aapt resource value: 0x7f0900a5 public const int change_entry = 2131296421; - // aapt resource value: 0x7f090150 - public const int clipboard_timeout = 2131296592; + // aapt resource value: 0x7f090153 + public const int clipboard_timeout = 2131296595; - // aapt resource value: 0x7f090128 - public const int clipboard_timeout_default = 2131296552; + // aapt resource value: 0x7f09012b + public const int clipboard_timeout_default = 2131296555; // aapt resource value: 0x7f090100 public const int clipboard_timeout_key = 2131296512; - // aapt resource value: 0x7f090151 - public const int clipboard_timeout_summary = 2131296593; + // aapt resource value: 0x7f090154 + public const int clipboard_timeout_summary = 2131296596; // aapt resource value: 0x7f09008a public const int close_the_keyboard = 2131296394; @@ -4313,134 +4325,134 @@ namespace keepass2android // aapt resource value: 0x7f09000e public const int common_signin_button_text_long = 2131296270; - // aapt resource value: 0x7f0901e9 - public const int contributors = 2131296745; + // aapt resource value: 0x7f0901ec + public const int contributors = 2131296748; - // aapt resource value: 0x7f090153 - public const int copy_password = 2131296595; + // aapt resource value: 0x7f090156 + public const int copy_password = 2131296598; - // aapt resource value: 0x7f090152 - public const int copy_username = 2131296594; + // aapt resource value: 0x7f090155 + public const int copy_username = 2131296597; - // aapt resource value: 0x7f0901c0 - public const int create_database = 2131296704; - - // aapt resource value: 0x7f090157 - public const int creating_db_key = 2131296599; - - // aapt resource value: 0x7f09021c - public const int credentials_dialog_title = 2131296796; - - // aapt resource value: 0x7f0901e6 - public const int credit_android_filechooser = 2131296742; - - // aapt resource value: 0x7f0901e7 - public const int credit_keyboard = 2131296743; - - // aapt resource value: 0x7f0901e5 - public const int credit_plugin1 = 2131296741; - - // aapt resource value: 0x7f090158 - public const int current_group = 2131296600; - - // aapt resource value: 0x7f090159 - public const int current_group_root = 2131296601; + // aapt resource value: 0x7f0901c3 + public const int create_database = 2131296707; // aapt resource value: 0x7f09015a - public const int database = 2131296602; + public const int creating_db_key = 2131296602; - // aapt resource value: 0x7f090267 - public const int database_file = 2131296871; + // aapt resource value: 0x7f09021f + public const int credentials_dialog_title = 2131296799; - // aapt resource value: 0x7f09021a - public const int database_loaded_quickunlock_enabled = 2131296794; + // aapt resource value: 0x7f0901e9 + public const int credit_android_filechooser = 2131296745; - // aapt resource value: 0x7f09021b - public const int database_loaded_unlocked = 2131296795; + // aapt resource value: 0x7f0901ea + public const int credit_keyboard = 2131296746; - // aapt resource value: 0x7f090283 - public const int database_location = 2131296899; + // aapt resource value: 0x7f0901e8 + public const int credit_plugin1 = 2131296744; - // aapt resource value: 0x7f0901ca - public const int database_name = 2131296714; + // aapt resource value: 0x7f09015b + public const int current_group = 2131296603; - // aapt resource value: 0x7f09010d - public const int database_name_key = 2131296525; + // aapt resource value: 0x7f09015c + public const int current_group_root = 2131296604; + + // aapt resource value: 0x7f09015d + public const int database = 2131296605; + + // aapt resource value: 0x7f09026d + public const int database_file = 2131296877; + + // aapt resource value: 0x7f09021d + public const int database_loaded_quickunlock_enabled = 2131296797; + + // aapt resource value: 0x7f09021e + public const int database_loaded_unlocked = 2131296798; + + // aapt resource value: 0x7f090289 + public const int database_location = 2131296905; + + // aapt resource value: 0x7f0901cd + public const int database_name = 2131296717; + + // aapt resource value: 0x7f09010e + public const int database_name_key = 2131296526; // aapt resource value: 0x7f090101 public const int db_key = 2131296513; - // aapt resource value: 0x7f0902c4 - public const int decrypting_db = 2131296964; + // aapt resource value: 0x7f0902ca + public const int decrypting_db = 2131296970; - // aapt resource value: 0x7f0902c5 - public const int decrypting_entry = 2131296965; + // aapt resource value: 0x7f0902cb + public const int decrypting_entry = 2131296971; - // aapt resource value: 0x7f0902c6 - public const int default_checkbox = 2131296966; + // aapt resource value: 0x7f0902cc + public const int default_checkbox = 2131296972; // aapt resource value: 0x7f0900f3 public const int default_file_path = 2131296499; - // aapt resource value: 0x7f0901cb - public const int default_username = 2131296715; + // aapt resource value: 0x7f0901ce + public const int default_username = 2131296718; - // aapt resource value: 0x7f09010c - public const int default_username_key = 2131296524; + // aapt resource value: 0x7f09010d + public const int default_username_key = 2131296525; - // aapt resource value: 0x7f090219 - public const int delete_extra_string = 2131296793; + // aapt resource value: 0x7f09021c + public const int delete_extra_string = 2131296796; - // aapt resource value: 0x7f090134 - public const int deny = 2131296564; + // aapt resource value: 0x7f090137 + public const int deny = 2131296567; - // aapt resource value: 0x7f09012a - public const int design_default = 2131296554; + // aapt resource value: 0x7f09012d + public const int design_default = 2131296557; - // aapt resource value: 0x7f090107 - public const int design_key = 2131296519; + // aapt resource value: 0x7f090108 + public const int design_key = 2131296520; - // aapt resource value: 0x7f0902be - public const int design_title = 2131296958; + // aapt resource value: 0x7f0902c4 + public const int design_title = 2131296964; - // aapt resource value: 0x7f09015b - public const int digits = 2131296603; + // aapt resource value: 0x7f09015e + public const int digits = 2131296606; - // aapt resource value: 0x7f09015c - public const int disclaimer_formal = 2131296604; + // aapt resource value: 0x7f09015f + public const int disclaimer_formal = 2131296607; - // aapt resource value: 0x7f090148 - public const int display_prefs = 2131296584; + // aapt resource value: 0x7f09014b + public const int display_prefs = 2131296587; - // aapt resource value: 0x7f090112 - public const int display_prefs_key = 2131296530; + // aapt resource value: 0x7f090113 + public const int display_prefs_key = 2131296531; - // aapt resource value: 0x7f09026d - public const int donate_bday_question = 2131296877; + // aapt resource value: 0x7f090273 + public const int donate_bday_question = 2131296883; - // aapt resource value: 0x7f09026e - public const int donate_missedbday_question = 2131296878; + // aapt resource value: 0x7f090274 + public const int donate_missedbday_question = 2131296884; - // aapt resource value: 0x7f09026c - public const int donate_question = 2131296876; + // aapt resource value: 0x7f090272 + public const int donate_question = 2131296882; // aapt resource value: 0x7f0900f4 public const int donate_url = 2131296500; - // aapt resource value: 0x7f090139 - public const int edit_group_title = 2131296569; + // aapt resource value: 0x7f09013c + public const int edit_group_title = 2131296572; - // aapt resource value: 0x7f09015d - public const int ellipsis = 2131296605; + // aapt resource value: 0x7f090160 + public const int ellipsis = 2131296608; - // aapt resource value: 0x7f0902c0 - public const int enable_plugin_question = 2131296960; + // aapt resource value: 0x7f0902c6 + public const int enable_plugin_question = 2131296966; - // aapt resource value: 0x7f0902bf - public const int enable_plugin_title = 2131296959; + // aapt resource value: 0x7f0902c5 + public const int enable_plugin_title = 2131296965; - // aapt resource value: 0x7f0901fb - public const int enable_quickunlock = 2131296763; + // aapt resource value: 0x7f0901fe + public const int enable_quickunlock = 2131296766; // aapt resource value: 0x7f0900a3 public const int english_ime_debug_settings = 2131296419; @@ -4454,287 +4466,287 @@ namespace keepass2android // aapt resource value: 0x7f090036 public const int english_ime_settings = 2131296310; - // aapt resource value: 0x7f09015e - public const int enter_filename = 2131296606; - - // aapt resource value: 0x7f0901fa - public const int enter_filename_details_create_import = 2131296762; - - // aapt resource value: 0x7f0901f9 - public const int enter_filename_details_url = 2131296761; - - // aapt resource value: 0x7f090274 - public const int enter_sftp_login_title = 2131296884; - - // aapt resource value: 0x7f09015f - public const int entry_accessed = 2131296607; - - // aapt resource value: 0x7f0902c7 - public const int entry_and_or = 2131296967; - - // aapt resource value: 0x7f09016f - public const int entry_binaries = 2131296623; - - // aapt resource value: 0x7f090160 - public const int entry_cancel = 2131296608; - // aapt resource value: 0x7f090161 - public const int entry_comment = 2131296609; + public const int enter_filename = 2131296609; - // aapt resource value: 0x7f090164 - public const int entry_confpassword = 2131296612; + // aapt resource value: 0x7f0901fd + public const int enter_filename_details_create_import = 2131296765; - // aapt resource value: 0x7f090165 - public const int entry_created = 2131296613; - - // aapt resource value: 0x7f090166 - public const int entry_expires = 2131296614; - - // aapt resource value: 0x7f09016e - public const int entry_extra_strings = 2131296622; - - // aapt resource value: 0x7f090167 - public const int entry_keyfile = 2131296615; - - // aapt resource value: 0x7f090168 - public const int entry_modified = 2131296616; - - // aapt resource value: 0x7f090163 - public const int entry_override_url = 2131296611; - - // aapt resource value: 0x7f090169 - public const int entry_password = 2131296617; - - // aapt resource value: 0x7f09016a - public const int entry_save = 2131296618; - - // aapt resource value: 0x7f090162 - public const int entry_tags = 2131296610; - - // aapt resource value: 0x7f09016b - public const int entry_title = 2131296619; - - // aapt resource value: 0x7f09016c - public const int entry_url = 2131296620; - - // aapt resource value: 0x7f09016d - public const int entry_user_name = 2131296621; - - // aapt resource value: 0x7f09028e - public const int error_adding_keyfile = 2131296910; - - // aapt resource value: 0x7f0902c8 - public const int error_arc4 = 2131296968; - - // aapt resource value: 0x7f090170 - public const int error_can_not_handle_uri = 2131296624; - - // aapt resource value: 0x7f090171 - public const int error_could_not_create_group = 2131296625; - - // aapt resource value: 0x7f090172 - public const int error_could_not_create_parent = 2131296626; - - // aapt resource value: 0x7f090173 - public const int error_database_exists = 2131296627; - - // aapt resource value: 0x7f090174 - public const int error_database_settings = 2131296628; - - // aapt resource value: 0x7f090175 - public const int error_failed_to_launch_link = 2131296629; - - // aapt resource value: 0x7f090177 - public const int error_file_not_create = 2131296631; - - // aapt resource value: 0x7f090176 - public const int error_filename_required = 2131296630; - - // aapt resource value: 0x7f090178 - public const int error_invalid_db = 2131296632; - - // aapt resource value: 0x7f090212 - public const int error_invalid_expiry_date = 2131296786; - - // aapt resource value: 0x7f090179 - public const int error_invalid_path = 2131296633; - - // aapt resource value: 0x7f09017a - public const int error_no_name = 2131296634; - - // aapt resource value: 0x7f09017b - public const int error_nopass = 2131296635; - - // aapt resource value: 0x7f0902c9 - public const int error_out_of_memory = 2131296969; - - // aapt resource value: 0x7f09017c - public const int error_pass_gen_type = 2131296636; - - // aapt resource value: 0x7f09017d - public const int error_pass_match = 2131296637; - - // aapt resource value: 0x7f09017e - public const int error_rounds_not_number = 2131296638; - - // aapt resource value: 0x7f0902ca - public const int error_rounds_too_large = 2131296970; - - // aapt resource value: 0x7f090213 - public const int error_string_key = 2131296787; - - // aapt resource value: 0x7f09017f - public const int error_title_required = 2131296639; - - // aapt resource value: 0x7f090180 - public const int error_wrong_length = 2131296640; - - // aapt resource value: 0x7f0901f2 - public const int excludeExpiredEntries = 2131296754; - - // aapt resource value: 0x7f0901ce - public const int export_database_successful = 2131296718; - - // aapt resource value: 0x7f0902ad - public const int export_fileformats_title = 2131296941; - - // aapt resource value: 0x7f09014d - public const int export_prefs = 2131296589; - - // aapt resource value: 0x7f0901cd - public const int exporting_database = 2131296717; - - // aapt resource value: 0x7f090214 - public const int field_name = 2131296788; - - // aapt resource value: 0x7f090215 - public const int field_value = 2131296789; - - // aapt resource value: 0x7f090182 - public const int file_browser = 2131296642; - - // aapt resource value: 0x7f090282 - public const int filestorage_setup_title = 2131296898; - - // aapt resource value: 0x7f09027e - public const int filestoragehelp_dropboxKP2A = 2131296894; - - // aapt resource value: 0x7f090277 - public const int filestoragename_androidget = 2131296887; - - // aapt resource value: 0x7f090278 - public const int filestoragename_androidsend = 2131296888; - - // aapt resource value: 0x7f09027c - public const int filestoragename_dropbox = 2131296892; - - // aapt resource value: 0x7f09027d - public const int filestoragename_dropboxKP2A = 2131296893; - - // aapt resource value: 0x7f090276 - public const int filestoragename_file = 2131296886; - - // aapt resource value: 0x7f090279 - public const int filestoragename_ftp = 2131296889; - - // aapt resource value: 0x7f09027f - public const int filestoragename_gdrive = 2131296895; + // aapt resource value: 0x7f0901fc + public const int enter_filename_details_url = 2131296764; // aapt resource value: 0x7f09027a - public const int filestoragename_http = 2131296890; + public const int enter_sftp_login_title = 2131296890; - // aapt resource value: 0x7f09027b - public const int filestoragename_https = 2131296891; + // aapt resource value: 0x7f090162 + public const int entry_accessed = 2131296610; - // aapt resource value: 0x7f090281 - public const int filestoragename_sftp = 2131296897; + // aapt resource value: 0x7f0902cd + public const int entry_and_or = 2131296973; + + // aapt resource value: 0x7f090172 + public const int entry_binaries = 2131296626; + + // aapt resource value: 0x7f090163 + public const int entry_cancel = 2131296611; + + // aapt resource value: 0x7f090164 + public const int entry_comment = 2131296612; + + // aapt resource value: 0x7f090167 + public const int entry_confpassword = 2131296615; + + // aapt resource value: 0x7f090168 + public const int entry_created = 2131296616; + + // aapt resource value: 0x7f090169 + public const int entry_expires = 2131296617; + + // aapt resource value: 0x7f090171 + public const int entry_extra_strings = 2131296625; + + // aapt resource value: 0x7f09016a + public const int entry_keyfile = 2131296618; + + // aapt resource value: 0x7f09016b + public const int entry_modified = 2131296619; + + // aapt resource value: 0x7f090166 + public const int entry_override_url = 2131296614; + + // aapt resource value: 0x7f09016c + public const int entry_password = 2131296620; + + // aapt resource value: 0x7f09016d + public const int entry_save = 2131296621; + + // aapt resource value: 0x7f090165 + public const int entry_tags = 2131296613; + + // aapt resource value: 0x7f09016e + public const int entry_title = 2131296622; + + // aapt resource value: 0x7f09016f + public const int entry_url = 2131296623; + + // aapt resource value: 0x7f090170 + public const int entry_user_name = 2131296624; + + // aapt resource value: 0x7f090294 + public const int error_adding_keyfile = 2131296916; + + // aapt resource value: 0x7f0902ce + public const int error_arc4 = 2131296974; + + // aapt resource value: 0x7f090173 + public const int error_can_not_handle_uri = 2131296627; + + // aapt resource value: 0x7f090174 + public const int error_could_not_create_group = 2131296628; + + // aapt resource value: 0x7f090175 + public const int error_could_not_create_parent = 2131296629; + + // aapt resource value: 0x7f090176 + public const int error_database_exists = 2131296630; + + // aapt resource value: 0x7f090177 + public const int error_database_settings = 2131296631; + + // aapt resource value: 0x7f090178 + public const int error_failed_to_launch_link = 2131296632; + + // aapt resource value: 0x7f09017a + public const int error_file_not_create = 2131296634; + + // aapt resource value: 0x7f090179 + public const int error_filename_required = 2131296633; + + // aapt resource value: 0x7f09017b + public const int error_invalid_db = 2131296635; + + // aapt resource value: 0x7f090215 + public const int error_invalid_expiry_date = 2131296789; + + // aapt resource value: 0x7f09017c + public const int error_invalid_path = 2131296636; + + // aapt resource value: 0x7f09017d + public const int error_no_name = 2131296637; + + // aapt resource value: 0x7f09017e + public const int error_nopass = 2131296638; + + // aapt resource value: 0x7f0902cf + public const int error_out_of_memory = 2131296975; + + // aapt resource value: 0x7f09017f + public const int error_pass_gen_type = 2131296639; + + // aapt resource value: 0x7f090180 + public const int error_pass_match = 2131296640; + + // aapt resource value: 0x7f090181 + public const int error_rounds_not_number = 2131296641; + + // aapt resource value: 0x7f0902d0 + public const int error_rounds_too_large = 2131296976; + + // aapt resource value: 0x7f090216 + public const int error_string_key = 2131296790; + + // aapt resource value: 0x7f090182 + public const int error_title_required = 2131296642; + + // aapt resource value: 0x7f090183 + public const int error_wrong_length = 2131296643; + + // aapt resource value: 0x7f0901f5 + public const int excludeExpiredEntries = 2131296757; + + // aapt resource value: 0x7f0901d1 + public const int export_database_successful = 2131296721; + + // aapt resource value: 0x7f0902b3 + public const int export_fileformats_title = 2131296947; + + // aapt resource value: 0x7f090150 + public const int export_prefs = 2131296592; + + // aapt resource value: 0x7f0901d0 + public const int exporting_database = 2131296720; + + // aapt resource value: 0x7f090217 + public const int field_name = 2131296791; + + // aapt resource value: 0x7f090218 + public const int field_value = 2131296792; + + // aapt resource value: 0x7f090185 + public const int file_browser = 2131296645; + + // aapt resource value: 0x7f090288 + public const int filestorage_setup_title = 2131296904; + + // aapt resource value: 0x7f090284 + public const int filestoragehelp_dropboxKP2A = 2131296900; + + // aapt resource value: 0x7f09027d + public const int filestoragename_androidget = 2131296893; + + // aapt resource value: 0x7f09027e + public const int filestoragename_androidsend = 2131296894; + + // aapt resource value: 0x7f090282 + public const int filestoragename_dropbox = 2131296898; + + // aapt resource value: 0x7f090283 + public const int filestoragename_dropboxKP2A = 2131296899; + + // aapt resource value: 0x7f09027c + public const int filestoragename_file = 2131296892; + + // aapt resource value: 0x7f09027f + public const int filestoragename_ftp = 2131296895; + + // aapt resource value: 0x7f090285 + public const int filestoragename_gdrive = 2131296901; // aapt resource value: 0x7f090280 - public const int filestoragename_skydrive = 2131296896; + public const int filestoragename_http = 2131296896; + + // aapt resource value: 0x7f090281 + public const int filestoragename_https = 2131296897; + + // aapt resource value: 0x7f090287 + public const int filestoragename_sftp = 2131296903; + + // aapt resource value: 0x7f090286 + public const int filestoragename_skydrive = 2131296902; // aapt resource value: 0x7f0900f7 public const int further_author_names = 2131296503; - // aapt resource value: 0x7f0901e4 - public const int further_authors = 2131296740; + // aapt resource value: 0x7f0901e7 + public const int further_authors = 2131296743; - // aapt resource value: 0x7f090183 - public const int generate_password = 2131296643; + // aapt resource value: 0x7f090186 + public const int generate_password = 2131296646; - // aapt resource value: 0x7f0902aa - public const int get_regular_version = 2131296938; + // aapt resource value: 0x7f0902b0 + public const int get_regular_version = 2131296944; - // aapt resource value: 0x7f090184 - public const int group = 2131296644; + // aapt resource value: 0x7f090187 + public const int group = 2131296647; // aapt resource value: 0x7f090096 public const int has_dictionary = 2131296406; - // aapt resource value: 0x7f090284 - public const int help_database_location = 2131296900; + // aapt resource value: 0x7f09028a + public const int help_database_location = 2131296906; - // aapt resource value: 0x7f09028b - public const int help_key_file = 2131296907; + // aapt resource value: 0x7f090291 + public const int help_key_file = 2131296913; - // aapt resource value: 0x7f090288 - public const int help_master_password = 2131296904; + // aapt resource value: 0x7f09028e + public const int help_master_password = 2131296910; // aapt resource value: 0x7f090095 public const int hint_add_to_dictionary = 2131296405; - // aapt resource value: 0x7f090185 - public const int hint_comment = 2131296645; - - // aapt resource value: 0x7f090186 - public const int hint_conf_pass = 2131296646; - - // aapt resource value: 0x7f090285 - public const int hint_database_location = 2131296901; - - // aapt resource value: 0x7f090187 - public const int hint_generated_password = 2131296647; - // aapt resource value: 0x7f090188 - public const int hint_group_name = 2131296648; - - // aapt resource value: 0x7f09028c - public const int hint_key_file = 2131296908; + public const int hint_comment = 2131296648; // aapt resource value: 0x7f090189 - public const int hint_keyfile = 2131296649; + public const int hint_conf_pass = 2131296649; + + // aapt resource value: 0x7f09028b + public const int hint_database_location = 2131296907; // aapt resource value: 0x7f09018a - public const int hint_length = 2131296650; - - // aapt resource value: 0x7f09018c - public const int hint_login_pass = 2131296652; - - // aapt resource value: 0x7f090289 - public const int hint_master_password = 2131296905; - - // aapt resource value: 0x7f09018f - public const int hint_override_url = 2131296655; + public const int hint_generated_password = 2131296650; // aapt resource value: 0x7f09018b - public const int hint_pass = 2131296651; + public const int hint_group_name = 2131296651; - // aapt resource value: 0x7f090271 - public const int hint_sftp_host = 2131296881; + // aapt resource value: 0x7f090292 + public const int hint_key_file = 2131296914; - // aapt resource value: 0x7f090272 - public const int hint_sftp_port = 2131296882; - - // aapt resource value: 0x7f090190 - public const int hint_tags = 2131296656; + // aapt resource value: 0x7f09018c + public const int hint_keyfile = 2131296652; // aapt resource value: 0x7f09018d - public const int hint_title = 2131296653; + public const int hint_length = 2131296653; + + // aapt resource value: 0x7f09018f + public const int hint_login_pass = 2131296655; + + // aapt resource value: 0x7f09028f + public const int hint_master_password = 2131296911; + + // aapt resource value: 0x7f090192 + public const int hint_override_url = 2131296658; // aapt resource value: 0x7f09018e - public const int hint_url = 2131296654; + public const int hint_pass = 2131296654; + + // aapt resource value: 0x7f090277 + public const int hint_sftp_host = 2131296887; + + // aapt resource value: 0x7f090278 + public const int hint_sftp_port = 2131296888; + + // aapt resource value: 0x7f090193 + public const int hint_tags = 2131296659; + + // aapt resource value: 0x7f090190 + public const int hint_title = 2131296656; // aapt resource value: 0x7f090191 - public const int hint_username = 2131296657; + public const int hint_url = 2131296657; + + // aapt resource value: 0x7f090194 + public const int hint_username = 2131296660; // aapt resource value: 0x7f09003b public const int hit_correction = 2131296315; @@ -4757,53 +4769,53 @@ namespace keepass2android // aapt resource value: 0x7f0900f2 public const int icon_info = 2131296498; - // aapt resource value: 0x7f09028f - public const int init_otp = 2131296911; + // aapt resource value: 0x7f090295 + public const int init_otp = 2131296917; - // aapt resource value: 0x7f090273 - public const int initial_directory = 2131296883; + // aapt resource value: 0x7f090279 + public const int initial_directory = 2131296889; - // aapt resource value: 0x7f0901da - public const int insert_element_here = 2131296730; + // aapt resource value: 0x7f0901dd + public const int insert_element_here = 2131296733; - // aapt resource value: 0x7f0902cb - public const int install_from_market = 2131296971; + // aapt resource value: 0x7f0902d1 + public const int install_from_market = 2131296977; - // aapt resource value: 0x7f0902cc - public const int install_from_website = 2131296972; + // aapt resource value: 0x7f0902d2 + public const int install_from_website = 2131296978; - // aapt resource value: 0x7f090193 - public const int invalid_algorithm = 2131296659; + // aapt resource value: 0x7f090196 + public const int invalid_algorithm = 2131296662; - // aapt resource value: 0x7f090194 - public const int invalid_db_sig = 2131296660; + // aapt resource value: 0x7f090197 + public const int invalid_db_sig = 2131296663; // aapt resource value: 0x7f0900f8 public const int issues = 2131296504; - // aapt resource value: 0x7f09028a - public const int key_file = 2131296906; + // aapt resource value: 0x7f090290 + public const int key_file = 2131296912; // aapt resource value: 0x7f09009b public const int keyboard_layout = 2131296411; - // aapt resource value: 0x7f09014c - public const int keyboard_prefs = 2131296588; + // aapt resource value: 0x7f09014f + public const int keyboard_prefs = 2131296591; // aapt resource value: 0x7f09008c public const int keyboard_settings = 2131296396; - // aapt resource value: 0x7f090195 - public const int keyfile_does_not_exist = 2131296661; + // aapt resource value: 0x7f090198 + public const int keyfile_does_not_exist = 2131296664; - // aapt resource value: 0x7f090196 - public const int keyfile_is_empty = 2131296662; + // aapt resource value: 0x7f090199 + public const int keyfile_is_empty = 2131296665; - // aapt resource value: 0x7f090103 - public const int keyfile_key = 2131296515; + // aapt resource value: 0x7f090104 + public const int keyfile_key = 2131296516; - // aapt resource value: 0x7f090142 - public const int kill_app_label = 2131296578; + // aapt resource value: 0x7f090145 + public const int kill_app_label = 2131296581; // aapt resource value: 0x7f0900ab public const int kp2a_auto_fill = 2131296427; @@ -4811,8 +4823,8 @@ namespace keepass2android // aapt resource value: 0x7f0900ac public const int kp2a_auto_fill_summary = 2131296428; - // aapt resource value: 0x7f0901f1 - public const int kp2a_findUrl = 2131296753; + // aapt resource value: 0x7f0901f4 + public const int kp2a_findUrl = 2131296756; // aapt resource value: 0x7f0900b1 public const int kp2a_lock_on_sendgodone = 2131296433; @@ -4844,11 +4856,11 @@ namespace keepass2android // aapt resource value: 0x7f0900b4 public const int kp2a_switch_on_sendgodone_summary = 2131296436; - // aapt resource value: 0x7f090231 - public const int kp2a_switch_rooted = 2131296817; + // aapt resource value: 0x7f090237 + public const int kp2a_switch_rooted = 2131296823; - // aapt resource value: 0x7f090232 - public const int kp2a_switch_rooted_summary = 2131296818; + // aapt resource value: 0x7f090238 + public const int kp2a_switch_rooted_summary = 2131296824; // aapt resource value: 0x7f0900a8 public const int kp2a_user = 2131296424; @@ -4898,131 +4910,134 @@ namespace keepass2android // aapt resource value: 0x7f09009f public const int layout_stone_normal = 2131296415; - // aapt resource value: 0x7f090197 - public const int length = 2131296663; + // aapt resource value: 0x7f09019a + public const int length = 2131296666; // aapt resource value: 0x7f0900b5 public const int library_name = 2131296437; - // aapt resource value: 0x7f090129 - public const int list_size_default = 2131296553; + // aapt resource value: 0x7f09012c + public const int list_size_default = 2131296556; - // aapt resource value: 0x7f090106 - public const int list_size_key = 2131296518; + // aapt resource value: 0x7f090107 + public const int list_size_key = 2131296519; - // aapt resource value: 0x7f090199 - public const int list_size_summary = 2131296665; - - // aapt resource value: 0x7f090198 - public const int list_size_title = 2131296664; - - // aapt resource value: 0x7f09029d - public const int loading = 2131296925; - - // aapt resource value: 0x7f09019a - public const int loading_database = 2131296666; + // aapt resource value: 0x7f09019c + public const int list_size_summary = 2131296668; // aapt resource value: 0x7f09019b - public const int lowercase = 2131296667; + public const int list_size_title = 2131296667; - // aapt resource value: 0x7f090104 - public const int maskpass_key = 2131296516; - - // aapt resource value: 0x7f09019e - public const int maskpass_summary = 2131296670; + // aapt resource value: 0x7f0902a3 + public const int loading = 2131296931; // aapt resource value: 0x7f09019d - public const int maskpass_title = 2131296669; + public const int loading_database = 2131296669; - // aapt resource value: 0x7f0901be - public const int master_key_type = 2131296702; + // aapt resource value: 0x7f09019e + public const int lowercase = 2131296670; - // aapt resource value: 0x7f090287 - public const int master_password = 2131296903; - - // aapt resource value: 0x7f09019f - public const int menu_about = 2131296671; - - // aapt resource value: 0x7f0901a4 - public const int menu_app_settings = 2131296676; - - // aapt resource value: 0x7f0901b1 - public const int menu_change_db = 2131296689; - - // aapt resource value: 0x7f0901a0 - public const int menu_change_key = 2131296672; + // aapt resource value: 0x7f090105 + public const int maskpass_key = 2131296517; // aapt resource value: 0x7f0901a1 - public const int menu_copy_pass = 2131296673; + public const int maskpass_summary = 2131296673; + + // aapt resource value: 0x7f0901a0 + public const int maskpass_title = 2131296672; + + // aapt resource value: 0x7f0901c1 + public const int master_key_type = 2131296705; + + // aapt resource value: 0x7f09028d + public const int master_password = 2131296909; + + // aapt resource value: 0x7f090103 + public const int master_pwd_key = 2131296515; // aapt resource value: 0x7f0901a2 - public const int menu_copy_user = 2131296674; - - // aapt resource value: 0x7f0901a3 - public const int menu_create = 2131296675; - - // aapt resource value: 0x7f0901a5 - public const int menu_db_settings = 2131296677; - - // aapt resource value: 0x7f0901a6 - public const int menu_delete = 2131296678; - - // aapt resource value: 0x7f0901a8 - public const int menu_donate = 2131296680; - - // aapt resource value: 0x7f0901a9 - public const int menu_edit = 2131296681; - - // aapt resource value: 0x7f0901aa - public const int menu_hide_password = 2131296682; - - // aapt resource value: 0x7f0902cd - public const int menu_homepage = 2131296973; - - // aapt resource value: 0x7f0901ab - public const int menu_lock = 2131296683; + public const int menu_about = 2131296674; // aapt resource value: 0x7f0901a7 - public const int menu_move = 2131296679; + public const int menu_app_settings = 2131296679; + + // aapt resource value: 0x7f0901b4 + public const int menu_change_db = 2131296692; + + // aapt resource value: 0x7f0901a3 + public const int menu_change_key = 2131296675; + + // aapt resource value: 0x7f0901a4 + public const int menu_copy_pass = 2131296676; + + // aapt resource value: 0x7f0901a5 + public const int menu_copy_user = 2131296677; + + // aapt resource value: 0x7f0901a6 + public const int menu_create = 2131296678; + + // aapt resource value: 0x7f0901a8 + public const int menu_db_settings = 2131296680; + + // aapt resource value: 0x7f0901a9 + public const int menu_delete = 2131296681; + + // aapt resource value: 0x7f0901ab + public const int menu_donate = 2131296683; // aapt resource value: 0x7f0901ac - public const int menu_open = 2131296684; + public const int menu_edit = 2131296684; // aapt resource value: 0x7f0901ad - public const int menu_rename = 2131296685; + public const int menu_hide_password = 2131296685; + + // aapt resource value: 0x7f0902d3 + public const int menu_homepage = 2131296979; // aapt resource value: 0x7f0901ae - public const int menu_search = 2131296686; + public const int menu_lock = 2131296686; + + // aapt resource value: 0x7f0901aa + public const int menu_move = 2131296682; // aapt resource value: 0x7f0901af - public const int menu_search_advanced = 2131296687; + public const int menu_open = 2131296687; // aapt resource value: 0x7f0901b0 - public const int menu_url = 2131296688; + public const int menu_rename = 2131296688; + + // aapt resource value: 0x7f0901b1 + public const int menu_search = 2131296689; // aapt resource value: 0x7f0901b2 - public const int minus = 2131296690; + public const int menu_search_advanced = 2131296690; // aapt resource value: 0x7f0901b3 - public const int never = 2131296691; + public const int menu_url = 2131296691; // aapt resource value: 0x7f0901b5 - public const int no = 2131296693; + public const int minus = 2131296693; // aapt resource value: 0x7f0901b6 - public const int no_keys = 2131296694; - - // aapt resource value: 0x7f0901b7 - public const int no_results = 2131296695; - - // aapt resource value: 0x7f090270 - public const int no_thanks = 2131296880; + public const int never = 2131296694; // aapt resource value: 0x7f0901b8 - public const int no_url_handler = 2131296696; + public const int no = 2131296696; - // aapt resource value: 0x7f090155 - public const int not_possible_im_picker = 2131296597; + // aapt resource value: 0x7f0901b9 + public const int no_keys = 2131296697; + + // aapt resource value: 0x7f0901ba + public const int no_results = 2131296698; + + // aapt resource value: 0x7f090276 + public const int no_thanks = 2131296886; + + // aapt resource value: 0x7f0901bb + public const int no_url_handler = 2131296699; + + // aapt resource value: 0x7f090158 + public const int not_possible_im_picker = 2131296600; // aapt resource value: 0x7f0900f9 public const int oi_filemanager_market = 2131296505; @@ -5033,17 +5048,17 @@ namespace keepass2android // aapt resource value: 0x7f090082 public const int ok = 2131296386; - // aapt resource value: 0x7f09026f - public const int ok_donate = 2131296879; + // aapt resource value: 0x7f090275 + public const int ok_donate = 2131296885; - // aapt resource value: 0x7f090105 - public const int omitbackup_key = 2131296517; + // aapt resource value: 0x7f090106 + public const int omitbackup_key = 2131296518; - // aapt resource value: 0x7f0901bb - public const int omitbackup_summary = 2131296699; + // aapt resource value: 0x7f0901be + public const int omitbackup_summary = 2131296702; - // aapt resource value: 0x7f0901ba - public const int omitbackup_title = 2131296698; + // aapt resource value: 0x7f0901bd + public const int omitbackup_title = 2131296701; // aapt resource value: 0x7f0900a6 public const int open_entry = 2131296422; @@ -5051,83 +5066,83 @@ namespace keepass2android // aapt resource value: 0x7f0900a7 public const int open_entry_for_app = 2131296423; - // aapt resource value: 0x7f0901b9 - public const int open_recent = 2131296697; + // aapt resource value: 0x7f0901bc + public const int open_recent = 2131296700; // aapt resource value: 0x7f090089 public const int open_the_keyboard = 2131296393; - // aapt resource value: 0x7f090268 - public const int otp_aux_file = 2131296872; + // aapt resource value: 0x7f09026e + public const int otp_aux_file = 2131296878; + + // aapt resource value: 0x7f09029c + public const int otp_discarded_because_db_open = 2131296924; + + // aapt resource value: 0x7f09029a + public const int otp_discarded_because_no_db = 2131296922; + + // aapt resource value: 0x7f09029b + public const int otp_discarded_no_space = 2131296923; // aapt resource value: 0x7f090296 - public const int otp_discarded_because_db_open = 2131296918; - - // aapt resource value: 0x7f090294 - public const int otp_discarded_because_no_db = 2131296916; - - // aapt resource value: 0x7f090295 - public const int otp_discarded_no_space = 2131296917; - - // aapt resource value: 0x7f090290 - public const int otp_explanation = 2131296912; - - // aapt resource value: 0x7f090291 - public const int otp_hint = 2131296913; + public const int otp_explanation = 2131296918; // aapt resource value: 0x7f090297 - public const int otps_pending = 2131296919; + public const int otp_hint = 2131296919; - // aapt resource value: 0x7f090298 - public const int otpsecret_hint = 2131296920; + // aapt resource value: 0x7f09029d + public const int otps_pending = 2131296925; - // aapt resource value: 0x7f0901bc - public const int pass_filename = 2131296700; + // aapt resource value: 0x7f09029e + public const int otpsecret_hint = 2131296926; - // aapt resource value: 0x7f090149 - public const int password_access_prefs = 2131296585; + // aapt resource value: 0x7f0901bf + public const int pass_filename = 2131296703; - // aapt resource value: 0x7f090110 - public const int password_access_prefs_key = 2131296528; + // aapt resource value: 0x7f09014c + public const int password_access_prefs = 2131296588; - // aapt resource value: 0x7f0901bd - public const int password_title = 2131296701; + // aapt resource value: 0x7f090111 + public const int password_access_prefs_key = 2131296529; + + // aapt resource value: 0x7f0901c0 + public const int password_title = 2131296704; // aapt resource value: 0x7f0900fb public const int permission_desc = 2131296507; - // aapt resource value: 0x7f090156 - public const int please_activate_keyboard = 2131296598; + // aapt resource value: 0x7f090159 + public const int please_activate_keyboard = 2131296601; - // aapt resource value: 0x7f0901e8 - public const int please_note = 2131296744; + // aapt resource value: 0x7f0901eb + public const int please_note = 2131296747; - // aapt resource value: 0x7f0902a1 - public const int plugin_author = 2131296929; + // aapt resource value: 0x7f0902a7 + public const int plugin_author = 2131296935; - // aapt resource value: 0x7f0902a0 - public const int plugin_description = 2131296928; + // aapt resource value: 0x7f0902a6 + public const int plugin_description = 2131296934; - // aapt resource value: 0x7f0902a3 - public const int plugin_disabled = 2131296931; + // aapt resource value: 0x7f0902a9 + public const int plugin_disabled = 2131296937; - // aapt resource value: 0x7f0902a2 - public const int plugin_enabled = 2131296930; + // aapt resource value: 0x7f0902a8 + public const int plugin_enabled = 2131296936; + + // aapt resource value: 0x7f0902ab + public const int plugin_enabled_checkbox = 2131296939; // aapt resource value: 0x7f0902a5 - public const int plugin_enabled_checkbox = 2131296933; + public const int plugin_packagename = 2131296933; - // aapt resource value: 0x7f09029f - public const int plugin_packagename = 2131296927; + // aapt resource value: 0x7f0902aa + public const int plugin_web = 2131296938; // aapt resource value: 0x7f0902a4 - public const int plugin_web = 2131296932; + public const int plugins = 2131296932; - // aapt resource value: 0x7f09029e - public const int plugins = 2131296926; - - // aapt resource value: 0x7f0902c1 - public const int plugins_text = 2131296961; + // aapt resource value: 0x7f0902c7 + public const int plugins_text = 2131296967; // aapt resource value: 0x7f09008d public const int popular_domain_0 = 2131296397; @@ -5189,14 +5204,14 @@ namespace keepass2android // aapt resource value: 0x7f090051 public const int prefs_settings_key = 2131296337; - // aapt resource value: 0x7f0901bf - public const int progress_create = 2131296703; + // aapt resource value: 0x7f0901c2 + public const int progress_create = 2131296706; - // aapt resource value: 0x7f0901c1 - public const int progress_title = 2131296705; + // aapt resource value: 0x7f0901c4 + public const int progress_title = 2131296708; - // aapt resource value: 0x7f090216 - public const int protection = 2131296790; + // aapt resource value: 0x7f090219 + public const int protection = 2131296793; // aapt resource value: 0x7f09004b public const int quick_fixes = 2131296331; @@ -5204,74 +5219,74 @@ namespace keepass2android // aapt resource value: 0x7f09004c public const int quick_fixes_summary = 2131296332; - // aapt resource value: 0x7f090245 - public const int rate_app = 2131296837; + // aapt resource value: 0x7f09024b + public const int rate_app = 2131296843; - // aapt resource value: 0x7f0901ea - public const int regular_expression = 2131296746; - - // aapt resource value: 0x7f0901c2 - public const int remember_keyfile_summary = 2131296706; - - // aapt resource value: 0x7f0901c3 - public const int remember_keyfile_title = 2131296707; - - // aapt resource value: 0x7f0901c4 - public const int remove_from_filelist = 2131296708; + // aapt resource value: 0x7f0901ed + public const int regular_expression = 2131296749; // aapt resource value: 0x7f0901c5 - public const int rijndael = 2131296709; + public const int remember_keyfile_summary = 2131296709; // aapt resource value: 0x7f0901c6 - public const int root = 2131296710; + public const int remember_keyfile_title = 2131296710; // aapt resource value: 0x7f0901c7 - public const int rounds = 2131296711; + public const int remove_from_filelist = 2131296711; // aapt resource value: 0x7f0901c8 - public const int rounds_explaination = 2131296712; + public const int rijndael = 2131296712; // aapt resource value: 0x7f0901c9 - public const int rounds_hint = 2131296713; + public const int root = 2131296713; + + // aapt resource value: 0x7f0901ca + public const int rounds = 2131296714; + + // aapt resource value: 0x7f0901cb + public const int rounds_explaination = 2131296715; + + // aapt resource value: 0x7f0901cc + public const int rounds_hint = 2131296716; // aapt resource value: 0x7f090102 public const int rounds_key = 2131296514; - // aapt resource value: 0x7f0901cc - public const int saving_database = 2131296716; + // aapt resource value: 0x7f0901cf + public const int saving_database = 2131296719; - // aapt resource value: 0x7f0901d5 - public const int search_hint = 2131296725; + // aapt resource value: 0x7f0901d8 + public const int search_hint = 2131296728; - // aapt resource value: 0x7f0901d7 - public const int search_in = 2131296727; + // aapt resource value: 0x7f0901da + public const int search_in = 2131296730; - // aapt resource value: 0x7f0901d0 - public const int search_label = 2131296720; + // aapt resource value: 0x7f0901d3 + public const int search_label = 2131296723; - // aapt resource value: 0x7f0901f3 - public const int search_options = 2131296755; + // aapt resource value: 0x7f0901f6 + public const int search_options = 2131296758; - // aapt resource value: 0x7f0901d6 - public const int search_results = 2131296726; + // aapt resource value: 0x7f0901d9 + public const int search_results = 2131296729; - // aapt resource value: 0x7f090147 - public const int security_prefs = 2131296583; + // aapt resource value: 0x7f09014a + public const int security_prefs = 2131296586; - // aapt resource value: 0x7f090111 - public const int security_prefs_key = 2131296529; + // aapt resource value: 0x7f090112 + public const int security_prefs_key = 2131296530; // aapt resource value: 0x7f090092 public const int selectInputMethod = 2131296402; - // aapt resource value: 0x7f0901d9 - public const int select_group_then_add = 2131296729; + // aapt resource value: 0x7f0901dc + public const int select_group_then_add = 2131296732; - // aapt resource value: 0x7f0901d8 - public const int select_other_entry = 2131296728; + // aapt resource value: 0x7f0901db + public const int select_other_entry = 2131296731; - // aapt resource value: 0x7f090275 - public const int select_storage_type = 2131296885; + // aapt resource value: 0x7f09027b + public const int select_storage_type = 2131296891; // aapt resource value: 0x7f090030 public const int sentence_separators = 2131296304; @@ -5294,23 +5309,23 @@ namespace keepass2android // aapt resource value: 0x7f090052 public const int settings_key_mode_auto_name = 2131296338; - // aapt resource value: 0x7f09013d - public const int short_app_name = 2131296573; + // aapt resource value: 0x7f090140 + public const int short_app_name = 2131296576; - // aapt resource value: 0x7f09013f - public const int short_app_name_nonet = 2131296575; + // aapt resource value: 0x7f090142 + public const int short_app_name_nonet = 2131296578; - // aapt resource value: 0x7f090143 - public const int show_kill_app = 2131296579; + // aapt resource value: 0x7f090146 + public const int show_kill_app = 2131296582; // aapt resource value: 0x7f0900ff public const int show_kill_app_key = 2131296511; - // aapt resource value: 0x7f090144 - public const int show_kill_app_summary = 2131296580; + // aapt resource value: 0x7f090147 + public const int show_kill_app_summary = 2131296583; - // aapt resource value: 0x7f0901d1 - public const int show_password = 2131296721; + // aapt resource value: 0x7f0901d4 + public const int show_password = 2131296724; // aapt resource value: 0x7f09004d public const int show_suggestions = 2131296333; @@ -5318,35 +5333,35 @@ namespace keepass2android // aapt resource value: 0x7f09004e public const int show_suggestions_summary = 2131296334; - // aapt resource value: 0x7f0901d3 - public const int sort_db = 2131296723; + // aapt resource value: 0x7f0901d6 + public const int sort_db = 2131296726; - // aapt resource value: 0x7f090108 - public const int sort_key = 2131296520; + // aapt resource value: 0x7f090109 + public const int sort_key = 2131296521; - // aapt resource value: 0x7f0901d2 - public const int sort_name = 2131296722; + // aapt resource value: 0x7f0901d5 + public const int sort_name = 2131296725; // aapt resource value: 0x7f090039 public const int sound_on_keypress = 2131296313; - // aapt resource value: 0x7f0901cf - public const int space = 2131296719; + // aapt resource value: 0x7f0901d2 + public const int space = 2131296722; - // aapt resource value: 0x7f0901d4 - public const int special = 2131296724; + // aapt resource value: 0x7f0901d7 + public const int special = 2131296727; - // aapt resource value: 0x7f0901f6 - public const int start_create = 2131296758; + // aapt resource value: 0x7f0901f9 + public const int start_create = 2131296761; + + // aapt resource value: 0x7f0901fb + public const int start_create_import = 2131296763; // aapt resource value: 0x7f0901f8 - public const int start_create_import = 2131296760; + public const int start_open_file = 2131296760; - // aapt resource value: 0x7f0901f5 - public const int start_open_file = 2131296757; - - // aapt resource value: 0x7f0901f7 - public const int start_open_url = 2131296759; + // aapt resource value: 0x7f0901fa + public const int start_open_url = 2131296762; // aapt resource value: 0x7f0900a1 public const int subtype_mode_keyboard = 2131296417; @@ -5354,14 +5369,14 @@ namespace keepass2android // aapt resource value: 0x7f0900a2 public const int subtype_mode_voice = 2131296418; - // aapt resource value: 0x7f090244 - public const int suggest_improvements = 2131296836; + // aapt resource value: 0x7f09024a + public const int suggest_improvements = 2131296842; // aapt resource value: 0x7f090031 public const int suggested_punctuations = 2131296305; - // aapt resource value: 0x7f09026a - public const int synchronize_database_menu = 2131296874; + // aapt resource value: 0x7f090270 + public const int synchronize_database_menu = 2131296880; // aapt resource value: 0x7f09005d public const int tip_access_symbols = 2131296349; @@ -5402,29 +5417,29 @@ namespace keepass2android // aapt resource value: 0x7f090060 public const int touch_to_finish = 2131296352; - // aapt resource value: 0x7f090246 - public const int translate_app = 2131296838; - - // aapt resource value: 0x7f0901db - public const int twofish = 2131296731; - - // aapt resource value: 0x7f0901dc - public const int underline = 2131296732; - - // aapt resource value: 0x7f0901dd - public const int unsupported_db_version = 2131296733; + // aapt resource value: 0x7f09024c + public const int translate_app = 2131296844; // aapt resource value: 0x7f0901de - public const int uppercase = 2131296734; + public const int twofish = 2131296734; - // aapt resource value: 0x7f09028d - public const int use_key_file = 2131296909; + // aapt resource value: 0x7f0901df + public const int underline = 2131296735; - // aapt resource value: 0x7f0901e2 - public const int version_history = 2131296738; + // aapt resource value: 0x7f0901e0 + public const int unsupported_db_version = 2131296736; // aapt resource value: 0x7f0901e1 - public const int version_label = 2131296737; + public const int uppercase = 2131296737; + + // aapt resource value: 0x7f090293 + public const int use_key_file = 2131296915; + + // aapt resource value: 0x7f0901e5 + public const int version_history = 2131296741; + + // aapt resource value: 0x7f0901e4 + public const int version_label = 2131296740; // aapt resource value: 0x7f090038 public const int vibrate_on_keypress = 2131296312; @@ -5495,17 +5510,17 @@ namespace keepass2android // aapt resource value: 0x7f090075 public const int voice_working = 2131296373; - // aapt resource value: 0x7f0901df - public const int warning_read_only = 2131296735; + // aapt resource value: 0x7f0901e2 + public const int warning_read_only = 2131296738; - // aapt resource value: 0x7f0901e0 - public const int warning_unmounted = 2131296736; + // aapt resource value: 0x7f0901e3 + public const int warning_unmounted = 2131296739; // aapt resource value: 0x7f09002f public const int word_separators = 2131296303; - // aapt resource value: 0x7f0901b4 - public const int yes = 2131296692; + // aapt resource value: 0x7f0901b7 + public const int yes = 2131296695; static String() { diff --git a/src/keepass2android/Resources/drawable-hdpi/device_access_new_account_holodark.png b/src/keepass2android/Resources/drawable-hdpi/device_access_new_account_holodark.png new file mode 100644 index 00000000..e61a09f5 Binary files /dev/null and b/src/keepass2android/Resources/drawable-hdpi/device_access_new_account_holodark.png differ diff --git a/src/keepass2android/Resources/drawable/device_access_new_account_dark.png b/src/keepass2android/Resources/drawable/device_access_new_account_dark.png deleted file mode 100644 index 27889219..00000000 Binary files a/src/keepass2android/Resources/drawable/device_access_new_account_dark.png and /dev/null differ diff --git a/src/keepass2android/Resources/drawable/device_access_new_account_holodark.png b/src/keepass2android/Resources/drawable/device_access_new_account_holodark.png index e61a09f5..1072ee7f 100644 Binary files a/src/keepass2android/Resources/drawable/device_access_new_account_holodark.png and b/src/keepass2android/Resources/drawable/device_access_new_account_holodark.png differ diff --git a/src/keepass2android/Resources/layout/SaveButton.xml b/src/keepass2android/Resources/layout/SaveButton.xml index 312b34bd..1154b687 100644 --- a/src/keepass2android/Resources/layout/SaveButton.xml +++ b/src/keepass2android/Resources/layout/SaveButton.xml @@ -1,18 +1,46 @@ - - - \ No newline at end of file + android:orientation="horizontal" + android:divider="?android:attr/dividerVertical" + android:showDividers="middle" + android:layout_alignParentBottom="true" + android:dividerPadding="12dp" + android:baselineAligned="false"> + + + + + + + + \ No newline at end of file diff --git a/src/keepass2android/Resources/layout/about.xml b/src/keepass2android/Resources/layout/about.xml index bc0c5f65..d6471f2e 100644 --- a/src/keepass2android/Resources/layout/about.xml +++ b/src/keepass2android/Resources/layout/about.xml @@ -66,11 +66,43 @@ android:text="@string/issues" android:layout_below="@id/feedback_title" android:autoLink="web" /> + +