audrey/src/main.vala

13 lines
477 B
Vala
Raw Normal View History

2024-10-06 11:21:53 +00:00
int main (string[] args) {
2024-10-17 19:27:29 +00:00
// do it ourselves or it's broken
Gtk.disable_setlocale ();
Intl.bindtextdomain (Audrey.Config.GETTEXT_PACKAGE, Audrey.Config.LOCALEDIR);
Intl.bind_textdomain_codeset (Audrey.Config.GETTEXT_PACKAGE, "UTF-8");
Intl.textdomain (Audrey.Config.GETTEXT_PACKAGE);
2024-10-17 19:27:29 +00:00
Intl.setlocale (LocaleCategory.ALL, "");
Intl.setlocale (LocaleCategory.NUMERIC, "C.UTF-8");
2024-10-06 11:21:53 +00:00
var app = new Audrey.Application ();
2024-10-06 11:21:53 +00:00
return app.run (args);
}