From 6a8a8531bad25c148b4c62263d16c0996a21ca6e Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 20 Jan 2008 09:52:10 -0500 Subject: [PATCH 01/37] check them startupnotify-provided wmclass against both parts of a window's wm_class hint, as the spec doth say so. --- openbox/client.c | 2 +- openbox/startupnotify.c | 19 ++++++++++++++----- openbox/startupnotify.h | 7 +++++-- 3 files changed, 20 insertions(+), 8 deletions(-) diff --git a/openbox/client.c b/openbox/client.c index 63245a3c..0a0d1ffc 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -313,7 +313,7 @@ void client_manage(Window window) client_setup_decor_and_functions(self, FALSE); /* tell startup notification that this app started */ - launch_time = sn_app_started(self->startup_id, self->class); + launch_time = sn_app_started(self->startup_id, self->class, self->name); /* do this after we have a frame.. it uses the frame to help determine the WM_STATE to apply. */ diff --git a/openbox/startupnotify.c b/openbox/startupnotify.c index 66bce264..8bc38da2 100644 --- a/openbox/startupnotify.c +++ b/openbox/startupnotify.c @@ -28,7 +28,7 @@ void sn_startup(gboolean reconfig) {} void sn_shutdown(gboolean reconfig) {} gboolean sn_app_starting() { return FALSE; } -Time sn_app_started(const gchar *id, const gchar *wmclass) +Time sn_app_started(const gchar *id, const gchar *wmclass, const gchar *name) { return CurrentTime; } @@ -169,7 +169,7 @@ static void sn_event_func(SnMonitorEvent *ev, gpointer data) screen_set_root_cursor(); } -Time sn_app_started(const gchar *id, const gchar *wmclass) +Time sn_app_started(const gchar *id, const gchar *wmclass, const gchar *name) { GSList *it; Time t = CurrentTime; @@ -193,13 +193,22 @@ Time sn_app_started(const gchar *id, const gchar *wmclass) found = TRUE; } else { seqclass = sn_startup_sequence_get_wmclass(seq); - seqname = sn_startup_sequence_get_name(seq); seqbin = sn_startup_sequence_get_binary_name(seq); - if ((seqname && !g_ascii_strcasecmp(seqname, wmclass)) || + /* seqclass = "a string to match against the "resource name" or + "resource class" hints. These are WM_CLASS[0] and WM_CLASS[1]" + - from the startup-notification spec + */ + if ((seqclass && !strcmp(seqclass, wmclass)) || + (seqclass && !strcmp(seqclass, name)) || + /* Check the binary name against the class and name hints + as well, to help apps that don't have the class set + correctly */ (seqbin && !g_ascii_strcasecmp(seqbin, wmclass)) || - (seqclass && !strcmp(seqclass, wmclass))) + (seqbin && !g_ascii_strcasecmp(seqbin, name))) + { found = TRUE; + } } if (found) { diff --git a/openbox/startupnotify.h b/openbox/startupnotify.h index 7c28faba..d6f29724 100644 --- a/openbox/startupnotify.h +++ b/openbox/startupnotify.h @@ -27,8 +27,11 @@ void sn_shutdown(gboolean reconfig); gboolean sn_app_starting(); -/*! Notify that an app has started */ -Time sn_app_started(const gchar *id, const gchar *wmclass); +/*! Notify that an app has started + @param wmclass the WM_CLASS[1] hint + @param name the WM_CLASS[0] hint + */ +Time sn_app_started(const gchar *id, const gchar *wmclass, const gchar *name); /*! Get the desktop requested via the startup-notiication protocol if one was requested */ From b77a03a1f22e3e474c1338416ec30681c6216b0d Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 20 Jan 2008 18:34:26 -0500 Subject: [PATCH 02/37] only unset the startup_desktop_id once, and dont free the string we pass to putenv --- openbox/openbox.c | 4 +--- openbox/startupnotify.c | 7 ------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/openbox/openbox.c b/openbox/openbox.c index 48f31f91..0c74b255 100644 --- a/openbox/openbox.c +++ b/openbox/openbox.c @@ -515,9 +515,7 @@ static void remove_args(gint *argc, gchar **argv, gint index, gint num) static void parse_env() { /* unset this so we don't pass it on unknowingly */ - gchar *s = g_strdup("DESKTOP_STARTUP_ID"); - putenv(s); - g_free(s); + putenv(g_strdup("DESKTOP_STARTUP_ID")); } static void parse_args(gint *argc, gchar **argv) diff --git a/openbox/startupnotify.c b/openbox/startupnotify.c index 8bc38da2..78a1e94a 100644 --- a/openbox/startupnotify.c +++ b/openbox/startupnotify.c @@ -58,15 +58,8 @@ static void sn_event_func(SnMonitorEvent *event, gpointer data); void sn_startup(gboolean reconfig) { - gchar *s; - if (reconfig) return; - /* unset this so we don't pass it on unknowingly */ - s = g_strdup("DESKTOP_STARTUP_ID"); - putenv(s); - g_free(s); - sn_display = sn_display_new(ob_display, NULL, NULL); sn_context = sn_monitor_context_new(sn_display, ob_screen, sn_event_func, NULL, NULL); From beb2895f5a39dd236f917c691160450355dba771 Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Mon, 21 Jan 2008 12:14:30 +0100 Subject: [PATCH 03/37] Fix two typos in comments in rc.xml --- data/rc.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/rc.xml b/data/rc.xml index 3cd88ee8..4e25ffa2 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -36,7 +36,7 @@ no - @@ -44,7 +44,7 @@ Clearlooks NLIMC - no - + Any + diff --git a/data/rc.xsd b/data/rc.xsd index 0544cfd4..bd4c0cb6 100644 --- a/data/rc.xsd +++ b/data/rc.xsd @@ -54,7 +54,7 @@ - + @@ -402,6 +402,13 @@ + + + + + + + diff --git a/openbox/config.c b/openbox/config.c index 50f6aef6..5e6387bc 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -36,9 +36,9 @@ gboolean config_focus_raise; gboolean config_focus_last; gboolean config_focus_under_mouse; -ObPlacePolicy config_place_policy; -gboolean config_place_center; -gboolean config_place_active; +ObPlacePolicy config_place_policy; +gboolean config_place_center; +ObPlaceMonitor config_place_monitor; StrutPartial config_margins; @@ -491,8 +491,12 @@ static void parse_placement(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, config_place_policy = OB_PLACE_POLICY_MOUSE; if ((n = parse_find_node("center", node))) config_place_center = parse_bool(doc, n); - if ((n = parse_find_node("active", node))) - config_place_active = parse_bool(doc, n); + if ((n = parse_find_node("placeOn", node))) { + if (parse_contains("active", doc, n)) + config_place_monitor = OB_PLACE_MONITOR_ACTIVE; + else if (parse_contains("mouse", doc, n)) + config_place_monitor = OB_PLACE_MONITOR_MOUSE; + } } static void parse_margins(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, @@ -886,7 +890,7 @@ void config_startup(ObParseInst *i) config_place_policy = OB_PLACE_POLICY_SMART; config_place_center = TRUE; - config_place_active = FALSE; + config_place_monitor = OB_PLACE_MONITOR_ANY; parse_register(i, "placement", parse_placement, NULL); diff --git a/openbox/config.h b/openbox/config.h index 50e7dfe3..75275a8b 100644 --- a/openbox/config.h +++ b/openbox/config.h @@ -78,7 +78,7 @@ extern ObPlacePolicy config_place_policy; extern gboolean config_place_center; /*! Place windows on the active monitor (unless they are part of an application already on another monitor) */ -extern gboolean config_place_active; +extern ObPlaceMonitor config_place_monitor; /*! User-specified margins around the edge of the screen(s) */ extern StrutPartial config_margins; diff --git a/openbox/place.c b/openbox/place.c index 058bbfbe..81fb9752 100644 --- a/openbox/place.c +++ b/openbox/place.c @@ -108,7 +108,10 @@ static Rect **pick_head(ObClient *c) } } - if (focus_client && client_normal(focus_client)) { + /* skip this if placing by the mouse position */ + if (focus_client && client_normal(focus_client) && + config_place_monitor != OB_PLACE_MONITOR_MOUSE) + { add_choice(choice, client_monitor(focus_client)); ob_debug("placement adding choice %d for normal focused window\n", client_monitor(focus_client)); @@ -146,7 +149,8 @@ static gboolean place_random(ObClient *client, gint *x, gint *y) guint i; areas = pick_head(client); - i = config_place_active ? 0 : g_random_int_range(0, screen_num_monitors); + i = (config_place_monitor != OB_PLACE_MONITOR_ANY) ? + 0 : g_random_int_range(0, screen_num_monitors); l = areas[i]->x; t = areas[i]->y; @@ -255,9 +259,9 @@ static gboolean place_nooverlap(ObClient *c, gint *x, gint *y) /* try ignoring different things to find empty space */ for (ignore = 0; ignore < IGNORE_END && !ret; ignore++) { /* try all monitors in order of preference, but only the first one - if config_place_active is true */ - for (i = 0; (i < (config_place_active ? 1 : screen_num_monitors) && - !ret); ++i) + if config_place_monitor is MOUSE or ACTIVE */ + for (i = 0; (i < (config_place_monitor != OB_PLACE_MONITOR_ANY ? + 1 : screen_num_monitors) && !ret); ++i) { GList *it; diff --git a/openbox/place.h b/openbox/place.h index e2f1d4e4..6a9add40 100644 --- a/openbox/place.h +++ b/openbox/place.h @@ -31,6 +31,13 @@ typedef enum OB_PLACE_POLICY_MOUSE } ObPlacePolicy; +typedef enum +{ + OB_PLACE_MONITOR_ANY, + OB_PLACE_MONITOR_ACTIVE, + OB_PLACE_MONITOR_MOUSE +} ObPlaceMonitor; + gboolean place_client(struct _ObClient *client, gint *x, gint *y, struct _ObAppSettings *settings); From d7837051412b03ef167744d26043c0413614f85b Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Sun, 27 Jan 2008 21:03:55 +0100 Subject: [PATCH 32/37] Change to . --- data/rc.xml | 2 +- data/rc.xsd | 2 +- openbox/config.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/data/rc.xml b/data/rc.xml index ccaa8494..d164660d 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -35,7 +35,7 @@
yes
- Any + Any diff --git a/data/rc.xsd b/data/rc.xsd index bd4c0cb6..bc8a8fe6 100644 --- a/data/rc.xsd +++ b/data/rc.xsd @@ -54,7 +54,7 @@
- +
diff --git a/openbox/config.c b/openbox/config.c index 5e6387bc..69904d85 100644 --- a/openbox/config.c +++ b/openbox/config.c @@ -491,7 +491,7 @@ static void parse_placement(ObParseInst *i, xmlDocPtr doc, xmlNodePtr node, config_place_policy = OB_PLACE_POLICY_MOUSE; if ((n = parse_find_node("center", node))) config_place_center = parse_bool(doc, n); - if ((n = parse_find_node("placeOn", node))) { + if ((n = parse_find_node("monitor", node))) { if (parse_contains("active", doc, n)) config_place_monitor = OB_PLACE_MONITOR_ACTIVE; else if (parse_contains("mouse", doc, n)) From 3b48aa4ea29b4c41037b0f8b02c17e7fa138e31f Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 27 Jan 2008 20:26:29 -0500 Subject: [PATCH 33/37] fix a rare assert condition (window maps in iconic state but is not allowed to be iconic) --- openbox/client.c | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/openbox/client.c b/openbox/client.c index e5e25567..ba244756 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -309,9 +309,6 @@ void client_manage(Window window) /* the session should get the last say though */ client_restore_session_state(self); - /* now we have all of the window's information so we can set this up */ - client_setup_decor_and_functions(self, FALSE); - /* tell startup notification that this app started */ launch_time = sn_app_started(self->startup_id, self->class, self->name); @@ -319,12 +316,18 @@ void client_manage(Window window) WM_STATE to apply. */ client_change_state(self); - /* add ourselves to the focus order */ + /* add ourselves to the focus order. do this before + setup_decor_and_functions. if the window is mapping in a state that is + not allowed, then it will be adjusted, and that can change its position + in the focus order (deiconify for example) */ focus_order_add_new(self); /* do this to add ourselves to the stacking list in a non-intrusive way */ client_calc_layer(self); + /* now we have all of the window's information so we can set this up */ + client_setup_decor_and_functions(self, FALSE); + /* focus the new window? */ if (ob_state() != OB_STATE_STARTING && (!self->session || self->session->focused) && From e7e02728a337f3757aa00c260cb16f5f8224eae0 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 28 Jan 2008 00:26:13 -0500 Subject: [PATCH 34/37] reordering things when mapping windows a little to work with iconified windows with iconified toolbars on restart. (e.g. ooffice) --- openbox/client.c | 24 +++++++++++++----------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/openbox/client.c b/openbox/client.c index ba244756..035f7c45 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -201,14 +201,17 @@ void client_manage_all(void) } } - for (i = 0; i < nchild; ++i) { - if (children[i] == None) + /* manage windows in reverse order from how they were originally mapped. + this is an attempt to manage children windows before their parents, so + that when the parent is mapped, it can find the child */ + for (i = nchild; i > 0; --i) { + if (children[i--1] == None) continue; - if (XGetWindowAttributes(ob_display, children[i], &attrib)) { + if (XGetWindowAttributes(ob_display, children[i-1], &attrib)) { if (attrib.override_redirect) continue; if (attrib.map_state != IsUnmapped) - client_manage(children[i]); + client_manage(children[i-1]); } } XFree(children); @@ -289,6 +292,11 @@ void client_manage(Window window) ob_debug("Window type: %d\n", self->type); ob_debug("Window group: 0x%x\n", self->group?self->group->leader:0); + /* now we have all of the window's information so we can set this up. + do this before creating the frame, so it can tell that we are still + mapping and doesn't go applying things right away */ + client_setup_decor_and_functions(self, FALSE); + /* specify that if we exit, the window should not be destroyed and should be reparented back to root automatically */ XChangeSaveSet(ob_display, window, SetModeInsert); @@ -316,18 +324,12 @@ void client_manage(Window window) WM_STATE to apply. */ client_change_state(self); - /* add ourselves to the focus order. do this before - setup_decor_and_functions. if the window is mapping in a state that is - not allowed, then it will be adjusted, and that can change its position - in the focus order (deiconify for example) */ + /* add ourselves to the focus order */ focus_order_add_new(self); /* do this to add ourselves to the stacking list in a non-intrusive way */ client_calc_layer(self); - /* now we have all of the window's information so we can set this up */ - client_setup_decor_and_functions(self, FALSE); - /* focus the new window? */ if (ob_state() != OB_STATE_STARTING && (!self->session || self->session->focused) && From 1d0bcd8a68276012189090a52718d7bf892c27e7 Mon Sep 17 00:00:00 2001 From: Michael Kjelbergvik Thung Date: Tue, 29 Jan 2008 13:54:40 +0100 Subject: [PATCH 35/37] Update norwegian translation. --- po/no.po | 135 +++++++++++++++++++++++++++++-------------------------- 1 file changed, 71 insertions(+), 64 deletions(-) diff --git a/po/no.po b/po/no.po index 3c9849e2..eca23f57 100644 --- a/po/no.po +++ b/po/no.po @@ -2,14 +2,14 @@ # Copyright (C) 2007 Dana Jansens # This file is distributed under the same license as the openbox package. # -# Michael Kjelbergvik Thung , 2007. +# Michael Kjelbergvik Thung , 2008. msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.3\n" +"Project-Id-Version: Openbox 3.4.6\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" -"PO-Revision-Date: 2007-05-20 18:41+0200\n" -"Last-Translator: Michael Kjelbergvik Thung \n" +"POT-Creation-Date: 2008-01-29 13:43+0100\n" +"PO-Revision-Date: 2008-01-29 13:37+0100\n" +"Last-Translator: Michael Kjelbergvik Thung \n" "Language-Team: None\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -20,109 +20,109 @@ msgstr "" msgid "Invalid action '%s' requested. No such action exists." msgstr "Ugyldig operasjon '%s' etterspurt. Operasjonen finnes ikke." -#: openbox/actions/execute.c:88 +#: openbox/actions/execute.c:92 #, c-format msgid "Failed to convert the path '%s' from utf8" msgstr "Feil ved konvertering av '%s' fra utf8 " -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:101 openbox/actions/execute.c:120 #, c-format msgid "Failed to execute '%s': %s" msgstr "Kunne ikke kjøre '%s': %s" -#: openbox/client.c:1973 openbox/client.c:2005 +#: openbox/client.c:1979 openbox/client.c:2011 msgid "Killing..." -msgstr "" +msgstr "Dreper..." -#: openbox/client.c:1975 openbox/client.c:2007 +#: openbox/client.c:1981 openbox/client.c:2013 msgid "Not Responding" -msgstr "" +msgstr "Svarer Ikke" -#: openbox/client_list_combined_menu.c:90 openbox/client_list_menu.c:93 +#: openbox/client_list_combined_menu.c:91 openbox/client_list_menu.c:94 msgid "Go there..." msgstr "Gå dit..." -#: openbox/client_list_combined_menu.c:96 +#: openbox/client_list_combined_menu.c:97 msgid "Manage desktops" msgstr "Behandle skrivebord" -#: openbox/client_list_combined_menu.c:97 openbox/client_list_menu.c:156 +#: openbox/client_list_combined_menu.c:98 openbox/client_list_menu.c:157 msgid "_Add new desktop" msgstr "_Nytt skrivebord" -#: openbox/client_list_combined_menu.c:98 openbox/client_list_menu.c:157 +#: openbox/client_list_combined_menu.c:99 openbox/client_list_menu.c:158 msgid "_Remove last desktop" msgstr "_Fjern siste skrivebord" -#: openbox/client_list_combined_menu.c:150 +#: openbox/client_list_combined_menu.c:151 msgid "Windows" msgstr "Vinduer" -#: openbox/client_list_menu.c:203 +#: openbox/client_list_menu.c:204 msgid "Desktops" msgstr "Skrivebord" -#: openbox/client_menu.c:256 +#: openbox/client_menu.c:257 msgid "All desktops" msgstr "Alle skrivebord" -#: openbox/client_menu.c:360 +#: openbox/client_menu.c:361 msgid "_Layer" msgstr "La_g" -#: openbox/client_menu.c:365 +#: openbox/client_menu.c:366 msgid "Always on _top" msgstr "Alltid ø_verst" -#: openbox/client_menu.c:366 +#: openbox/client_menu.c:367 msgid "_Normal" msgstr "Nor_mal" -#: openbox/client_menu.c:367 +#: openbox/client_menu.c:368 msgid "Always on _bottom" msgstr "Alltid _nederst" -#: openbox/client_menu.c:370 +#: openbox/client_menu.c:371 msgid "_Send to desktop" msgstr "_Send til" -#: openbox/client_menu.c:374 +#: openbox/client_menu.c:375 msgid "Client menu" msgstr "Klient-meny" -#: openbox/client_menu.c:384 +#: openbox/client_menu.c:385 msgid "R_estore" msgstr "Tilbak_estill" -#: openbox/client_menu.c:392 +#: openbox/client_menu.c:393 msgid "_Move" msgstr "_Flytt" -#: openbox/client_menu.c:394 +#: openbox/client_menu.c:395 msgid "Resi_ze" msgstr "Endre s_tørrelse" -#: openbox/client_menu.c:396 +#: openbox/client_menu.c:397 msgid "Ico_nify" msgstr "_Minimer" -#: openbox/client_menu.c:404 +#: openbox/client_menu.c:405 msgid "Ma_ximize" msgstr "Ma_ximer" -#: openbox/client_menu.c:412 +#: openbox/client_menu.c:413 msgid "_Roll up/down" msgstr "_Rull opp/ned" -#: openbox/client_menu.c:414 +#: openbox/client_menu.c:415 msgid "Un/_Decorate" msgstr "Fjern/Legg til _dekorasjon" -#: openbox/client_menu.c:418 +#: openbox/client_menu.c:419 msgid "_Close" msgstr "_Lukk" -#: openbox/config.c:746 +#: openbox/config.c:750 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Ugyldig tast '%s' spesifisert i konfigurasjonsfilen" @@ -165,49 +165,49 @@ msgstr "Ugyldig knapp '%s' i binding for mus" msgid "Invalid context '%s' in mouse binding" msgstr "Ugyldig innhold '%s' i binding for mus" -#: openbox/openbox.c:130 +#: openbox/openbox.c:131 #, c-format msgid "Unable to change to home directory '%s': %s" msgstr "Kan ikke endre til hjemmekatalogen '%s': %s" -#: openbox/openbox.c:150 +#: openbox/openbox.c:151 msgid "Failed to open the display from the DISPLAY environment variable." msgstr "Kunne ikke åpne displayet fra DISPLAY-miljøvariabelen" -#: openbox/openbox.c:181 +#: openbox/openbox.c:182 msgid "Failed to initialize the obrender library." msgstr "Kunne ikke starte obrender-biblioteket." -#: openbox/openbox.c:187 +#: openbox/openbox.c:188 msgid "X server does not support locale." msgstr "X-serveren støtter ikke lokalisering." -#: openbox/openbox.c:189 +#: openbox/openbox.c:190 msgid "Cannot set locale modifiers for the X server." msgstr "Kan ikke stille inn lokaliseringsmodifikatorene for X-serveren." -#: openbox/openbox.c:252 +#: openbox/openbox.c:253 msgid "Unable to find a valid config file, using some simple defaults" msgstr "Kunne ikke finne en gyldig konfigurasjonsfil, bruker standardverdier" -#: openbox/openbox.c:278 +#: openbox/openbox.c:279 msgid "Unable to load a theme." msgstr "Kan ikke laste et tema." -#: openbox/openbox.c:405 +#: openbox/openbox.c:406 #, c-format msgid "Restart failed to execute new executable '%s': %s" msgstr "Restart kunne ikke starte nytt program '%s': %s" -#: openbox/openbox.c:475 openbox/openbox.c:477 +#: openbox/openbox.c:476 openbox/openbox.c:478 msgid "Copyright (c)" -msgstr "" +msgstr "Copyright (c)" -#: openbox/openbox.c:486 +#: openbox/openbox.c:487 msgid "Syntax: openbox [options]\n" msgstr "Syntax: openbox [alternativer\n" -#: openbox/openbox.c:487 +#: openbox/openbox.c:488 msgid "" "\n" "Options:\n" @@ -215,23 +215,23 @@ msgstr "" "\n" "Alternativ:\n" -#: openbox/openbox.c:488 +#: openbox/openbox.c:489 msgid " --help Display this help and exit\n" msgstr " --help Vise denne hjelpeteksten og avslutt\n" -#: openbox/openbox.c:489 +#: openbox/openbox.c:490 msgid " --version Display the version and exit\n" msgstr " --version Vis versjonsnummeret og avslutt\n" -#: openbox/openbox.c:490 +#: openbox/openbox.c:491 msgid " --replace Replace the currently running window manager\n" msgstr " --replace Erstatt den kjørende vindusbehandleren\n" -#: openbox/openbox.c:491 +#: openbox/openbox.c:492 msgid " --sm-disable Disable connection to the session manager\n" msgstr " --sm-disable Deaktiver tilkobling til sesjonsbehandleren\n" -#: openbox/openbox.c:492 +#: openbox/openbox.c:493 msgid "" "\n" "Passing messages to a running Openbox instance:\n" @@ -239,19 +239,19 @@ msgstr "" "\n" "Sender beskjeder til en kjørende Openbox-instans:\n" -#: openbox/openbox.c:493 +#: openbox/openbox.c:494 msgid " --reconfigure Reload Openbox's configuration\n" msgstr " --reconfigure Oppdater Openbox' konfigurasjon\n" -#: openbox/openbox.c:494 +#: openbox/openbox.c:495 msgid " --restart Restart Openbox\n" msgstr " --restart Start Openbox på nytt\n" -#: openbox/openbox.c:495 -msgid " --exit Exit Openbox\n" -msgstr "" - #: openbox/openbox.c:496 +msgid " --exit Exit Openbox\n" +msgstr " --exit Avslutt Openbox\n" + +#: openbox/openbox.c:497 msgid "" "\n" "Debugging options:\n" @@ -259,23 +259,23 @@ msgstr "" "\n" "Debug-alternativ:\n" -#: openbox/openbox.c:497 +#: openbox/openbox.c:498 msgid " --sync Run in synchronous mode\n" msgstr " --sync Kjør i synkron-modus\n" -#: openbox/openbox.c:498 +#: openbox/openbox.c:499 msgid " --debug Display debugging output\n" msgstr " --debug Vis debuggingsinformasjon\n" -#: openbox/openbox.c:499 +#: openbox/openbox.c:500 msgid " --debug-focus Display debugging output for focus handling\n" msgstr " --debug-focus Vis debuggingsinformasjon for fokus-håndtering\n" -#: openbox/openbox.c:500 +#: openbox/openbox.c:501 msgid " --debug-xinerama Split the display into fake xinerama screens\n" msgstr " -debug-xinerama Splitt displayet for falske xinerama-skjermer\n" -#: openbox/openbox.c:501 +#: openbox/openbox.c:502 #, c-format msgid "" "\n" @@ -284,7 +284,7 @@ msgstr "" "\n" "Vennligst rapporter bugs til %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:603 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Ugyldig kommandolinje-argument '%s'\n" @@ -304,7 +304,14 @@ msgstr "Kunne ikke hendte vindusbehandlerens markering på skjerm %d" msgid "The WM on screen %d is not exiting" msgstr "Vindusbehandleren på skjerm %d vil ikke avslutte" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "Openbox er innstillt til %d skrivebord, men nåværende sesjon har %d. Benytter sesjonens innstilling." + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "skrivebord %i" @@ -324,7 +331,7 @@ msgstr "Kan ikke lagre sesjon til '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Feil ved lagring av sesjon til '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:243 #, c-format msgid "Running %s\n" msgstr "Kjører %s\n" From 2570d8f25fcbfbae344b33cd63774a37c952d6eb Mon Sep 17 00:00:00 2001 From: Mikael Magnusson Date: Tue, 29 Jan 2008 14:04:31 +0100 Subject: [PATCH 36/37] Mark translations without the new desktop number mismatch message as 3.4.5. Update swedish translation with them. [ I mistakenly originally made this commit on 3.4-working (commit 7f514044f7fb8f5c2948d9b3da837a9b46717ee5) so the changes got lost on a subsequent merge from backport when we usually overwrite po/. ] --- po/ar.po | 17 ++++++++++++----- po/bn_IN.po | 17 ++++++++++++----- po/ca.po | 17 ++++++++++++----- po/cs.po | 17 ++++++++++++----- po/de.po | 19 +++++++++++++------ po/en@boldquot.po | 23 ++++++++++++++++------- po/en@quot.po | 23 ++++++++++++++++------- po/es.po | 17 ++++++++++++----- po/et.po | 17 ++++++++++++----- po/eu.po | 19 +++++++++++++------ po/fi.po | 22 +++++++++++++++------- po/fr.po | 19 +++++++++++++------ po/hu.po | 17 ++++++++++++----- po/it.po | 17 ++++++++++++----- po/ja.po | 17 ++++++++++++----- po/nl.po | 17 ++++++++++++----- po/openbox.pot | 17 ++++++++++++----- po/pl.po | 17 ++++++++++++----- po/pt.po | 19 +++++++++++++------ po/pt_BR.po | 13 ++++++++++--- po/ru.po | 13 ++++++++++--- po/sk.po | 17 ++++++++++++----- po/sv.po | 21 +++++++++++++++------ po/ua.po | 17 ++++++++++++----- po/vi.po | 19 +++++++++++++------ po/zh_CN.po | 19 +++++++++++++------ po/zh_TW.po | 17 ++++++++++++----- 27 files changed, 340 insertions(+), 144 deletions(-) diff --git a/po/ar.po b/po/ar.po index c7af5d61..ca3182fa 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-21 14:43+0300\n" "Last-Translator: Khaled Hosny \n" "Language-Team: Arabic \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "فشلت في تحويل المسار '%s' من utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "فشلت في تنفيذ '%s': %s" @@ -287,7 +287,7 @@ msgstr "" "\n" "من فضلك أبلغ عن العلل إلى %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "معامل سطر أوامر غير سليم '%s'\n" @@ -307,7 +307,14 @@ msgstr "تعذّر الحصول على انتقاء مدير النوافذ عل msgid "The WM on screen %d is not exiting" msgstr "مدير النوافذ على الشاشة %Id لا وجود له" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "سطح المكتب %Ii" @@ -327,7 +334,7 @@ msgstr "لم أستطِع حفظ الجلسة إلى '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "خطأ أثناء حفظ الجلسة إلى '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "تشغيل %s\n" diff --git a/po/bn_IN.po b/po/bn_IN.po index ab834ba9..fed7496b 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-06-01 19:02+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali (India) \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "'%s' পাথটি utf8 থেকে রূপান্তর করতে ব্যর্থ" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "'%s' সঞ্চালন করতে ব্যর্থ: %s" @@ -290,7 +290,7 @@ msgstr "" "\n" "অনুগ্রহ করে %s-এ বাগ সংক্রান্ত সূচনা দায়ের করুন\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "অবৈধ কমান্ড-লাইন আর্গুমেন্ট '%s'\n" @@ -310,7 +310,14 @@ msgstr "পর্দা %d-এ উইন্ডো পরিচালন ব্ msgid "The WM on screen %d is not exiting" msgstr "পর্দা %d-র উপর চলমান উইন্ডো পরিচালন ব্যবস্থাটি বন্ধ করতে ব্যর্থ" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "desktop %i" @@ -330,7 +337,7 @@ msgstr "'%s'-র সেশান সংরক্ষণ করতে ব্যর msgid "Error while saving the session to '%s': %s" msgstr "'%s'-এ সেশান সংরক্ষণকালে সমস্যা: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "%s সঞ্চালিত হচ্ছে\n" diff --git a/po/ca.po b/po/ca.po index 4c556c77..25f9f331 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-05-28 15:54+0200\n" "Last-Translator: David Majà Martínez \n" "Language-Team: catalan\n" @@ -25,7 +25,7 @@ msgstr "L'acció sollicitada '%s' no és vàlida. Aquesta acció no existeix." msgid "Failed to convert the path '%s' from utf8" msgstr "No s'ha pogut convertir el camí '%s' des de utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "No s'ha pogut executar '%s': %s" @@ -296,7 +296,7 @@ msgstr "" "\n" "Informeu dels errors a %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Opció '%s' no vàlida a la línia d'ordres\n" @@ -317,7 +317,14 @@ msgstr "" msgid "The WM on screen %d is not exiting" msgstr "El gestor de finestres de la pantalla %d no està sortint" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "escriptori %i" @@ -337,7 +344,7 @@ msgstr "No s'ha pogut desar la sessió a '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "S'ha produït un error mentre es desava la sessió a '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Executant %s\n" diff --git a/po/cs.po b/po/cs.po index d6384bad..5228e923 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-21 00:15+0200\n" "Last-Translator: tezlo \n" "Language-Team: Czech \n" @@ -25,7 +25,7 @@ msgstr "Požadována neplatná akce '%s'. Žádná taková akce neexistuje." msgid "Failed to convert the path '%s' from utf8" msgstr "Nepodařilo se převést cestu '%s' z utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Nepodařilo se spustit '%s': %s" @@ -286,7 +286,7 @@ msgstr "" "\n" "Prosím hlašte chyby na %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Neplatný argument příkazové řádky '%s'\n" @@ -306,7 +306,14 @@ msgstr "Nepodařilo se získat výseč pro window manager na obrazovce %d" msgid "The WM on screen %d is not exiting" msgstr "Window manager na obrazovce %d ne a ne skončit" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "plochu %i" @@ -326,7 +333,7 @@ msgstr "Nepodařilo se uložit session do '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Chyba během ukládání session do '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Spouštím %s\n" diff --git a/po/de.po b/po/de.po index bd4ef113..63c76cc2 100644 --- a/po/de.po +++ b/po/de.po @@ -8,9 +8,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-17 22:49+0100\n" "Last-Translator: Finn Zirngibl \n" "Language-Team: \n" @@ -28,7 +28,7 @@ msgstr "Unzulässige Aktion '%s' angefordert. Diese Aktion existiert nicht." msgid "Failed to convert the path '%s' from utf8" msgstr "Konnte Pfad '%s' nicht von utf8 konvertieren" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Konnte '%s' nicht ausführen: %s" @@ -292,7 +292,7 @@ msgstr "" "\n" "Bitte melden Sie Bugreports an: %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Ungültiges Kommandozeilen Argument '%s'\n" @@ -312,7 +312,14 @@ msgstr "Konnte die Fenstermanagerauswahl auf Bildschirm %d nicht reservieren" msgid "The WM on screen %d is not exiting" msgstr "Der Fenstermanager auf Bildschirm %d beendet sich nicht" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "desktop %i" @@ -332,7 +339,7 @@ msgstr "Konnte die Sitzung '%s' nicht sichern: %s" msgid "Error while saving the session to '%s': %s" msgstr "Fehler beim Speichern der Sitzung nach '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Starte %s\n" diff --git a/po/en@boldquot.po b/po/en@boldquot.po index 2f2f3960..c561c282 100644 --- a/po/en@boldquot.po +++ b/po/en@boldquot.po @@ -30,10 +30,10 @@ # msgid "" msgstr "" -"Project-Id-Version: openbox 3.999.0\n" +"Project-Id-Version: openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" -"PO-Revision-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" +"PO-Revision-Date: 2008-01-25 03:51+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -51,7 +51,7 @@ msgstr "Invalid action ‘%s’ requested. No such action exists." msgid "Failed to convert the path '%s' from utf8" msgstr "Failed to convert the path ‘%s’ from utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Failed to execute '%s': %s" @@ -310,7 +310,7 @@ msgstr "" "\n" "Please report bugs at %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Invalid command line argument ‘%s’\n" @@ -330,7 +330,16 @@ msgstr "Could not acquire window manager selection on screen %d" msgid "The WM on screen %d is not exiting" msgstr "The WM on screen %d is not exiting" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "desktop %i" @@ -350,7 +359,7 @@ msgstr "Unable to save the session to '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Error while saving the session to '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Running %s\n" diff --git a/po/en@quot.po b/po/en@quot.po index ea40adcf..d0588129 100644 --- a/po/en@quot.po +++ b/po/en@quot.po @@ -27,10 +27,10 @@ # msgid "" msgstr "" -"Project-Id-Version: openbox 3.999.0\n" +"Project-Id-Version: openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" -"PO-Revision-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" +"PO-Revision-Date: 2008-01-25 03:51+0100\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "Invalid action ‘%s’ requested. No such action exists." msgid "Failed to convert the path '%s' from utf8" msgstr "Failed to convert the path ‘%s’ from utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Failed to execute '%s': %s" @@ -307,7 +307,7 @@ msgstr "" "\n" "Please report bugs at %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Invalid command line argument ‘%s’\n" @@ -327,7 +327,16 @@ msgstr "Could not acquire window manager selection on screen %d" msgid "The WM on screen %d is not exiting" msgstr "The WM on screen %d is not exiting" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "desktop %i" @@ -347,7 +356,7 @@ msgstr "Unable to save the session to '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Error while saving the session to '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Running %s\n" diff --git a/po/es.po b/po/es.po index ead56fed..6d702bb3 100644 --- a/po/es.po +++ b/po/es.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-21 21:26+0200\n" "Last-Translator: David Merino \n" "Language-Team: None\n" @@ -27,7 +27,7 @@ msgstr "La acción '%s' solicitada es inválida. No existe tal acción." msgid "Failed to convert the path '%s' from utf8" msgstr "Falló al convertir el path '%s' desde utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Falló al ejecutar '%s': %s" @@ -293,7 +293,7 @@ msgstr "" "\n" "Por favor reportar errores a %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Argumento de linea de comando inválido '%s'\n" @@ -314,7 +314,14 @@ msgstr "" msgid "The WM on screen %d is not exiting" msgstr "El WM en la pantalla %d no esta saliendo" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "Escritorio %i" @@ -334,7 +341,7 @@ msgstr "No se puede salvar la sesión a '%s': '%s'" msgid "Error while saving the session to '%s': %s" msgstr "Error mientras se salvaba la sesión a '%s': '%s'" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Ejecutando %s\n" diff --git a/po/et.po b/po/et.po index 6cc82a43..235436a2 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-20 16:54+0200\n" "Last-Translator: Andres Järv \n" "Language-Team: Estonian \n" @@ -26,7 +26,7 @@ msgstr "Taotleti kehtetut käsklust '%s'. Sellist käsklust pole olemas." msgid "Failed to convert the path '%s' from utf8" msgstr "Raja '%s' ümberkodeerimine UTF8-st ebaõnnestus" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "'%s' käivitamine ebaõnnestus: %s" @@ -287,7 +287,7 @@ msgstr "" "\n" "Palun teata vigadest siia %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Vigane käsurea argument '%s'\n" @@ -307,7 +307,14 @@ msgstr "Ei suuda hankida aknahaldurite loetelu ekraanil %d" msgid "The WM on screen %d is not exiting" msgstr "Aknahaldur ekraanil %d ei sulgu" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "töölaud %i" @@ -327,7 +334,7 @@ msgstr "Seansi '%s' salvestamine ebaõnnestus: %s" msgid "Error while saving the session to '%s': %s" msgstr "Seansi '%s' salvestamisel ilmnes viga: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Jooksev %s\n" diff --git a/po/eu.po b/po/eu.po index 0d2b8961..a270c563 100644 --- a/po/eu.po +++ b/po/eu.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-19 14:34+0100\n" "Last-Translator: Inko I. A. \n" "Language-Team: Inko I. A. \n" @@ -25,7 +25,7 @@ msgstr "Eskatutako '%s' ekintza baliogabea. Ez da ekintza hori existitzen." msgid "Failed to convert the path '%s' from utf8" msgstr "Hutsegitea '%s' helbidea utf8-tik bihurtzean" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Hutsegitea '%s' exekutatzean: %s" @@ -287,7 +287,7 @@ msgstr "" "\n" "%s helbidean erroreen berri eman mesedez\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "'%s' komando lerro argumentu baliogabea\n" @@ -310,7 +310,14 @@ msgstr "" msgid "The WM on screen %d is not exiting" msgstr "%d bistaratze pantailako leiho-kudeatzailea ez da irteten" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "%i Idazmahaia" @@ -330,7 +337,7 @@ msgstr "Ezin da saioa '%s'-n gorde: %s" msgid "Error while saving the session to '%s': %s" msgstr "Errorea saioa '%s'-n gordetzean: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Egikaritzen %s\n" diff --git a/po/fi.po b/po/fi.po index 335e8d8b..f36befeb 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,9 +8,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-18 14:55+0100\n" "Last-Translator: Jarkko Piiroinen \n" "Language-Team: None\n" @@ -28,7 +28,7 @@ msgstr "Virheellinen tapahtuma '%s' yritetty. Tapahtumaa ei ole." msgid "Failed to convert the path '%s' from utf8" msgstr "Polun muuntaminen utf8:sta epäonnistui: '%s'" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Ohjelman suorittaminen epäonnistui '%s': %s" @@ -202,7 +202,8 @@ msgstr "Teeman lataaminen epäonnistui." #: openbox/openbox.c:405 #, c-format msgid "Restart failed to execute new executable '%s': %s" -msgstr "Uudelleenkäynnistys ei onnistunut käynnistämään uutta ohjelmaa '%s': %s" +msgstr "" +"Uudelleenkäynnistys ei onnistunut käynnistämään uutta ohjelmaa '%s': %s" #: openbox/openbox.c:475 openbox/openbox.c:477 msgid "Copyright (c)" @@ -289,7 +290,7 @@ msgstr "" "\n" "Ilmoita virheistä: %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Virheellinen valitsin '%s'\n" @@ -309,7 +310,14 @@ msgstr "Ikkunointiohjelman valinta ruudulla %d ei onnistunut" msgid "The WM on screen %d is not exiting" msgstr "Ikkunointiohjelma ruudulla %d ei sulkeudu" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "työtila %i" @@ -329,7 +337,7 @@ msgstr "Istuntoa ei voitu tallentaa hakemistoon '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Virhe tallennettaessa istuntoa hakemistoon '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Suoritetaan %s\n" diff --git a/po/fr.po b/po/fr.po index fefa21ce..f3a3c13b 100644 --- a/po/fr.po +++ b/po/fr.po @@ -9,9 +9,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-17 22:53+0100\n" "Last-Translator: Cyrille Bagard \n" "Language-Team: franais \n" @@ -29,7 +29,7 @@ msgstr "Action demand msgid "Failed to convert the path '%s' from utf8" msgstr "chec de la conversion du chemin %s depuis l'UTF-8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "chec de l'excution de %s: %s" @@ -300,7 +300,7 @@ msgstr "" "\n" "Veuillez soumettre les rapports de bogues %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Argument de la ligne de commande invalide %s\n" @@ -323,7 +323,14 @@ msgid "The WM on screen %d is not exiting" msgstr "" "Le gestionnaire de fentres sur l'cran %d n'est pas en train de se terminer" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "bureau %i" @@ -343,7 +350,7 @@ msgstr "Impossible de sauvegarder la session dans msgid "Error while saving the session to '%s': %s" msgstr "Erreur lors de la sauvegarde de la session depuis %s: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Excution de %s\n" diff --git a/po/hu.po b/po/hu.po index eba32319..50b5d388 100644 --- a/po/hu.po +++ b/po/hu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-12-21 14:33+0100\n" "Last-Translator: Robert Kuszinger \n" "Language-Team: Hungarian \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "Az útvonalat nem sikerült átalakítani utf8-ból: '%s'" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Nem sikerült futtatni ezt a programot '%s': %s" @@ -287,7 +287,7 @@ msgstr "" "\n" "Légyszi jelentsd a hibát itt: %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Érvénytelen parancssori opció: '%s'\n" @@ -307,7 +307,14 @@ msgstr "Nem tudok ablakkezelőt váltani ezen a képernyőn %d" msgid "The WM on screen %d is not exiting" msgstr "Ezen a képernyőn: %d az ablakkezelő nem lép ki" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "%i. munkaasztal" @@ -327,7 +334,7 @@ msgstr "Nem tudom elmenti ide a futó környezetet '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Hiba a futási környezet mentése közben '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Futtatás %s\n" diff --git a/po/it.po b/po/it.po index 1fdebe4b..d4a8130b 100644 --- a/po/it.po +++ b/po/it.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-20 15:18+0200\n" "Last-Translator: Davide Truffa \n" "Language-Team: Italian \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "Impossibile convertire il percorso utf8 '%s'" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Impossibile eseguire il comando '%s': %s" @@ -293,7 +293,7 @@ msgstr "" "\n" "Segnalate eventuali bug a %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Argomento da linea di comando non valido '%s'\n" @@ -313,7 +313,14 @@ msgstr "Impossibile acquisire la selezione del window manager sullo schermo %d" msgid "The WM on screen %d is not exiting" msgstr "Il WM sullo schermo %d non è terminato" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "desktop %i" @@ -333,7 +340,7 @@ msgstr "Impossibile salvare la sessione in '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Errore durante il salvataggio della sessione in '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Sto eseguendo %s\n" diff --git a/po/ja.po b/po/ja.po index 57a341ed..a72fdd9a 100644 --- a/po/ja.po +++ b/po/ja.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-06-07 14:49+0200\n" "Last-Translator: Ryoichiro Suzuki \n" "Language-Team: Japanese \n" @@ -28,7 +28,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "パス'%s'を utf8 から変換するのに失敗しました。" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "'%s'の実行に失敗しました: %s" @@ -280,7 +280,7 @@ msgid "" "Please report bugs at %s\n" msgstr "" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "不正なコマンドライン引数 '%s'\n" @@ -300,7 +300,14 @@ msgstr "スクリーン%dでウィンドウマネージャの選択を取得で msgid "The WM on screen %d is not exiting" msgstr "スクリーン%dのWMが終了しません。" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "デスクトップ%i" @@ -320,7 +327,7 @@ msgstr "セッションを'%s'に保存できません: %s" msgid "Error while saving the session to '%s': %s" msgstr "セッションを'%s'に保存中にエラーが起きました: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "起動中 %s\n" diff --git a/po/nl.po b/po/nl.po index b9e9c59b..414cddb3 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-12 13:01+0200\n" "Last-Translator: Jochem Kossen \n" "Language-Team: Dutch \n" @@ -26,7 +26,7 @@ msgstr "Ongeldige actie '%s' gevraagd. Deze actie bestaat niet" msgid "Failed to convert the path '%s' from utf8" msgstr "Converteren van het pad '%s' vanuit utf8 mislukt" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Uitvoeren van '%s' mislukt: %s" @@ -287,7 +287,7 @@ msgstr "" "\n" "Gelieve bugs te melden bij %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Onbekende optie '%s'\n" @@ -307,7 +307,14 @@ msgstr "Kon window manager selectie op scherm %d niet verkrijgen" msgid "The WM on screen %d is not exiting" msgstr "De window manager op scherm %d sluit zichzelf niet af" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "bureaublad %i" @@ -327,7 +334,7 @@ msgstr "Kan de sessie niet opslaan naar '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Fout tijdens het opslaan van de sessie naar '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Starten %s\n" diff --git a/po/openbox.pot b/po/openbox.pot index 25b7abb4..ed572b0d 100644 --- a/po/openbox.pot +++ b/po/openbox.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -26,7 +26,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "" @@ -277,7 +277,7 @@ msgid "" "Please report bugs at %s\n" msgstr "" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "" @@ -297,7 +297,14 @@ msgstr "" msgid "The WM on screen %d is not exiting" msgstr "" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "" @@ -317,7 +324,7 @@ msgstr "" msgid "Error while saving the session to '%s': %s" msgstr "" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "" diff --git a/po/pl.po b/po/pl.po index 6dfc2a84..3d1003d6 100644 --- a/po/pl.po +++ b/po/pl.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-14 00:43+0200\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" @@ -27,7 +27,7 @@ msgstr "" msgid "Failed to convert the path '%s' from utf8" msgstr "Nie można przekonwertować ścieżki '%s' z UTF-8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Wykonanie '%s' nie powiodło się: %s" @@ -291,7 +291,7 @@ msgstr "" "\n" "Proszę zgłaszać błędy (w języku angielskim) pod adresem %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Nieprawidłowy argument wiersza poleceń '%s'\n" @@ -311,7 +311,14 @@ msgstr "Nie można uzyskać wyboru menedżera okien na ekranie %d" msgid "The WM on screen %d is not exiting" msgstr "Menedżer okien na ekranie %d nie kończy działania" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "pulpit %i" @@ -331,7 +338,7 @@ msgstr "Nie można zapisać sesji do '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Wystąpił błąd podczas zapisywania sesji do '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Uruchamianie %s\n" diff --git a/po/pt.po b/po/pt.po index e8291226..afaee843 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,9 +6,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-22 22:17+0100\n" "Last-Translator: Althaser \n" "Language-Team: None\n" @@ -26,7 +26,7 @@ msgstr "Pedido de ac msgid "Failed to convert the path '%s' from utf8" msgstr "Falha a converter o caminho '%s' do utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Falha a executar '%s': %s" @@ -289,7 +289,7 @@ msgstr "" "\n" "Por favor reporte erros em %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Argumento invlido na linha de comandos '%s'\n" @@ -309,7 +309,14 @@ msgstr "N msgid "The WM on screen %d is not exiting" msgstr "O gestor de janelas no ecr %d no est a fechar" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "rea de trabalho %i" @@ -329,7 +336,7 @@ msgstr "Incapaz de guardar a sess msgid "Error while saving the session to '%s': %s" msgstr "Erro enquanto guardava a sesso em '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Executando %s\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 9c9ce2a5..9afabafa 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,9 +6,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-22 21:40+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-22 21:42+0100\n" "Last-Translator: Og Maciel \n" "Language-Team: Brazilian Portuguese \n" @@ -314,7 +314,14 @@ msgstr "" msgid "The WM on screen %d is not exiting" msgstr "O gerenciador de janelas na tela %d não está saindo" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "área de trabalho %i" diff --git a/po/ru.po b/po/ru.po index f4f11eb3..c0b6a5b6 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,9 +6,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-22 07:58+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-22 07:56+0100\n" "Last-Translator: Nikita Bukhvostov \n" "Language-Team: Russian \n" @@ -309,7 +309,14 @@ msgstr "Не могу получить выбор менеджера окон н msgid "The WM on screen %d is not exiting" msgstr "Менеджер окон на экране %d не завершается" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "рабочий стол %i" diff --git a/po/sk.po b/po/sk.po index 57140080..8e112788 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox-3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-12-7 13:43Central Europe Daylight Time\n" "Last-Translator: Jozef Riha \n" @@ -25,7 +25,7 @@ msgstr "Vyžiadaná neplatná akcia '%s'. Takáto akcia neexistuje." msgid "Failed to convert the path '%s' from utf8" msgstr "Nepodarilo sa skonvertovať cestu '%s' z utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Nepodarilo sa spustiť '%s': %s" @@ -288,7 +288,7 @@ msgstr "" "\n" "Prosim hlaste chyby na %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Neplatny parameter prikazoveho riadku '%s'\n" @@ -308,7 +308,14 @@ msgstr "Nepodarilo sa získať výber okenného manažéra na obrazovke %d" msgid "The WM on screen %d is not exiting" msgstr "Okenný manažér na obrazovke %d sa neukončuje" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "plocha %i" @@ -328,7 +335,7 @@ msgstr "Nepodarilo sa uložiť sedenie '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Chyba pri ukladaní sedenia do '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Spúšťam %s\n" diff --git a/po/sv.po b/po/sv.po index 6c971e91..d00ba87c 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.6\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" -"PO-Revision-Date: 2008-01-17 22:19+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" +"PO-Revision-Date: 2008-01-25 03:52+0100\n" "Last-Translator: Mikael Magnusson \n" "Language-Team: None\n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Ogiltig action '%s' efterfr msgid "Failed to convert the path '%s' from utf8" msgstr "Lyckades inte konvertera skvgen '%s' frn utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Kunde inte exekvera '%s': %s" @@ -285,7 +285,7 @@ msgstr "" "\n" "Rapportera buggar till %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Ogiltigt kommandoradsargument '%s'\n" @@ -305,7 +305,16 @@ msgstr "Kunde inte erh msgid "The WM on screen %d is not exiting" msgstr "Fnsterhanteraren p skrm %d avslutar inte" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" +"Openbox r instllt p %d skrivbord, men nuvarande session har %d. Anvnder " +"sessionens instllning." + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "skrivbord %i" @@ -325,7 +334,7 @@ msgstr "Kunde inte spara sessionen till '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Fel intrffade nr sessionen skulle sparas till '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Kr %s\n" diff --git a/po/ua.po b/po/ua.po index 225e487d..798c4fef 100644 --- a/po/ua.po +++ b/po/ua.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.2\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-06-16 13:02+0200\n" "Last-Translator: Dmitriy Moroz \n" "Language-Team: Ukrainian \n" @@ -25,7 +25,7 @@ msgstr "Здійснено запит на некоректну дію '%s'. Н msgid "Failed to convert the path '%s' from utf8" msgstr "Не вдалося сконвертувати шлях '%s' з utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Невдалося виконати '%s': %s" @@ -288,7 +288,7 @@ msgstr "" "\n" "Будь-ласка, повідомляйте про помилки на %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Некоректний командний аргумент '%s'\n" @@ -308,7 +308,14 @@ msgstr "Не можу отримати вибір менеджера вікон msgid "The WM on screen %d is not exiting" msgstr "Менеджео вікон на дисплеї %d не завершується" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "стільниця %i" @@ -328,7 +335,7 @@ msgstr "Не вдалося зберегти сесію в '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Помилка при збереженні сесії в '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Виконується %s\n" diff --git a/po/vi.po b/po/vi.po index fa7b324f..43cb060b 100644 --- a/po/vi.po +++ b/po/vi.po @@ -5,9 +5,9 @@ # msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-17 23:08+0100\n" "Last-Translator: Quan Tran \n" "Language-Team: None\n" @@ -25,7 +25,7 @@ msgstr "Hành động '%s' làm không được. Hành động đó không có." msgid "Failed to convert the path '%s' from utf8" msgstr "Không thể chuyển chỗ '%s' từ utf8" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "Làm không được '%s': %s" @@ -286,7 +286,7 @@ msgstr "" "\n" "Làm ơn báo cáo bugs ở chỗ %s\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "Mệnh lệnh viết sai '%s'\n" @@ -306,7 +306,14 @@ msgstr "Không thể lấy được chương trình quản lý cửa sổ ở tr msgid "The WM on screen %d is not exiting" msgstr "Chương trình quản lý cửa sổ trên màn hình %d không đi ra" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "chỗ làm việc %i" @@ -326,7 +333,7 @@ msgstr "Không thể tiết kiệm thời kỳ cho '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "Bĩ trục chật lúc tiết kiệm thời kỳ cho '%s': %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "Đan Chạy %s\n" diff --git a/po/zh_CN.po b/po/zh_CN.po index c4e98352..9c9de597 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,9 +6,9 @@ # Shaodong Di , 2008. msgid "" msgstr "" -"Project-Id-Version: Openbox 3.4.6\n" +"Project-Id-Version: Openbox 3.4.5\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2008-01-18 15:02+0100\n" "Last-Translator: Shaodong Di \n" "Language-Team: 简体中文\n" @@ -26,7 +26,7 @@ msgstr "请求的动作 '%s' 无效。该动作不存在。" msgid "Failed to convert the path '%s' from utf8" msgstr "从 utf8 转换路径 '%s' 时失败" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "执行 '%s' 时失败: %s" @@ -285,7 +285,7 @@ msgstr "" "\n" "请向 %s 报告错误\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "无效的命令行参数 '%s'\n" @@ -305,7 +305,14 @@ msgstr "在屏幕 %d 无法被选为窗口管理器" msgid "The WM on screen %d is not exiting" msgstr "屏幕 %d 的窗口管理器没有退出" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "桌面 %i" @@ -325,7 +332,7 @@ msgstr "无法保存会话到 '%s': %s" msgid "Error while saving the session to '%s': %s" msgstr "在保存会话到 '%s' 时出错: %s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "运行 %s\n" diff --git a/po/zh_TW.po b/po/zh_TW.po index 8b3cb32d..c0217bfa 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4.3\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2008-01-17 22:13+0100\n" +"POT-Creation-Date: 2008-01-25 03:51+0100\n" "PO-Revision-Date: 2007-07-23 23:22+0200\n" "Last-Translator: Wei-Lun Chao \n" "Language-Team: Chinese (traditional) \n" @@ -26,7 +26,7 @@ msgstr "要求的動作「%s」無效。無此類動作存在。" msgid "Failed to convert the path '%s' from utf8" msgstr "轉換路徑「%s」自 utf8 時失敗" -#: openbox/actions/execute.c:97 openbox/actions/execute.c:115 +#: openbox/actions/execute.c:97 openbox/actions/execute.c:116 #, c-format msgid "Failed to execute '%s': %s" msgstr "執行「%s」時失敗:%s" @@ -285,7 +285,7 @@ msgstr "" "\n" "請向 %s 報告錯誤\n" -#: openbox/openbox.c:604 +#: openbox/openbox.c:602 #, c-format msgid "Invalid command line argument '%s'\n" msgstr "無效的命令列引數「%s」\n" @@ -305,7 +305,14 @@ msgstr "無法於螢幕 %d 獲選為視窗管理員" msgid "The WM on screen %d is not exiting" msgstr "螢幕 %d 中的視窗管理員並未離開" -#: openbox/screen.c:1162 +#: openbox/screen.c:407 +#, c-format +msgid "" +"Openbox is configured for %d desktops, but the current session has %d. " +"Overriding the Openbox configuration." +msgstr "" + +#: openbox/screen.c:1168 #, c-format msgid "desktop %i" msgstr "桌面 %i" @@ -325,7 +332,7 @@ msgstr "無法儲存執行階段到「%s」:%s" msgid "Error while saving the session to '%s': %s" msgstr "當儲存執行階段「%s」時發生錯誤:%s" -#: openbox/startupnotify.c:237 +#: openbox/startupnotify.c:241 #, c-format msgid "Running %s\n" msgstr "正在運行 %s\n" From d11ac82062d729be5d63c9c40c5c2bb312a8b8f1 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Mon, 28 Jan 2008 09:59:45 -0500 Subject: [PATCH 37/37] don't deiconify windows on reconfigure if they cant be iconified directly. stop managing windows in reverse order on restart it messes up the dock among other things --- openbox/client.c | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/openbox/client.c b/openbox/client.c index 035f7c45..8169048f 100644 --- a/openbox/client.c +++ b/openbox/client.c @@ -204,14 +204,14 @@ void client_manage_all(void) /* manage windows in reverse order from how they were originally mapped. this is an attempt to manage children windows before their parents, so that when the parent is mapped, it can find the child */ - for (i = nchild; i > 0; --i) { - if (children[i--1] == None) + for (i = 0; i < nchild; ++i) { + if (children[i] == None) continue; - if (XGetWindowAttributes(ob_display, children[i-1], &attrib)) { + if (XGetWindowAttributes(ob_display, children[i], &attrib)) { if (attrib.override_redirect) continue; if (attrib.map_state != IsUnmapped) - client_manage(children[i-1]); + client_manage(children[i]); } } XFree(children); @@ -1836,16 +1836,16 @@ static void client_change_allowed_actions(ObClient *self) PROP_SETA32(self->window, net_wm_allowed_actions, atom, actions, num); - /* make sure the window isn't breaking any rules now */ + /* make sure the window isn't breaking any rules now + + don't check ICONIFY here. just cuz a window can't iconify doesnt mean + it can't be iconified with its parent + */ if (!(self->functions & OB_CLIENT_FUNC_SHADE) && self->shaded) { if (self->frame) client_shade(self, FALSE); else self->shaded = FALSE; } - if (!(self->functions & OB_CLIENT_FUNC_ICONIFY) && self->iconic) { - if (self->frame) client_iconify(self, FALSE, TRUE, FALSE); - else self->iconic = FALSE; - } if (!(self->functions & OB_CLIENT_FUNC_FULLSCREEN) && self->fullscreen) { if (self->frame) client_fullscreen(self, FALSE); else self->fullscreen = FALSE;