From 8b591a7f0cccd41e929aef23bd4afec50a4b63b8 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Tue, 4 Jun 2019 09:48:08 -0400 Subject: [PATCH] replace password copied --- src/App/Pages/Generator/GeneratorPageViewModel.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/App/Pages/Generator/GeneratorPageViewModel.cs b/src/App/Pages/Generator/GeneratorPageViewModel.cs index 76ed3d123..f224af933 100644 --- a/src/App/Pages/Generator/GeneratorPageViewModel.cs +++ b/src/App/Pages/Generator/GeneratorPageViewModel.cs @@ -255,7 +255,8 @@ namespace Bit.App.Pages public async Task CopyAsync() { await _platformUtilsService.CopyToClipboardAsync(Password); - _platformUtilsService.ShowToast("success", null, AppResources.CopiedPassword); + _platformUtilsService.ShowToast("success", null, + string.Format(AppResources.ValueHasBeenCopied, AppResources.Password)); } private void LoadFromOptions()