From 197a552d87cde52c595a40d307b6da8d8c5defbd Mon Sep 17 00:00:00 2001 From: Antonella Sgarlatta Date: Wed, 14 Jul 2021 11:43:20 -0300 Subject: [PATCH] feat: change restore locked note message --- app/assets/javascripts/strings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/strings.ts b/app/assets/javascripts/strings.ts index 85f835c49..7b24dc66d 100644 --- a/app/assets/javascripts/strings.ts +++ b/app/assets/javascripts/strings.ts @@ -43,7 +43,7 @@ export const STRING_DELETE_LOCKED_ATTEMPT = export const STRING_EDIT_LOCKED_ATTEMPT = "This note has editing disabled. If you'd like to edit its options, enable editing, and try again."; export const STRING_RESTORE_LOCKED_ATTEMPT = - "This note has editing disabled. If you'd like to restore a different version of it, enable editing, and try again." + "This note has editing disabled. If you'd like to restore it to a previous revision, enable editing and try again."; export function StringDeleteNote(title: string, permanently: boolean) { return permanently ? `Are you sure you want to permanently delete ${title}?`