From 43933e0d35c7be90949c5dc04dc97f8a1ec6dbc7 Mon Sep 17 00:00:00 2001 From: John Lewin Date: Mon, 11 Jan 2016 13:43:22 -0800 Subject: [PATCH] Prevent AutoGeneratingTranslationMap on Android --- LocalizedString.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LocalizedString.cs b/LocalizedString.cs index 9ee5ac706..9306a947c 100644 --- a/LocalizedString.cs +++ b/LocalizedString.cs @@ -44,7 +44,7 @@ namespace MatterHackers.Localizations { if (MatterControlTranslationMap == null) { -#if DEBUG +#if DEBUG && !__ANDROID__ // In debug builds we load a translation map capable of generating/updating master.txt MatterControlTranslationMap = new AutoGeneratingTranslationMap("Translations", UserSettings.Instance.Language); #else