aboutsummaryrefslogtreecommitdiffstats
path: root/shell/e-shell-importer.c
diff options
context:
space:
mode:
authorAnna Marie Dirks <anna@ximian.com>2001-11-06 07:15:30 +0800
committerAnna Dirks <anna@src.gnome.org>2001-11-06 07:15:30 +0800
commit2a716127b6c2ec557a411f57e64cfd4678e0d081 (patch)
tree62a4424c1cc271762f9a3889fe15bcfec5da73f9 /shell/e-shell-importer.c
parentcdd8a5be80319480840cb62521ee157b41319950 (diff)
downloadgsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.gz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.bz2
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.lz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.xz
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.tar.zst
gsoc2013-evolution-2a716127b6c2ec557a411f57e64cfd4678e0d081.zip
Fixed spacing and alignment probelms. (See bug #14281)
2001-11-05 Anna Marie Dirks <anna@ximian.com> * e-shell-importer.c (prepare_intelligent_page): Fixed spacing and alignment probelms. (See bug #14281) * e-shell-startup-wizard.c (prepare_importer_page): Fixed spacing and alignment problems. (See bug #14281) svn path=/trunk/; revision=14599
Diffstat (limited to 'shell/e-shell-importer.c')
-rw-r--r--shell/e-shell-importer.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/shell/e-shell-importer.c b/shell/e-shell-importer.c
index dcd48a054d..2dcb3b68bf 100644
--- a/shell/e-shell-importer.c
+++ b/shell/e-shell-importer.c
@@ -139,7 +139,7 @@ static struct {
char *text;
} info[] = {
{ "type_html",
- N_("Choose the type of importer to run")
+ N_("Choose the type of importer to run:")
},
{ "file_html",
N_("Choose the file that you want to import into Evolution, "
@@ -148,7 +148,7 @@ static struct {
"Evolution will attempt to work it out.")
},
{ "intelligent_html",
- N_("Please select the information that you would like to import")
+ N_("Please select the information that you would like to import:")
}
};
static int num_info = (sizeof (info) / sizeof (info[0]));
@@ -848,10 +848,13 @@ prepare_intelligent_page (GnomeDruid *druid,
str = g_strdup_printf (_("From %s:"), id->name);
label = gtk_label_new (str);
g_free (str);
+
+ gtk_misc_set_alignment (GTK_MISC (label), 0, .5);
+
gtk_table_attach (GTK_TABLE (table), label, 0, 1, running - 1,
- running, 0, 0, 0, 0);
+ running, GTK_FILL, 0, 0, 0);
gtk_table_attach (GTK_TABLE (table), id->widget, 1, 2,
- running - 1, running, 0, 0, 0, 0);
+ running - 1, running, GTK_FILL, 0, 3, 0);
gtk_widget_show_all (table);
gtk_box_pack_start (GTK_BOX (data->importerpage->vbox), table,