You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
Fix for duplicate localization keys
#jira UE-194582 #rb trivial [CL 27632041 by danny chapman in ue5-main branch]
This commit is contained in:
@@ -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)));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user