We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The ts files are empty/corrupted. Sync with transifex.
Translate .desktop file
All currency names must be translated more systematically:
Use QT_TR_NOOP()
Generate a dummy .qml file based on currencies.json or currencies.csv. https://stackoverflow.com/questions/7771011/how-to-parse-data-in-json
.qml
//: <currency.name> //~ Context Currency name QT_TR_NOOP("code_ <currency.code>")
Where <currency.code> is NOT a variable, but the actual currency code: code_EUR.
<currency.code>
code_EUR
In the actual list element, use something like text: qsTr("code_" + model.code)
text: qsTr("code_" + model.code)
Or don't use Transifex for currency names.
The text was updated successfully, but these errors were encountered:
tanghus
No branches or pull requests
The ts files are empty/corrupted. Sync with transifex.
Translate .desktop file
All currency names must be translated more systematically:
Use QT_TR_NOOP()
Generate a dummy
.qml
file based on currencies.json or currencies.csv. https://stackoverflow.com/questions/7771011/how-to-parse-data-in-jsonWhere
<currency.code>
is NOT a variable, but the actual currency code:code_EUR
.In the actual list element, use something like
text: qsTr("code_" + model.code)
Or don't use Transifex for currency names.
The text was updated successfully, but these errors were encountered: