qt: Replace disambiguation strings with translator comments

Translator comments is the right way to pass context to translators.
This commit is contained in:
Hennadii Stepanov
2021-05-15 16:02:43 +03:00
parent c857148636
commit 8b77133651
7 changed files with 21 additions and 9 deletions

View File

@@ -273,7 +273,8 @@ void WalletView::backupWallet()
{
QString filename = GUIUtil::getSaveFileName(this,
tr("Backup Wallet"), QString(),
tr("Wallet Data", "Name of wallet data file format") + QLatin1String(" (*.dat)"), nullptr);
//: Name of the wallet data file format.
tr("Wallet Data") + QLatin1String(" (*.dat)"), nullptr);
if (filename.isEmpty())
return;