From ab029fa2b238c92f903817138baa16092ed7a1ae Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Sun, 10 Jun 2007 03:42:29 +0000 Subject: [PATCH] merge r7469 from trunk --- openbox/dock.c | 53 +++++++++++++++++++++++------------------------ po/ar.po | 4 ++-- po/bn_IN.po | 4 ++-- po/ca.po | 4 ++-- po/cs.po | 4 ++-- po/de.po | 4 ++-- po/en@boldquot.po | 6 +++--- po/en@quot.po | 6 +++--- po/es.po | 4 ++-- po/et.po | 4 ++-- po/fi.po | 4 ++-- po/fr.po | 4 ++-- po/it.po | 4 ++-- po/ja.po | 4 ++-- po/nl.po | 4 ++-- po/no.po | 4 ++-- po/openbox.pot | 4 ++-- po/pl.po | 4 ++-- po/pt.po | 4 ++-- po/pt_BR.po | 4 ++-- po/ru.po | 4 ++-- po/sk.po | 4 ++-- po/sv.po | 4 ++-- po/vi.po | 4 ++-- po/zh_CN.po | 4 ++-- po/zh_TW.po | 4 ++-- 26 files changed, 78 insertions(+), 79 deletions(-) diff --git a/openbox/dock.c b/openbox/dock.c index 9a03d75c..ff5b74cf 100644 --- a/openbox/dock.c +++ b/openbox/dock.c @@ -57,12 +57,11 @@ void dock_startup(gboolean reconfig) GList *it; XSetWindowBorder(ob_display, dock->frame, - RrColorPixel(ob_rr_theme-> - frame_focused_border_color)); - XSetWindowBorderWidth(ob_display, dock->frame, ob_rr_theme->fbwidth); + RrColorPixel(ob_rr_theme->osd_border_color)); + XSetWindowBorderWidth(ob_display, dock->frame, ob_rr_theme->obwidth); RrAppearanceFree(dock->a_frame); - dock->a_frame = RrAppearanceCopy(ob_rr_theme->a_focused_title); + dock->a_frame = RrAppearanceCopy(ob_rr_theme->osd_hilite_bg); stacking_add(DOCK_AS_WINDOW(dock)); @@ -90,10 +89,10 @@ void dock_startup(gboolean reconfig) RrVisual(ob_rr_inst), CWOverrideRedirect | CWEventMask, &attrib); - dock->a_frame = RrAppearanceCopy(ob_rr_theme->a_focused_title); + dock->a_frame = RrAppearanceCopy(ob_rr_theme->osd_hilite_bg); XSetWindowBorder(ob_display, dock->frame, - RrColorPixel(ob_rr_theme->frame_focused_border_color)); - XSetWindowBorderWidth(ob_display, dock->frame, ob_rr_theme->fbwidth); + RrColorPixel(ob_rr_theme->osd_border_color)); + XSetWindowBorderWidth(ob_display, dock->frame, ob_rr_theme->obwidth); g_hash_table_insert(window_map, &dock->frame, dock); stacking_add(DOCK_AS_WINDOW(dock)); @@ -262,8 +261,8 @@ void dock_configure() } /* used for calculating offsets */ - dock->w += ob_rr_theme->fbwidth * 2; - dock->h += ob_rr_theme->fbwidth * 2; + dock->w += ob_rr_theme->obwidth * 2; + dock->h += ob_rr_theme->obwidth * 2; a = screen_physical_area(); @@ -350,51 +349,51 @@ void dock_configure() case OB_DIRECTION_NORTHWEST: switch (config_dock_orient) { case OB_ORIENTATION_HORZ: - dock->y -= dock->h - ob_rr_theme->fbwidth; + dock->y -= dock->h - ob_rr_theme->obwidth; break; case OB_ORIENTATION_VERT: - dock->x -= dock->w - ob_rr_theme->fbwidth; + dock->x -= dock->w - ob_rr_theme->obwidth; break; } break; case OB_DIRECTION_NORTH: - dock->y -= dock->h - ob_rr_theme->fbwidth; + dock->y -= dock->h - ob_rr_theme->obwidth; break; case OB_DIRECTION_NORTHEAST: switch (config_dock_orient) { case OB_ORIENTATION_HORZ: - dock->y -= dock->h - ob_rr_theme->fbwidth; + dock->y -= dock->h - ob_rr_theme->obwidth; break; case OB_ORIENTATION_VERT: - dock->x += dock->w - ob_rr_theme->fbwidth; + dock->x += dock->w - ob_rr_theme->obwidth; break; } break; case OB_DIRECTION_WEST: - dock->x -= dock->w - ob_rr_theme->fbwidth; + dock->x -= dock->w - ob_rr_theme->obwidth; break; case OB_DIRECTION_EAST: - dock->x += dock->w - ob_rr_theme->fbwidth; + dock->x += dock->w - ob_rr_theme->obwidth; break; case OB_DIRECTION_SOUTHWEST: switch (config_dock_orient) { case OB_ORIENTATION_HORZ: - dock->y += dock->h - ob_rr_theme->fbwidth; + dock->y += dock->h - ob_rr_theme->obwidth; break; case OB_ORIENTATION_VERT: - dock->x -= dock->w - ob_rr_theme->fbwidth; + dock->x -= dock->w - ob_rr_theme->obwidth; break; } break; case OB_DIRECTION_SOUTH: - dock->y += dock->h - ob_rr_theme->fbwidth; + dock->y += dock->h - ob_rr_theme->obwidth; break; case OB_DIRECTION_SOUTHEAST: switch (config_dock_orient) { case OB_ORIENTATION_HORZ: - dock->y += dock->h - ob_rr_theme->fbwidth; + dock->y += dock->h - ob_rr_theme->obwidth; break; case OB_ORIENTATION_VERT: - dock->x += dock->w - ob_rr_theme->fbwidth; + dock->x += dock->w - ob_rr_theme->obwidth; break; } break; @@ -403,8 +402,8 @@ void dock_configure() } if (!config_dock_floating && config_dock_hide) { - strw = ob_rr_theme->fbwidth; - strh = ob_rr_theme->fbwidth; + strw = ob_rr_theme->obwidth; + strh = ob_rr_theme->obwidth; } else { strw = dock->w; strh = dock->h; @@ -503,8 +502,8 @@ void dock_configure() dock->h += minh; /* not used for actually sizing shit */ - dock->w -= ob_rr_theme->fbwidth * 2; - dock->h -= ob_rr_theme->fbwidth * 2; + dock->w -= ob_rr_theme->obwidth * 2; + dock->h -= ob_rr_theme->obwidth * 2; if (dock->dock_apps) { g_assert(dock->w > 0); @@ -519,8 +518,8 @@ void dock_configure() XUnmapWindow(ob_display, dock->frame); /* but they are useful outside of this function! */ - dock->w += ob_rr_theme->fbwidth * 2; - dock->h += ob_rr_theme->fbwidth * 2; + dock->w += ob_rr_theme->obwidth * 2; + dock->h += ob_rr_theme->obwidth * 2; screen_update_areas(); } diff --git a/po/ar.po b/po/ar.po index fe6ec704..370b499f 100644 --- a/po/ar.po +++ b/po/ar.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-26 03:11+0300\n" "Last-Translator: Khaled Hosny \n" "Language-Team: Arabic \n" @@ -110,7 +110,7 @@ msgstr "ضع/أزل الحواف (&D)" msgid "&Close" msgstr "أغلق (&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "زر غير صحيح '%s' محدد في ملف الإعدادات" diff --git a/po/bn_IN.po b/po/bn_IN.po index d28a742a..d5f49205 100644 --- a/po/bn_IN.po +++ b/po/bn_IN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-01 19:02+0530\n" "Last-Translator: Runa Bhattacharjee \n" "Language-Team: Bengali (India) \n" @@ -110,7 +110,7 @@ msgstr "বিন্যাস পরিবর্তন (&D)" msgid "&Close" msgstr "বন্ধ করুন (&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "কনফিগ ফাইলে অবৈধ বাটন '%s' উল্লিখিত হয়েছে" diff --git a/po/ca.po b/po/ca.po index 765a9b57..64ce4437 100644 --- a/po/ca.po +++ b/po/ca.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-28 15:54+0200\n" "Last-Translator: David Majà Martínez \n" "Language-Team: catalan\n" @@ -107,7 +107,7 @@ msgstr "Sense/Amb &decoració" msgid "&Close" msgstr "&Tanca" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "El botó especificat al fitxer de configuració '%s' no és vàlid." diff --git a/po/cs.po b/po/cs.po index 3d5fee64..15d71b3f 100644 --- a/po/cs.po +++ b/po/cs.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-04 12:46+0200\n" "Last-Translator: tezlo \n" "Language-Team: Czech \n" @@ -110,7 +110,7 @@ msgstr "Oz&dobit/Odzdobit" msgid "&Close" msgstr "&Zavřít" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Neplatné tlačítko '%s' v konfiguračním souboru" diff --git a/po/de.po b/po/de.po index cb138388..b798ab56 100644 --- a/po/de.po +++ b/po/de.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-04 00:47+0200\n" "Last-Translator: Sebastian Sareyko \n" "Language-Team: \n" @@ -107,7 +107,7 @@ msgstr "Dekoration entfernen/&Dekorieren" msgid "&Close" msgstr "&Schließen" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Unzulässiger Knopf '%s' in der Konfigurationsdatei angegeben" diff --git a/po/en@boldquot.po b/po/en@boldquot.po index 91754294..aad9171e 100644 --- a/po/en@boldquot.po +++ b/po/en@boldquot.po @@ -32,8 +32,8 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4.1\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" -"PO-Revision-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" +"PO-Revision-Date: 2007-06-09 21:06-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -133,7 +133,7 @@ msgstr "Un/&Decorate" msgid "&Close" msgstr "&Close" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Invalid button ‘%s’ specified in config file" diff --git a/po/en@quot.po b/po/en@quot.po index 5c1782c9..c8a89706 100644 --- a/po/en@quot.po +++ b/po/en@quot.po @@ -29,8 +29,8 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4.1\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" -"PO-Revision-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" +"PO-Revision-Date: 2007-06-09 21:06-0400\n" "Last-Translator: Automatically generated\n" "Language-Team: none\n" "MIME-Version: 1.0\n" @@ -130,7 +130,7 @@ msgstr "Un/&Decorate" msgid "&Close" msgstr "&Close" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Invalid button ‘%s’ specified in config file" diff --git a/po/es.po b/po/es.po index d75d9749..d59fa1ce 100644 --- a/po/es.po +++ b/po/es.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-22 20:48+0200\n" "Last-Translator: Gustavo Varela \n" "Language-Team: None\n" @@ -107,7 +107,7 @@ msgstr "&Decorar" msgid "&Close" msgstr "&Cerrar" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Botón invalido '%s' especificado en el archivo de configuración" diff --git a/po/et.po b/po/et.po index a5ef1d70..ce9f388d 100644 --- a/po/et.po +++ b/po/et.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-21 20:11+0300\n" "Last-Translator: Andres Järv \n" "Language-Team: Estonian \n" @@ -109,7 +109,7 @@ msgstr "Äär&ed sisse/välja" msgid "&Close" msgstr "S&ulge" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Vigane nupp '%s' määratletud konfiguratsioonifailis" diff --git a/po/fi.po b/po/fi.po index 27292eef..abf6d45b 100644 --- a/po/fi.po +++ b/po/fi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-21 00:06+0200\n" "Last-Translator: Lauri Hakko\n" "Language-Team: None\n" @@ -108,7 +108,7 @@ msgstr "(Epä)reunusta" msgid "&Close" msgstr "&Sulje" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Virheellinen painike '%s' määritelty konfiguraatio tiedostossa" diff --git a/po/fr.po b/po/fr.po index ef474c20..983846ea 100644 --- a/po/fr.po +++ b/po/fr.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-21 00:53+0200\n" "Last-Translator: Cyrille Bagard \n" "Language-Team: French \n" @@ -108,7 +108,7 @@ msgstr "Ne pas/D msgid "&Close" msgstr "&Fermer" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Bouton indiqué dans le fichier de configuration '%s' invalide" diff --git a/po/it.po b/po/it.po index 565450a0..1f3189ec 100644 --- a/po/it.po +++ b/po/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-04 03:06+0200\n" "Last-Translator: Davide Truffa \n" "Language-Team: Italian \n" @@ -106,7 +106,7 @@ msgstr "Si/No &Decorazioni" msgid "&Close" msgstr "&Chiudi" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Il pulsante '%s' specificato nel file di configurazione non è valido" diff --git a/po/ja.po b/po/ja.po index fa71cce5..94d0d63a 100644 --- a/po/ja.po +++ b/po/ja.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-07 14:49+0200\n" "Last-Translator: Yukihiro Nakai \n" "Language-Team: Japanese \n" @@ -109,7 +109,7 @@ msgstr "非/装飾(&D)" msgid "&Close" msgstr "閉じる(&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "" diff --git a/po/nl.po b/po/nl.po index 4b6f0403..cad61291 100644 --- a/po/nl.po +++ b/po/nl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-24 16:39+0200\n" "Last-Translator: Mark Pustjens \n" "Language-Team: Dutch \n" @@ -108,7 +108,7 @@ msgstr "&Vensterrand weghalen/toevoegen" msgid "&Close" msgstr "&Sluiten" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Ongeldige knop '%s' gespecificeerd in het configuratie bestand" diff --git a/po/no.po b/po/no.po index 1dc4b34c..828cf974 100644 --- a/po/no.po +++ b/po/no.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-20 18:41+0200\n" "Last-Translator: Michael Kjelbergvik Thung \n" "Language-Team: None\n" @@ -107,7 +107,7 @@ msgstr "Fjern/Legg til &dekorasjon" msgid "&Close" msgstr "&Lukk" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Ugyldig tast '%s' spesifisert i konfigurasjonsfilen" diff --git a/po/openbox.pot b/po/openbox.pot index de68463d..255bc496 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: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -108,7 +108,7 @@ msgstr "" msgid "&Close" msgstr "" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "" diff --git a/po/pl.po b/po/pl.po index 8755f820..a0877418 100644 --- a/po/pl.po +++ b/po/pl.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-21 18:09+0100\n" "Last-Translator: Paweł Rusinek \n" "Language-Team: None\n" @@ -108,7 +108,7 @@ msgstr "Pokaż/Ukryj &dekoracje" msgid "&Close" msgstr "Z&amknij" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Niepoprawny klawisz '%s' użyty w pliku konfiguracyjnym" diff --git a/po/pt.po b/po/pt.po index 8b1ecee7..30110cad 100644 --- a/po/pt.po +++ b/po/pt.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-23 00:34+0200\n" "Last-Translator: Althaser \n" "Language-Team: None\n" @@ -108,7 +108,7 @@ msgstr "Des/&Decorar" msgid "&Close" msgstr "&Fechar" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Botão inválido '%s' especificado no ficheiro de configuração" diff --git a/po/pt_BR.po b/po/pt_BR.po index e2104b23..c2264c4d 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-22 19:35+0200\n" "Last-Translator: Og Maciel \n" "Language-Team: Brazilian Portuguese \n" @@ -109,7 +109,7 @@ msgstr "(Não) &Decorar" msgid "&Close" msgstr "&Fechar" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Botão inválido '%s' especificado no arquivo de configuração" diff --git a/po/ru.po b/po/ru.po index 9b58fa85..5285c689 100644 --- a/po/ru.po +++ b/po/ru.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-24 19:41+0100\n" "Last-Translator: Pavel Shevchuk \n" "Language-Team: Russian \n" @@ -108,7 +108,7 @@ msgstr "(От)декорировать(&D)" msgid "&Close" msgstr "Закрыть(&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Некорректная клавиша '%s' упомянута в конфигурационном файле" diff --git a/po/sk.po b/po/sk.po index ece175ee..ba0014c5 100644 --- a/po/sk.po +++ b/po/sk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox-3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-27 13:43Central Europe Daylight Time\n" "Last-Translator: Jozef Riha \n" @@ -107,7 +107,7 @@ msgstr "(Ne)&DekorovaÅ¥" msgid "&Close" msgstr "Z&avrieÅ¥" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Neplatné tlačidlo '%s' Å¡pecifikované v konfiguračnom súbore" diff --git a/po/sv.po b/po/sv.po index 8be0faff..27973dc1 100644 --- a/po/sv.po +++ b/po/sv.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-22 00:29+0200\n" "Last-Translator: Mikael Magnusson \n" "Language-Team: None\n" @@ -107,7 +107,7 @@ msgstr "&Dekorationer" msgid "&Close" msgstr "Stän&g" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Ogiltig knapp '%s' angiven i konfigurationsfilen" diff --git a/po/vi.po b/po/vi.po index cb77f9c5..e7626864 100644 --- a/po/vi.po +++ b/po/vi.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-06-07 06:50-0500\n" "Last-Translator: Quan Tran \n" "Language-Team: None\n" @@ -107,7 +107,7 @@ msgstr "&Trang/Không Trang trí" msgid "&Close" msgstr "Đón&g" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "Sai nút '%s' ở trong hình thể" diff --git a/po/zh_CN.po b/po/zh_CN.po index 8f6c8fcd..2f892603 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-28 13:00+0800\n" "Last-Translator: Xiaoyu PENG \n" "Language-Team: None\n" @@ -107,7 +107,7 @@ msgstr "去除装饰(&D)" msgid "&Close" msgstr "关闭(&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "配置文件中指定的按钮 '%s' 无效" diff --git a/po/zh_TW.po b/po/zh_TW.po index 44b9ff0d..6b2d3d39 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: openbox 3.4\n" "Report-Msgid-Bugs-To: http://bugzilla.icculus.org\n" -"POT-Creation-Date: 2007-06-09 17:28-0400\n" +"POT-Creation-Date: 2007-06-09 21:06-0400\n" "PO-Revision-Date: 2007-05-23 16:22+0200\n" "Last-Translator: Wei-Lun Chao \n" "Language-Team: Chinese (traditional) \n" @@ -108,7 +108,7 @@ msgstr "去除/裝飾(&D)" msgid "&Close" msgstr "關閉(&C)" -#: openbox/config.c:704 +#: openbox/config.c:716 #, c-format msgid "Invalid button '%s' specified in config file" msgstr "在配置檔中指定的按鈕「%s」無效" -- 2.39.2