From 8c4361905566de0f696efab940eb2de13c0655ab Mon Sep 17 00:00:00 2001 From: Albert Astals Cid Date: Wed, 21 Jan 2015 10:16:51 +0100 Subject: Add qsTr() to text: in EditMenu_base.qml Change-Id: I70d5987bacbad483ebaf03fefc6d47d3661a95ba Reviewed-by: J-P Nurmi --- src/controls/Private/EditMenu_base.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controls/Private/EditMenu_base.qml b/src/controls/Private/EditMenu_base.qml index 3745d9f4..b11cbf25 100644 --- a/src/controls/Private/EditMenu_base.qml +++ b/src/controls/Private/EditMenu_base.qml @@ -48,7 +48,7 @@ Item { Component { id: cutAction Action { - text: "Cu&t" + text: qsTr("Cu&t") shortcut: StandardKey.Cut iconName: "edit-cut" enabled: !input.readOnly && selectionStart !== selectionEnd @@ -62,7 +62,7 @@ Item { Component { id: copyAction Action { - text: "&Copy" + text: qsTr("&Copy") shortcut: StandardKey.Copy iconName: "edit-copy" enabled: input.selectionStart !== input.selectionEnd @@ -76,7 +76,7 @@ Item { Component { id: pasteAction Action { - text: "&Paste" + text: qsTr("&Paste") shortcut: StandardKey.Paste iconName: "edit-paste" enabled: input.canPaste -- cgit v1.2.1