diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2019-04-16 16:54:17 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2019-04-16 16:54:17 -0400 |
| commit | 10926644bfe049b3c7b1dcd9b274a3a79cfa1e94 (patch) | |
| tree | b3b57df2159b0cfbb611b1adc1e57670b977c30c /components/PassphraseDialog.qml | |
| parent | e760d33dad2ce3a0a1565f957c3232007ee4dcce (diff) | |
| parent | 15a5f763349c6e3b3d3570fd4de6a83a03d726ad (diff) | |
| download | monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.gz monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.xz monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.zip | |
Merge pull request #2088
15a5f76 add missing TranslationManager.emptyString (selsta)
Diffstat (limited to 'components/PassphraseDialog.qml')
| -rw-r--r-- | components/PassphraseDialog.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/components/PassphraseDialog.qml b/components/PassphraseDialog.qml index 034c4610..a8b47f12 100644 --- a/components/PassphraseDialog.qml +++ b/components/PassphraseDialog.qml @@ -111,7 +111,7 @@ Item { Layout.maximumWidth: 400 * scaleRatio Label { - text: root.walletName.length > 0 ? qsTr("Please enter wallet device passphrase for: ") + root.walletName : qsTr("Please enter wallet device passphrase") + text: (root.walletName.length > 0 ? qsTr("Please enter wallet device passphrase for: ") + root.walletName : qsTr("Please enter wallet device passphrase")) + translationManager.emptyString Layout.fillWidth: true font.pixelSize: 16 * scaleRatio @@ -121,7 +121,7 @@ Item { } Label { - text: qsTr("Warning: passphrase entry on host is a security risk as it can be captured by malware. It is advised to prefer device-based passphrase entry."); + text: qsTr("Warning: passphrase entry on host is a security risk as it can be captured by malware. It is advised to prefer device-based passphrase entry.") + translationManager.emptyString Layout.fillWidth: true wrapMode: Text.Wrap @@ -211,7 +211,7 @@ Item { } Label { - text: qsTr("Please re-enter") + text: qsTr("Please re-enter") + translationManager.emptyString Layout.fillWidth: true font.pixelSize: 16 * scaleRatio @@ -312,7 +312,7 @@ Item { } MoneroComponents.StandardButton { id: okButton - text: qsTr("Continue") + text: qsTr("Continue") + translationManager.emptyString KeyNavigation.tab: cancelButton enabled: passphaseInput1.text === passphaseInput2.text onClicked: { |
