diff --git a/src/Editor/ResourceBrowser/CResourceTableModel.cpp b/src/Editor/ResourceBrowser/CResourceTableModel.cpp index 6eb9cb61..1c77b04e 100644 --- a/src/Editor/ResourceBrowser/CResourceTableModel.cpp +++ b/src/Editor/ResourceBrowser/CResourceTableModel.cpp @@ -39,7 +39,7 @@ QVariant CResourceTableModel::data(const QModelIndex& rkIndex, int Role) const if (Role == Qt::DisplayRole || Role == Qt::ToolTipRole) { return ((mpCurrentDir && !mpCurrentDir->IsRoot() && rkIndex.row() == 0) - ? tr("..") + ? QStringLiteral("..") : TO_QSTRING(pDir->Name())); }