CResourceTableContextMenu: Mark strings as translatable where applicable

This commit is contained in:
Lioncash 2020-06-28 05:23:53 -04:00
parent 298e9b501c
commit f386b22e07
1 changed files with 17 additions and 17 deletions

View File

@ -25,51 +25,51 @@ void CResourceTableContextMenu::InitMenu()
if (mpClickedEntry)
{
#ifdef WIN32
const QString kOpenInExplorerString = "Show in Explorer";
const QString kOpenInExplorerString = tr("Show in Explorer");
#elif defined(__APPLE__)
const QString kOpenInExplorerString = "Show in Finder";
const QString kOpenInExplorerString = tr("Show in Finder");
#else
const QString kOpenInExplorerString = "Show in file manager";
const QString kOpenInExplorerString = tr("Show in file manager");
#endif
addAction("Open", this, SLOT(Open()));
addAction("Open in External Application", this, SLOT(OpenInExternalApp()));
addAction(tr("Open"), this, SLOT(Open()));
addAction(tr("Open in External Application"), this, SLOT(OpenInExternalApp()));
addAction(kOpenInExplorerString, this, SLOT(OpenInExplorer()));
addSeparator();
}
if (mpClickedEntry || mpClickedDirectory)
{
addAction("Rename", this, SLOT(Rename()));
addAction(tr("Rename"), this, SLOT(Rename()));
if (mpModel->IsDisplayingAssetList())
{
addAction("Select Folder", this, SLOT(SelectFolder()));
addAction(tr("Select Folder"), this, SLOT(SelectFolder()));
}
if (mpClickedEntry)
{
addAction("Show Referencers", this, SLOT(ShowReferencers()));
addAction("Show Dependencies", this, SLOT(ShowDependencies()));
addAction(tr("Show Referencers"), this, SLOT(ShowReferencers()));
addAction(tr("Show Dependencies"), this, SLOT(ShowDependencies()));
}
}
if (mpClickedEntry || mpClickedDirectory || !mSelectedIndexes.isEmpty())
{
addAction("Delete", this, SLOT(Delete()));
addAction(tr("Delete"), this, SLOT(Delete()));
}
addSeparator();
if (mpClickedEntry)
{
addAction("Copy Name", this, SLOT(CopyName()));
addAction("Copy Path", this, SLOT(CopyPath()));
addAction("Copy ID", this, SLOT(CopyID()));
addAction(tr("Copy Name"), this, SLOT(CopyName()));
addAction(tr("Copy Path"), this, SLOT(CopyPath()));
addAction(tr("Copy ID"), this, SLOT(CopyID()));
addSeparator();
}
QMenu* pCreate = addMenu("Create...");
QMenu* pCreate = addMenu(tr("Create..."));
mpBrowser->AddCreateAssetMenuActions(pCreate);
// Asset-specific
@ -78,7 +78,7 @@ void CResourceTableContextMenu::InitMenu()
switch (mpClickedEntry->ResourceType())
{
case EResourceType::StringTable:
addAction("Create Scan", this, SLOT(CreateSCAN()));
addAction(tr("Create Scan"), this, SLOT(CreateSCAN()));
break;
default: break;
}
@ -178,7 +178,7 @@ void CResourceTableContextMenu::ShowReferencers()
if (!mpModel->IsDisplayingUserEntryList())
mpBrowser->SetInspectedEntry(mpClickedEntry);
QString ListDesc = QString("Referencers of \"%1\"").arg( TO_QSTRING(mpClickedEntry->CookedAssetPath().GetFileName()) );
const QString ListDesc = tr("Referencers of \"%1\"").arg( TO_QSTRING(mpClickedEntry->CookedAssetPath().GetFileName()) );
mpModel->DisplayEntryList(EntryList, ListDesc);
mpBrowser->ClearFilters();
}
@ -203,7 +203,7 @@ void CResourceTableContextMenu::ShowDependencies()
if (!mpModel->IsDisplayingUserEntryList())
mpBrowser->SetInspectedEntry(mpClickedEntry);
QString ListDesc = QString("Dependencies of \"%1\"").arg( TO_QSTRING(mpClickedEntry->CookedAssetPath().GetFileName()) );
const QString ListDesc = tr("Dependencies of \"%1\"").arg( TO_QSTRING(mpClickedEntry->CookedAssetPath().GetFileName()) );
mpModel->DisplayEntryList(EntryList, ListDesc);
mpBrowser->ClearFilters();
}