diff options
Diffstat (limited to 'mate-about')
-rw-r--r-- | mate-about/mate-about.c | 1 | ||||
-rw-r--r-- | mate-about/mate-about.h | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/mate-about/mate-about.c b/mate-about/mate-about.c index b777a9f..67afb72 100644 --- a/mate-about/mate-about.c +++ b/mate-about/mate-about.c @@ -201,6 +201,7 @@ // I comment this because the list is empty gtk_about_dialog_set_artists(mate_about_dialog, artists); gtk_about_dialog_set_documenters(mate_about_dialog, documenters); + gtk_about_dialog_set_translator_credits(mate_about_dialog, translators); #if GTK_CHECK_VERSION(3, 0, 0) gtk_about_dialog_set_license_type(mate_about_dialog, GTK_LICENSE_GPL_3_0); diff --git a/mate-about/mate-about.h b/mate-about/mate-about.h index 86a9812..706139a 100644 --- a/mate-about/mate-about.h +++ b/mate-about/mate-about.h @@ -614,6 +614,9 @@ "...", // TODO: fillme NULL }; + // traductores + const char translators[] = "" \ + "..."; // TODO: fillme // widget de la unica ventana GtkAboutDialog* mate_about_dialog = FALSE; |