blob: 1df55c3557bc83597239bd53e21cedd1a3d11b79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public static int
main (string[] args)
{
Intl.bind_textdomain_codeset (Config.GETTEXT_PACKAGE, "UTF-8");
Intl.setlocale (LocaleCategory.ALL, "");
Intl.bindtextdomain (Config.GETTEXT_PACKAGE, Config.GNOMELOCALEDIR);
Intl.textdomain (Config.GETTEXT_PACKAGE);
var service = new BluetoothIndicator ();
service.run ();
return Posix.EXIT_SUCCESS;
}
|