using System; using System.IO; class Test { private bool clear; public static void Main() { Gettext.Localization l10n = new Gettext.Localization("nautilus", "/desktop/g24/share/locale"); Console.WriteLine(l10n.gettext("_Find")); Console.WriteLine(l10n.gettext("Applications")); Console.WriteLine(l10n.gettext("Support")); Console.WriteLine(l10n.gettext("Suport")); Console.WriteLine(l10n.gettext("Svport")); Console.WriteLine(l10n.gettext("%d hour\0%d hours")); Console.WriteLine(l10n.ngettext("%d hour","%d hours", 1)); Console.WriteLine(l10n.gettext("Less than one minute until the next break")); Console.WriteLine(l10n.gettext("meta")); } }