From 3769b845b6a39b2eddab8574729dcd325756358c Mon Sep 17 00:00:00 2001 From: ScottNZ Date: Mon, 14 Oct 2013 00:09:40 +1300 Subject: [PATCH] Make tooltip names/descriptions translatable --- OpenRA.Mods.RA/Tooltip.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/OpenRA.Mods.RA/Tooltip.cs b/OpenRA.Mods.RA/Tooltip.cs index e014b9b30b..b7cd7d35b2 100644 --- a/OpenRA.Mods.RA/Tooltip.cs +++ b/OpenRA.Mods.RA/Tooltip.cs @@ -16,8 +16,8 @@ namespace OpenRA.Mods.RA [Desc("Shown in the build palette widget.")] public class TooltipInfo : ITraitInfo { - public readonly string Description = ""; - public readonly string Name = ""; + [Translate] public readonly string Description = ""; + [Translate] public readonly string Name = ""; [Desc("Sequence of the actor that contains the cameo.")] public readonly string Icon = "icon";