Merge lp:~developersw/ubuntu-terminal-app/make-strings-translatable2 into lp:~ubuntu-terminal-dev/ubuntu-terminal-app/reboot

Proposed by Carlo Giordano
Status: Merged
Merged at revision: 29
Proposed branch: lp:~developersw/ubuntu-terminal-app/make-strings-translatable2
Merge into: lp:~ubuntu-terminal-dev/ubuntu-terminal-app/reboot
Diff against target: 20 lines (+2/-2)
1 file modified
src/app/qml/AlternateActionPopover.qml (+2/-2)
To merge this branch: bzr merge lp:~developersw/ubuntu-terminal-app/make-strings-translatable2
Reviewer Review Type Date Requested Status
Ubuntu Terminal Developers Pending
Review via email: mp+244265@code.launchpad.net
To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'src/app/qml/AlternateActionPopover.qml'
--- src/app/qml/AlternateActionPopover.qml 2014-11-12 00:52:56 +0000
+++ src/app/qml/AlternateActionPopover.qml 2014-12-10 09:46:55 +0000
@@ -16,14 +16,14 @@
16 right: parent.right16 right: parent.right
17 }17 }
18 ListItem.Standard {18 ListItem.Standard {
19 text: "Copy"19 text: i18n.tr("Copy")
20 onClicked: {20 onClicked: {
21 terminal.copyClipboard();21 terminal.copyClipboard();
22 popover.hide();22 popover.hide();
23 }23 }
24 }24 }
25 ListItem.Standard {25 ListItem.Standard {
26 text: "Paste"26 text: i18n.tr("Paste")
27 onClicked: {27 onClicked: {
28 terminal.pasteClipboard();28 terminal.pasteClipboard();
29 popover.hide();29 popover.hide();

Subscribers

People subscribed via source and target branches