diff options
| author | selsta <selsta@sent.at> | 2019-12-08 22:06:31 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-02-05 17:06:52 +0100 |
| commit | 98ab4ea2aab7e680d8fa96f836c7d15c659ea082 (patch) | |
| tree | be8f4f85e9c09404070aaaeedbdef7bd1a0cf468 /pages/AddressBook.qml | |
| parent | d5469c824755447608279827e12f5fc73a4bf0e9 (diff) | |
| download | monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.tar.gz monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.tar.xz monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.zip | |
misc: strip html out of translatable strings
Diffstat (limited to 'pages/AddressBook.qml')
| -rw-r--r-- | pages/AddressBook.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/pages/AddressBook.qml b/pages/AddressBook.qml index caaf9d5d..fef61bc3 100644 --- a/pages/AddressBook.qml +++ b/pages/AddressBook.qml @@ -306,8 +306,8 @@ Rectangle { MoneroComponents.LineEditMulti { id: addressLine Layout.topMargin: 20 - labelText: qsTr("<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style>\ - Address") + translationManager.emptyString + labelText: "<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style> %1" + .arg(qsTr("Address")) + translationManager.emptyString placeholderText: { if(persistentSettings.nettype == NetworkType.MAINNET){ return "4.. / 8.. / OpenAlias"; @@ -384,8 +384,8 @@ Rectangle { MoneroComponents.LineEditMulti { id: descriptionLine Layout.topMargin: 20 - labelText: qsTr("<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style>\ - Description") + translationManager.emptyString + labelText: "<style type='text/css'>a {text-decoration: none; color: #858585; font-size: 14px;}</style> %1" + .arg(qsTr("Description")) + translationManager.emptyString placeholderText: qsTr("Add a name...") + translationManager.emptyString } RowLayout { |
