1
0
mirror of https://gitlab.cvh-server.de/skrause/flashcards.git synced 2026-03-16 06:50:14 +01:00

Initial commit

This commit is contained in:
2026-03-06 15:48:07 +01:00
commit 8b9ef23582
20 changed files with 643 additions and 0 deletions

17
src/main.c Normal file
View File

@@ -0,0 +1,17 @@
#define GETTEXT_PACKAGE "flashcards"
#include <gtk/gtk.h>
#include <glib/gi18n.h>
#include <locale.h>
#include "flashcardsapp.h"
int
main (int argc, char *argv[])
{
bindtextdomain (GETTEXT_PACKAGE, "/usr/local/share/locale");
bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
textdomain (GETTEXT_PACKAGE);
return g_application_run (G_APPLICATION (flashcards_app_new ()), argc, argv);
}