Browse Source

* Add option to choose handle style

* Fix bug that made panel always centered on startup

(Old svn revision: 13880)
upstream/xfce4-panel-4.10.1
Jasper Huijsmans 18 years ago
parent
commit
abf28764eb
  1. 13
      TODO
  2. 3
      panel/mcs_client.c
  3. 131
      panel/panel.c
  4. 2
      panel/panel.h
  5. 104
      po/ar.po
  6. 104
      po/az.po
  7. 104
      po/be.po
  8. 104
      po/bg.po
  9. 104
      po/ca.po
  10. 104
      po/cs.po
  11. 104
      po/de.po
  12. 104
      po/en_GB.po
  13. 104
      po/es.po
  14. 104
      po/es_MX.po
  15. 104
      po/et.po
  16. 106
      po/eu.po
  17. 104
      po/fa.po
  18. 104
      po/fi.po
  19. 104
      po/fr.po
  20. 104
      po/gu.po
  21. 104
      po/he.po
  22. 106
      po/hi.po
  23. 104
      po/hu.po
  24. 104
      po/it.po
  25. 104
      po/ja.po
  26. 104
      po/ko.po
  27. 104
      po/lt.po
  28. 104
      po/ms.po
  29. 104
      po/nb_NO.po
  30. 110
      po/nl.po
  31. 104
      po/pa.po
  32. 106
      po/pl.po
  33. 104
      po/pt_BR.po
  34. 104
      po/pt_PT.po
  35. 104
      po/ro.po
  36. 104
      po/ru.po
  37. 104
      po/sk.po
  38. 104
      po/sv.po
  39. 106
      po/ta.po
  40. 104
      po/tr.po
  41. 104
      po/uk.po
  42. 104
      po/vi.po
  43. 512
      po/xfce4-panel.pot
  44. 104
      po/zh_CN.po
  45. 104
      po/zh_TW.po
  46. 4
      settings/xfce_settings.h
  47. 74
      settings/xfce_settings_dialog.c
  48. 7
      settings/xfce_settings_plugin.c

13
TODO

@ -3,7 +3,7 @@ TODO
* Fix gettext issues so I don't have to use a special
#define dg_(s) dgettext (PACKAGE, s)
Somehow PACKAGE_GETTEXT is set to something else ...
* plugin library
* out of proces plugins with plugin library
- with API docs
* multiple panels
- Most settings should become per panel
@ -16,13 +16,8 @@ TODO
- [DONE] include move handles (steal code form GtkHandlebox)
- use properties and signals for settings
- perhaps use interfaces or derived widgets for controls
* Change xml parsing to use lang: properties. This allows translations to be
handled through gettext/intltool.
* [DONE] Change xml parsing to use lang: properties. This allows translations
to be handled through gettext/intltool.
* Add option to choose handle type
Ideas
-----
* plugins:
- dockapps support
* 2 plugins side by side
(like systembuttons)

3
panel/mcs_client.c

@ -57,7 +57,8 @@ static gpointer settings_callbacks[] = {
panel_set_popup_position,
panel_set_theme,
panel_set_autohide,
panel_set_full_width
panel_set_full_width,
panel_set_handle_style
};
static void

131
panel/panel.c

@ -58,6 +58,7 @@ struct _PanelPrivate
Settings settings;
gboolean full_width;
XfceHandleStyle handle_style;
GdkScreen *screen;
int monitor;
@ -318,7 +319,6 @@ static void
restrict_position (Panel * p, int *x, int *y)
{
int xcenter, ycenter, snapwidth;
gboolean show_sides;
if (!p || !p->toplevel)
return;
@ -428,34 +428,7 @@ restrict_position (Panel * p, int *x, int *y)
p->priv->offset = *y - p->priv->monitor_geometry.y;
}
show_sides = !p->priv->full_width;
switch (p->priv->side)
{
case TOP:
xfce_panel_window_set_show_border (XFCE_PANEL_WINDOW (p->toplevel),
FALSE, TRUE,
show_sides, show_sides);
break;
case BOTTOM:
xfce_panel_window_set_show_border (XFCE_PANEL_WINDOW (p->toplevel),
TRUE, FALSE,
show_sides, show_sides);
break;
case LEFT:
xfce_panel_window_set_show_border (XFCE_PANEL_WINDOW (p->toplevel),
show_sides, show_sides,
FALSE, TRUE);
break;
case RIGHT:
xfce_panel_window_set_show_border (XFCE_PANEL_WINDOW (p->toplevel),
show_sides, show_sides,
TRUE, FALSE);
break;
default:
xfce_panel_window_set_show_border (XFCE_PANEL_WINDOW (p->toplevel),
TRUE, TRUE, TRUE, TRUE);
}
panel_set_handle_style (panel.priv->handle_style);
}
/* move / resize */
@ -923,7 +896,8 @@ panel_set_hidden (Panel * p, gboolean hide)
{
gtk_widget_show (p->group_box);
panel_set_full_width (p->priv->full_width);
if (p->priv->full_width)
panel_set_full_width (p->priv->full_width);
}
p->hidden = hide;
@ -1198,7 +1172,8 @@ create_panel (void)
gtk_widget_show (p->toplevel);
panel_set_full_width (p->priv->full_width);
if (p->priv->full_width)
panel_set_full_width (p->priv->full_width);
/* recalculate pos_state for old API where only x and y coordinates are
* read from the config file */
@ -1550,56 +1525,86 @@ panel_set_full_width (gboolean full_width)
{
panel.priv->full_width = full_width;
panel_set_handle_style (panel.priv->handle_style);
if (panel.priv->is_created)
{
if (full_width)
{
GdkRectangle *r = &panel.priv->monitor_geometry;
if (panel.priv->settings.orientation == HORIZONTAL)
gtk_widget_set_size_request (panel.toplevel, r->width, -1);
else
gtk_widget_set_size_request (panel.toplevel, -1, r->height);
}
else
{
gtk_widget_set_size_request (panel.toplevel, -1, -1);
panel_center (panel.priv->side);
}
}
}
G_MODULE_EXPORT /* EXPORT:panel_set_handle_style */
void
panel_set_handle_style (int style)
{
gboolean fullwidth;
XfceHandleStyle handle_style =
CLAMP (style, XFCE_HANDLE_STYLE_NONE, XFCE_HANDLE_STYLE_END);
panel.priv->handle_style = handle_style;
fullwidth = panel.priv->full_width;
xfce_panel_window_set_handle_style (XFCE_PANEL_WINDOW (panel.toplevel),
full_width ?
XFCE_HANDLE_STYLE_NONE :
XFCE_HANDLE_STYLE_BOTH);
fullwidth ?
XFCE_HANDLE_STYLE_NONE :
handle_style);
if (panel.priv->is_created)
{
XfcePanelWindow *window = XFCE_PANEL_WINDOW (panel.toplevel);
gboolean top, bottom, left, right;
top = bottom = left = right = FALSE;
switch (panel.priv->side)
{
case TOP:
xfce_panel_window_set_show_border (window,
FALSE, TRUE,
!full_width, !full_width);
bottom = TRUE;
left = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_START;
right = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_END;
break;
case BOTTOM:
xfce_panel_window_set_show_border (window,
TRUE, FALSE,
!full_width, !full_width);
top = TRUE;
left = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_START;
right = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_END;
break;
case LEFT:
xfce_panel_window_set_show_border (window,
!full_width, !full_width,
FALSE, TRUE);
right = TRUE;
top = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_START;
bottom = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_END;
break;
case RIGHT:
xfce_panel_window_set_show_border (window,
!full_width, !full_width,
TRUE, FALSE);
left = TRUE;
top = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_START;
bottom = !fullwidth &&
panel.priv->pos_state != XFCE_POS_STATE_END;
break;
default:
xfce_panel_window_set_show_border (window,
TRUE, TRUE, TRUE, TRUE);
top = bottom = left = right = TRUE;
}
if (full_width)
{
GdkRectangle *r = &panel.priv->monitor_geometry;
if (panel.priv->settings.orientation == HORIZONTAL)
gtk_widget_set_size_request (panel.toplevel, r->width, -1);
else
gtk_widget_set_size_request (panel.toplevel, -1, r->height);
}
else
{
gtk_widget_set_size_request (panel.toplevel, -1, -1);
panel_center (panel.priv->side);
}
xfce_panel_window_set_show_border (window, top, bottom, left, right);
}
}
@ -1620,6 +1625,8 @@ init_settings (Panel * p)
p->priv->full_width = FALSE;
p->priv->handle_style = XFCE_HANDLE_STYLE_BOTH;
/* backwards compat */
settings = p->priv->settings;
}

2
panel/panel.h

@ -72,6 +72,8 @@ G_MODULE_IMPORT void panel_set_autohide (gboolean hide);
G_MODULE_IMPORT void panel_set_full_width (gboolean full_width);
G_MODULE_IMPORT void panel_set_handle_style (int style);
/* panel data */
G_MODULE_IMPORT void panel_parse_xml (xmlNodePtr node);
G_MODULE_IMPORT void panel_write_xml (xmlNodePtr root);

104
po/ar.po

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ar\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 11:09+0200\n"
"POT-Creation-Date: 2005-05-02 22:27+0200\n"
"PO-Revision-Date: 2004-2-8 8:25+0300\n"
"Last-Translator: saleh alhathal <hathalsal@hotmail.com>\n"
"Language-Team: arabic\n"
@ -78,11 +78,12 @@ msgstr "غير قائمة المواد"
#. add buttons
#: ../panel/item_dialog.c:1179 ../panel/controls.c:751
#: ../plugins/launcher/launcher-dialog.c:1266
#, fuzzy
msgid "_Remove"
msgstr "/_حذف"
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:129
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:130
msgid "Launcher"
msgstr "برنامج"
@ -134,12 +135,12 @@ msgstr ""
msgid "Could not create panel item \"%s\"."
msgstr ""
#: ../panel/controls.c:746 ../panel/panel.c:742 ../iconbox/iconbox.c:618
#: ../panel/controls.c:746 ../panel/panel.c:717 ../iconbox/iconbox.c:618
#, fuzzy
msgid "_Properties..."
msgstr "/_خصائص..."
#: ../panel/controls.c:760 ../panel/panel.c:732
#: ../panel/controls.c:760 ../panel/panel.c:707
#, fuzzy
msgid "Add _new item"
msgstr "/أضف _جديد"
@ -148,33 +149,33 @@ msgstr "/أضف _جديد"
msgid "This item has no configuration options"
msgstr "ﻻ يحوي على خيرات أعداد"
#: ../panel/panel.c:723 ../panel/panel.c:1075
#: ../panel/panel.c:698 ../panel/panel.c:1046
#: ../settings/xfce_settings_plugin.c:86
#: ../settings/xfce_settings_dialog.c:439
#: ../settings/xfce_settings_dialog.c:507
msgid "Xfce Panel"
msgstr "شريط Xfce"
#: ../panel/panel.c:747
#: ../panel/panel.c:722
#, fuzzy
msgid "_About Xfce"
msgstr "/_حول Xfce"
#: ../panel/panel.c:752
#: ../panel/panel.c:727
#, fuzzy
msgid "_Help"
msgstr "/_مساعدة"
#: ../panel/panel.c:761
#: ../panel/panel.c:736
#, fuzzy
msgid "_Lock screen"
msgstr "/_إغلاق الشاشة"
#: ../panel/panel.c:766
#: ../panel/panel.c:741
#, fuzzy
msgid "_Restart"
msgstr "/_إعادة التشغيل"
#: ../panel/panel.c:775 ../iconbox/iconbox.c:628
#: ../panel/panel.c:750 ../iconbox/iconbox.c:628
#, fuzzy
msgid "E_xit"
msgstr "/خ_روج"
@ -234,15 +235,15 @@ msgstr "صوت"
msgid "icons|Terminal"
msgstr "سطر اﻷوامر"
#: ../panel/mcs_client.c:169
#: ../panel/mcs_client.c:170
msgid "Settings manager not available"
msgstr "مدير اﻹعدادات غير متوفر"
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:65
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:70
msgid "There is already a system tray running on this screen"
msgstr "هناك صينية نظام تعمل مسبقا على الشاشة"
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:71
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:76
#, c-format
msgid "Unable to register system tray: %s"
msgstr "لم أتمكن من تسجيل صينية النظام: %s"
@ -277,7 +278,7 @@ msgstr "لم أستطع تكوين قناة عميل MCS"
msgid "Xfce Iconbox"
msgstr ""
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:137
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:138
msgid "Developer"
msgstr ""
@ -328,36 +329,57 @@ msgstr "إعلى"
msgid "Bottom"
msgstr "إسفل"
#: ../settings/xfce_settings_dialog.c:268
#: ../settings/xfce_settings_dialog.c:275 ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/xfce_settings_dialog.c:279
#, fuzzy
msgid "At both sides"
msgstr "إخفاء تلقائي"
#: ../settings/xfce_settings_dialog.c:283
msgid "At the start"
msgstr ""
#: ../settings/xfce_settings_dialog.c:287
msgid "At the end"
msgstr ""
#: ../settings/xfce_settings_dialog.c:320
msgid "Panel size:"
msgstr "حجم شريط المهام :"
#: ../settings/xfce_settings_dialog.c:284
#: ../settings/xfce_settings_dialog.c:336
msgid "Panel orientation:"
msgstr "توجيه الشريط :"
#: ../settings/xfce_settings_dialog.c:303
#: ../settings/xfce_settings_dialog.c:355
msgid "Popup position:"
msgstr "موقع التشغيل :"
#: ../settings/xfce_settings_dialog.c:339
#: ../settings/xfce_settings_dialog.c:371
msgid "Handles:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:407
msgid "Autohide:"
msgstr "إخفاء تلقائي"
#: ../settings/xfce_settings_dialog.c:385
#: ../settings/xfce_settings_dialog.c:453
msgid "Full width:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:456
#: ../settings/xfce_settings_dialog.c:524
msgid "Xfce Panel Settings"
msgstr "إعدادات شريط Xfce"
#: ../settings/xfce_settings_dialog.c:466
#: ../settings/xfce_settings_dialog.c:534
msgid "Appearance"
msgstr "مظهر"
#. show only hidden
#: ../settings/xfce_settings_dialog.c:481 ../settings/iconbox_plugin.c:685
#: ../settings/xfce_settings_dialog.c:549 ../settings/iconbox_plugin.c:685
msgid "Behaviour"
msgstr "سلوك"
@ -487,10 +509,6 @@ msgstr ""
msgid "Transparency"
msgstr ""
#: ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/iconbox_plugin.c:777
msgid "Full"
msgstr ""
@ -557,30 +575,30 @@ msgstr "ساعة Xfce"
msgid "Flexible space"
msgstr ""
#: ../plugins/launcher/launcher.c:129
#: ../plugins/launcher/launcher.c:130
#, fuzzy
msgid "Launcher Plugin"
msgstr "برنامج"
#: ../plugins/launcher/launcher.c:312
#: ../plugins/launcher/launcher.c:314
#, fuzzy
msgid "Alternative Launcher"
msgstr "الصاق قائمة بالبرنامج"
#: ../plugins/launcher/launcher.c:370
#: ../plugins/launcher/launcher.c:372
#, c-format
msgid ""
"Could not run \"%s\":\n"
"%s"
msgstr ""
#: ../plugins/launcher/launcher.c:701
#: ../plugins/launcher/launcher.c:704
#: ../plugins/launcher/launcher-dialog.c:1185
#, fuzzy
msgid "New item"
msgstr "أضف مادة جديدة"
#: ../plugins/launcher/launcher.c:703
#: ../plugins/launcher/launcher.c:706
#: ../plugins/launcher/launcher-dialog.c:1186
#, fuzzy
msgid "This item has not yet been configured"
@ -642,17 +660,33 @@ msgstr "أستخدم _تنبية بدأ التشغيل"
msgid "Edit launcher"
msgstr "أضف برنامج"
#: ../plugins/launcher/launcher-dialog.c:1262
#: ../plugins/launcher/launcher-dialog.c:1242
msgid "_Up"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1248
msgid "_Down"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1254
#, fuzzy
msgid "_Edit"
msgstr "محرر"
#: ../plugins/launcher/launcher-dialog.c:1298
#: ../plugins/launcher/launcher-dialog.c:1260
msgid "_Add"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1290
msgid ""
"The first item in the list is shown on the panel. Additional items will "
"appear in a menu."
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1313
msgid "Panel Item and Menu Items"
msgstr ""
#: ../plugins/mailcheck/mailcheck.c:838
msgid "Mail box:"
msgstr "حاوي البريد:"
@ -767,7 +801,7 @@ msgstr "/_مساعدة"
msgid "System buttons"
msgstr "زر النظام"
#: ../plugins/systray/systray.c:273
#: ../plugins/systray/systray.c:278
#, fuzzy
msgid "Notification Area"
msgstr "مكان التذكير"

104
po/az.po

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-panel\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 11:09+0200\n"
"POT-Creation-Date: 2005-05-02 22:27+0200\n"
"PO-Revision-Date: 2004-08-18 22:29+0300\n"
"Last-Translator: Mətin Əmirov <metin@karegen.com>\n"
"Language-Team: Azerbaijani <translation-team-az@lists.sourceforge.net>\n"
@ -83,10 +83,11 @@ msgstr "Menyu üzvünü dəyişdir"
#. add buttons
#: ../panel/item_dialog.c:1179 ../panel/controls.c:751
#: ../plugins/launcher/launcher-dialog.c:1266
msgid "_Remove"
msgstr "_Sil"
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:129
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:130
msgid "Launcher"
msgstr "Başladıcı"
@ -144,11 +145,11 @@ msgstr "%s: İclas idarəsi ilə müvəffəqiyyətlə başladıldı"
msgid "Could not create panel item \"%s\"."
msgstr "\"%s\" panel üzvü yaradıla bilmədi."
#: ../panel/controls.c:746 ../panel/panel.c:742 ../iconbox/iconbox.c:618
#: ../panel/controls.c:746 ../panel/panel.c:717 ../iconbox/iconbox.c:618
msgid "_Properties..."
msgstr "_Xassələr..."
#: ../panel/controls.c:760 ../panel/panel.c:732
#: ../panel/controls.c:760 ../panel/panel.c:707
msgid "Add _new item"
msgstr "_Yeni üzv əlavə et"
@ -156,33 +157,33 @@ msgstr "_Yeni üzv əlavə et"
msgid "This item has no configuration options"
msgstr "Bu üzvün qurğuları yoxdur"
#: ../panel/panel.c:723 ../panel/panel.c:1075
#: ../panel/panel.c:698 ../panel/panel.c:1046
#: ../settings/xfce_settings_plugin.c:86
#: ../settings/xfce_settings_dialog.c:439
#: ../settings/xfce_settings_dialog.c:507
msgid "Xfce Panel"
msgstr "Xfce Paneli"
#: ../panel/panel.c:747
#: ../panel/panel.c:722
#, fuzzy
msgid "_About Xfce"
msgstr "/Xfce _Haqqında"
#: ../panel/panel.c:752
#: ../panel/panel.c:727
#, fuzzy
msgid "_Help"
msgstr "/_Yardım"
#: ../panel/panel.c:761
#: ../panel/panel.c:736
#, fuzzy
msgid "_Lock screen"
msgstr "/Ekranı _qıfılla"
#: ../panel/panel.c:766
#: ../panel/panel.c:741
#, fuzzy
msgid "_Restart"
msgstr "/_Yenidən başlat"
#: ../panel/panel.c:775 ../iconbox/iconbox.c:628
#: ../panel/panel.c:750 ../iconbox/iconbox.c:628
#, fuzzy
msgid "E_xit"
msgstr "/Çı_x"
@ -242,15 +243,15 @@ msgstr "Səs"
msgid "icons|Terminal"
msgstr "Terminal"
#: ../panel/mcs_client.c:169
#: ../panel/mcs_client.c:170
msgid "Settings manager not available"
msgstr "Qurğular idarəçisi mövcud deyil"
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:65
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:70
msgid "There is already a system tray running on this screen"
msgstr "Hazırkı ekranda onsuzda bir bildiriş sahəsi mövcuddur"
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:71
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:76
#, c-format
msgid "Unable to register system tray: %s"
msgstr "Bildiriş sahəsi qeyd edilə bilmədi: %s"
@ -285,7 +286,7 @@ msgstr "MCS alıcı kanalı yaradıla bilmir"
msgid "Xfce Iconbox"
msgstr ""
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:137
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:138
msgid "Developer"
msgstr ""
@ -336,36 +337,57 @@ msgstr "Üst"
msgid "Bottom"
msgstr "Alt"
#: ../settings/xfce_settings_dialog.c:268
#: ../settings/xfce_settings_dialog.c:275 ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/xfce_settings_dialog.c:279
#, fuzzy
msgid "At both sides"
msgstr "Avtomatik gizlət"
#: ../settings/xfce_settings_dialog.c:283
msgid "At the start"
msgstr ""
#: ../settings/xfce_settings_dialog.c:287
msgid "At the end"
msgstr ""
#: ../settings/xfce_settings_dialog.c:320
msgid "Panel size:"
msgstr "Panel böyüklüyü:"
#: ../settings/xfce_settings_dialog.c:284
#: ../settings/xfce_settings_dialog.c:336
msgid "Panel orientation:"
msgstr "Panel istiqaməti:"
#: ../settings/xfce_settings_dialog.c:303
#: ../settings/xfce_settings_dialog.c:355
msgid "Popup position:"
msgstr "Popup mövqeyi:"
#: ../settings/xfce_settings_dialog.c:339
#: ../settings/xfce_settings_dialog.c:371
msgid "Handles:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:407
msgid "Autohide:"
msgstr "Avtomatik gizlətmə:"
#: ../settings/xfce_settings_dialog.c:385
#: ../settings/xfce_settings_dialog.c:453
msgid "Full width:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:456
#: ../settings/xfce_settings_dialog.c:524
msgid "Xfce Panel Settings"
msgstr "Xfce Paneli Qurğuları"
#: ../settings/xfce_settings_dialog.c:466
#: ../settings/xfce_settings_dialog.c:534
msgid "Appearance"
msgstr "Görünüş"
#. show only hidden
#: ../settings/xfce_settings_dialog.c:481 ../settings/iconbox_plugin.c:685
#: ../settings/xfce_settings_dialog.c:549 ../settings/iconbox_plugin.c:685
msgid "Behaviour"
msgstr "Davranış"
@ -492,10 +514,6 @@ msgstr "Proqram _adlarını göstər"
msgid "Transparency"
msgstr ""
#: ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/iconbox_plugin.c:777
msgid "Full"
msgstr ""
@ -561,30 +579,30 @@ msgstr "Xfce Saatı"
msgid "Flexible space"
msgstr ""
#: ../plugins/launcher/launcher.c:129
#: ../plugins/launcher/launcher.c:130
#, fuzzy
msgid "Launcher Plugin"
msgstr "Başladıcı"
#: ../plugins/launcher/launcher.c:312
#: ../plugins/launcher/launcher.c:314
#, fuzzy
msgid "Alternative Launcher"
msgstr "Menyuya başladıcı əlavə et"
#: ../plugins/launcher/launcher.c:370
#: ../plugins/launcher/launcher.c:372
#, fuzzy, c-format
msgid ""
"Could not run \"%s\":\n"
"%s"
msgstr "\"%s\" panel üzvü yaradıla bilmədi."
#: ../plugins/launcher/launcher.c:701
#: ../plugins/launcher/launcher.c:704
#: ../plugins/launcher/launcher-dialog.c:1185
#, fuzzy
msgid "New item"
msgstr "Yeni üzv əlavə et"
#: ../plugins/launcher/launcher.c:703
#: ../plugins/launcher/launcher.c:706
#: ../plugins/launcher/launcher-dialog.c:1186
#, fuzzy
msgid "This item has not yet been configured"
@ -646,17 +664,33 @@ msgstr "Başlama _bildirişini işlət"
msgid "Edit launcher"
msgstr "Başladıcı əlavə et"
#: ../plugins/launcher/launcher-dialog.c:1262
#: ../plugins/launcher/launcher-dialog.c:1242
msgid "_Up"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1248
msgid "_Down"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1254
#, fuzzy
msgid "_Edit"
msgstr "Editor"
#: ../plugins/launcher/launcher-dialog.c:1298
#: ../plugins/launcher/launcher-dialog.c:1260
msgid "_Add"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1290
msgid ""
"The first item in the list is shown on the panel. Additional items will "
"appear in a menu."
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1313
msgid "Panel Item and Menu Items"
msgstr ""
#: ../plugins/mailcheck/mailcheck.c:838
msgid "Mail box:"
msgstr "Poçt qutusu:"
@ -769,7 +803,7 @@ msgstr ""
msgid "System buttons"
msgstr "Sistem düymələri"
#: ../plugins/systray/systray.c:273
#: ../plugins/systray/systray.c:278
#, fuzzy
msgid "Notification Area"
msgstr "Bildiriş sahəsi"

104
po/be.po

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: xfce4-panel\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 11:09+0200\n"
"POT-Creation-Date: 2005-05-02 22:27+0200\n"
"PO-Revision-Date: 2004-09-12 03:12+0300\n"
"Last-Translator: Ales Nyakhaychyk <nab@mail.by>\n"
"Language-Team: Belarusian <i18n@mova.org>\n"
@ -79,10 +79,11 @@ msgstr "Зьмяніць элемэнт мэню"
#. add buttons
#: ../panel/item_dialog.c:1179 ../panel/controls.c:751
#: ../plugins/launcher/launcher-dialog.c:1266
msgid "_Remove"
msgstr "В_ыдаліць"
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:129
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:130
msgid "Launcher"
msgstr "Запускальнік"
@ -140,11 +141,11 @@ msgstr "%s: пасьпяхова запушчана з падтрымкай кі
msgid "Could not create panel item \"%s\"."
msgstr "Немагчыма стварыць элемэнт панэлі \"%s\"."
#: ../panel/controls.c:746 ../panel/panel.c:742 ../iconbox/iconbox.c:618
#: ../panel/controls.c:746 ../panel/panel.c:717 ../iconbox/iconbox.c:618
msgid "_Properties..."
msgstr "_Уласьцівасьці..."
#: ../panel/controls.c:760 ../panel/panel.c:732
#: ../panel/controls.c:760 ../panel/panel.c:707
msgid "Add _new item"
msgstr "Дадаць _новы элемэнт"
@ -152,29 +153,29 @@ msgstr "Дадаць _новы элемэнт"
msgid "This item has no configuration options"
msgstr "Гэты элемэнт ня мае выбараў наладкі"
#: ../panel/panel.c:723 ../panel/panel.c:1075
#: ../panel/panel.c:698 ../panel/panel.c:1046
#: ../settings/xfce_settings_plugin.c:86
#: ../settings/xfce_settings_dialog.c:439
#: ../settings/xfce_settings_dialog.c:507
msgid "Xfce Panel"
msgstr "Панэля XFce"
#: ../panel/panel.c:747
#: ../panel/panel.c:722
msgid "_About Xfce"
msgstr "_Аб XFce"
#: ../panel/panel.c:752
#: ../panel/panel.c:727
msgid "_Help"
msgstr "_Даведка"
#: ../panel/panel.c:761
#: ../panel/panel.c:736
msgid "_Lock screen"
msgstr "За_мкнуць экран"
#: ../panel/panel.c:766
#: ../panel/panel.c:741
msgid "_Restart"
msgstr "Пераза_пусьціць"
#: ../panel/panel.c:775 ../iconbox/iconbox.c:628
#: ../panel/panel.c:750 ../iconbox/iconbox.c:628
msgid "E_xit"
msgstr "Вы_йсьці"
@ -233,15 +234,15 @@ msgstr "Гук"
msgid "icons|Terminal"
msgstr "Тэрмінал"
#: ../panel/mcs_client.c:169
#: ../panel/mcs_client.c:170
msgid "Settings manager not available"
msgstr "Кіраўнік усталёвак недаступны"
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:65
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:70
msgid "There is already a system tray running on this screen"
msgstr "На гэтым экране ўжо прысутнічае сыстэмная прастора паведамленьняў"
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:71
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:76
#, c-format
msgid "Unable to register system tray: %s"
msgstr "Немагчыма зарэгістраваць прастору паведамленьняў: %s"
@ -276,7 +277,7 @@ msgstr "Немагчыма стварыць канал для кліента MCS
msgid "Xfce Iconbox"
msgstr ""
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:137
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:138
msgid "Developer"
msgstr ""
@ -327,36 +328,57 @@ msgstr "зьверху"
msgid "Bottom"
msgstr "зьнізу"
#: ../settings/xfce_settings_dialog.c:268
#: ../settings/xfce_settings_dialog.c:275 ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/xfce_settings_dialog.c:279
#, fuzzy
msgid "At both sides"
msgstr "Аўтахаваньне"
#: ../settings/xfce_settings_dialog.c:283
msgid "At the start"
msgstr ""
#: ../settings/xfce_settings_dialog.c:287
msgid "At the end"
msgstr ""
#: ../settings/xfce_settings_dialog.c:320
msgid "Panel size:"
msgstr "Памер панэлі:"
#: ../settings/xfce_settings_dialog.c:284
#: ../settings/xfce_settings_dialog.c:336
msgid "Panel orientation:"
msgstr "Спагляданьне панэлі:"
#: ../settings/xfce_settings_dialog.c:303
#: ../settings/xfce_settings_dialog.c:355
msgid "Popup position:"
msgstr "Становішча ўсплыўнога мэню:"
#: ../settings/xfce_settings_dialog.c:339
#: ../settings/xfce_settings_dialog.c:371
msgid "Handles:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:407
msgid "Autohide:"
msgstr "Аўтахаваньне:"
#: ../settings/xfce_settings_dialog.c:385
#: ../settings/xfce_settings_dialog.c:453
msgid "Full width:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:456
#: ../settings/xfce_settings_dialog.c:524
msgid "Xfce Panel Settings"
msgstr "Наладкі панэлі XFce"
#: ../settings/xfce_settings_dialog.c:466
#: ../settings/xfce_settings_dialog.c:534
msgid "Appearance"
msgstr "Вонкавы выгляд"
#. show only hidden
#: ../settings/xfce_settings_dialog.c:481 ../settings/iconbox_plugin.c:685
#: ../settings/xfce_settings_dialog.c:549 ../settings/iconbox_plugin.c:685
msgid "Behaviour"
msgstr "Паводзіны"
@ -485,10 +507,6 @@ msgstr "Паказваць назвы дас_тасаваньняў"
msgid "Transparency"
msgstr ""
#: ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/iconbox_plugin.c:777
msgid "Full"
msgstr ""
@ -555,30 +573,30 @@ msgstr "Гадзіньнік Xfce"
msgid "Flexible space"
msgstr ""
#: ../plugins/launcher/launcher.c:129
#: ../plugins/launcher/launcher.c:130
#, fuzzy
msgid "Launcher Plugin"
msgstr "Запускальнік"
#: ../plugins/launcher/launcher.c:312
#: ../plugins/launcher/launcher.c:314
#, fuzzy
msgid "Alternative Launcher"
msgstr "Далучыць мэню да запускальніка"
#: ../plugins/launcher/launcher.c:370
#: ../plugins/launcher/launcher.c:372
#, fuzzy, c-format
msgid ""
"Could not run \"%s\":\n"
"%s"
msgstr "Немагчыма стварыць элемэнт панэлі \"%s\"."
#: ../plugins/launcher/launcher.c:701
#: ../plugins/launcher/launcher.c:704
#: ../plugins/launcher/launcher-dialog.c:1185
#, fuzzy
msgid "New item"
msgstr "Дадаць новы элемэнт"
#: ../plugins/launcher/launcher.c:703
#: ../plugins/launcher/launcher.c:706
#: ../plugins/launcher/launcher-dialog.c:1186
#, fuzzy
msgid "This item has not yet been configured"
@ -640,17 +658,33 @@ msgstr "Выкарыстоўваць папяр_эджаньне пад час
msgid "Edit launcher"
msgstr "Дадаць запускальнік"
#: ../plugins/launcher/launcher-dialog.c:1262
#: ../plugins/launcher/launcher-dialog.c:1242
msgid "_Up"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1248
msgid "_Down"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1254
#, fuzzy
msgid "_Edit"
msgstr "Рэдактар"
#: ../plugins/launcher/launcher-dialog.c:1298
#: ../plugins/launcher/launcher-dialog.c:1260
msgid "_Add"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1290
msgid ""
"The first item in the list is shown on the panel. Additional items will "
"appear in a menu."
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1313
msgid "Panel Item and Menu Items"
msgstr ""
#: ../plugins/mailcheck/mailcheck.c:838
msgid "Mail box:"
msgstr "Паштовая скрыня:"
@ -761,7 +795,7 @@ msgstr "С_хаваць"
msgid "System buttons"
msgstr "Сыстэмныя кнопкі"
#: ../plugins/systray/systray.c:273
#: ../plugins/systray/systray.c:278
#, fuzzy
msgid "Notification Area"
msgstr "Прастора паведамленьняў"

104
po/bg.po

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 11:09+0200\n"
"POT-Creation-Date: 2005-05-02 22:27+0200\n"
"PO-Revision-Date: 2004-03-09 18:48+0200\n"
"Last-Translator: Miroslav Yordanov <miordanov@i-space.org>\n"
"Language-Team: Bulgarian <bg@li.org>\n"
@ -85,11 +85,12 @@ msgstr "Промяна на обект от менюто"
#. add buttons
#: ../panel/item_dialog.c:1179 ../panel/controls.c:751
#: ../plugins/launcher/launcher-dialog.c:1266
#, fuzzy
msgid "_Remove"
msgstr "/_Премахва"
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:129
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:130
msgid "Launcher"
msgstr "Обект"
@ -141,12 +142,12 @@ msgstr ""
msgid "Could not create panel item \"%s\"."
msgstr ""
#: ../panel/controls.c:746 ../panel/panel.c:742 ../iconbox/iconbox.c:618
#: ../panel/controls.c:746 ../panel/panel.c:717 ../iconbox/iconbox.c:618
#, fuzzy
msgid "_Properties..."
msgstr "/_Настройки"
#: ../panel/controls.c:760 ../panel/panel.c:732
#: ../panel/controls.c:760 ../panel/panel.c:707
#, fuzzy
msgid "Add _new item"
msgstr "/Добавяне на нов обект"
@ -155,32 +156,32 @@ msgstr "/Добавяне на нов обект"
msgid "This item has no configuration options"
msgstr "Този обект няма опции за настройване"
#: ../panel/panel.c:723 ../panel/panel.c:1075
#: ../panel/panel.c:698 ../panel/panel.c:1046
#: ../settings/xfce_settings_plugin.c:86
#: ../settings/xfce_settings_dialog.c:439
#: ../settings/xfce_settings_dialog.c:507
msgid "Xfce Panel"
msgstr "Xfce панел"
#: ../panel/panel.c:747
#: ../panel/panel.c:722
#, fuzzy
msgid "_About Xfce"
msgstr "/_Относно Xfce"
#: ../panel/panel.c:752
#: ../panel/panel.c:727
#, fuzzy
msgid "_Help"
msgstr "/_Помощ"
#: ../panel/panel.c:761
#: ../panel/panel.c:736
#, fuzzy
msgid "_Lock screen"
msgstr "/_Заключва екрана"
#: ../panel/panel.c:766
#: ../panel/panel.c:741
msgid "_Restart"
msgstr ""
#: ../panel/panel.c:775 ../iconbox/iconbox.c:628
#: ../panel/panel.c:750 ../iconbox/iconbox.c:628
#, fuzzy
msgid "E_xit"
msgstr "/Изход"
@ -240,15 +241,15 @@ msgstr "Звук"
msgid "icons|Terminal"
msgstr "Терминал"
#: ../panel/mcs_client.c:169
#: ../panel/mcs_client.c:170
msgid "Settings manager not available"
msgstr "Мениджъра за настройки не е достъпен"
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:65
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:70
msgid "There is already a system tray running on this screen"
msgstr "Вече има панел със задачи стартиран в този екран"
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:71
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:76
#, c-format
msgid "Unable to register system tray: %s"
msgstr "Не мога да регистрирам панела с задачите: %s"
@ -282,7 +283,7 @@ msgstr "Не мога да създам канала на клиента MCS"
msgid "Xfce Iconbox"
msgstr ""
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:137
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:138
msgid "Developer"
msgstr ""
@ -333,36 +334,57 @@ msgstr "Горе"
msgid "Bottom"
msgstr "Долу"
#: ../settings/xfce_settings_dialog.c:268
#: ../settings/xfce_settings_dialog.c:275 ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/xfce_settings_dialog.c:279
#, fuzzy
msgid "At both sides"
msgstr "Автоматично скриване"
#: ../settings/xfce_settings_dialog.c:283
msgid "At the start"
msgstr ""
#: ../settings/xfce_settings_dialog.c:287
msgid "At the end"
msgstr ""
#: ../settings/xfce_settings_dialog.c:320
msgid "Panel size:"
msgstr "Размер на панела:"
#: ../settings/xfce_settings_dialog.c:284
#: ../settings/xfce_settings_dialog.c:336
msgid "Panel orientation:"
msgstr "Ориентация на панела:"
#: ../settings/xfce_settings_dialog.c:303
#: ../settings/xfce_settings_dialog.c:355
msgid "Popup position:"
msgstr "Позиция на изкачащото меню:"
#: ../settings/xfce_settings_dialog.c:339
#: ../settings/xfce_settings_dialog.c:371
msgid "Handles:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:407
msgid "Autohide:"
msgstr "Автоматично скриване:"
#: ../settings/xfce_settings_dialog.c:385
#: ../settings/xfce_settings_dialog.c:453
msgid "Full width:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:456
#: ../settings/xfce_settings_dialog.c:524
msgid "Xfce Panel Settings"
msgstr "Xfce·настройки за панела"
#: ../settings/xfce_settings_dialog.c:466
#: ../settings/xfce_settings_dialog.c:534
msgid "Appearance"
msgstr "Изглед"
#. show only hidden
#: ../settings/xfce_settings_dialog.c:481 ../settings/iconbox_plugin.c:685
#: ../settings/xfce_settings_dialog.c:549 ../settings/iconbox_plugin.c:685
msgid "Behaviour"
msgstr "Вид"
@ -493,10 +515,6 @@ msgstr ""
msgid "Transparency"
msgstr ""
#: ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/iconbox_plugin.c:777
msgid "Full"
msgstr ""
@ -563,30 +581,30 @@ msgstr "Xfce часовник"
msgid "Flexible space"
msgstr ""
#: ../plugins/launcher/launcher.c:129
#: ../plugins/launcher/launcher.c:130
#, fuzzy
msgid "Launcher Plugin"
msgstr "Обект"
#: ../plugins/launcher/launcher.c:312
#: ../plugins/launcher/launcher.c:314
#, fuzzy
msgid "Alternative Launcher"
msgstr "Прикрепва меню към обекта"
#: ../plugins/launcher/launcher.c:370
#: ../plugins/launcher/launcher.c:372
#, c-format
msgid ""
"Could not run \"%s\":\n"
"%s"
msgstr ""
#: ../plugins/launcher/launcher.c:701
#: ../plugins/launcher/launcher.c:704
#: ../plugins/launcher/launcher-dialog.c:1185
#, fuzzy
msgid "New item"
msgstr "Добавяне на нов обект"
#: ../plugins/launcher/launcher.c:703
#: ../plugins/launcher/launcher.c:706
#: ../plugins/launcher/launcher-dialog.c:1186
#, fuzzy
msgid "This item has not yet been configured"
@ -648,17 +666,33 @@ msgstr "Използва съобщение при стартиране"
msgid "Edit launcher"
msgstr "Добавяне на обект"
#: ../plugins/launcher/launcher-dialog.c:1262
#: ../plugins/launcher/launcher-dialog.c:1242
msgid "_Up"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1248
msgid "_Down"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1254
#, fuzzy
msgid "_Edit"
msgstr "Редактор"
#: ../plugins/launcher/launcher-dialog.c:1298
#: ../plugins/launcher/launcher-dialog.c:1260
msgid "_Add"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1290
msgid ""
"The first item in the list is shown on the panel. Additional items will "
"appear in a menu."
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1313
msgid "Panel Item and Menu Items"
msgstr ""
#: ../plugins/mailcheck/mailcheck.c:838
msgid "Mail box:"
msgstr "Пощенска кутия:"
@ -773,7 +807,7 @@ msgstr "/_Помощ"
msgid "System buttons"
msgstr "Системни бутони"
#: ../plugins/systray/systray.c:273
#: ../plugins/systray/systray.c:278
#, fuzzy
msgid "Notification Area"
msgstr "Област за известяване"

104
po/ca.po

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: XFce 4\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2005-04-15 11:09+0200\n"
"POT-Creation-Date: 2005-05-02 22:27+0200\n"
"PO-Revision-Date: 2004-03-29 21:17+0100\n"
"Last-Translator: Carles Munoz Gorriz <carlesmu@internautas.org>\n"
"Language-Team: ca <ca@li.org>\n"
@ -83,11 +83,12 @@ msgstr "Canvia l'element del menú"
#. add buttons
#: ../panel/item_dialog.c:1179 ../panel/controls.c:751
#: ../plugins/launcher/launcher-dialog.c:1266
#, fuzzy
msgid "_Remove"
msgstr "/_Elimina"
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:129
#: ../panel/item_dialog.c:1191 ../plugins/launcher/launcher.c:130
msgid "Launcher"
msgstr "Llançador"
@ -139,12 +140,12 @@ msgstr ""
msgid "Could not create panel item \"%s\"."
msgstr ""
#: ../panel/controls.c:746 ../panel/panel.c:742 ../iconbox/iconbox.c:618
#: ../panel/controls.c:746 ../panel/panel.c:717 ../iconbox/iconbox.c:618
#, fuzzy
msgid "_Properties..."
msgstr "/_Propietats..."
#: ../panel/controls.c:760 ../panel/panel.c:732
#: ../panel/controls.c:760 ../panel/panel.c:707
#, fuzzy
msgid "Add _new item"
msgstr "/Afegir _nou element"
@ -153,34 +154,34 @@ msgstr "/Afegir _nou element"
msgid "This item has no configuration options"
msgstr "Aquest element no té opcions de configuració"
#: ../panel/panel.c:723 ../panel/panel.c:1075
#: ../panel/panel.c:698 ../panel/panel.c:1046
#: ../settings/xfce_settings_plugin.c:86
#: ../settings/xfce_settings_dialog.c:439
#: ../settings/xfce_settings_dialog.c:507
#, fuzzy
msgid "Xfce Panel"
msgstr "Plafó XFce"
#: ../panel/panel.c:747
#: ../panel/panel.c:722
#, fuzzy
msgid "_About Xfce"
msgstr "/_Quant a XFce"
#: ../panel/panel.c:752
#: ../panel/panel.c:727
#, fuzzy
msgid "_Help"
msgstr "/_Ajuda"
#: ../panel/panel.c:761
#: ../panel/panel.c:736
#, fuzzy
msgid "_Lock screen"
msgstr "/_Bloqueja la pantalla"
#: ../panel/panel.c:766
#: ../panel/panel.c:741
#, fuzzy
msgid "_Restart"
msgstr "/_Reinicia"
#: ../panel/panel.c:775 ../iconbox/iconbox.c:628
#: ../panel/panel.c:750 ../iconbox/iconbox.c:628
#, fuzzy
msgid "E_xit"
msgstr "/S_urt"
@ -240,15 +241,15 @@ msgstr "Só"
msgid "icons|Terminal"
msgstr "Terminal"
#: ../panel/mcs_client.c:169
#: ../panel/mcs_client.c:170
msgid "Settings manager not available"
msgstr "El gestor d'ajustaments no està disponible"
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:65
#: ../taskbar/xftaskbar.c:510 ../plugins/systray/systray.c:70
msgid "There is already a system tray running on this screen"
msgstr "Ja hi ha una safata del sistema executant-se a la pantalla"
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:71
#: ../taskbar/xftaskbar.c:516 ../plugins/systray/systray.c:76
#, c-format
msgid "Unable to register system tray: %s"
msgstr "No es por registrar la safata del sistema: %s"
@ -283,7 +284,7 @@ msgstr "No es pot crear el canal del client MCS"
msgid "Xfce Iconbox"
msgstr ""
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:137
#: ../iconbox/iconbox.c:576 ../plugins/launcher/launcher.c:138
msgid "Developer"
msgstr ""
@ -334,37 +335,58 @@ msgstr "Superior"
msgid "Bottom"
msgstr "Inferior"
#: ../settings/xfce_settings_dialog.c:268
#: ../settings/xfce_settings_dialog.c:275 ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/xfce_settings_dialog.c:279
#, fuzzy
msgid "At both sides"
msgstr "Ocultar automàticament"
#: ../settings/xfce_settings_dialog.c:283
msgid "At the start"
msgstr ""
#: ../settings/xfce_settings_dialog.c:287
msgid "At the end"
msgstr ""
#: ../settings/xfce_settings_dialog.c:320
msgid "Panel size:"
msgstr "Tamany del plafó:"
#: ../settings/xfce_settings_dialog.c:284
#: ../settings/xfce_settings_dialog.c:336
msgid "Panel orientation:"
msgstr "Orientació del plafó:"
#: ../settings/xfce_settings_dialog.c:303
#: ../settings/xfce_settings_dialog.c:355
msgid "Popup position:"
msgstr "Posició emergent:"
#: ../settings/xfce_settings_dialog.c:339
#: ../settings/xfce_settings_dialog.c:371
msgid "Handles:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:407
msgid "Autohide:"
msgstr "Ocultació automàtica:"
#: ../settings/xfce_settings_dialog.c:385
#: ../settings/xfce_settings_dialog.c:453
msgid "Full width:"
msgstr ""
#: ../settings/xfce_settings_dialog.c:456
#: ../settings/xfce_settings_dialog.c:524
#, fuzzy
msgid "Xfce Panel Settings"
msgstr "Ajustaments del Plafó XFce"
#: ../settings/xfce_settings_dialog.c:466
#: ../settings/xfce_settings_dialog.c:534
msgid "Appearance"
msgstr "Aparença"
#. show only hidden
#: ../settings/xfce_settings_dialog.c:481 ../settings/iconbox_plugin.c:685
#: ../settings/xfce_settings_dialog.c:549 ../settings/iconbox_plugin.c:685
msgid "Behaviour"
msgstr "Comportament"
@ -494,10 +516,6 @@ msgstr ""
msgid "Transparency"
msgstr ""
#: ../settings/iconbox_plugin.c:762
msgid "None"
msgstr ""
#: ../settings/iconbox_plugin.c:777
msgid "Full"
msgstr ""
@ -565,30 +583,30 @@ msgstr "Rellotge XFce"
msgid "Flexible space"
msgstr ""
#: ../plugins/launcher/launcher.c:129
#: ../plugins/launcher/launcher.c:130
#, fuzzy
msgid "Launcher Plugin"
msgstr "Llançador"
#: ../plugins/launcher/launcher.c:312
#: ../plugins/launcher/launcher.c:314
#, fuzzy
msgid "Alternative Launcher"
msgstr "Afegir un menú al llançador"
#: ../plugins/launcher/launcher.c:370
#: ../plugins/launcher/launcher.c:372
#, c-format
msgid ""
"Could not run \"%s\":\n"
"%s"
msgstr ""
#: ../plugins/launcher/launcher.c:701
#: ../plugins/launcher/launcher.c:704
#: ../plugins/launcher/launcher-dialog.c:1185
#, fuzzy
msgid "New item"
msgstr "Afegir un nou element"
#: ../plugins/launcher/launcher.c:703
#: ../plugins/launcher/launcher.c:706
#: ../plugins/launcher/launcher-dialog.c:1186
#, fuzzy
msgid "This item has not yet been configured"
@ -650,17 +668,33 @@ msgstr "Utilitzeu _notificació d'inicialització"
msgid "Edit launcher"
msgstr "Afegir llançador"
#: ../plugins/launcher/launcher-dialog.c:1262
#: ../plugins/launcher/launcher-dialog.c:1242
msgid "_Up"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1248
msgid "_Down"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1254
#, fuzzy
msgid "_Edit"
msgstr "Editor"
#: ../plugins/launcher/launcher-dialog.c:1298
#: ../plugins/launcher/launcher-dialog.c:1260
msgid "_Add"
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1290
msgid ""
"The first item in the list is shown on the panel. Additional items will "
"appear in a menu."
msgstr ""
#: ../plugins/launcher/launcher-dialog.c:1313
msgid "Panel Item and Menu Items"
msgstr ""
#: ../plugins/mailcheck/mailcheck.c:838
msgid "Mail box:"
msgstr "Bústia del correu:"
@ -775,7 +809,7 @@ msgstr "/_Ajuda"
msgid "System buttons"
msgstr "Butons del sistema"
#: ../plugins/systray/systray.c:273
#: ../plugins/systray/systray.c:278
#, fuzzy
msgid "Notification Area"
msgstr "Àrea de notificacions"

104
po/cs.po

@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: cs\n"
"Report-Msgid-Bugs-To: \n"
<