fix: account for translations

This commit is contained in:
hydr063n 2020-10-05 14:58:46 +02:00 committed by Iuri Matias
parent 3c299d054c
commit eb8d95ed3e
1 changed files with 1 additions and 1 deletions

View File

@ -165,6 +165,6 @@ QtObject {
*/
function seedPhraseWordCountText(text) {
let wordCount = countWords(text);
return getTick(wordCount) + wordCount.toString() + " words";
return qsTr("%1%2 words").arg(getTick(wordCount)).arg(wordCount.toString());
}
}