From f386b22e0789d4b0a5325e5fb40d95be4712f9f6 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 28 Jun 2020 05:23:53 -0400 Subject: [PATCH] CResourceTableContextMenu: Mark strings as translatable where applicable --- .../CResourceTableContextMenu.cpp | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Editor/ResourceBrowser/CResourceTableContextMenu.cpp b/src/Editor/ResourceBrowser/CResourceTableContextMenu.cpp index bd93b72d..03f0a8e0 100644 --- a/src/Editor/ResourceBrowser/CResourceTableContextMenu.cpp +++ b/src/Editor/ResourceBrowser/CResourceTableContextMenu.cpp @@ -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(); }