CVirtualDirectoryModel: Mark strings as translatable where applicable

This commit is contained in:
Lioncash 2020-06-28 06:15:37 -04:00
parent 04bfb17f3c
commit 041afedea3
1 changed files with 6 additions and 4 deletions

View File

@ -75,18 +75,20 @@ QVariant CVirtualDirectoryModel::data(const QModelIndex& rkIndex, int Role) cons
if (Role == Qt::DisplayRole || Role == Qt::ToolTipRole)
{
if (!rkIndex.parent().isValid())
return "Resources";
{
return tr("Resources");
}
else
{
CVirtualDirectory *pDir = IndexDirectory(rkIndex);
if (pDir) return TO_QSTRING(pDir->Name());
if (pDir)
return TO_QSTRING(pDir->Name());
}
}
if (Role == Qt::DecorationRole)
{
return QIcon(":/icons/Open_24px.svg");
return QIcon(QStringLiteral(":/icons/Open_24px.svg"));
}
return QVariant::Invalid;