diff options
author | bigbear <ns@bigbear.dk> | 2024-02-08 02:53:08 +0100 |
---|---|---|
committer | bigbear <ns@bigbear.dk> | 2024-02-08 19:52:53 +0100 |
commit | 3d25cd5ae8241b687b970f8c1861451636a8f6ea (patch) | |
tree | 5d1d0639679cb8643c1c9359b53c36cfbce1a222 /shell/callbacks.c | |
parent | 2c017509271c1ddd3d2b4bfe55608dcc63941034 (diff) |
FIX Missing icons, menu about, cleaning
Diffstat (limited to 'shell/callbacks.c')
-rw-r--r-- | shell/callbacks.c | 24 |
1 files changed, 16 insertions, 8 deletions
diff --git a/shell/callbacks.c b/shell/callbacks.c index 2bf1b961..d2f4c0d9 100644 --- a/shell/callbacks.c +++ b/shell/callbacks.c @@ -196,8 +196,8 @@ void cb_about() "Ondrej Čerman", "Mike Hewitt", "Boris Afonot", - "", - "Based on work by:", + "", + "Based on work by:", "uber-graph by Christian Hergert and others.", "BinReloc by Hongli Lai", "decode-dimms by Philip Edelbrock", @@ -213,9 +213,18 @@ void cb_about() "DMI support based on code by Stewart Adam", "SCSI support based on code by Pascal F. Martin", "", - NULL - }; - const gchar *artists[] = { + "Translated by:" + "Alexander Münch", + "micrococo", + "yolanteng0", + "Yunji Lee", + "Hugo Carvalho", + "Paulo Giovanni pereira", + "Sergey Rodin", + "Sabri Ünal", + "yetist", + "", + "Artwork by:" "Jakub Szypulka", "Tango Project", "The GNOME Project", @@ -256,9 +265,8 @@ void cb_about() gtk_about_dialog_set_wrap_license(GTK_ABOUT_DIALOG(about), TRUE); gtk_about_dialog_set_authors(GTK_ABOUT_DIALOG(about), authors); - gtk_about_dialog_set_artists(GTK_ABOUT_DIALOG(about), artists); - gtk_about_dialog_set_translator_credits(GTK_ABOUT_DIALOG(about), - _("translator-credits")); + //gtk_about_dialog_set_artists(GTK_ABOUT_DIALOG(about), artists); + //gtk_about_dialog_set_translator_credits(GTK_ABOUT_DIALOG(about), _("translator-credits")); gtk_dialog_run(GTK_DIALOG(about)); gtk_widget_destroy(about); |