Skip to content

Commit

Permalink
Merchant: remove unintentional file and add emptryString
Browse files Browse the repository at this point in the history
  • Loading branch information
selsta committed Apr 19, 2019
1 parent 1092664 commit 024abdb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 706 deletions.
12 changes: 6 additions & 6 deletions pages/merchant/Merchant.qml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Item {
font.pixelSize: 16 * scaleRatio
font.bold: true
color: "#767676"
text: qsTr("Sales")
text: qsTr("Sales") + translationManager.emptyString
}

Item {
Expand Down Expand Up @@ -297,7 +297,7 @@ Item {
font.pixelSize: 12 * scaleRatio
font.bold: false
color: "white"
text: qsTr("(right-click, save as)")
text: qsTr("(right-click, save as)") + translationManager.emptyString
}
}
}
Expand Down Expand Up @@ -340,7 +340,7 @@ Item {
font.pixelSize: 14 * scaleRatio
font.bold: true
color: "#767676"
text: qsTr("Payment URL")
text: qsTr("Payment URL") + translationManager.emptyString
}

Item {
Expand Down Expand Up @@ -529,7 +529,7 @@ Item {
MerchantCheckbox {
id: trackingCheckbox
checked: root.enableTracking
text: qsTr("Enable sales tracker")
text: qsTr("Enable sales tracker") + translationManager.emptyString

onChanged: {
root.enableTracking = this.checked;
Expand All @@ -541,7 +541,7 @@ Item {
font.pixelSize: 14 * scaleRatio
font.bold: false
color: "white"
text: qsTr("Leave this page")
text: qsTr("Leave this page") + translationManager.emptyString

MouseArea {
anchors.fill: parent
Expand Down Expand Up @@ -570,7 +570,7 @@ Item {
font.pixelSize: 14 * scaleRatio
font.bold: true
color: MoneroComponents.Style.moneroGrey
text: qsTr("The merchant page requires a larger window")
text: qsTr("The merchant page requires a larger window") + translationManager.emptyString
}
}

Expand Down
Loading

0 comments on commit 024abdb

Please sign in to comment.