comparison Translatable/ControlTranslator.cs @ 22:edae1d817962

Re #47: Add translatable GTK# widgets * Remove debugging print statement
author IBBoard <dev@ibboard.co.uk>
date Tue, 28 Dec 2010 19:50:04 +0000
parents 0364560fcec2
children ae37467335ae
comparison
equal deleted inserted replaced
21:0364560fcec2 22:edae1d817962
57 } 57 }
58 } 58 }
59 59
60 private static void TranslateAction(Action action) 60 private static void TranslateAction(Action action)
61 { 61 {
62 System.Console.WriteLine(action.Name);
63 action.Label = Translation.GetTranslation(action.Name, action.Label); 62 action.Label = Translation.GetTranslation(action.Name, action.Label);
64 } 63 }
65 } 64 }
66 } 65 }
67 66