mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 13:35:58 +03:00
Merge pull request #5358 from nextcloud/bugfix/fix-bad-string-for-tr
Fix bad string for translation.
This commit is contained in:
commit
636027a9b3
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ QVariant FolderStatusModel::data(const QModelIndex &index, int role) const
|
||||||
//: Example text: "File.txt (23KB)"
|
//: Example text: "File.txt (23KB)"
|
||||||
const auto &xParent = static_cast<SubFolderInfo *>(index.internalPointer());
|
const auto &xParent = static_cast<SubFolderInfo *>(index.internalPointer());
|
||||||
const auto suffix = (subfolderInfo._isNonDecryptable && subfolderInfo._checked && (!xParent || !xParent->_isEncrypted))
|
const auto suffix = (subfolderInfo._isNonDecryptable && subfolderInfo._checked && (!xParent || !xParent->_isEncrypted))
|
||||||
? tr(" - %1").arg("Could not decrypt!")
|
? QStringLiteral(" - ") + tr("Could not decrypt!")
|
||||||
: QString{};
|
: QString{};
|
||||||
return subfolderInfo._size < 0 ? QString(subfolderInfo._name + suffix) : QString(tr("%1 (%2)").arg(subfolderInfo._name, Utility::octetsToString(subfolderInfo._size)) + suffix);
|
return subfolderInfo._size < 0 ? QString(subfolderInfo._name + suffix) : QString(tr("%1 (%2)").arg(subfolderInfo._name, Utility::octetsToString(subfolderInfo._size)) + suffix);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue