diff --git a/src/common.c b/src/common.c index 3585e10..80aa56e 100644 --- a/src/common.c +++ b/src/common.c @@ -23,3 +23,5 @@ static char const * _authors[] = static char const * _comments = N_("e-mail client for the DeforaOS desktop"); + +static const char _website[] = "http://www.defora.org/"; diff --git a/src/compose.c b/src/compose.c index e8a9f0d..f319dc9 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1102,7 +1102,7 @@ void compose_show_about(Compose * compose, gboolean show) desktop_about_dialog_set_copyright(dialog, _copyright); desktop_about_dialog_set_logo_icon_name(dialog, "mailer"); desktop_about_dialog_set_license(dialog, _license); - desktop_about_dialog_set_website(dialog, "http://www.defora.org/"); + desktop_about_dialog_set_website(dialog, _website); gtk_widget_show(dialog); } diff --git a/src/mailer.c b/src/mailer.c index 2b94523..806437c 100644 --- a/src/mailer.c +++ b/src/mailer.c @@ -1674,7 +1674,7 @@ void mailer_show_about(Mailer * mailer, gboolean show) desktop_about_dialog_set_logo_icon_name(dialog, "mailer"); desktop_about_dialog_set_translator_credits(dialog, _("translator-credits")); - desktop_about_dialog_set_website(dialog, "http://www.defora.org/"); + desktop_about_dialog_set_website(dialog, _website); gtk_widget_show(dialog); }