mirror of
https://github.com/moparisthebest/keepass2android
synced 2024-11-21 16:55:01 -05:00
use system strings
This commit is contained in:
parent
3947d8b7a5
commit
e871664ff4
@ -24,7 +24,7 @@ namespace keepass2android
|
||||
((NotificationManager)GetSystemService(Context.NotificationService)).CancelAll();
|
||||
AlertDialog.Builder b = new AlertDialog.Builder(this);
|
||||
b.SetMessage(Resource.String.killed_by_os);
|
||||
b.SetPositiveButton(Resource.String.ok, delegate
|
||||
b.SetPositiveButton(Android.Resource.String.Ok, delegate
|
||||
{
|
||||
Intent i = new Intent(this, typeof(FileSelectActivity));
|
||||
i.AddFlags(ActivityFlags.ClearTask | ActivityFlags.NewTask);
|
||||
|
@ -429,7 +429,7 @@ namespace keepass2android
|
||||
{
|
||||
AlertDialog.Builder b = new AlertDialog.Builder(this);
|
||||
b.SetMessage(Resource.String.YubiChallengeNotInstalled);
|
||||
b.SetPositiveButton(Resource.String.ok, delegate {
|
||||
b.SetPositiveButton(Android.Resource.String.Ok, delegate {
|
||||
Util.GotoUrl(this, GetString(Resource.String.MarketURL) + "com.yubichallenge");
|
||||
});
|
||||
b.SetNegativeButton(Resource.String.cancel, delegate { });
|
||||
|
Loading…
Reference in New Issue
Block a user