From 30c4e9cf0092c3ba05c22509ebd86f794d04a91d Mon Sep 17 00:00:00 2001 From: grummbeer <67791701+grummbeer@users.noreply.github.com> Date: Wed, 8 Nov 2023 18:31:37 +0100 Subject: [PATCH] fix translation keys. allow > enable --- flutter/lib/common/widgets/toolbar.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flutter/lib/common/widgets/toolbar.dart b/flutter/lib/common/widgets/toolbar.dart index f2f9d551c..468091200 100644 --- a/flutter/lib/common/widgets/toolbar.dart +++ b/flutter/lib/common/widgets/toolbar.dart @@ -449,7 +449,7 @@ Future> toolbarDisplayToggle( if (value == null) return; bind.sessionToggleOption(sessionId: sessionId, value: option); }, - child: Text(translate('Allow file copy and paste')))); + child: Text(translate('Enable file copy and paste')))); } // disable clipboard if (ffiModel.keyboard && perms['clipboard'] != false) {