Fix for duplicate localization keys

#jira UE-194582
#rb trivial

[CL 27632041 by danny chapman in ue5-main branch]
This commit is contained in:
danny chapman
2023-09-06 09:27:53 -04:00
parent df634c7352
commit 427beabbec

View File

@@ -165,14 +165,14 @@ TSharedPtr<SWidget> SOperatorTreeWidget::CreateContextMenu()
MenuBuilder.BeginSection(NAME_None, LOCTEXT("ChannelDrawStyle", "Draw Style"));
{
MenuBuilder.AddMenuEntry(
LOCTEXT("OperatorTreeCopyName", "Copy Names"),
LOCTEXT("OperatorTreeCopyName_Tooltip", "Copy the names of all the selected operators to the clipboard."),
LOCTEXT("OperatorTreeCopyNames", "Copy Names"),
LOCTEXT("OperatorTreeCopyNames_Tooltip", "Copy the names of all the selected operators to the clipboard."),
FSlateIcon(FAppStyle::GetAppStyleSetName(), "Icons.Copy"),
FUIAction(FExecuteAction::CreateSP(this, &SOperatorTreeWidget::CopySelectedItemsNamesToClipboard)));
MenuBuilder.AddMenuEntry(
LOCTEXT("OperatorTreeCopyName", "Copy All"),
LOCTEXT("OperatorTreeCopyName_Tooltip", "Copy the full description of all the selected operators to the clipboard."),
LOCTEXT("OperatorTreeCopyAll", "Copy All"),
LOCTEXT("OperatorTreeCopyAll_Tooltip", "Copy the full description of all the selected operators to the clipboard."),
FSlateIcon(FAppStyle::GetAppStyleSetName(), "Icons.Copy"),
FUIAction(FExecuteAction::CreateSP(this, &SOperatorTreeWidget::CopySelectedItemsDescriptionsToClipboard)));
}