Merge lp:~vrruiz/ubuntu-terminal-app/i18n-strings into lp:ubuntu-terminal-app

Proposed by Víctor R. Ruiz
Status: Merged
Approved by: Leo Arias
Approved revision: 123
Merged at revision: 123
Proposed branch: lp:~vrruiz/ubuntu-terminal-app/i18n-strings
Merge into: lp:ubuntu-terminal-app
Diff against target: 97 lines (+31/-7)
2 files modified
po/com.ubuntu.terminal.pot (+25/-1)
src/app/qml/extraPanel/ScrlKeys.qml (+6/-6)
To merge this branch: bzr merge lp:~vrruiz/ubuntu-terminal-app/i18n-strings
Reviewer Review Type Date Requested Status
Leo Arias (community) Approve
Ubuntu Phone Apps Jenkins Bot continuous-integration Approve
Review via email: mp+232096@code.launchpad.net

Commit message

Mark strings for translation.

Description of the change

Mark strings for translation.

To post a comment you must log in.
Revision history for this message
Ubuntu Phone Apps Jenkins Bot (ubuntu-phone-apps-jenkins-bot) wrote :
review: Approve (continuous-integration)
Revision history for this message
Leo Arias (elopio) wrote :

Thanks Victor.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'po/com.ubuntu.terminal.pot'
2--- po/com.ubuntu.terminal.pot 2014-08-13 08:27:01 +0000
3+++ po/com.ubuntu.terminal.pot 2014-08-25 14:39:00 +0000
4@@ -8,7 +8,7 @@
5 msgstr ""
6 "Project-Id-Version: \n"
7 "Report-Msgid-Bugs-To: \n"
8-"POT-Creation-Date: 2014-08-13 10:24+0200\n"
9+"POT-Creation-Date: 2014-08-25 13:55+0100\n"
10 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
11 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12 "Language-Team: LANGUAGE <LL@li.org>\n"
13@@ -109,6 +109,30 @@
14 msgid "Death Star;Skywalker;Leia;Darth Vader"
15 msgstr ""
16
17+#: ../src/app/qml/extraPanel/ScrlKeys.qml:25
18+msgid "PG_UP"
19+msgstr ""
20+
21+#: ../src/app/qml/extraPanel/ScrlKeys.qml:31
22+msgid "TAB"
23+msgstr ""
24+
25+#: ../src/app/qml/extraPanel/ScrlKeys.qml:43
26+msgid "DEL"
27+msgstr ""
28+
29+#: ../src/app/qml/extraPanel/ScrlKeys.qml:49
30+msgid "HOME"
31+msgstr ""
32+
33+#: ../src/app/qml/extraPanel/ScrlKeys.qml:59
34+msgid "PG_DN"
35+msgstr ""
36+
37+#: ../src/app/qml/extraPanel/ScrlKeys.qml:83
38+msgid "END"
39+msgstr ""
40+
41 #: ../src/app/qml/ubuntu-terminal-app.qml:29
42 #: com.ubuntu.terminal.desktop.in.in.h:1
43 msgid "Terminal"
44
45=== modified file 'src/app/qml/extraPanel/ScrlKeys.qml'
46--- src/app/qml/extraPanel/ScrlKeys.qml 2013-12-14 01:19:17 +0000
47+++ src/app/qml/extraPanel/ScrlKeys.qml 2014-08-25 14:39:00 +0000
48@@ -22,13 +22,13 @@
49 spacing: units.gu(1)
50
51 Button {
52- Label {text: "PG_UP"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
53+ Label {text: i18n.tr("PG_UP"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
54 width: btn_width*1.5
55 onClicked: keyPressed(Qt.Key_PageUp, Qt.NoModifier)
56 }
57
58 Button {
59- Label {text: "TAB"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
60+ Label {text: i18n.tr("TAB"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
61 width: btn_width
62 onClicked: keyPressed(Qt.Key_Tab, Qt.NoModifier)
63 }
64@@ -40,13 +40,13 @@
65 }
66
67 Button {
68- Label {text: "DEL"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
69+ Label {text: i18n.tr("DEL"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
70 width: btn_width
71 onClicked: keyPressed(Qt.Key_Delete, Qt.NoModifier)
72 }
73
74 Button {
75- Label {text: "HOME"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
76+ Label {text: i18n.tr("HOME"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
77 width: btn_width*1.5
78 onClicked: keyPressed(Qt.Key_Home, Qt.NoModifier)
79 }
80@@ -56,7 +56,7 @@
81 spacing: units.gu(1)
82
83 Button {
84- Label {text: "PG_DN"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
85+ Label {text: i18n.tr("PG_DN"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
86 width: btn_width*1.5
87 onClicked: keyPressed(Qt.Key_PageDown, Qt.NoModifier)
88 }
89@@ -80,7 +80,7 @@
90 }
91
92 Button {
93- Label {text: "END"; color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
94+ Label {text: i18n.tr("END"); color: buttonColor; anchors.centerIn: parent; fontSize: "medium"}
95 width: btn_width*1.5
96 onClicked: keyPressed(Qt.Key_End, Qt.NoModifier)
97 }

Subscribers

People subscribed via source and target branches