Merge lp:~artmello/ubuntu-ui-extras/ubuntu-ui-extras-i18n_set_domain into lp:ubuntu-ui-extras

Proposed by Arthur Mello
Status: Merged
Approved by: Bill Filler
Approved revision: 96
Merged at revision: 101
Proposed branch: lp:~artmello/ubuntu-ui-extras/ubuntu-ui-extras-i18n_set_domain
Merge into: lp:ubuntu-ui-extras
Diff against target: 63 lines (+6/-6)
3 files modified
modules/Ubuntu/Components/Extras/PhotoEditor/CropOverlay.qml (+1/-1)
modules/Ubuntu/Components/Extras/PhotoEditor/EditStack.qml (+3/-3)
modules/Ubuntu/Components/Extras/PhotoEditor/ExposureAdjuster.qml (+2/-2)
To merge this branch: bzr merge lp:~artmello/ubuntu-ui-extras/ubuntu-ui-extras-i18n_set_domain
Reviewer Review Type Date Requested Status
PS Jenkins bot continuous-integration Approve
Ubuntu Phablet Team Pending
Review via email: mp+293423@code.launchpad.net

Commit message

Specify the domain "ubuntu-ui-extras" for i18n messages

Description of the change

Specify the domain "ubuntu-ui-extras" for i18n messages

To post a comment you must log in.
Revision history for this message
PS Jenkins bot (ps-jenkins) wrote :
review: Approve (continuous-integration)
96. By Arthur Mello

Merge with trunk

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'modules/Ubuntu/Components/Extras/PhotoEditor/CropOverlay.qml'
--- modules/Ubuntu/Components/Extras/PhotoEditor/CropOverlay.qml 2014-12-15 13:32:18 +0000
+++ modules/Ubuntu/Components/Extras/PhotoEditor/CropOverlay.qml 2016-06-07 13:31:04 +0000
@@ -346,7 +346,7 @@
346 Button {346 Button {
347 objectName: "centerCropIcon"347 objectName: "centerCropIcon"
348 anchors.centerIn: parent348 anchors.centerIn: parent
349 text: i18n.tr("Crop")349 text: i18n.dtr("ubuntu-ui-extras", "Crop")
350 color: frame.border.color350 color: frame.border.color
351 opacity: 0.9351 opacity: 0.9
352 onClicked: cropOverlay.cropButtonPressed()352 onClicked: cropOverlay.cropButtonPressed()
353353
=== modified file 'modules/Ubuntu/Components/Extras/PhotoEditor/EditStack.qml'
--- modules/Ubuntu/Components/Extras/PhotoEditor/EditStack.qml 2015-02-11 14:46:34 +0000
+++ modules/Ubuntu/Components/Extras/PhotoEditor/EditStack.qml 2016-06-07 13:31:04 +0000
@@ -111,21 +111,21 @@
111 }111 }
112112
113 property Action undoAction: Action {113 property Action undoAction: Action {
114 text: i18n.tr("Undo")114 text: i18n.dtr("ubuntu-ui-extras", "Undo")
115 iconName: "undo"115 iconName: "undo"
116 enabled: items.length > 0 && level > 0 && actionsEnabled116 enabled: items.length > 0 && level > 0 && actionsEnabled
117 onTriggered: restoreSnapshot(--level);117 onTriggered: restoreSnapshot(--level);
118 }118 }
119119
120 property Action redoAction: Action {120 property Action redoAction: Action {
121 text: i18n.tr("Redo")121 text: i18n.dtr("ubuntu-ui-extras", "Redo")
122 iconName: "redo"122 iconName: "redo"
123 enabled: level < items.length - 1 && actionsEnabled123 enabled: level < items.length - 1 && actionsEnabled
124 onTriggered: restoreSnapshot(++level);124 onTriggered: restoreSnapshot(++level);
125 }125 }
126126
127 property Action revertAction: Action {127 property Action revertAction: Action {
128 text: i18n.tr("Revert to Original")128 text: i18n.dtr("ubuntu-ui-extras", "Revert to Original")
129 iconSource: Qt.resolvedUrl("assets/edit_revert.png")129 iconSource: Qt.resolvedUrl("assets/edit_revert.png")
130 enabled: actionsEnabled &&130 enabled: actionsEnabled &&
131 (level > 0 || (!_revertedInThisSession && _pristineFileExists))131 (level > 0 || (!_revertedInThisSession && _pristineFileExists))
132132
=== modified file 'modules/Ubuntu/Components/Extras/PhotoEditor/ExposureAdjuster.qml'
--- modules/Ubuntu/Components/Extras/PhotoEditor/ExposureAdjuster.qml 2015-02-11 14:46:34 +0000
+++ modules/Ubuntu/Components/Extras/PhotoEditor/ExposureAdjuster.qml 2016-06-07 13:31:04 +0000
@@ -69,7 +69,7 @@
69 anchors.horizontalCenter: parent.horizontalCenter69 anchors.horizontalCenter: parent.horizontalCenter
70 spacing: units.gu(2)70 spacing: units.gu(2)
71 Button {71 Button {
72 text: i18n.tr("Done")72 text: i18n.dtr("ubuntu-ui-extras", "Done")
73 color: UbuntuColors.green73 color: UbuntuColors.green
74 enabled: adjuster.enabled74 enabled: adjuster.enabled
75 onTriggered: {75 onTriggered: {
@@ -78,7 +78,7 @@
78 }78 }
79 }79 }
80 Button {80 Button {
81 text: i18n.tr("Cancel")81 text: i18n.dtr("ubuntu-ui-extras", "Cancel")
82 color: UbuntuColors.red82 color: UbuntuColors.red
83 enabled: adjuster.enabled83 enabled: adjuster.enabled
84 onTriggered: {84 onTriggered: {

Subscribers

People subscribed via source and target branches