Index: ChangeLog
===================================================================
RCS file: /home/cvs/fvwm/fvwm/ChangeLog,v
retrieving revision 1.2908
diff -u -r1.2908 ChangeLog
--- ChangeLog	17 Mar 2007 21:01:14 -0000	1.2908
+++ ChangeLog	18 Apr 2007 13:22:09 -0000
@@ -1,3 +1,9 @@
+2007-04-17  Jesus Guerrero  <6thpink(at)terra(dot)es>
+
+	* fvwm/menus.c (size_menu_vertically):
+	* fvwm/fvwm.1.in (Menu Anatomy):
+	added localization of the "More&..." string
+
 2007-03-17  Viktor Griph  <griph(at)dd(dot)chalmers(dot)se>
 
 	* libs/PictureBase.c (PictureFindImageFile):
Index: fvwm/fvwm.1.in
===================================================================
RCS file: /home/cvs/fvwm/fvwm/fvwm/fvwm.1.in,v
retrieving revision 1.252
diff -u -r1.252 fvwm.1.in
--- fvwm/fvwm.1.in	10 Mar 2007 05:55:11 -0000	1.252
+++ fvwm/fvwm.1.in	18 Apr 2007 13:22:14 -0000
@@ -2371,10 +2371,14 @@
 
 Additionally, if the menu is too long to fit on the screen, the
 excess menu items are put in a continuation menu and a sub menu
-with the string "More..." is placed at the bottom of the menu.
+with the string "More..." is placed at the bottom of the menu. The
+"More..." string honours the locale settings.
+
 Finally, there may be a picture running up either side of the menu
 (a "side bar").
 
+
+
 .TP
 .B Menu Navigation
 
Index: fvwm/menus.c
===================================================================
RCS file: /home/cvs/fvwm/fvwm/fvwm/menus.c,v
retrieving revision 1.409
diff -u -r1.409 menus.c
--- fvwm/menus.c	27 Jan 2007 11:51:15 -0000	1.409
+++ fvwm/menus.c	18 Apr 2007 13:22:15 -0000
@@ -67,6 +67,7 @@
 #include "menugeometry.h"
 #include "menuparameters.h"
 #include "menus.h"
+#include "libs/FGettext.h"
 
 /* ---------------------------- local definitions -------------------------- */
 
@@ -1670,7 +1671,7 @@
 			 * popdown actions */
 			/* And add the entry pointing to the new menu */
 			AddToMenu(
-				msp->menu, "More&...", tempname,
+				msp->menu, gettext("More&..."), tempname,
 				False /* no pixmap scan */, False, True);
 			free(tempname);
 			has_continuation_menu = True;
Index: po/ChangeLog
===================================================================
RCS file: /home/cvs/fvwm/fvwm/po/ChangeLog,v
retrieving revision 1.12
diff -u -r1.12 ChangeLog
--- po/ChangeLog	14 Jan 2006 09:45:42 -0000	1.12
+++ po/ChangeLog	18 Apr 2007 13:22:16 -0000
@@ -1,3 +1,11 @@
+2007-04-17  Jesus Guerrero  <6thpink(at)terra(dot)es>
+
+	* po/fvwm.ar.po:
+	* po/fvwm.de.po:
+	* po/fvwm.fr.po:
+	* po/fvwm.pot:
+	added the "&More..." string
+
 2004-05-23  Mikhael Goikhman  <migo@homemail.com>
 
 	* po/FvwmScript.zh_CN.gmo:
Index: po/fvwm.ar.po
===================================================================
RCS file: /home/cvs/fvwm/fvwm/po/fvwm.ar.po,v
retrieving revision 1.1
diff -u -r1.1 fvwm.ar.po
--- po/fvwm.ar.po	6 Dec 2002 08:23:28 -0000	1.1
+++ po/fvwm.ar.po	18 Apr 2007 13:22:16 -0000
@@ -52,6 +52,10 @@
 msgid "Desk: %d%s"
 msgstr "Ø§Ù„Ù…ÙƒØªØ¨: %d%s"
 
+#: ../fvwm/menus.c:1674
+msgid "More&..."
+msgstr "Ø£Ù^ÃØ«Ø±"
+
 #. ./fvwm/ConfigFvwmSetup: line 91
 msgid "Root Menu"
 msgstr "Ø§Ù„Ù‚Ø§Ø¦Ù…Ø© Ø§Ù„Ø¬Ø°Ø±ÙŠØ©"
Index: po/fvwm.de.po
===================================================================
RCS file: /home/cvs/fvwm/fvwm/po/fvwm.de.po,v
retrieving revision 1.1
diff -u -r1.1 fvwm.de.po
--- po/fvwm.de.po	15 Oct 2003 00:34:29 -0000	1.1
+++ po/fvwm.de.po	18 Apr 2007 13:22:16 -0000
@@ -52,6 +52,10 @@
 msgid "Desk: %d%s"
 msgstr "Arbeitsplatz: %d%s"
 
+#: ../fvwm/menus.c:1674
+msgid "More&..."
+msgstr "Mehr&..."
+
 #. ./fvwm/ConfigFvwmSetup: line 91
 msgid "Root Menu"
 msgstr "Haupt Menu"
Index: po/fvwm.fr.po
===================================================================
RCS file: /home/cvs/fvwm/fvwm/po/fvwm.fr.po,v
retrieving revision 1.1
diff -u -r1.1 fvwm.fr.po
--- po/fvwm.fr.po	29 Nov 2002 04:37:17 -0000	1.1
+++ po/fvwm.fr.po	18 Apr 2007 13:22:16 -0000
@@ -53,6 +53,10 @@
 msgid "Desk: %d%s"
 msgstr "Bureau: %d%s"
 
+#: ../fvwm/menus.c:1674
+msgid "More&..."
+msgstr "Plus&..."
+
 #. ./fvwm/ConfigFvwmSetup: line 91
 msgid "Root Menu"
 msgstr "Menu Principal"
Index: po/fvwm.pot
===================================================================
RCS file: /home/cvs/fvwm/fvwm/po/fvwm.pot,v
retrieving revision 1.1
diff -u -r1.1 fvwm.pot
--- po/fvwm.pot	29 Nov 2002 04:37:17 -0000	1.1
+++ po/fvwm.pot	18 Apr 2007 13:22:17 -0000
@@ -52,6 +52,10 @@
 msgid "Desk: %d%s"
 msgstr ""
 
+#: ../fvwm/menus.c:1674
+msgid "More&..."
+msgstr ""
+
 #. ./fvwm/ConfigFvwmSetup: line 91
 msgid "Root Menu"
 msgstr ""
