[evolution-patches] Patch submission
- From: riyaz ahmed <sunez riyaz gmail com>
- To: evolution-patches lists ximian com, Kaushal Kumar <kakumar novell com>
- Cc:
- Subject: [evolution-patches] Patch submission
- Date: Wed, 13 Jul 2005 17:49:07 +0530
hi,
i have attached the patches for the bugs 246244( three files ) ,
246247( three files ) and a
changelog file
these fixes the label and HIG-layout suggestions ,
Truly
H.A.Riyaz Ahmed
--- body1.c 2005-07-13 09:14:01.000000000 +0530
+++ body.c 2005-07-10 10:00:01.000000000 +0530
@@ -68,7 +68,7 @@
10,
},
{
- N_("Perforated Paper"),
+ N_("Perforated paper"),
ICONDIR "/paper.png",
{0, 0xffff, 0xffff, 0xffff},
{0, 0, 0, 0},
@@ -76,7 +76,7 @@
30,
},
{
- N_("Blue Ink"),
+ N_("Blue ink"),
ICONDIR "/texture.png",
{0, 0xffff, 0xffff, 0xffff},
{0, 0x1fff, 0x1fff, 0x8fff},
--- properties1.c 2005-07-13 09:14:01.000000000 +0530
+++ properties.c 2005-07-13 08:35:59.000000000 +0530
@@ -66,7 +66,10 @@
pd = (PageData *) g_list_nth (d->page_data, num)->data;
if (pd) {
gchar *title;
- title = g_strconcat (d->title, ": ", pd->name, NULL);
+ if(g_strcasecmp(d->title,"Format Page"))
+ title = g_strconcat (d->title, ": ", pd->name, NULL);
+ else
+ title = g_strconcat (d->title, " ", pd->name, NULL);
gtk_window_set_title (GTK_WINDOW (d->dialog), title);
g_free (title);
}
--- menubar1.c 2005-07-13 09:14:01.000000000 +0530
+++ menubar.c 2005-07-13 08:34:24.000000000 +0530
@@ -355,11 +355,11 @@
if (cd->properties_dialog)
gtk_html_edit_properties_dialog_close (cd->properties_dialog);
- cd->properties_dialog = gtk_html_edit_properties_dialog_new (cd, _("Properties"),
+ cd->properties_dialog = gtk_html_edit_properties_dialog_new (cd, _("Format Page"),
gnome_icon_theme_lookup_icon (cd->icon_theme, "stock_properties", 16, NULL, NULL));
gtk_html_edit_properties_dialog_add_entry (cd->properties_dialog,
- GTK_HTML_EDIT_PROPERTY_BODY, _("Page"),
+ GTK_HTML_EDIT_PROPERTY_BODY,NULL,
body_properties,
body_close_cb);
--- menubar1.c 2005-07-13 09:14:01.000000000 +0530
+++ menubar.c 2005-07-13 09:00:45.000000000 +0530
@@ -134,10 +134,10 @@
if (cd->properties_dialog)
gtk_html_edit_properties_dialog_close (cd->properties_dialog);
- cd->properties_dialog = gtk_html_edit_properties_dialog_new (cd, _("Insert"), ICONDIR "/insert-link-24.png");
+ cd->properties_dialog = gtk_html_edit_properties_dialog_new (cd, _("Insert Link"), ICONDIR "/insert-link-24.png");
gtk_html_edit_properties_dialog_add_entry (cd->properties_dialog,
- GTK_HTML_EDIT_PROPERTY_LINK, _("Link"),
+ GTK_HTML_EDIT_PROPERTY_LINK, NULL,
link_insert,
link_close_cb);
--- properties1.c 2005-07-13 09:14:01.000000000 +0530
+++ properties.c 2005-07-13 09:01:57.000000000 +0530
@@ -66,7 +66,10 @@
pd = (PageData *) g_list_nth (d->page_data, num)->data;
if (pd) {
gchar *title;
- title = g_strconcat (d->title, ": ", pd->name, NULL);
+ if(g_strcasecmp(d->title,"Insert Link"))
+ title = g_strconcat (d->title, ": ", pd->name, NULL);
+ else
+ title = g_strconcat (d->title, " ", pd->name, NULL);
gtk_window_set_title (GTK_WINDOW (d->dialog), title);
g_free (title);
}
--- utils1.c 2005-07-13 14:42:13.000000000 +0530
+++ utils.c 2005-07-13 14:42:41.000000000 +0530
@@ -193,7 +193,7 @@
static gboolean stock_test_url_added = FALSE;
static GtkStockItem test_url_items [] =
{
- { GTKHTML_STOCK_TEST_URL, N_("_Visit..."), 0, 0, GETTEXT_PACKAGE }
+ { GTKHTML_STOCK_TEST_URL, N_("_Check URL ..."), 0, 0, GETTEXT_PACKAGE }
};
void
--- ChangeLog 2005-07-13 09:22:53.000000000 +0530
+++ ChangeLog1 2005-07-13 14:30:54.000000000 +0530
@@ -1,3 +1,15 @@
+2005-07-13 H.A.Riyaz Ahmed <sunez riyaz gmail com>
+
+ *menubar.c changed the value of the argument
+
+ *propeties.c added the condition statement
+
+ *body.c changed the argument as required
+
+ *utils.c changed the display as mentioned
+
+ Fixes#246244,246247
+
2005-07-11 Kaushal Kumar <kakumar novell com>
* configure.in: bumped version to 3.7.4 for the new release.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]