diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2012-03-01 00:30:12 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2012-03-01 00:30:12 (GMT) |
commit | aba1a14ba28f6df51b3be15648b6f55eea4a0e19 (patch) | |
tree | 3745b0aead2d24e79601f78b9f53fde70a08dfba /src | |
parent | deb012d919ea6c5e79702a39a03a85be2ffcf406 (diff) |
Updated the About dialog window with the name 'Chrysalide'.
git-svn-id: svn://svn.gna.org/svn/chrysalide/trunk@236 abbe820e-26c8-41b2-8c08-b7b2b41f8b0a
Diffstat (limited to 'src')
-rw-r--r-- | src/dialogs/about.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/dialogs/about.c b/src/dialogs/about.c index bcc3edf..8773e31 100644 --- a/src/dialogs/about.c +++ b/src/dialogs/about.c @@ -28,16 +28,15 @@ #include <stdio.h> +#include <i18n.h> + + #include "../gtkext/easygtk.h" #include "../gtkext/support.h" #include "../../revision.h" -#define _(str) str - - - /****************************************************************************** * * * Paramètres : parent = fenêtre parente à surpasser. * @@ -86,16 +85,16 @@ GtkWidget *create_about_dialog(GtkWindow *parent) gtk_fixed_put(GTK_FIXED(fixed), image, 10, 10); gtk_widget_set_size_request(image, 330, 300); - filename = find_pixmap_file("openida_text.png"); + filename = find_pixmap_file("chrysalide_text.png"); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 85, 330); - gtk_widget_set_size_request(image, 179, 36); + gtk_fixed_put(GTK_FIXED(fixed), image, 48, 324); + gtk_widget_set_size_request(image, 253, 42); /* Numéro de révision */ filename = find_pixmap_file("revision.png"); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 172, 360); + gtk_fixed_put(GTK_FIXED(fixed), image, 149, 360); gtk_widget_set_size_request(image, 14, 18); revision = REVISION; @@ -109,7 +108,7 @@ GtkWidget *create_about_dialog(GtkWindow *parent) filename = find_pixmap_file(buffer); image = qck_create_image(NULL, NULL, filename); - gtk_fixed_put(GTK_FIXED(fixed), image, 186 + i * 14, 360); + gtk_fixed_put(GTK_FIXED(fixed), image, 163 + i * 14, 360); gtk_widget_set_size_request(image, 14, 18); revision %= level; |