This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project wmaker-crm.git.

The branch, next has been updated
       via  e78e485fb3fe3e46870d874ed9bc78764b930fdd (commit)
       via  7962bfa612958abb6d10421c6fa235c714b7f8cf (commit)
       via  94136ad29a2aa85ac612d47063921e954e42ede6 (commit)
       via  a65536f5004dd3dbef8e71966ca22512c13f1584 (commit)
       via  a5a23f966e3d541d1d0bb126c87360f897edc6ab (commit)
      from  e3769a0b09a84577532901303aef4c20ea61cb75 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://repo.or.cz/w/wmaker-crm.git/commit/e78e485fb3fe3e46870d874ed9bc78764b930fdd

commit e78e485fb3fe3e46870d874ed9bc78764b930fdd
Author: Christophe CURIS <christophe.cu...@free.fr>
Date:   Tue Dec 30 19:10:22 2014 +0100

    make: do not compile stuff in the 'test' directory
    
    To be consistent with the rest of the project's behaviour, do not try to
    compile what is in the toplevel's "test" directory for a normal
    compilation.
    
    The content of this directory does not really test anything, so it is not
    useful for users, and there is always the risk that it could break
    compilation because it is not heavily maintained (and does not deserves to)
    so this patch just skips the directory, as already done for wrlib/tests/
    and WINGs/Tests.
    
    Signed-off-by: Christophe CURIS <christophe.cu...@free.fr>

diff --git a/Makefile.am b/Makefile.am
index 34038cb7..ddbb0c90 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -30,7 +30,8 @@ config-paths.h: Makefile
 
 ACLOCAL_AMFLAGS = -I m4
 
-SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc test
+SUBDIRS = wrlib WINGs src util po WindowMaker wmlib WPrefs.app doc
+DIST_SUBDIRS = $(SUBDIRS) test
 
 EXTRA_DIST = TODO BUGS BUGFORM FAQ FAQ.I18N INSTALL    INSTALL-WMAKER 
README.definable-cursor 
http://repo.or.cz/w/wmaker-crm.git/commit/7962bfa612958abb6d10421c6fa235c714b7f8cf

commit 7962bfa612958abb6d10421c6fa235c714b7f8cf
Author: Christophe CURIS <christophe.cu...@free.fr>
Date:   Tue Dec 30 19:09:54 2014 +0100

    wmaker: removed global variable "flags.nopolling"
    
    As found by Rodolfo García Peñas, this flag is never given a value; further
    investigations in the history of the project show that this flag have never
    been implemented because its action is totally redundant with the flag
    "noupdate".
    
    As the later flag's name is more clear about what the behaviour for the
    user is, as opposed to what is being done under the hood, its name is kept
    and the "nopolling" flag is removed.
    
    Signed-off-by: Christophe CURIS <christophe.cu...@free.fr>

diff --git a/src/WindowMaker.h b/src/WindowMaker.h
index 2d9ed1af..e954ee83 100644
--- a/src/WindowMaker.h
+++ b/src/WindowMaker.h
@@ -470,9 +470,6 @@ extern struct WPreferences {
                unsigned int noupdates:1;             /* don't require 
~/GNUstep (-static) */
                unsigned int noautolaunch:1;          /* don't autolaunch apps 
*/
                unsigned int norestore:1;             /* don't restore session 
*/
-#ifndef HAVE_INOTIFY
-               unsigned int nopolling:1;             /* don't poll the 
defaults database for changes */
-#endif
                unsigned int restarting:2;
        } flags;                                      /* internal flags */
 
diff --git a/src/main.c b/src/main.c
index b9f16d59..9024aca5 100644
--- a/src/main.c
+++ b/src/main.c
@@ -679,12 +679,14 @@ static int real_main(int argc, char **argv)
                                        wwarning(_("bad value for visualid: 
"%s""), argv[i]);
                                        exit(0);
                                }
-                       } else if (strcmp(argv[i], "-static") == 0 || 
strcmp(argv[i], "--static") == 0
+                       } else if (strcmp(argv[i], "-static") == 0 || 
strcmp(argv[i], "--static") == 0) {
+                               wPreferences.flags.noupdates = 1;
+                       } else if (strcmp(argv[i], "--no-polling") == 0) {
 #ifndef HAVE_INOTIFY
-                                   || strcmp(argv[i], "--no-polling") == 0
-#endif
-                                   ) {
                                wPreferences.flags.noupdates = 1;
+#else
+                               wmessage(_("your version of Window Maker was 
compiler with INotify support, so "--no-polling" has no effect"));
+#endif
                        } else if (strcmp(argv[i], "--help") == 0) {
                                print_help();
                                exit(0);
diff --git a/src/startup.c b/src/startup.c
index 2122d48e..c369dba3 100644
--- a/src/startup.c
+++ b/src/startup.c
@@ -705,7 +705,7 @@ void StartUp(Bool defaultScreenOnly)
 
 #ifndef HAVE_INOTIFY
        /* setup defaults file polling */
-       if (!wPreferences.flags.nopolling && !wPreferences.flags.noupdates)
+       if (!wPreferences.flags.noupdates)
                WMAddTimerHandler(3000, wDefaultsCheckDomains, NULL);
 #endif
 

http://repo.or.cz/w/wmaker-crm.git/commit/94136ad29a2aa85ac612d47063921e954e42ede6

commit 94136ad29a2aa85ac612d47063921e954e42ede6
Author: Alwin <translati...@ziggo.nl>
Date:   Wed Dec 24 16:10:31 2014 +0100

    WPrefs: trivial fixes in text strings
    
    Fix a typo in an error message. Remove an inconsistent dot on a
    button. Adds a missing dot in Expert preferences.

diff --git a/WPrefs.app/Expert.c b/WPrefs.app/Expert.c
index 582a0efd..72680023 100644
--- a/WPrefs.app/Expert.c
+++ b/WPrefs.app/Expert.c
@@ -43,7 +43,7 @@ static const struct {
        { N_("Disable miniwindows (icons for minimized windows). For use with 
KDE/GNOME."),
          /* default: */ False, OPTION_WMAKER, "DisableMiniwindows" },
 
-       { N_("Disable workspace pager"),
+       { N_("Disable workspace pager."),
          /* default: */ False, OPTION_WMAKER, "DisableWorkspacePager" },
 
        { N_("Do not set non-WindowMaker specific parameters (do not use 
xset)."),
diff --git a/WPrefs.app/Icons.c b/WPrefs.app/Icons.c
index 74329642..5c33f5d4 100644
--- a/WPrefs.app/Icons.c
+++ b/WPrefs.app/Icons.c
@@ -218,7 +218,7 @@ static void showData(_Panel * panel)
                                goto found_animation_value;
                        }
                }
-               wwarning(_("animation style "%s" is unknow, resetting to "%s""),
+               wwarning(_("animation style "%s" is unknown, resetting to 
"%s""),
                         str, icon_animation[0].db_value);
        }
        /* If we're here, no valid value have been found so we fall-back to the 
default */
diff --git a/WPrefs.app/Menu.c b/WPrefs.app/Menu.c
index 5f0f0171..115bdc38 100644
--- a/WPrefs.app/Menu.c
+++ b/WPrefs.app/Menu.c
@@ -1298,7 +1298,7 @@ static Bool shouldRemoveItem(struct WEditMenuDelegate 
*delegate, WEditMenu * men
                                      _("Remove Submenu"),
                                      _("Removing this item will destroy all 
items insiden"
                                        "the submenu. Do you really want to do 
that?"),
-                                     _("Yes"), _("No"), _("Yes, don't ask 
again."));
+                                     _("Yes"), _("No"), _("Yes, don't ask 
again"));
                switch (res) {
                case WAPRDefault:
                        return True;
diff --git a/WPrefs.app/po/bg.po b/WPrefs.app/po/bg.po
index 27ddc840..7c0f6b3d 100644
--- a/WPrefs.app/po/bg.po
+++ b/WPrefs.app/po/bg.po
@@ -1479,8 +1479,8 @@ msgid "No"
 msgstr "Не"
 
 #: ../../WPrefs.app/Menu.c:1407
-msgid "Yes, don't ask again."
-msgstr "Да, не ме питай пак!"
+msgid "Yes, don't ask again"
+msgstr "Да, не ме питай пак"
 
 # ../../WPrefs.app/Menu.c:1382 ../../WPrefs.app/Menu.c:1389
 #. if there is a localized plmenu for the tongue put it's filename here
diff --git a/WPrefs.app/po/ca.po b/WPrefs.app/po/ca.po
index 3d52ce14..bf17fd2a 100644
--- a/WPrefs.app/po/ca.po
+++ b/WPrefs.app/po/ca.po
@@ -1314,8 +1314,8 @@ msgid "No"
 msgstr "No"
 
 #: ../../WPrefs.app/Menu.c:1405
-msgid "Yes, don't ask again."
-msgstr "Sí, no preguntis més."
+msgid "Yes, don't ask again"
+msgstr "Sí, no preguntis més"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1573 ../../WPrefs.app/Menu.c:1580
diff --git a/WPrefs.app/po/cs.po b/WPrefs.app/po/cs.po
index cba01492..df2260d0 100644
--- a/WPrefs.app/po/cs.po
+++ b/WPrefs.app/po/cs.po
@@ -1185,8 +1185,8 @@ msgid "No"
 msgstr "Ne"
 
 #: ../Menu.c:1347
-msgid "Yes, don't ask again."
-msgstr "Ano, neptejte se víc."
+msgid "Yes, don't ask again"
+msgstr "Ano, neptejte se víc"
 
 #: ../Menu.c:1514 ../Menu.c:1521
 #, c-format
diff --git a/WPrefs.app/po/de.po b/WPrefs.app/po/de.po
index fe60b4d4..1b7075fb 100644
--- a/WPrefs.app/po/de.po
+++ b/WPrefs.app/po/de.po
@@ -1204,7 +1204,7 @@ msgid "No"
 msgstr "Nein"
 
 #: ../../WPrefs.app/Menu.c:1282
-msgid "Yes, don't ask again."
+msgid "Yes, don't ask again"
 msgstr "Ja, alle"
 
 #: ../../WPrefs.app/Menu.c:1437
diff --git a/WPrefs.app/po/es.po b/WPrefs.app/po/es.po
index 75eafe68..761a3622 100644
--- a/WPrefs.app/po/es.po
+++ b/WPrefs.app/po/es.po
@@ -1226,8 +1226,8 @@ msgid "No"
 msgstr "No"
 
 #: ../../WPrefs.app/Menu.c:1407
-msgid "Yes, don't ask again."
-msgstr "Sí, no preguntarme más."
+msgid "Yes, don't ask again"
+msgstr "Sí, no preguntarme más"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1575 ../../WPrefs.app/Menu.c:1582
diff --git a/WPrefs.app/po/fi.po b/WPrefs.app/po/fi.po
index 1fa6ffd6..b75cb59c 100644
--- a/WPrefs.app/po/fi.po
+++ b/WPrefs.app/po/fi.po
@@ -1396,8 +1396,8 @@ msgid "No"
 msgstr "Ei"
 
 #: ../../WPrefs.app/Menu.c:1347
-msgid "Yes, don't ask again."
-msgstr "Kyllä, älä kysy enää."
+msgid "Yes, don't ask again"
+msgstr "Kyllä, älä kysy enää"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1514 ../../WPrefs.app/Menu.c:1521
diff --git a/WPrefs.app/po/fr.po b/WPrefs.app/po/fr.po
index 5108db57..f8d5928e 100644
--- a/WPrefs.app/po/fr.po
+++ b/WPrefs.app/po/fr.po
@@ -1321,8 +1321,8 @@ msgid "No"
 msgstr "Non"
 
 #: ../../WPrefs.app/Menu.c:1407
-msgid "Yes, don't ask again."
-msgstr "Oui, ne plus me demander."
+msgid "Yes, don't ask again"
+msgstr "Oui, ne plus me demander"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1575 ../../WPrefs.app/Menu.c:1582
diff --git a/WPrefs.app/po/hu.po b/WPrefs.app/po/hu.po
index 316e951f..98bbed1b 100644
--- a/WPrefs.app/po/hu.po
+++ b/WPrefs.app/po/hu.po
@@ -1453,8 +1453,8 @@ msgid "No"
 msgstr "Nem"
 
 #: ../../../wmaker-crm/WPrefs.app/Menu.c:1302
-msgid "Yes, don't ask again."
-msgstr "Igen, a többire is."
+msgid "Yes, don't ask again"
+msgstr "Igen, a többire is"
 
 #: ../../../wmaker-crm/WPrefs.app/Menu.c:1440
 #, c-format
diff --git a/WPrefs.app/po/it.po b/WPrefs.app/po/it.po
index c2d5d3b5..c418f5ab 100644
--- a/WPrefs.app/po/it.po
+++ b/WPrefs.app/po/it.po
@@ -1404,8 +1404,8 @@ msgid "No"
 msgstr "No"
 
 #: ../../WPrefs.app/Menu.c:1347
-msgid "Yes, don't ask again."
-msgstr "Sì, non chiederlo più."
+msgid "Yes, don't ask again"
+msgstr "Sì, non chiederlo più"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1514 ../../WPrefs.app/Menu.c:1521
diff --git a/WPrefs.app/po/ja.po b/WPrefs.app/po/ja.po
index b4ddcb38..39e2b864 100644
--- a/WPrefs.app/po/ja.po
+++ b/WPrefs.app/po/ja.po
@@ -1213,7 +1213,7 @@ msgid "No"
 msgstr "いいえ"
 
 #: ../../WPrefs.app/Menu.c:1226
-msgid "Yes, don't ask again."
+msgid "Yes, don't ask again"
 msgstr "はい, 以後確認しない"
 
 #: ../../WPrefs.app/Menu.c:1352
diff --git a/WPrefs.app/po/ko.po b/WPrefs.app/po/ko.po
index 0f673426..19cfe550 100644
--- a/WPrefs.app/po/ko.po
+++ b/WPrefs.app/po/ko.po
@@ -1387,8 +1387,8 @@ msgid "No"
 msgstr "아니오"
 
 #: ../../WPrefs.app/Menu.c:1295
-msgid "Yes, don't ask again."
-msgstr "예, 다시 묻지 않습니다."
+msgid "Yes, don't ask again"
+msgstr "예, 다시 묻지 않습니다"
 
 #: ../../WPrefs.app/Menu.c:1426
 #, c-format
diff --git a/WPrefs.app/po/nl.po b/WPrefs.app/po/nl.po
index d06d3f0b..84781037 100644
--- a/WPrefs.app/po/nl.po
+++ b/WPrefs.app/po/nl.po
@@ -509,7 +509,7 @@ msgstr ""
 
 #. default:
 #: ../../WPrefs.app/Expert.c:46
-msgid "Disable workspace pager"
+msgid "Disable workspace pager."
 msgstr "Schakel werkruimtevolger uit."
 
 #. default:
@@ -757,7 +757,7 @@ msgstr "verkeerde waarde "%s" voor optie %s, gebruikt 
standaard "%s""
 
 #: ../../WPrefs.app/Icons.c:221
 #, c-format
-msgid "animation style "%s" is unknow, resetting to "%s""
+msgid "animation style "%s" is unknown, resetting to "%s""
 msgstr "animatiestijl "%s" is onbekend, teruggezet op "%s""
 
 #: ../../WPrefs.app/Icons.c:248
@@ -1593,7 +1593,7 @@ msgid "No"
 msgstr "Nee"
 
 #: ../../WPrefs.app/Menu.c:1301
-msgid "Yes, don't ask again."
+msgid "Yes, don't ask again"
 msgstr "Ja, vraag niet weer"
 
 #: ../../WPrefs.app/Menu.c:1439
diff --git a/WPrefs.app/po/ru.po b/WPrefs.app/po/ru.po
index fa3bda52..99a5592d 100644
--- a/WPrefs.app/po/ru.po
+++ b/WPrefs.app/po/ru.po
@@ -1288,8 +1288,8 @@ msgid "No"
 msgstr "Нет"
 
 #: ../../WPrefs.app/Menu.c:1407
-msgid "Yes, don't ask again."
-msgstr "Да, и больше об этом не спрашивать."
+msgid "Yes, don't ask again"
+msgstr "Да, и больше об этом не спрашивать"
 
 #. if there is a localized plmenu for the tongue put it's filename here
 #: ../../WPrefs.app/Menu.c:1575 ../../WPrefs.app/Menu.c:1582
diff --git a/WPrefs.app/po/sk.po b/WPrefs.app/po/sk.po
index 2a173064..3030ab08 100644
--- a/WPrefs.app/po/sk.po
+++ b/WPrefs.app/po/sk.po
@@ -1210,7 +1210,7 @@ msgid "No"
 msgstr "Nie"
 
 #: ../../WPrefs.app/Menu.c:1348
-msgid "Yes, don't ask again."
+msgid "Yes, don't ask again"
 msgstr "Áno, viac sa nepýtať"
 
 #. if there is a localized plmenu for the tongue put it's filename here
diff --git a/WPrefs.app/po/zh_TW.po b/WPrefs.app/po/zh_TW.po
index 3f1f603b..8a6b8db0 100644
--- a/WPrefs.app/po/zh_TW.po
+++ b/WPrefs.app/po/zh_TW.po
@@ -1174,8 +1174,8 @@ msgid "No"
 msgstr "否"
 
 #: ../../WPrefs.app/Menu.c:1405
-msgid "Yes, don't ask again."
-msgstr "是,不要再問。"
+msgid "Yes, don't ask again"
+msgstr "是,不要再問"
 
 #: ../../WPrefs.app/Menu.c:1579
 #, c-format

http://repo.or.cz/w/wmaker-crm.git/commit/a65536f5004dd3dbef8e71966ca22512c13f1584

commit a65536f5004dd3dbef8e71966ca22512c13f1584
Author: Alwin <translati...@ziggo.nl>
Date:   Wed Dec 24 16:10:30 2014 +0100

    WMaker: trivial fixes in text strings
    
    Add missing spaces in balloons/error messages. Capitalize `Alt' in
    balloon. One report by the Italian translater.

diff --git a/po/be.po b/po/be.po
index 218da1d7..555c0b80 100644
--- a/po/be.po
+++ b/po/be.po
@@ -1768,7 +1768,8 @@ msgstr "Не перахопліваць падзеі мышы"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Не перахопліваць паздеі ад мышы, такія якn"
 "перацягванне вакна з дапамогай Alt, у гэтым вакне."
@@ -1870,7 +1871,7 @@ msgid "Initial Workspace"
 msgstr "Пачатковае працамесца"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Працамесца ў якім будзе адкрывацца вакно па запуску"
 
 #: ../src/winspector.c:1556
diff --git a/po/bg.po b/po/bg.po
index 8f1aed0c..dfcdecf8 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -2232,7 +2232,8 @@ msgstr "Да не се прихваща мишката"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Да не се прихващат действия с мишкатаn"
 "(напр. Alt+влачене) в прозореца."
@@ -2367,7 +2368,7 @@ msgstr "Начално работно място"
 
 # ../src/winspector.c:1561
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "Работното място, където да се поместиn"
 "прозореца при първото му появяване."
diff --git a/po/ca.po b/po/ca.po
index cc020764..2167395b 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1816,7 +1816,8 @@ msgstr "Deshabilitar els vincles del ratolí"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Deshabilita els vincles i accions de ratolí den"
 "Window Maker, com ara Alt+arrossegar, en aquestan"
@@ -1920,7 +1921,7 @@ msgid "Initial Workspace"
 msgstr "Àrea de treball inicial"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Àrea de treball on posar la finestra quan apareix per primer cop."
 
 #: ../src/winspector.c:1556
diff --git a/po/cs.po b/po/cs.po
index 8d651ba8..f611bf39 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1721,10 +1721,11 @@ msgstr "Myš jen pro aplikaci"
 #: ../src/winspector.c:1455
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Pro okno nepoužívat akce myši jako např. n"
-"'Alt'+táhni (s myší:), je-li alt modifikátorem, n"
+"'Alt'+táhni (s myší:), je-li Alt modifikátorem, n"
 "který jste si nastavili."
 
 #: ../src/winspector.c:1460
@@ -1821,7 +1822,7 @@ msgid "Initial Workspace"
 msgstr "Počáteční plocha"
 
 #: ../src/winspector.c:1567
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Plocha, kam umístit okno při prvním ukázání."
 
 #: ../src/winspector.c:1573
diff --git a/po/da.po b/po/da.po
index b88cfad3..c5a2c26e 100644
--- a/po/da.po
+++ b/po/da.po
@@ -2092,7 +2092,8 @@ msgstr "Museklik gælder ikke"
 #: ../src/winspector.c:1440
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Musehandlinger såsom 'Alt'+træk gælder ikke for detten"
 "vindue (hvis du har valgt Alt som modificeringstast)."
@@ -2215,7 +2216,7 @@ msgstr "Første arbejdsbord"
 
 # ../src/winspector.c:1394
 #: ../src/winspector.c:1552
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Hvilket arbejdsbord vinduet først skal dukke op på."
 
 # ../src/winspector.c:1400
diff --git a/po/de.po b/po/de.po
index 41c7df33..e06c8bdb 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1622,7 +1622,7 @@ msgstr "Kein Mausklicks abfangen"
 #, fuzzy
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "Für dieses Fenster keine Mausaktionen abfangen,n"
@@ -1735,7 +1735,7 @@ msgid "Initial Workspace"
 msgstr "Start-Arbeitsfläche"
 
 #: ../src/winspector.c:1463
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Die Arbeitsfläche, auf dem das Fenster beim Start erscheinen soll"
 
 #: ../src/winspector.c:1469
diff --git a/po/el.po b/po/el.po
index b2b5e79c..b5a231c7 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1513,7 +1513,8 @@ msgstr "Μη δέσμευση των κλικ ποντικιού"
 #: ../src/winspector.c:1267
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Να μην δεσμέυονται οι κινήσεις του ποντικιού,n"
 "όπως η 'Alt'+drag, στο παράθυρο."
@@ -1617,7 +1618,7 @@ msgid "Initial Workspace"
 msgstr "Αρχική Επιφάνεια"
 
 #: ../src/winspector.c:1381
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Η επιφάνεια στη οποία θα τοποθετηθεί το παράθυροn"
 "όταν εμφανίζεται για πρώτη φορά."
 
diff --git a/po/es.po b/po/es.po
index 6603e50a..d98ec2e6 100644
--- a/po/es.po
+++ b/po/es.po
@@ -903,7 +903,7 @@ msgstr ""
 #: ../src/main.c:493
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr ""
 "no se pudo añadir un guardian inotify en la ruta %s. Cambios en la base de 
datos "
@@ -1625,7 +1625,7 @@ msgstr "No asociar clicks del ratón"
 #, c-format
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "No asociar acciones de ratón, tal como `Alt'+arrastren"
@@ -1764,7 +1764,7 @@ msgid "Initial Workspace"
 msgstr "Área de trabajo inicial"
 
 #: ../src/winspector.c:1484
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "El área de trabajo dónde colocar la ventana la primera vez que se muestre."
 
diff --git a/po/et.po b/po/et.po
index 868f69c3..8f1570aa 100644
--- a/po/et.po
+++ b/po/et.po
@@ -893,7 +893,7 @@ msgstr ""
 #: ../src/main.c:556
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr ""
 "rajale %s pole võimalik inotify jälgijat määrata. Vaikeväärtuste andmebaasi "
@@ -1597,7 +1597,7 @@ msgstr "Hiirevajutustele ei reageerita"
 #: ../src/winspector.c:1360
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "Aknal keelatakse reageerimast hiiretoimingutele.n"
@@ -1733,7 +1733,7 @@ msgid "Initial Workspace"
 msgstr "Töölaud, millel käivitatakse"
 
 #: ../src/winspector.c:1482
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Töölaua nimi, mille peal akent esimest korda näidatakse."
 
 #: ../src/winspector.c:1488
diff --git a/po/fi.po b/po/fi.po
index f82c92e7..ecba64e2 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1767,10 +1767,11 @@ msgstr "Älä sido hiiren napautuksia"
 #: ../src/winspector.c:1458
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Älä sido ikkunassa hiiritoimintoja kutenn"
-"'Alt'-siirtoja (kun alt on määrittelemäsi modifier)."
+"'Alt'-siirtoja (kun Alt on määrittelemäsi modifier)."
 
 #: ../src/winspector.c:1463
 #, fuzzy
@@ -1879,7 +1880,7 @@ msgid "Initial Workspace"
 msgstr "Työtila käynnistettäessä"
 
 #: ../src/winspector.c:1570
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "Työtila, johon ikkuna sijoitetaan, kun se näytetään ensimmäisen kerran."
 
diff --git a/po/fr.po b/po/fr.po
index 21e7d393..db67bb72 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1787,7 +1787,8 @@ msgstr "Sans raccourci souris"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Les actions de la souris telles que Alt+glissern"
 "ne sont pas gérées par Window Maker dans cetten"
@@ -1891,7 +1892,7 @@ msgid "Initial Workspace"
 msgstr "Bureau initial"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Le bureau où la fenêtre apparaîtra."
 
 #: ../src/winspector.c:1556
diff --git a/po/gl.po b/po/gl.po
index 304f7f43..9be7bf29 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1584,10 +1584,11 @@ msgstr "Desactivar Clics do Rato"
 #: ../src/winspector.c:1447
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Desactivar as accións do rato, como `Alt'+arrastrarn"
-"na fiestra (cando alt é o modificador que configurou)."
+"na fiestra (cando Alt é o modificador que configurou)."
 
 #: ../src/winspector.c:1452
 msgid "Keep Inside Screen"
@@ -1685,7 +1686,7 @@ msgid "Initial Workspace"
 msgstr "Area de Traballo Inicial"
 
 #: ../src/winspector.c:1561
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "A área de traballo na que coloca-la fiestra ó amosala por primeira vez."
 
diff --git a/po/hu.po b/po/hu.po
index 19ffdb85..08e2ac94 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -931,7 +931,7 @@ msgstr "Nem sikerült inotify példányt létrehozni. A 
beállítások változá
 #: ../../wmaker-crm/src/main.c:481
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr "Nem sikerült inotify figyelőt adni ehhez az útvonalhoz: %s. A 
beállítások változásai csak újraindítás után fognak érvényesülni."
 
@@ -1693,7 +1693,7 @@ msgstr "Ne értelmezze az egérkattintásokat"
 #: ../../wmaker-crm/src/winspector.c:1412
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "Nem próbálja meg értelmezni az egér tevékenységét,n"
@@ -1830,7 +1830,7 @@ msgid "Initial Workspace"
 msgstr "Kezdeti munkafelület"
 
 #: ../../wmaker-crm/src/winspector.c:1529
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Amikor megjelenik, melyik munkafelületre helyezze az ablakot"
 
 #: ../../wmaker-crm/src/winspector.c:1535
diff --git a/po/hy.po b/po/hy.po
index 7fa200f1..e5b9d018 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -1754,7 +1754,7 @@ msgstr ""
 #: ../src/winspector.c:1446
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 
@@ -1844,7 +1844,7 @@ msgid "Initial Workspace"
 msgstr ""
 
 #: ../src/winspector.c:1558
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 
 #: ../src/winspector.c:1564
diff --git a/po/it.po b/po/it.po
index 3176dcbf..383e3efe 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1709,11 +1709,11 @@ msgstr ""
 msgid "Do not bind mouse clicks"
 msgstr "Blocca i clic del mouse"
 
-# FIXME UPSTREAM: haveconfigured -> have configured REPORTED
 #: ../src/winspector.c:1446
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Non risponde alle azioni del mouse, come 'Alt'+trascinan"
 "nella finestra (se Alt è il modificatore configurato)."
@@ -1816,7 +1816,7 @@ msgid "Initial Workspace"
 msgstr "Area di lavoro iniziale"
 
 #: ../src/winspector.c:1558
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "L'area di lavoro in cui la finestra appare la prima volta."
 
 #: ../src/winspector.c:1564
diff --git a/po/ja.po b/po/ja.po
index 163ad362..0108a5bb 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -883,7 +883,7 @@ msgstr ""
 #: ../src/main.c:493
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr ""
 
@@ -1583,7 +1583,7 @@ msgstr "マウスクリックと連動しない"
 #: ../src/winspector.c:1362
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "ウィンドウ内でのマウスの動作(Alt+ドラッグなど)n"
@@ -1715,7 +1715,7 @@ msgid "Initial Workspace"
 msgstr "起動時のワークスペース"
 
 #: ../src/winspector.c:1484
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "このウィンドウが起動時に出現するワークスペース."
 
 #: ../src/winspector.c:1490
diff --git a/po/ko.po b/po/ko.po
index 1963dc7a..65549f80 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -890,7 +890,7 @@ msgstr ""
 #: ../src/main.c:548
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr ""
 "경로 %s에 inotify 감시를 추가하지 못했습니다. 기본 데이터베이스로 바꾸면 다"
@@ -1583,7 +1583,7 @@ msgstr "마우스 클릭 연결 안함"
 #: ../src/winspector.c:1408
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "창에 대고 `Alt'+끌기(마우스 수정자를 `Alt'로 설정했을n"
@@ -1713,7 +1713,7 @@ msgid "Initial Workspace"
 msgstr "초기 작업공간"
 
 #: ../src/winspector.c:1526
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "이 창을 처음으로 표시할 작업공간을 지정합니다."
 
 #: ../src/winspector.c:1532
diff --git a/po/ms.po b/po/ms.po
index d419bde5..3533ec66 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1740,10 +1740,11 @@ msgstr "Jangan bind klik tetikus"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Jangan bind aksi tetikus, seperti `Alt'+heret padan"
-"tetingkap (bila alt ialah modifier yang telah anda konfigurasikan)."
+"tetingkap (bila Alt ialah modifier yang telah anda konfigurasikan)."
 
 #: ../src/winspector.c:1443
 msgid "Do not show in the window list"
@@ -1841,7 +1842,7 @@ msgid "Initial Workspace"
 msgstr "Ruangkerja permulaan"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Ruangkerja dimana letaknya tetingkap bila ianya pertamakali dipaparkan"
 
 #: ../src/winspector.c:1556
diff --git a/po/nl.po b/po/nl.po
index d3842a18..35cb850d 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -978,7 +978,7 @@ msgstr ""
 #: ../src/main.c:497
 #, c-format
 msgid ""
-"could not add an inotify watch on path %s.Changes to the defaults database "
+"could not add an inotify watch on path %s. Changes to the defaults database "
 "will require a restart to take effect."
 msgstr ""
 "kon geen 'inotify watch' toevoegen op pad %s. Wijzigingen in de "
@@ -1756,7 +1756,7 @@ msgstr "Muisklikken niet verbinden"
 #: ../src/winspector.c:1412
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haven"
+"in the window (when Alt is the modifier you haven"
 "configured)."
 msgstr ""
 "Verbind muisacties niet, zoals 'Alt'+verslepenn"
@@ -1896,7 +1896,7 @@ msgid "Initial Workspace"
 msgstr "Initiële werkruimte"
 
 #: ../src/winspector.c:1530
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "De werkruimte om 't venster in te plaatsen,n"
 "wanneer 't voor 't eerst wordt getoond."
diff --git a/po/pt.po b/po/pt.po
index 37e080fd..faa4fb2e 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -1574,7 +1574,8 @@ msgstr "Não adicionar cliques de mouse"
 #: ../src/winspector.c:1447
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Não adicionar ações de mouse, tal como `Alt'+arraston"
 "na janela (quando Alt é o modificador que você configurou)."
@@ -1673,7 +1674,7 @@ msgid "Initial Workspace"
 msgstr "Área de Trabalho Inicial"
 
 #: ../src/winspector.c:1561
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Onde mostrar a janela quando da primeira aparição."
 
 #: ../src/winspector.c:1567
diff --git a/po/ru.po b/po/ru.po
index 93fc02d1..da62ca3f 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -1779,7 +1779,8 @@ msgstr "Не проверять щелчки мыши"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 
 #: ../src/winspector.c:1443
@@ -1878,7 +1879,7 @@ msgid "Initial Workspace"
 msgstr "Начальное рабочее пространство"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr ""
 "Рабочее пространство, на которое помещать окно,n"
 "когда оно открывается в первый раз."
diff --git a/po/sk.po b/po/sk.po
index 5942594b..d02bb312 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -1819,7 +1819,8 @@ msgstr "Ignorovať akcie myši"
 #: ../src/winspector.c:1438
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "Ignorovať akcie myši ako napr. Alt+ťahanien"
 "v okne (ak je Alt váš nastavený modifikátor)."
@@ -1920,7 +1921,7 @@ msgid "Initial Workspace"
 msgstr "Počiatočná plocha"
 
 #: ../src/winspector.c:1550
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "Plocha, na ktorú sa umiestni okno pri prvom zobrazení."
 
 #: ../src/winspector.c:1556
diff --git a/po/zh_CN.po b/po/zh_CN.po
index cf529a57..57d6eeb4 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -1494,7 +1494,8 @@ msgstr "不关联鼠标点击"
 #: ../src/winspector.c:1262
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "不关联鼠标动作, 比如, 在窗口中使用 `Alt'+拖动n"
 "(当 Alt 是你配置的修饰键时)."
@@ -1591,7 +1592,7 @@ msgid "Initial Workspace"
 msgstr "初始工作区"
 
 #: ../src/winspector.c:1376
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "窗口第一次出现时放置的工作空间."
 
 #: ../src/winspector.c:1382
diff --git a/po/zh_TW.po b/po/zh_TW.po
index dcbd2307..3b1c0626 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -1666,10 +1666,11 @@ msgstr "不要結合滑鼠按鍵"
 #: ../src/winspector.c:1446
 msgid ""
 "Do not bind mouse actions, such as `Alt'+dragn"
-"in the window (when alt is the modifier you haveconfigured)."
+"in the window (when Alt is the modifier you haven"
+"configured)."
 msgstr ""
 "不要結合滑鼠動作,例如在視窗中按 `Alt'+拖曳滑鼠n"
-"(如果 alt 是你已設定的修正鍵)。"
+"(如果 Alt 是你已設定的修正鍵)。"
 
 #: ../src/winspector.c:1451
 msgid "Do not show in the window list"
@@ -1765,7 +1766,7 @@ msgid "Initial Workspace"
 msgstr "啟始工作區"
 
 #: ../src/winspector.c:1558
-msgid "The workspace to place the window when it'sfirst shown."
+msgid "The workspace to place the window when it's first shown."
 msgstr "當第一次顯示時放置視窗的工作區。"
 
 #: ../src/winspector.c:1564
diff --git a/src/main.c b/src/main.c
index 67808039..b9f16d59 100644
--- a/src/main.c
+++ b/src/main.c
@@ -495,7 +495,7 @@ static void inotifyWatchConfig(void)
                w_global.inotify.wd_defaults = 
inotify_add_watch(w_global.inotify.fd_event_queue, watchPath, IN_ALL_EVENTS);
                if (w_global.inotify.wd_defaults < 0) {
                        wwarning(_("could not add an inotify watch on path %s."
-                                  "Changes to the defaults database will 
require"
+                                  " Changes to the defaults database will 
require"
                                   " a restart to take effect."), watchPath);
                        close(w_global.inotify.fd_event_queue);
                        w_global.inotify.fd_event_queue = -1;
diff --git a/src/winspector.c b/src/winspector.c
index 699384e7..a3c384fa 100644
--- a/src/winspector.c
+++ b/src/winspector.c
@@ -1410,7 +1410,7 @@ static void create_tab_window_advanced(WWindow *wwin, 
InspectorPanel *panel, int
                        caption = _("Do not bind mouse clicks");
                        flag = WFLAGP(wwin, no_bind_mouse);
                        descr = _("Do not bind mouse actions, such as 
`Alt'+dragn"
-                                 "in the window (when alt is the modifier you 
haven" "configured).");
+                                 "in the window (when Alt is the modifier you 
haven" "configured).");
                        break;
                case 2:
                        caption = _("Do not show in the window list");
@@ -1528,7 +1528,7 @@ static void create_tab_icon_workspace(WWindow *wwin, 
InspectorPanel *panel)
        WMSetFrameTitle(panel->wsFrm, _("Initial Workspace"));
 
        WMSetBalloonTextForView(_("The workspace to place the window when it's"
-                                 "first shown."), WMWidgetView(panel->wsFrm));
+                                 " first shown."), WMWidgetView(panel->wsFrm));
 
        panel->wsP = WMCreatePopUpButton(panel->wsFrm);
        WMMoveWidget(panel->wsP, 20, 30);

http://repo.or.cz/w/wmaker-crm.git/commit/a5a23f966e3d541d1d0bb126c87360f897edc6ab

commit a5a23f966e3d541d1d0bb126c87360f897edc6ab
Author: Alwin <translati...@ziggo.nl>
Date:   Wed Dec 24 16:10:29 2014 +0100

    WINGs: trivial fix in text string
    
    Fix a typo in an error message.

diff --git a/WINGs/po/bg.po b/WINGs/po/bg.po
index 005c2366..c851dfe3 100644
--- a/WINGs/po/bg.po
+++ b/WINGs/po/bg.po
@@ -545,7 +545,7 @@ msgstr ""%s" е директория."
 
 #: ../../WINGs/wfilepanel.c:829
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Настъпи грешка при показване на "%s"."
 
 #: ../../WINGs/wfilepanel.c:833
diff --git a/WINGs/po/ca.po b/WINGs/po/ca.po
index cf06ed1a..921bc116 100644
--- a/WINGs/po/ca.po
+++ b/WINGs/po/ca.po
@@ -557,7 +557,7 @@ msgstr ""%s" és un directori."
 
 #: ../../WINGs/wfilepanel.c:832
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "S'ha produït un error mentre s'explorava "%s"."
 
 #: ../../WINGs/wfilepanel.c:836
diff --git a/WINGs/po/cs.po b/WINGs/po/cs.po
index 336ed76a..0358b2d8 100644
--- a/WINGs/po/cs.po
+++ b/WINGs/po/cs.po
@@ -489,7 +489,7 @@ msgstr "'%s' je adresář."
 
 #: ../../WINGs/wfilepanel.c:821
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Při prohlížení '%s' nastala chyba."
 
 #: ../../WINGs/wfilepanel.c:825
diff --git a/WINGs/po/de.po b/WINGs/po/de.po
index e2fcc947..2f3b6845 100644
--- a/WINGs/po/de.po
+++ b/WINGs/po/de.po
@@ -553,7 +553,7 @@ msgstr "'%s' ist ein Verzeichnis."
 
 #: ../../WINGs/wfilepanel.c:832
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Fehler beim Lesen von '%s'."
 
 #: ../../WINGs/wfilepanel.c:836
diff --git a/WINGs/po/fr.po b/WINGs/po/fr.po
index 173f30c6..5434c303 100644
--- a/WINGs/po/fr.po
+++ b/WINGs/po/fr.po
@@ -559,7 +559,7 @@ msgstr "'%s' est un répertoire."
 
 #: ../../WINGs/wfilepanel.c:832
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Une erreur s'est produite pendant le parcours de '%s'."
 
 #: ../../WINGs/wfilepanel.c:836
diff --git a/WINGs/po/hu.po b/WINGs/po/hu.po
index d7debb85..1c4bbca7 100644
--- a/WINGs/po/hu.po
+++ b/WINGs/po/hu.po
@@ -537,7 +537,7 @@ msgstr "Hiba "%s" törlésekor: %s"
 
 #: ../../../wmaker-crm/WINGs/wfilepanel.c:749
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Hiba történt a '%s' olvasásakor."
 
 #: ../../../wmaker-crm/WINGs/wfilepanel.c:752
diff --git a/WINGs/po/nl.po b/WINGs/po/nl.po
index bd9226d5..363b947b 100644
--- a/WINGs/po/nl.po
+++ b/WINGs/po/nl.po
@@ -540,7 +540,7 @@ msgstr "Verwijderen %s mislukt: %s"
 
 #: ../../WINGs/wfilepanel.c:751
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "'n Fout trad op bij bladeren door '%s'."
 
 #: ../../WINGs/wfilepanel.c:754
diff --git a/WINGs/po/sk.po b/WINGs/po/sk.po
index 2aed0704..faeae7dc 100644
--- a/WINGs/po/sk.po
+++ b/WINGs/po/sk.po
@@ -557,7 +557,7 @@ msgstr "'%s' je adresár."
 
 #: ../../WINGs/wfilepanel.c:832
 #, c-format
-msgid "An error occured browsing '%s'."
+msgid "An error occurred browsing '%s'."
 msgstr "Pri prehliadaní '%s' nastala chyba."
 
 #: ../../WINGs/wfilepanel.c:836
diff --git a/WINGs/wfilepanel.c b/WINGs/wfilepanel.c
index be604d7e..d3cee19d 100644
--- a/WINGs/wfilepanel.c
+++ b/WINGs/wfilepanel.c
@@ -748,7 +748,7 @@ static void goFloppy(WMWidget *widget, void *p_panel)
        (void) widget;
 
        if (stat(WINGsConfiguration.floppyPath, &filestat)) {
-               showError(scr, panel->win, _("An error occured browsing 
'%s'."), WINGsConfiguration.floppyPath);
+               showError(scr, panel->win, _("An error occurred browsing 
'%s'."), WINGsConfiguration.floppyPath);
                return;
        } else if (!S_ISDIR(filestat.st_mode)) {
                showError(scr, panel->win, _("'%s' is not a directory."), 
WINGsConfiguration.floppyPath);

-----------------------------------------------------------------------

Summary of changes:
 Makefile.am            |    3 ++-
 WINGs/po/bg.po         |    2 +-
 WINGs/po/ca.po         |    2 +-
 WINGs/po/cs.po         |    2 +-
 WINGs/po/de.po         |    2 +-
 WINGs/po/fr.po         |    2 +-
 WINGs/po/hu.po         |    2 +-
 WINGs/po/nl.po         |    2 +-
 WINGs/po/sk.po         |    2 +-
 WINGs/wfilepanel.c     |    2 +-
 WPrefs.app/Expert.c    |    2 +-
 WPrefs.app/Icons.c     |    2 +-
 WPrefs.app/Menu.c      |    2 +-
 WPrefs.app/po/bg.po    |    4 ++--
 WPrefs.app/po/ca.po    |    4 ++--
 WPrefs.app/po/cs.po    |    4 ++--
 WPrefs.app/po/de.po    |    2 +-
 WPrefs.app/po/es.po    |    4 ++--
 WPrefs.app/po/fi.po    |    4 ++--
 WPrefs.app/po/fr.po    |    4 ++--
 WPrefs.app/po/hu.po    |    4 ++--
 WPrefs.app/po/it.po    |    4 ++--
 WPrefs.app/po/ja.po    |    2 +-
 WPrefs.app/po/ko.po    |    4 ++--
 WPrefs.app/po/nl.po    |    6 +++---
 WPrefs.app/po/ru.po    |    4 ++--
 WPrefs.app/po/sk.po    |    2 +-
 WPrefs.app/po/zh_TW.po |    4 ++--
 po/be.po               |    5 +++--
 po/bg.po               |    5 +++--
 po/ca.po               |    5 +++--
 po/cs.po               |    7 ++++---
 po/da.po               |    5 +++--
 po/de.po               |    4 ++--
 po/el.po               |    5 +++--
 po/es.po               |    6 +++---
 po/et.po               |    6 +++---
 po/fi.po               |    7 ++++---
 po/fr.po               |    5 +++--
 po/gl.po               |    7 ++++---
 po/hu.po               |    6 +++---
 po/hy.po               |    4 ++--
 po/it.po               |    6 +++---
 po/ja.po               |    6 +++---
 po/ko.po               |    6 +++---
 po/ms.po               |    7 ++++---
 po/nl.po               |    6 +++---
 po/pt.po               |    5 +++--
 po/ru.po               |    5 +++--
 po/sk.po               |    5 +++--
 po/zh_CN.po            |    5 +++--
 po/zh_TW.po            |    7 ++++---
 src/WindowMaker.h      |    3 ---
 src/main.c             |   12 +++++++-----
 src/startup.c          |    2 +-
 src/winspector.c       |    4 ++--
 56 files changed, 127 insertions(+), 112 deletions(-)


repo.or.cz automatic notification. Contact project admin crma...@gmail.com
if you want to unsubscribe, or site admin ad...@repo.or.cz if you receive
no reply.
-- 
wmaker-crm.git ("The Window Maker window manager")


-- 
To unsubscribe, send mail to wmaker-dev-unsubscr...@lists.windowmaker.org.

Reply via email to