2008-01-23 [colin] 3.2.0cvs66
authorColin Leroy <colin@colino.net>
Wed, 23 Jan 2008 19:26:21 +0000 (19:26 +0000)
committerColin Leroy <colin@colino.net>
Wed, 23 Jan 2008 19:26:21 +0000 (19:26 +0000)
* src/toolbar.c
Fix translation of something that shouldn't be

ChangeLog
PATCHSETS
configure.ac
src/toolbar.c

index c20ebeb219d346c43897cd6e0cc74ec8b371cfae..9656e76e7491b9433bd5f67e6f6f0a407a20ec22 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-23 [colin]     3.2.0cvs66
+
+       * src/toolbar.c
+               Fix translation of something that shouldn't be
+
 2008-01-23 [colin]     3.2.0cvs65
 
        * src/procmime.c
index 13a1bf8999ced9ab0ffb8762247f762a68583697..2a553a3de0fbfd75bf14108ba6a9e60d4def266c 100644 (file)
--- a/PATCHSETS
+++ b/PATCHSETS
 ( cvs diff -u -r 1.213.2.175 -r 1.213.2.176 src/folder.c;  cvs diff -u -r 1.87.2.52 -r 1.87.2.53 src/folder.h;  cvs diff -u -r 1.115.2.182 -r 1.115.2.183 src/main.c;  cvs diff -u -r 1.274.2.230 -r 1.274.2.231 src/mainwindow.c;  ) > 3.2.0cvs63.patchset
 ( cvs diff -u -r 1.52.2.55 -r 1.52.2.56 src/prefs_folder_item.c;  ) > 3.2.0cvs64.patchset
 ( cvs diff -u -r 1.49.2.106 -r 1.49.2.107 src/procmime.c;  ) > 3.2.0cvs65.patchset
+( cvs diff -u -r 1.43.2.94 -r 1.43.2.95 src/toolbar.c;  ) > 3.2.0cvs66.patchset
index d08415cb2c74f90404f3b26abc7ee3f98a4420a1..1f6d0b54a022769d6e18cfaa95e84e307faf4ea9 100644 (file)
@@ -11,7 +11,7 @@ MINOR_VERSION=2
 MICRO_VERSION=0
 INTERFACE_AGE=0
 BINARY_AGE=0
-EXTRA_VERSION=65
+EXTRA_VERSION=66
 EXTRA_RELEASE=
 EXTRA_GTK2_VERSION=
 
index 71efc273ea746884e2627add9013d6b893e743fc..5027e376431b8ac1b338fad84c31430720d1f8d8 100644 (file)
@@ -211,7 +211,7 @@ struct {
        { "A_CLAWS_ACTIONS",    N_("Claws Mail Actions Feature")           }, 
        { "A_CANCEL_INC",       N_("Cancel receiving")                     },
        { "A_CLOSE",            N_("Close window")                         },
-       { "A_SEPARATOR",        "Separator"                             }
+       { "A_SEPARATOR",        N_("Separator")                         }
 };
 
 /* struct holds configuration files and a list of
@@ -758,7 +758,7 @@ void toolbar_read_config_file(ToolbarType source)
                        } else if (xml_compare_tag(file, TOOLBAR_TAG_SEPARATOR)) {
                                ToolbarItem *item = g_new0(ToolbarItem, 1);
                        
-                               item->file   = g_strdup(toolbar_ret_descr_from_val(A_SEPARATOR));
+                               item->file   = g_strdup(TOOLBAR_TAG_SEPARATOR);
                                item->index  = A_SEPARATOR;
                                toolbar_config[source].item_list = 
                                        g_slist_append(toolbar_config[source].item_list, item);