Use short context names in hotkey yaml, generate translation key at runtime.
This commit is contained in:
@@ -10,11 +10,14 @@
|
|||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace OpenRA
|
namespace OpenRA
|
||||||
{
|
{
|
||||||
public sealed class HotkeyDefinition
|
public sealed class HotkeyDefinition
|
||||||
{
|
{
|
||||||
|
public const string ContextFluentPrefix = "hotkey-context";
|
||||||
|
|
||||||
public readonly string Name;
|
public readonly string Name;
|
||||||
public readonly Hotkey Default = Hotkey.Invalid;
|
public readonly Hotkey Default = Hotkey.Invalid;
|
||||||
|
|
||||||
@@ -45,7 +48,8 @@ namespace OpenRA
|
|||||||
Types = FieldLoader.GetValue<HashSet<string>>("Types", typesYaml.Value);
|
Types = FieldLoader.GetValue<HashSet<string>>("Types", typesYaml.Value);
|
||||||
|
|
||||||
if (nodeDict.TryGetValue("Contexts", out var contextYaml))
|
if (nodeDict.TryGetValue("Contexts", out var contextYaml))
|
||||||
Contexts = FieldLoader.GetValue<HashSet<string>>("Contexts", contextYaml.Value);
|
Contexts = FieldLoader.GetValue<HashSet<string>>("Contexts", contextYaml.Value)
|
||||||
|
.Select(c => ContextFluentPrefix + "." + c).ToHashSet();
|
||||||
|
|
||||||
if (nodeDict.TryGetValue("Platform", out var platformYaml))
|
if (nodeDict.TryGetValue("Platform", out var platformYaml))
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic
|
|||||||
const string DuplicateNotice = "label-duplicate-notice";
|
const string DuplicateNotice = "label-duplicate-notice";
|
||||||
|
|
||||||
[FluentReference]
|
[FluentReference]
|
||||||
const string AnyContext = "hotkey-context-any";
|
const string AnyContext = HotkeyDefinition.ContextFluentPrefix + "-any";
|
||||||
|
|
||||||
readonly ModData modData;
|
readonly ModData modData;
|
||||||
readonly Dictionary<string, MiniYaml> logicArgs;
|
readonly Dictionary<string, MiniYaml> logicArgs;
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
NextProductionTab: PAGEDOWN
|
NextProductionTab: PAGEDOWN
|
||||||
Description: hotkey-description-nextproductiontab
|
Description: hotkey-description-nextproductiontab
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
PreviousProductionTab: PAGEUP
|
PreviousProductionTab: PAGEUP
|
||||||
Description: hotkey-description-previousproductiontab
|
Description: hotkey-description-previousproductiontab
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeBuilding: E
|
ProductionTypeBuilding: E
|
||||||
Description: hotkey-description-productiontypebuilding
|
Description: hotkey-description-productiontypebuilding
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeDefense: R
|
ProductionTypeDefense: R
|
||||||
Description: hotkey-description-productiontypedefense
|
Description: hotkey-description-productiontypedefense
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeInfantry: T
|
ProductionTypeInfantry: T
|
||||||
Description: hotkey-description-productiontypeinfantry
|
Description: hotkey-description-productiontypeinfantry
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeVehicle: Y
|
ProductionTypeVehicle: Y
|
||||||
Description: hotkey-description-productiontypevehicle
|
Description: hotkey-description-productiontypevehicle
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeAircraft: U
|
ProductionTypeAircraft: U
|
||||||
Description: hotkey-description-productiontypeaircraft
|
Description: hotkey-description-productiontypeaircraft
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,21 +1,21 @@
|
|||||||
OpenTeamChat: Return
|
OpenTeamChat: Return
|
||||||
Description: hotkey-description-openteamchat
|
Description: hotkey-description-openteamchat
|
||||||
Types: Chat
|
Types: Chat
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
OpenGeneralChat: Return Shift
|
OpenGeneralChat: Return Shift
|
||||||
Description: hotkey-description-opengeneralchat
|
Description: hotkey-description-opengeneralchat
|
||||||
Types: Chat
|
Types: Chat
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
ToggleChatMode: Tab Shift
|
ToggleChatMode: Tab Shift
|
||||||
Description: hotkey-description-togglechatmode
|
Description: hotkey-description-togglechatmode
|
||||||
Types: Chat
|
Types: Chat
|
||||||
Contexts: hotkey-context-chat-input, hotkey-context-menu
|
Contexts: chat-input, menu
|
||||||
Readonly: True
|
Readonly: True
|
||||||
|
|
||||||
Autocomplete: Tab
|
Autocomplete: Tab
|
||||||
Description: hotkey-description-autocomplete
|
Description: hotkey-description-autocomplete
|
||||||
Types: Chat
|
Types: Chat
|
||||||
Contexts: hotkey-context-chat-input
|
Contexts: chat-input
|
||||||
Readonly: True
|
Readonly: True
|
||||||
|
|||||||
@@ -1,294 +1,294 @@
|
|||||||
ControlGroupSelect01: NUMBER_1
|
ControlGroupSelect01: NUMBER_1
|
||||||
Description: hotkey-description-controlgroupselect01
|
Description: hotkey-description-controlgroupselect01
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect02: NUMBER_2
|
ControlGroupSelect02: NUMBER_2
|
||||||
Description: hotkey-description-controlgroupselect02
|
Description: hotkey-description-controlgroupselect02
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect03: NUMBER_3
|
ControlGroupSelect03: NUMBER_3
|
||||||
Description: hotkey-description-controlgroupselect03
|
Description: hotkey-description-controlgroupselect03
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect04: NUMBER_4
|
ControlGroupSelect04: NUMBER_4
|
||||||
Description: hotkey-description-controlgroupselect04
|
Description: hotkey-description-controlgroupselect04
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect05: NUMBER_5
|
ControlGroupSelect05: NUMBER_5
|
||||||
Description: hotkey-description-controlgroupselect05
|
Description: hotkey-description-controlgroupselect05
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect06: NUMBER_6
|
ControlGroupSelect06: NUMBER_6
|
||||||
Description: hotkey-description-controlgroupselect06
|
Description: hotkey-description-controlgroupselect06
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect07: NUMBER_7
|
ControlGroupSelect07: NUMBER_7
|
||||||
Description: hotkey-description-controlgroupselect07
|
Description: hotkey-description-controlgroupselect07
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect08: NUMBER_8
|
ControlGroupSelect08: NUMBER_8
|
||||||
Description: hotkey-description-controlgroupselect08
|
Description: hotkey-description-controlgroupselect08
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect09: NUMBER_9
|
ControlGroupSelect09: NUMBER_9
|
||||||
Description: hotkey-description-controlgroupselect09
|
Description: hotkey-description-controlgroupselect09
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupSelect10: NUMBER_0
|
ControlGroupSelect10: NUMBER_0
|
||||||
Description: hotkey-description-controlgroupselect10
|
Description: hotkey-description-controlgroupselect10
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCreate01: NUMBER_1 Ctrl
|
ControlGroupCreate01: NUMBER_1 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate01
|
Description: hotkey-description-controlgroupcreate01
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_1 Meta
|
OSX: NUMBER_1 Meta
|
||||||
|
|
||||||
ControlGroupCreate02: NUMBER_2 Ctrl
|
ControlGroupCreate02: NUMBER_2 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate02
|
Description: hotkey-description-controlgroupcreate02
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_2 Meta
|
OSX: NUMBER_2 Meta
|
||||||
|
|
||||||
ControlGroupCreate03: NUMBER_3 Ctrl
|
ControlGroupCreate03: NUMBER_3 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate03
|
Description: hotkey-description-controlgroupcreate03
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_3 Meta
|
OSX: NUMBER_3 Meta
|
||||||
|
|
||||||
ControlGroupCreate04: NUMBER_4 Ctrl
|
ControlGroupCreate04: NUMBER_4 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate04
|
Description: hotkey-description-controlgroupcreate04
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_4 Meta
|
OSX: NUMBER_4 Meta
|
||||||
|
|
||||||
ControlGroupCreate05: NUMBER_5 Ctrl
|
ControlGroupCreate05: NUMBER_5 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate05
|
Description: hotkey-description-controlgroupcreate05
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_5 Meta
|
OSX: NUMBER_5 Meta
|
||||||
|
|
||||||
ControlGroupCreate06: NUMBER_6 Ctrl
|
ControlGroupCreate06: NUMBER_6 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate06
|
Description: hotkey-description-controlgroupcreate06
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_6 Meta
|
OSX: NUMBER_6 Meta
|
||||||
|
|
||||||
ControlGroupCreate07: NUMBER_7 Ctrl
|
ControlGroupCreate07: NUMBER_7 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate07
|
Description: hotkey-description-controlgroupcreate07
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_7 Meta
|
OSX: NUMBER_7 Meta
|
||||||
|
|
||||||
ControlGroupCreate08: NUMBER_8 Ctrl
|
ControlGroupCreate08: NUMBER_8 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate08
|
Description: hotkey-description-controlgroupcreate08
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_8 Meta
|
OSX: NUMBER_8 Meta
|
||||||
|
|
||||||
ControlGroupCreate09: NUMBER_9 Ctrl
|
ControlGroupCreate09: NUMBER_9 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate09
|
Description: hotkey-description-controlgroupcreate09
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_9 Meta
|
OSX: NUMBER_9 Meta
|
||||||
|
|
||||||
ControlGroupCreate10: NUMBER_0 Ctrl
|
ControlGroupCreate10: NUMBER_0 Ctrl
|
||||||
Description: hotkey-description-controlgroupcreate10
|
Description: hotkey-description-controlgroupcreate10
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_0 Meta
|
OSX: NUMBER_0 Meta
|
||||||
|
|
||||||
ControlGroupAddTo01: NUMBER_1 Ctrl, Shift
|
ControlGroupAddTo01: NUMBER_1 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto01
|
Description: hotkey-description-controlgroupaddto01
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_1 Meta, Shift
|
OSX: NUMBER_1 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo02: NUMBER_2 Ctrl, Shift
|
ControlGroupAddTo02: NUMBER_2 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto02
|
Description: hotkey-description-controlgroupaddto02
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_2 Meta, Shift
|
OSX: NUMBER_2 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo03: NUMBER_3 Ctrl, Shift
|
ControlGroupAddTo03: NUMBER_3 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto03
|
Description: hotkey-description-controlgroupaddto03
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_3 Meta, Shift
|
OSX: NUMBER_3 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo04: NUMBER_4 Ctrl, Shift
|
ControlGroupAddTo04: NUMBER_4 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto04
|
Description: hotkey-description-controlgroupaddto04
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_4 Meta, Shift
|
OSX: NUMBER_4 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo05: NUMBER_5 Ctrl, Shift
|
ControlGroupAddTo05: NUMBER_5 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto05
|
Description: hotkey-description-controlgroupaddto05
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_5 Meta, Shift
|
OSX: NUMBER_5 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo06: NUMBER_6 Ctrl, Shift
|
ControlGroupAddTo06: NUMBER_6 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto06
|
Description: hotkey-description-controlgroupaddto06
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_6 Meta, Shift
|
OSX: NUMBER_6 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo07: NUMBER_7 Ctrl, Shift
|
ControlGroupAddTo07: NUMBER_7 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto07
|
Description: hotkey-description-controlgroupaddto07
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_7 Meta, Shift
|
OSX: NUMBER_7 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo08: NUMBER_8 Ctrl, Shift
|
ControlGroupAddTo08: NUMBER_8 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto08
|
Description: hotkey-description-controlgroupaddto08
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_8 Meta, Shift
|
OSX: NUMBER_8 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo09: NUMBER_9 Ctrl, Shift
|
ControlGroupAddTo09: NUMBER_9 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto09
|
Description: hotkey-description-controlgroupaddto09
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_9 Meta, Shift
|
OSX: NUMBER_9 Meta, Shift
|
||||||
|
|
||||||
ControlGroupAddTo10: NUMBER_0 Ctrl, Shift
|
ControlGroupAddTo10: NUMBER_0 Ctrl, Shift
|
||||||
Description: hotkey-description-controlgroupaddto10
|
Description: hotkey-description-controlgroupaddto10
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
Platform:
|
Platform:
|
||||||
OSX: NUMBER_0 Meta, Shift
|
OSX: NUMBER_0 Meta, Shift
|
||||||
|
|
||||||
ControlGroupCombineWith01: NUMBER_1 Shift
|
ControlGroupCombineWith01: NUMBER_1 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith01
|
Description: hotkey-description-controlgroupcombinewith01
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith02: NUMBER_2 Shift
|
ControlGroupCombineWith02: NUMBER_2 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith02
|
Description: hotkey-description-controlgroupcombinewith02
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith03: NUMBER_3 Shift
|
ControlGroupCombineWith03: NUMBER_3 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith03
|
Description: hotkey-description-controlgroupcombinewith03
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith04: NUMBER_4 Shift
|
ControlGroupCombineWith04: NUMBER_4 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith04
|
Description: hotkey-description-controlgroupcombinewith04
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith05: NUMBER_5 Shift
|
ControlGroupCombineWith05: NUMBER_5 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith05
|
Description: hotkey-description-controlgroupcombinewith05
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith06: NUMBER_6 Shift
|
ControlGroupCombineWith06: NUMBER_6 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith06
|
Description: hotkey-description-controlgroupcombinewith06
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith07: NUMBER_7 Shift
|
ControlGroupCombineWith07: NUMBER_7 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith07
|
Description: hotkey-description-controlgroupcombinewith07
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith08: NUMBER_8 Shift
|
ControlGroupCombineWith08: NUMBER_8 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith08
|
Description: hotkey-description-controlgroupcombinewith08
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith09: NUMBER_9 Shift
|
ControlGroupCombineWith09: NUMBER_9 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith09
|
Description: hotkey-description-controlgroupcombinewith09
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupCombineWith10: NUMBER_0 Shift
|
ControlGroupCombineWith10: NUMBER_0 Shift
|
||||||
Description: hotkey-description-controlgroupcombinewith10
|
Description: hotkey-description-controlgroupcombinewith10
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo01: NUMBER_1 Alt
|
ControlGroupJumpTo01: NUMBER_1 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto01
|
Description: hotkey-description-controlgroupjumpto01
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo02: NUMBER_2 Alt
|
ControlGroupJumpTo02: NUMBER_2 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto02
|
Description: hotkey-description-controlgroupjumpto02
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo03: NUMBER_3 Alt
|
ControlGroupJumpTo03: NUMBER_3 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto03
|
Description: hotkey-description-controlgroupjumpto03
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo04: NUMBER_4 Alt
|
ControlGroupJumpTo04: NUMBER_4 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto04
|
Description: hotkey-description-controlgroupjumpto04
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo05: NUMBER_5 Alt
|
ControlGroupJumpTo05: NUMBER_5 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto05
|
Description: hotkey-description-controlgroupjumpto05
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo06: NUMBER_6 Alt
|
ControlGroupJumpTo06: NUMBER_6 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto06
|
Description: hotkey-description-controlgroupjumpto06
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo07: NUMBER_7 Alt
|
ControlGroupJumpTo07: NUMBER_7 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto07
|
Description: hotkey-description-controlgroupjumpto07
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo08: NUMBER_8 Alt
|
ControlGroupJumpTo08: NUMBER_8 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto08
|
Description: hotkey-description-controlgroupjumpto08
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo09: NUMBER_9 Alt
|
ControlGroupJumpTo09: NUMBER_9 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto09
|
Description: hotkey-description-controlgroupjumpto09
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ControlGroupJumpTo10: NUMBER_0 Alt
|
ControlGroupJumpTo10: NUMBER_0 Alt
|
||||||
Description: hotkey-description-controlgroupjumpto10
|
Description: hotkey-description-controlgroupjumpto10
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
RemoveFromControlGroup:
|
RemoveFromControlGroup:
|
||||||
Description: hotkey-description-removefromcontrolgroup
|
Description: hotkey-description-removefromcontrolgroup
|
||||||
Types: ControlGroups
|
Types: ControlGroups
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,14 +1,14 @@
|
|||||||
EditorUndo: Z Ctrl
|
EditorUndo: Z Ctrl
|
||||||
Description: hotkey-description-editorundo
|
Description: hotkey-description-editorundo
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
Platform:
|
Platform:
|
||||||
OSX: Z Meta
|
OSX: Z Meta
|
||||||
|
|
||||||
EditorRedo: Y Ctrl
|
EditorRedo: Y Ctrl
|
||||||
Description: hotkey-description-editorredo
|
Description: hotkey-description-editorredo
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
Platform:
|
Platform:
|
||||||
OSX: Z Meta, Shift
|
OSX: Z Meta, Shift
|
||||||
Linux: Z Ctrl, Shift
|
Linux: Z Ctrl, Shift
|
||||||
@@ -16,70 +16,70 @@ EditorRedo: Y Ctrl
|
|||||||
EditorCopy: C Ctrl
|
EditorCopy: C Ctrl
|
||||||
Description: hotkey-description-editorcopy
|
Description: hotkey-description-editorcopy
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
Platform:
|
Platform:
|
||||||
OSX: C Meta
|
OSX: C Meta
|
||||||
|
|
||||||
EditorQuickSave: S Ctrl
|
EditorQuickSave: S Ctrl
|
||||||
Description: hotkey-description-editorquicksave
|
Description: hotkey-description-editorquicksave
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
Platform:
|
Platform:
|
||||||
OSX: S Meta
|
OSX: S Meta
|
||||||
|
|
||||||
EditorPaste: V Ctrl
|
EditorPaste: V Ctrl
|
||||||
Description: hotkey-description-editorpaste
|
Description: hotkey-description-editorpaste
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
Platform:
|
Platform:
|
||||||
OSX: V Meta
|
OSX: V Meta
|
||||||
|
|
||||||
EditorSelectTab: E
|
EditorSelectTab: E
|
||||||
Description: hotkey-description-editorselecttab
|
Description: hotkey-description-editorselecttab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorTilesTab: R
|
EditorTilesTab: R
|
||||||
Description: hotkey-description-editortilestab
|
Description: hotkey-description-editortilestab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorOverlaysTab: T
|
EditorOverlaysTab: T
|
||||||
Description: hotkey-description-editoroverlaystab
|
Description: hotkey-description-editoroverlaystab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorActorsTab: Y
|
EditorActorsTab: Y
|
||||||
Description: hotkey-description-editoractorstab
|
Description: hotkey-description-editoractorstab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorToolsTab: U
|
EditorToolsTab: U
|
||||||
Description: hotkey-description-editortoolstab
|
Description: hotkey-description-editortoolstab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorHistoryTab: I
|
EditorHistoryTab: I
|
||||||
Description: hotkey-description-editorhistorytab
|
Description: hotkey-description-editorhistorytab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorSettingsTab: O
|
EditorSettingsTab: O
|
||||||
Description: hotkey-description-editorsettingstab
|
Description: hotkey-description-editorsettingstab
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorToggleGridOverlay: F1
|
EditorToggleGridOverlay: F1
|
||||||
Description: hotkey-description-editortogglegridoverlay
|
Description: hotkey-description-editortogglegridoverlay
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorToggleBuildableOverlay: F2
|
EditorToggleBuildableOverlay: F2
|
||||||
Description: hotkey-description-editortogglebuildableoverlay
|
Description: hotkey-description-editortogglebuildableoverlay
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|
||||||
EditorToggleMarkerOverlay: F3
|
EditorToggleMarkerOverlay: F3
|
||||||
Description: hotkey-description-editortogglemarkeroverlay
|
Description: hotkey-description-editortogglemarkeroverlay
|
||||||
Types: Editor
|
Types: Editor
|
||||||
Contexts: hotkey-context-editor
|
Contexts: editor
|
||||||
|
|||||||
@@ -1,134 +1,134 @@
|
|||||||
CycleBase: H
|
CycleBase: H
|
||||||
Description: hotkey-description-cyclebase
|
Description: hotkey-description-cyclebase
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
ToLastEvent: SPACE
|
ToLastEvent: SPACE
|
||||||
Description: hotkey-description-tolastevent
|
Description: hotkey-description-tolastevent
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
ToSelection: HOME
|
ToSelection: HOME
|
||||||
Description: hotkey-description-toselection
|
Description: hotkey-description-toselection
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
SelectAllUnits: Q
|
SelectAllUnits: Q
|
||||||
Description: hotkey-description-selectallunits
|
Description: hotkey-description-selectallunits
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
SelectUnitsByType: W
|
SelectUnitsByType: W
|
||||||
Description: hotkey-description-selectunitsbytype
|
Description: hotkey-description-selectunitsbytype
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
CycleHarvesters: N
|
CycleHarvesters: N
|
||||||
Description: hotkey-description-cycleharvesters
|
Description: hotkey-description-cycleharvesters
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
Pause: PAUSE
|
Pause: PAUSE
|
||||||
Description: hotkey-description-pause
|
Description: hotkey-description-pause
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
Sell: Z
|
Sell: Z
|
||||||
Description: hotkey-description-sell
|
Description: hotkey-description-sell
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Repair: C
|
Repair: C
|
||||||
Description: hotkey-description-repair
|
Description: hotkey-description-repair
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
PlaceBeacon: B
|
PlaceBeacon: B
|
||||||
Description: hotkey-description-placebeacon
|
Description: hotkey-description-placebeacon
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
CycleStatusBars: COMMA
|
CycleStatusBars: COMMA
|
||||||
Description: hotkey-description-cyclestatusbars
|
Description: hotkey-description-cyclestatusbars
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
ToggleMute: M
|
ToggleMute: M
|
||||||
Description: hotkey-description-togglemute
|
Description: hotkey-description-togglemute
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|
||||||
TogglePlayerStanceColor: COMMA Ctrl
|
TogglePlayerStanceColor: COMMA Ctrl
|
||||||
Description: hotkey-description-toggleplayerstancecolor
|
Description: hotkey-description-toggleplayerstancecolor
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
TakeScreenshot: P Ctrl
|
TakeScreenshot: P Ctrl
|
||||||
Description: hotkey-description-takescreenshot
|
Description: hotkey-description-takescreenshot
|
||||||
Types: World
|
Types: World
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|
||||||
AttackMove: A
|
AttackMove: A
|
||||||
Description: hotkey-description-attackmove
|
Description: hotkey-description-attackmove
|
||||||
Types: Unit
|
Types: Unit
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Stop: S
|
Stop: S
|
||||||
Description: hotkey-description-stop
|
Description: hotkey-description-stop
|
||||||
Types: Unit
|
Types: Unit
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Scatter: X Ctrl
|
Scatter: X Ctrl
|
||||||
Description: hotkey-description-scatter
|
Description: hotkey-description-scatter
|
||||||
Types: Unit
|
Types: Unit
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Deploy: F
|
Deploy: F
|
||||||
Description: hotkey-description-deploy
|
Description: hotkey-description-deploy
|
||||||
Types: Unit
|
Types: Unit
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Guard: D
|
Guard: D
|
||||||
Description: hotkey-description-guard
|
Description: hotkey-description-guard
|
||||||
Types: Unit
|
Types: Unit
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
StanceAttackAnything: A Alt
|
StanceAttackAnything: A Alt
|
||||||
Description: hotkey-description-stanceattackanything
|
Description: hotkey-description-stanceattackanything
|
||||||
Types: Stance
|
Types: Stance
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
StanceDefend: S Alt
|
StanceDefend: S Alt
|
||||||
Description: hotkey-description-stancedefend
|
Description: hotkey-description-stancedefend
|
||||||
Types: Stance
|
Types: Stance
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
StanceReturnFire: D Alt
|
StanceReturnFire: D Alt
|
||||||
Description: hotkey-description-stancereturnfire
|
Description: hotkey-description-stancereturnfire
|
||||||
Types: Stance
|
Types: Stance
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
StanceHoldFire: F Alt
|
StanceHoldFire: F Alt
|
||||||
Description: hotkey-description-stanceholdfire
|
Description: hotkey-description-stanceholdfire
|
||||||
Types: Stance
|
Types: Stance
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
StopMusic: AUDIOSTOP
|
StopMusic: AUDIOSTOP
|
||||||
Description: hotkey-description-stopmusic
|
Description: hotkey-description-stopmusic
|
||||||
Types: Music
|
Types: Music
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|
||||||
PauseMusic: AUDIOPLAY
|
PauseMusic: AUDIOPLAY
|
||||||
Description: hotkey-description-pausemusic
|
Description: hotkey-description-pausemusic
|
||||||
Types: Music
|
Types: Music
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|
||||||
PrevMusic: AUDIOPREV
|
PrevMusic: AUDIOPREV
|
||||||
Description: hotkey-description-prevmusic
|
Description: hotkey-description-prevmusic
|
||||||
Types: Music
|
Types: Music
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|
||||||
NextMusic: AUDIONEXT
|
NextMusic: AUDIONEXT
|
||||||
Description: hotkey-description-nextmusic
|
Description: hotkey-description-nextmusic
|
||||||
Types: Music
|
Types: Music
|
||||||
Contexts: hotkey-context-menu, hotkey-context-player, hotkey-context-spectator
|
Contexts: menu, player, spectator
|
||||||
|
|||||||
@@ -1,74 +1,74 @@
|
|||||||
ObserverCombinedView: MINUS
|
ObserverCombinedView: MINUS
|
||||||
Description: hotkey-description-observercombinedview
|
Description: hotkey-description-observercombinedview
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
ObserverWorldView: EQUALS
|
ObserverWorldView: EQUALS
|
||||||
Description: hotkey-description-observerworldview
|
Description: hotkey-description-observerworldview
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
ReplaySpeedSlow: F9
|
ReplaySpeedSlow: F9
|
||||||
Description: hotkey-description-replayspeedslow
|
Description: hotkey-description-replayspeedslow
|
||||||
Types: Replay
|
Types: Replay
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
ReplaySpeedRegular: F10
|
ReplaySpeedRegular: F10
|
||||||
Description: hotkey-description-replayspeedregular
|
Description: hotkey-description-replayspeedregular
|
||||||
Types: Replay
|
Types: Replay
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
ReplaySpeedFast: F11
|
ReplaySpeedFast: F11
|
||||||
Description: hotkey-description-replayspeedfast
|
Description: hotkey-description-replayspeedfast
|
||||||
Types: Replay
|
Types: Replay
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
ReplaySpeedMax: F12
|
ReplaySpeedMax: F12
|
||||||
Description: hotkey-description-replayspeedmax
|
Description: hotkey-description-replayspeedmax
|
||||||
Types: Replay
|
Types: Replay
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsNone: F1
|
StatisticsNone: F1
|
||||||
Description: hotkey-description-statisticsnone
|
Description: hotkey-description-statisticsnone
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsBasic: F2
|
StatisticsBasic: F2
|
||||||
Description: hotkey-description-statisticsbasic
|
Description: hotkey-description-statisticsbasic
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsEconomy: F3
|
StatisticsEconomy: F3
|
||||||
Description: hotkey-description-statisticseconomy
|
Description: hotkey-description-statisticseconomy
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsProduction: F4
|
StatisticsProduction: F4
|
||||||
Description: hotkey-description-statisticsproduction
|
Description: hotkey-description-statisticsproduction
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsSupportPowers: F5
|
StatisticsSupportPowers: F5
|
||||||
Description: hotkey-description-statisticssupportpowers
|
Description: hotkey-description-statisticssupportpowers
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsCombat: F6
|
StatisticsCombat: F6
|
||||||
Description: hotkey-description-statisticscombat
|
Description: hotkey-description-statisticscombat
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsArmy: F7
|
StatisticsArmy: F7
|
||||||
Description: hotkey-description-statisticsarmy
|
Description: hotkey-description-statisticsarmy
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsGraph:
|
StatisticsGraph:
|
||||||
Description: hotkey-description-statisticsgraph
|
Description: hotkey-description-statisticsgraph
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|
||||||
StatisticsArmyGraph:
|
StatisticsArmyGraph:
|
||||||
Description: hotkey-description-statisticsarmygraph
|
Description: hotkey-description-statisticsarmygraph
|
||||||
Types: Observer
|
Types: Observer
|
||||||
Contexts: hotkey-context-spectator
|
Contexts: spectator
|
||||||
|
|||||||
@@ -1,129 +1,129 @@
|
|||||||
CycleProductionBuildings: TAB Ctrl
|
CycleProductionBuildings: TAB Ctrl
|
||||||
Description: hotkey-description-cycleproductionbuildings
|
Description: hotkey-description-cycleproductionbuildings
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator
|
Contexts: player, spectator
|
||||||
|
|
||||||
SelectProductionBuilding: TAB
|
SelectProductionBuilding: TAB
|
||||||
Description: hotkey-description-selectproductionbuilding
|
Description: hotkey-description-selectproductionbuilding
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production01: F1
|
Production01: F1
|
||||||
Description: hotkey-description-production01
|
Description: hotkey-description-production01
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production02: F2
|
Production02: F2
|
||||||
Description: hotkey-description-production02
|
Description: hotkey-description-production02
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production03: F3
|
Production03: F3
|
||||||
Description: hotkey-description-production03
|
Description: hotkey-description-production03
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production04: F4
|
Production04: F4
|
||||||
Description: hotkey-description-production04
|
Description: hotkey-description-production04
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production05: F5
|
Production05: F5
|
||||||
Description: hotkey-description-production05
|
Description: hotkey-description-production05
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production06: F6
|
Production06: F6
|
||||||
Description: hotkey-description-production06
|
Description: hotkey-description-production06
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production07: F7
|
Production07: F7
|
||||||
Description: hotkey-description-production07
|
Description: hotkey-description-production07
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production08: F8
|
Production08: F8
|
||||||
Description: hotkey-description-production08
|
Description: hotkey-description-production08
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production09: F9
|
Production09: F9
|
||||||
Description: hotkey-description-production09
|
Description: hotkey-description-production09
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production10: F10
|
Production10: F10
|
||||||
Description: hotkey-description-production10
|
Description: hotkey-description-production10
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production11: F11
|
Production11: F11
|
||||||
Description: hotkey-description-production11
|
Description: hotkey-description-production11
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production12: F12
|
Production12: F12
|
||||||
Description: hotkey-description-production12
|
Description: hotkey-description-production12
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production13: F1 CTRL
|
Production13: F1 CTRL
|
||||||
Description: hotkey-description-production13
|
Description: hotkey-description-production13
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production14: F2 CTRL
|
Production14: F2 CTRL
|
||||||
Description: hotkey-description-production14
|
Description: hotkey-description-production14
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production15: F3 CTRL
|
Production15: F3 CTRL
|
||||||
Description: hotkey-description-production15
|
Description: hotkey-description-production15
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production16: F4 CTRL
|
Production16: F4 CTRL
|
||||||
Description: hotkey-description-production16
|
Description: hotkey-description-production16
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production17: F5 CTRL
|
Production17: F5 CTRL
|
||||||
Description: hotkey-description-production17
|
Description: hotkey-description-production17
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production18: F6 CTRL
|
Production18: F6 CTRL
|
||||||
Description: hotkey-description-production18
|
Description: hotkey-description-production18
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production19: F7 CTRL
|
Production19: F7 CTRL
|
||||||
Description: hotkey-description-production19
|
Description: hotkey-description-production19
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production20: F8 CTRL
|
Production20: F8 CTRL
|
||||||
Description: hotkey-description-production20
|
Description: hotkey-description-production20
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production21: F9 CTRL
|
Production21: F9 CTRL
|
||||||
Description: hotkey-description-production21
|
Description: hotkey-description-production21
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production22: F10 CTRL
|
Production22: F10 CTRL
|
||||||
Description: hotkey-description-production22
|
Description: hotkey-description-production22
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production23: F11 CTRL
|
Production23: F11 CTRL
|
||||||
Description: hotkey-description-production23
|
Description: hotkey-description-production23
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
Production24: F12 CTRL
|
Production24: F12 CTRL
|
||||||
Description: hotkey-description-production24
|
Description: hotkey-description-production24
|
||||||
Types: ProductionSlot
|
Types: ProductionSlot
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,29 +1,29 @@
|
|||||||
SupportPower01:
|
SupportPower01:
|
||||||
Description: hotkey-description-supportpower01
|
Description: hotkey-description-supportpower01
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
SupportPower02:
|
SupportPower02:
|
||||||
Description: hotkey-description-supportpower02
|
Description: hotkey-description-supportpower02
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
SupportPower03:
|
SupportPower03:
|
||||||
Description: hotkey-description-supportpower03
|
Description: hotkey-description-supportpower03
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
SupportPower04:
|
SupportPower04:
|
||||||
Description: hotkey-description-supportpower04
|
Description: hotkey-description-supportpower04
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
SupportPower05:
|
SupportPower05:
|
||||||
Description: hotkey-description-supportpower05
|
Description: hotkey-description-supportpower05
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
SupportPower06:
|
SupportPower06:
|
||||||
Description: hotkey-description-supportpower06
|
Description: hotkey-description-supportpower06
|
||||||
Types: SupportPower
|
Types: SupportPower
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,94 +1,94 @@
|
|||||||
MapScrollUp: UP
|
MapScrollUp: UP
|
||||||
Description: hotkey-description-mapscrollup
|
Description: hotkey-description-mapscrollup
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapScrollDown: DOWN
|
MapScrollDown: DOWN
|
||||||
Description: hotkey-description-mapscrolldown
|
Description: hotkey-description-mapscrolldown
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapScrollLeft: LEFT
|
MapScrollLeft: LEFT
|
||||||
Description: hotkey-description-mapscrollleft
|
Description: hotkey-description-mapscrollleft
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapScrollRight: RIGHT
|
MapScrollRight: RIGHT
|
||||||
Description: hotkey-description-mapscrollright
|
Description: hotkey-description-mapscrollright
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapJumpToTopEdge: UP Alt
|
MapJumpToTopEdge: UP Alt
|
||||||
Description: hotkey-description-mapjumptotopedge
|
Description: hotkey-description-mapjumptotopedge
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapJumpToBottomEdge: DOWN Alt
|
MapJumpToBottomEdge: DOWN Alt
|
||||||
Description: hotkey-description-mapjumptobottomedge
|
Description: hotkey-description-mapjumptobottomedge
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapJumpToLeftEdge: LEFT Alt
|
MapJumpToLeftEdge: LEFT Alt
|
||||||
Description: hotkey-description-mapjumptoleftedge
|
Description: hotkey-description-mapjumptoleftedge
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapJumpToRightEdge: RIGHT Alt
|
MapJumpToRightEdge: RIGHT Alt
|
||||||
Description: hotkey-description-mapjumptorightedge
|
Description: hotkey-description-mapjumptorightedge
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkSave01: Q Ctrl
|
MapBookmarkSave01: Q Ctrl
|
||||||
Description: hotkey-description-mapbookmarksave01
|
Description: hotkey-description-mapbookmarksave01
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkRestore01: Q Alt
|
MapBookmarkRestore01: Q Alt
|
||||||
Description: hotkey-description-mapbookmarkrestore01
|
Description: hotkey-description-mapbookmarkrestore01
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkSave02: W Ctrl
|
MapBookmarkSave02: W Ctrl
|
||||||
Description: hotkey-description-mapbookmarksave02
|
Description: hotkey-description-mapbookmarksave02
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkRestore02: W Alt
|
MapBookmarkRestore02: W Alt
|
||||||
Description: hotkey-description-mapbookmarkrestore02
|
Description: hotkey-description-mapbookmarkrestore02
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkSave03: E Ctrl
|
MapBookmarkSave03: E Ctrl
|
||||||
Description: hotkey-description-mapbookmarksave03
|
Description: hotkey-description-mapbookmarksave03
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkRestore03: E Alt
|
MapBookmarkRestore03: E Alt
|
||||||
Description: hotkey-description-mapbookmarkrestore03
|
Description: hotkey-description-mapbookmarkrestore03
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkSave04: R Ctrl
|
MapBookmarkSave04: R Ctrl
|
||||||
Description: hotkey-description-mapbookmarksave04
|
Description: hotkey-description-mapbookmarksave04
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
MapBookmarkRestore04: R Alt
|
MapBookmarkRestore04: R Alt
|
||||||
Description: hotkey-description-mapbookmarkrestore04
|
Description: hotkey-description-mapbookmarkrestore04
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
ZoomIn: RIGHTBRACKET
|
ZoomIn: RIGHTBRACKET
|
||||||
Description: hotkey-description-zoomin
|
Description: hotkey-description-zoomin
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
ZoomOut: LEFTBRACKET
|
ZoomOut: LEFTBRACKET
|
||||||
Description: hotkey-description-zoomout
|
Description: hotkey-description-zoomout
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|
||||||
ResetZoom: PERIOD
|
ResetZoom: PERIOD
|
||||||
Description: hotkey-description-resetzoom
|
Description: hotkey-description-resetzoom
|
||||||
Types: Viewport
|
Types: Viewport
|
||||||
Contexts: hotkey-context-player, hotkey-context-spectator, hotkey-context-editor
|
Contexts: player, spectator, editor
|
||||||
|
|||||||
@@ -1,8 +1,9 @@
|
|||||||
hotkey-context-player = Player
|
hotkey-context =
|
||||||
hotkey-context-spectator = Spectator
|
.player = Player
|
||||||
hotkey-context-chat-input = Chat Input
|
.spectator = Spectator
|
||||||
hotkey-context-menu = Menu
|
.chat-input = Chat Input
|
||||||
hotkey-context-editor = Editor
|
.menu = Menu
|
||||||
|
.editor = Editor
|
||||||
|
|
||||||
## chat.yaml
|
## chat.yaml
|
||||||
hotkey-description-openteamchat = Open Team Chat
|
hotkey-description-openteamchat = Open Team Chat
|
||||||
|
|||||||
@@ -1,39 +1,39 @@
|
|||||||
ProductionTypeBuilding: E
|
ProductionTypeBuilding: E
|
||||||
Description: hotkey-description-productiontypebuilding
|
Description: hotkey-description-productiontypebuilding
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeUpgrade: R
|
ProductionTypeUpgrade: R
|
||||||
Description: hotkey-description-productiontypeupgrade
|
Description: hotkey-description-productiontypeupgrade
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeInfantry: T
|
ProductionTypeInfantry: T
|
||||||
Description: hotkey-description-productiontypeinfantry
|
Description: hotkey-description-productiontypeinfantry
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeVehicle: Y
|
ProductionTypeVehicle: Y
|
||||||
Description: hotkey-description-productiontypevehicle
|
Description: hotkey-description-productiontypevehicle
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeAircraft: U
|
ProductionTypeAircraft: U
|
||||||
Description: hotkey-description-productiontypeaircraft
|
Description: hotkey-description-productiontypeaircraft
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeTank: I
|
ProductionTypeTank: I
|
||||||
Description: hotkey-description-productiontypetank
|
Description: hotkey-description-productiontypetank
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeMerchant: O
|
ProductionTypeMerchant: O
|
||||||
Description: hotkey-description-productiontypemerchant
|
Description: hotkey-description-productiontypemerchant
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
PowerDown: X
|
PowerDown: X
|
||||||
Description: hotkey-description-powerdown
|
Description: hotkey-description-powerdown
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,34 +1,34 @@
|
|||||||
ProductionTypeBuilding: E
|
ProductionTypeBuilding: E
|
||||||
Description: hotkey-description-productiontypebuilding
|
Description: hotkey-description-productiontypebuilding
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeDefense: R
|
ProductionTypeDefense: R
|
||||||
Description: hotkey-description-productiontypedefense
|
Description: hotkey-description-productiontypedefense
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeInfantry: T
|
ProductionTypeInfantry: T
|
||||||
Description: hotkey-description-productiontypeinfantry
|
Description: hotkey-description-productiontypeinfantry
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeVehicle: Y
|
ProductionTypeVehicle: Y
|
||||||
Description: hotkey-description-productiontypevehicle
|
Description: hotkey-description-productiontypevehicle
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeAircraft: U
|
ProductionTypeAircraft: U
|
||||||
Description: hotkey-description-productiontypeaircraft
|
Description: hotkey-description-productiontypeaircraft
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeNaval: I
|
ProductionTypeNaval: I
|
||||||
Description: hotkey-description-productiontypenaval
|
Description: hotkey-description-productiontypenaval
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
PowerDown: X
|
PowerDown: X
|
||||||
Description: hotkey-description-powerdown
|
Description: hotkey-description-powerdown
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
@@ -1,54 +1,54 @@
|
|||||||
ProductionTypeBuilding: E
|
ProductionTypeBuilding: E
|
||||||
Description: hotkey-description-productiontypebuilding
|
Description: hotkey-description-productiontypebuilding
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeDefense: R
|
ProductionTypeDefense: R
|
||||||
Description: hotkey-description-productiontypedefense
|
Description: hotkey-description-productiontypedefense
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeInfantry: T
|
ProductionTypeInfantry: T
|
||||||
Description: hotkey-description-productiontypeinfantry
|
Description: hotkey-description-productiontypeinfantry
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeVehicle: Y
|
ProductionTypeVehicle: Y
|
||||||
Description: hotkey-description-productiontypevehicle
|
Description: hotkey-description-productiontypevehicle
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ProductionTypeAircraft: U
|
ProductionTypeAircraft: U
|
||||||
Description: hotkey-description-productiontypeaircraft
|
Description: hotkey-description-productiontypeaircraft
|
||||||
Types: Production
|
Types: Production
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
PowerDown: X
|
PowerDown: X
|
||||||
Description: hotkey-description-powerdown
|
Description: hotkey-description-powerdown
|
||||||
Types: OrderGenerator
|
Types: OrderGenerator
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
DecreaseDepthPreviewContrast: LEFTBRACKET SHIFT
|
DecreaseDepthPreviewContrast: LEFTBRACKET SHIFT
|
||||||
Description: hotkey-description-decreasedepthpreviewcontrast
|
Description: hotkey-description-decreasedepthpreviewcontrast
|
||||||
Types: DepthDebug
|
Types: DepthDebug
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
IncreaseDepthPreviewContrast: RIGHTBRACKET SHIFT
|
IncreaseDepthPreviewContrast: RIGHTBRACKET SHIFT
|
||||||
Description: hotkey-description-increasedepthpreviewcontrast
|
Description: hotkey-description-increasedepthpreviewcontrast
|
||||||
Types: DepthDebug
|
Types: DepthDebug
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
DecreaseDepthPreviewOffset: SEMICOLON SHIFT
|
DecreaseDepthPreviewOffset: SEMICOLON SHIFT
|
||||||
Description: hotkey-description-decreasedepthpreviewoffset
|
Description: hotkey-description-decreasedepthpreviewoffset
|
||||||
Types: DepthDebug
|
Types: DepthDebug
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
IncreaseDepthPreviewOffset: QUOTE SHIFT
|
IncreaseDepthPreviewOffset: QUOTE SHIFT
|
||||||
Description: hotkey-description-increasedepthpreviewoffset
|
Description: hotkey-description-increasedepthpreviewoffset
|
||||||
Types: DepthDebug
|
Types: DepthDebug
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|
||||||
ToggleDepthPreview: BACKSLASH SHIFT
|
ToggleDepthPreview: BACKSLASH SHIFT
|
||||||
Description: hotkey-description-toggledepthpreview
|
Description: hotkey-description-toggledepthpreview
|
||||||
Types: DepthDebug
|
Types: DepthDebug
|
||||||
Contexts: hotkey-context-player
|
Contexts: player
|
||||||
|
|||||||
Reference in New Issue
Block a user