cairo-dock-team team mailing list archive
-
cairo-dock-team team
-
Mailing list archive
-
Message #04414
[Merge] lp:~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2 into lp:ubuntu/cairo-dock-plug-ins
Matthieu Baerts has proposed merging lp:~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2 into lp:ubuntu/cairo-dock-plug-ins.
Requested reviews:
Ubuntu Sponsors Team (ubuntu-sponsors)
Related bugs:
Bug #1014804 in cairo-dock-plug-ins (Ubuntu): " Please update Cairo-Dock Plug-Ins to 3.0.2 version (bug-fix version)"
https://bugs.launchpad.net/ubuntu/+source/cairo-dock-plug-ins/+bug/1014804
For more details, see:
https://code.launchpad.net/~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2/+merge/111021
Hello,
The Cairo-Dock team proposes a new "bug-fix" version of their Cairo-Dock packages.
This is the Upstream ChangeLog:
* 3.0.0 -> 3.0.1:
- Gnome-integration: fixed the time&date command
- KDE integration: fixed the time&date command
- Updated previews of dustbin and logout with the new version
- Updated the version of applets that can be always visible
(for the new parameters)
- Clock: numeric view: increased the size of the rectangle if an
outline is used and modified the default colour
- Clock: Now with the possibility to have an outline with the digital view
to see when we don't use any background
- Used the core option to not force the display of icons in menus
- Minor fixes in Sound Control's .conf file
- MusicPlayer: mpris2: metadata: trackid attribute should be of D-Bus
type 'o'
- Switcher: fixed a possible crash (division by 0) if the X manager
couldn't get info from X + removed bMenuVisible
- Clock: analogic mode: fixed a bug where the date was not displayed
correctly (with opengl)
- Clock: numeric mode: set a minimum size for the text: we keep the
ratio until 12px (under 12px, it's hard to read)
- Logout: added a fallback method to get the users list if the accounts
daemon service is not running
- CMakeLists.txt: fixed a CMake warning (or error?)
* 3.0.1 -> 3.0.2:
- AlsaMixer: Fix: double-clicking did nothing if we didn't open the menu
of the applet
- DND2Share: Pastebin: Their public API is no longer available -> ported
to the new API
- GMenu: Fixed a bug that made sub-menus be too small,
and therefore have to be scrolled + code cleaning
- Logout: When the menu is reversed (top dock), select the last item so
that it's the same as the normal menu (ie, the 'shutdown' item)
- MusicPlayer: Prevented a warning message: when changing song, we don't
receive this value: Position (no need to display a warning each time)
- MusicPlayer: Allow recently played files in the menu (Recent-Files)
- MusicPlayer: Fixed a bug that prevented the player from being launched
the 2nd time in some cases
- MusicPlayer: Added raise and quit methods in the menu when the player is
in the systray (without that it's hard to display the window
- MusicPlayer: Used toggle buttons for Shuffle and Repeat properties
- Recent-Events: If the file doesn't exist, don't display it in the
'Recent Files' menu
- Recent-Events: Prevent doubles in the menu list
- Po: Updated translations (added Croatian)
- Shortcuts: Fixed a small bug with bookmarks (extra new lines were
disrupting Thunar)
- Status-Notifier: Added the marshaller for the XAyatanaNewLabel signal
- Systray (old): Force the icons size to 24px, to avoid buggy programs to
display their icon with a wrong size
- Third-party applets: Reposition their right-click menu, so that it's the
same as a normal menu (on top of the icon and no scroll needed)
This branch should be ready to be pushed on lp:ubuntu/cairo-dock-plug-ins (except the UNRELEASED version in debian/changelog)
This version compiles fine on Quantal (and older) and has been tested: https://launchpad.net/~matttbe/+archive/experimental-debian-build/+sourcepub/2516774/+listing-archive-extra
**@ ubuntu-devs**
Do you think it's possible to upload this version in Precise-Update? (simply because it's a bug-fix version and Precise is a LTS version)
Thank you for your help! ;)
PS: 'cairo-dock' package has to be uploaded before this package! (if possible, 30min before but it should wait for the new version of Cairo-Dock (core - libgldi-dev)) ( LP: #1014801 )
--
https://code.launchpad.net/~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2/+merge/111021
Your team Cairo-Dock Team is subscribed to branch lp:~cairo-dock-team/ubuntu/quantal/cairo-dock-plug-ins/3.0.2.
=== modified file 'CMakeLists.txt'
--- CMakeLists.txt 2012-04-16 23:35:08 +0000
+++ CMakeLists.txt 2012-06-19 14:00:32 +0000
@@ -11,7 +11,7 @@
########### project ###############
project ("cairo-dock-plugins")
-set (VERSION "3.0.0")
+set (VERSION "3.0.2")
add_definitions (-std=c99 -Wextra -Wwrite-strings -Wuninitialized -Werror-implicit-function-declaration -Wstrict-prototypes) # removed for stable versions: -Wstrict-prototypes #-Wunreachable-code -Wno-unused-parameter -Wall
if (NOT ${CMAKE_BUILD_TYPE})
@@ -93,6 +93,12 @@
#set (libdir "${CMAKE_INSTALL_PREFIX}/${libname}/cairo-dock")
endif()
+if (NOT "${force-icon-in-menus}" STREQUAL "no") # we believe that not showing icons in the menus by default is a terrible idea; unfortunately, it's not easily undoable for an end-user; so until this is fixed by a big player (Gnome, Ubuntu or other), we'll force the display, unless "-Dforce-icon-in-menus=yes" is provided in the cmake command.
+ add_definitions (-DCAIRO_DOCK_FORCE_ICON_IN_MENUS=1)
+else()
+ add_definitions (-DCAIRO_DOCK_FORCE_ICON_IN_MENUS=0)
+endif()
+
# set internationalisation
set (GETTEXT_PLUGINS "cairo-dock-plugins")
set (localedir "${prefix}/${CMAKE_INSTALL_LOCALEDIR}")
@@ -260,9 +266,11 @@
#~ set (INDICATOR_OLD_NAMES 1)
#~ message (STATUS " Indicators: use old Ayatana Dbus names")
#~ endif()
-elseif ("${INDICATOR_APPLET_FOUND}" STREQUAL "1" AND NOT (${INDICATOR_MAJOR} GREATER 0 OR ${INDICATOR_MINOR} GREATER 3 OR (${INDICATOR_MINOR} EQUAL 3 AND ${INDICATOR_NANO} GREATER 20)))
- set (INDICATOR_OLD_NAMES 1) # maverick or older
- message (STATUS " Indicators: use old Ayatana Dbus names")
+elseif ("${INDICATOR_APPLET_FOUND}" STREQUAL "1")
+ if (NOT (${INDICATOR_MAJOR} GREATER 0 OR ${INDICATOR_MINOR} GREATER 3 OR (${INDICATOR_MINOR} EQUAL 3 AND ${INDICATOR_NANO} GREATER 20)))
+ set (INDICATOR_OLD_NAMES 1) # maverick or older
+ message (STATUS " Indicators: use old Ayatana Dbus names")
+ endif()
endif()
############# DISTRIBUTION #################
@@ -321,7 +329,7 @@
set (MODULES_MISSING "${MODULES_MISSING} alsa")
else()
set (GETTEXT_ALSA_MIXER ${GETTEXT_PLUGINS})
- set (VERSION_ALSA_MIXER "2.0.0")
+ set (VERSION_ALSA_MIXER "2.0.1")
set (PACKAGE_ALSA_MIXER "cd-AlsaMixer")
set (with_alsa "yes")
set (alsa_mixerdatadir "${pluginsdatadir}/AlsaMixer")
@@ -373,7 +381,7 @@
set (MODULES_MISSING "${MODULES_MISSING} libical")
endif()
set (GETTEXT_CLOCK ${GETTEXT_PLUGINS})
-set (VERSION_CLOCK "2.1.5")
+set (VERSION_CLOCK "2.2.0")
set (PACKAGE_CLOCK "cd-clock")
set (clockuserdirname "clock")
set (clockdatadir "${pluginsdatadir}/clock")
@@ -418,7 +426,7 @@
message (STATUS " * Ruby:")
# find_package(Ruby) found libs of ruby-dev but we only need a directory where we can install ruby libs.
find_program (RUBY_EXECUTABLE ruby)
-EXECUTE_PROCESS(COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "print Config::CONFIG['rubylibdir']"
+EXECUTE_PROCESS(COMMAND ${RUBY_EXECUTABLE} -r rbconfig -e "print RbConfig::CONFIG['rubylibdir']"
OUTPUT_VARIABLE RUBY_LIB_DIR)
message (STATUS " Ruby library dir: ${RUBY_LIB_DIR}")
if ("${RUBY_LIB_DIR}" STREQUAL "" OR "${RUBY_LIB_DIR}" STREQUAL "nil")
@@ -427,7 +435,8 @@
set (PROGRAMS_MISSING "${PROGRAMS_MISSING} ruby")
set (with_ruby "no")
else()
- string (REGEX REPLACE "lib/ruby/[0-9].[0-9]" "" RUBY_LIB_DIR_INSTALL "${RUBY_LIB_DIR}")
+ # /usr/lib/ruby/1.8 or /usr/lib/ruby/1.9.1
+ string (REGEX REPLACE "lib/ruby/[0-9].[0-9]?.+" "" RUBY_LIB_DIR_INSTALL "${RUBY_LIB_DIR}")
string (REGEX REPLACE "${RUBY_LIB_DIR_INSTALL}" "" RUBY_LIB_DIR_INSTALL "${RUBY_LIB_DIR}")
set (RUBY_LIB_DIR "${CMAKE_INSTALL_PREFIX}/${RUBY_LIB_DIR_INSTALL}")
message (STATUS " will be installed in: ${RUBY_LIB_DIR}")
@@ -790,7 +799,7 @@
set (MODULES_MISSING "${MODULES_MISSING} libxklavier")
else()
set (GETTEXT_KEYBOARD_INDICATOR ${GETTEXT_PLUGINS})
- set (VERSION_KEYBOARD_INDICATOR "1.1.5")
+ set (VERSION_KEYBOARD_INDICATOR "1.1.6")
set (PACKAGE_KEYBOARD_INDICATOR "cd-keyboard-indicator")
set (with_keyboard_indicator "yes")
set (keyboard_indicatordatadir "${pluginsdatadir}/keyboard-indicator")
@@ -810,7 +819,7 @@
set (MODULES_MISSING "${MODULES_MISSING} upower-glib")
endif()
set (GETTEXT_LOGOUT ${GETTEXT_PLUGINS})
-set (VERSION_LOGOUT "2.0.0")
+set (VERSION_LOGOUT "2.0.1")
set (PACKAGE_LOGOUT "cd-logout")
set (logoutdatadir "${pluginsdatadir}/logout")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/logout/data/logout.conf.in ${CMAKE_CURRENT_BINARY_DIR}/logout/data/logout.conf)
@@ -863,7 +872,7 @@
message (STATUS " Link directories: ${MAIL_PACKAGE_LIBRARY_DIRS}")
message (STATUS " Link libraries: ${MAIL_PACKAGE_LIBRARIES}")
set (GETTEXT_MAIL ${GETTEXT_PLUGINS})
- set (VERSION_MAIL "1.0.10")
+ set (VERSION_MAIL "1.0.11")
set (PACKAGE_MAIL "cd-mail")
set (maildatadir "${pluginsdatadir}/mail")
set (with_mail "yes")
@@ -904,7 +913,7 @@
if ("${with_indicator}" STREQUAL "yes")
message (STATUS "> Messaging-Menu:")
set (GETTEXT_MESSAGING_MENU ${GETTEXT_PLUGINS})
- set (VERSION_MESSAGING_MENU "1.0.3")
+ set (VERSION_MESSAGING_MENU "1.0.4")
set (PACKAGE_MESSAGING_MENU "cd-Messaging-Menu")
set (with_messaging_menu "yes")
set (messaging_menudatadir "${pluginsdatadir}/Messaging-Menu")
@@ -924,7 +933,7 @@
############# MUSICPLAYER #################
message (STATUS "> MusicPlayer:")
set (GETTEXT_MUSICPLAYER ${GETTEXT_PLUGINS})
-set (VERSION_MUSICPLAYER "2.0.0")
+set (VERSION_MUSICPLAYER "2.0.1")
set (PACKAGE_MUSICPLAYER "cd-musicPlayer")
set (musicplayerdatadir "${pluginsdatadir}/musicPlayer")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/musicPlayer/data/musicPlayer.conf.in ${CMAKE_CURRENT_BINARY_DIR}/musicPlayer/data/musicPlayer.conf)
@@ -933,7 +942,7 @@
############# NETSPEED #################
message (STATUS "> NetSpeed:")
set (GETTEXT_NETSPEED ${GETTEXT_PLUGINS})
-set (VERSION_NETSPEED "1.2.8")
+set (VERSION_NETSPEED "1.2.9")
set (PACKAGE_NETSPEED "cd-netspeed")
set (netspeeddatadir "${pluginsdatadir}/netspeed")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/netspeed/data/netspeed.conf.in ${CMAKE_CURRENT_BINARY_DIR}/netspeed/data/netspeed.conf)
@@ -944,7 +953,7 @@
if ("${enable-network-monitor}" STREQUAL "yes")
message (STATUS "> Network Monitor:")
set (GETTEXT_NETWORK_MONITOR ${GETTEXT_PLUGINS})
- set (VERSION_NETWORK_MONITOR "0.2.6")
+ set (VERSION_NETWORK_MONITOR "0.2.7")
set (PACKAGE_NETWORK_MONITOR "cd-network-monitor")
set (with_network_monitor "yes")
set (network_monitordatadir "${pluginsdatadir}/Network-Monitor")
@@ -955,7 +964,7 @@
############# POWERMANAGER #################
message (STATUS "> PowerManager:")
set (GETTEXT_POWERMANAGER ${GETTEXT_PLUGINS})
-set (VERSION_POWERMANAGER "1.3.8")
+set (VERSION_POWERMANAGER "1.3.9")
set (PACKAGE_POWERMANAGER "cd-powermanager")
set (powermanagerdatadir "${pluginsdatadir}/powermanager")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/powermanager/data/powermanager.conf.in ${CMAKE_CURRENT_BINARY_DIR}/powermanager/data/powermanager.conf)
@@ -1069,7 +1078,7 @@
set (with_exif "no")
endif()
set (GETTEXT_SLIDER ${GETTEXT_PLUGINS})
-set (VERSION_SLIDER "2.0.11")
+set (VERSION_SLIDER "2.0.12")
set (PACKAGE_SLIDER "cd-slider")
set (sliderdatadir "${pluginsdatadir}/slider")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/slider/data/slider.conf.in ${CMAKE_CURRENT_BINARY_DIR}/slider/data/slider.conf)
@@ -1099,7 +1108,7 @@
endif()
message (STATUS " ApplicationAdded signal has 'Hint' = ${INDICATOR_APPLICATIONADDED_HAS_HINT}")
set (GETTEXT_STATUS_NOTIFIER ${GETTEXT_PLUGINS})
- set (VERSION_STATUS_NOTIFIER "0.1.5")
+ set (VERSION_STATUS_NOTIFIER "0.1.6")
set (PACKAGE_STATUS_NOTIFIER "cd-status-notifier")
set (with_status_notifier "yes")
set (status_notifierdatadir "${pluginsdatadir}/Status-Notifier")
@@ -1127,7 +1136,7 @@
set (with_sensors "no")
endif()
set (GETTEXT_SYSTEM_MONITOR ${GETTEXT_PLUGINS})
-set (VERSION_SYSTEM_MONITOR "1.0.10")
+set (VERSION_SYSTEM_MONITOR "1.0.11")
set (PACKAGE_SYSTEM_MONITOR "cd-system-monitor")
set (system_monitordatadir "${pluginsdatadir}/System-monitor")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/System-Monitor/data/System-Monitor.conf.in ${CMAKE_CURRENT_BINARY_DIR}/System-Monitor/data/System-Monitor.conf)
@@ -1177,7 +1186,7 @@
############# TOONS #################
message (STATUS "> Toons:")
set (GETTEXT_TOONS ${GETTEXT_PLUGINS})
-set (VERSION_TOONS "1.0.11")
+set (VERSION_TOONS "1.0.12")
set (PACKAGE_TOONS "cd-Toons")
set (toonsdatadir "${pluginsdatadir}/Toons")
set (toonsuserdirname "Toons")
@@ -1187,7 +1196,7 @@
############# WEATHER #################
message (STATUS "> Weather:")
set (GETTEXT_WEATHER ${GETTEXT_PLUGINS})
-set (VERSION_WEATHER "1.2.12")
+set (VERSION_WEATHER "1.2.13")
set (PACKAGE_WEATHER "cd-weather")
set (weatherdatadir "${pluginsdatadir}/weather")
set (weatheruserdirname "weather")
@@ -1222,7 +1231,7 @@
############# WIFI #################
message (STATUS "> WiFi:")
set (GETTEXT_WIFI ${GETTEXT_PLUGINS})
-set (VERSION_WIFI "1.2.10")
+set (VERSION_WIFI "1.2.11")
set (PACKAGE_WIFI "cd-wifi")
set (wifidatadir "${pluginsdatadir}/wifi")
configure_file (${CMAKE_CURRENT_SOURCE_DIR}/wifi/data/wifi.conf.in ${CMAKE_CURRENT_BINARY_DIR}/wifi/data/wifi.conf)
=== modified file 'Dbus/src/interface-applet-methods.c'
--- Dbus/src/interface-applet-methods.c 2012-03-21 11:26:14 +0000
+++ Dbus/src/interface-applet-methods.c 2012-06-19 14:00:32 +0000
@@ -1157,6 +1157,8 @@
g_hash_table_destroy (pGroups);
gtk_widget_show_all (myData.pModuleMainMenu);
+ gtk_menu_reposition (GTK_MENU (myData.pModuleMainMenu));
+
return TRUE;
}
=== modified file 'GMenu/src/applet-init.c'
--- GMenu/src/applet-init.c 2012-03-21 11:26:14 +0000
+++ GMenu/src/applet-init.c 2012-06-19 14:00:32 +0000
@@ -80,13 +80,6 @@
CD_APPLET_UNREGISTER_FOR_MIDDLE_CLICK_EVENT;
CD_APPLET_UNREGISTER_FOR_BUILD_MENU_EVENT;
- if (myData.iSidFakeMenuIdle != 0)
- g_source_remove (myData.iSidFakeMenuIdle);
- if (myData.iSidCreateMenuIdle != 0)
- g_source_remove (myData.iSidCreateMenuIdle);
- if (myData.iSidTreeChangeIdle != 0)
- g_source_remove (myData.iSidTreeChangeIdle);
-
// keyboard events
cd_keybinder_unbind (myData.cKeyBinding);
cd_keybinder_unbind (myData.cKeyBindingQuickLaunch);
=== modified file 'GMenu/src/applet-menu-callbacks.c'
--- GMenu/src/applet-menu-callbacks.c 2012-03-21 11:26:14 +0000
+++ GMenu/src/applet-menu-callbacks.c 2012-06-19 14:00:32 +0000
@@ -37,45 +37,14 @@
{
cd_message ("%s ()", __func__);
+ // easy way: rebuild the whole menu.
if (myData.pMenu != NULL)
{
gtk_widget_destroy (myData.pMenu);
myData.pMenu = NULL;
}
- if (myData.pMenu == NULL)
- {
- myData.pMenu = create_main_menu (NULL);
- }
- return ;
-
- guint idle_id;
-
- GList *children = gtk_container_get_children (GTK_CONTAINER (menu));
- g_list_foreach (children, (GFunc)gtk_widget_destroy, NULL);
- g_list_free (children);
- ///while (GTK_MENU_SHELL (menu)->children)
- /// gtk_widget_destroy (GTK_MENU_SHELL (menu)->children->data);
-
- g_object_set_data_full (G_OBJECT (menu),
- "panel-menu-tree-directory",
- NULL, NULL);
-
- g_object_set_data (G_OBJECT (menu),
- "panel-menu-needs-loading",
- GUINT_TO_POINTER (TRUE));
-
- idle_id = g_idle_add_full (G_PRIORITY_LOW,
- submenu_to_display_in_idle,
- menu,
- NULL);
- if (myData.iSidTreeChangeIdle != 0)
- g_source_remove (myData.iSidTreeChangeIdle);
- myData.iSidTreeChangeIdle = idle_id;
- g_object_set_data_full (G_OBJECT (menu),
- "panel-menu-idle-id",
- GUINT_TO_POINTER (idle_id),
- remove_submenu_to_display_idle);
+ myData.pMenu = create_main_menu (myApplet);
}
void remove_gmenu_tree_monitor (GtkWidget *menu,
@@ -88,16 +57,6 @@
}
-gboolean menu_dummy_button_press_event (GtkWidget *menuitem,
- GdkEventButton *event)
-{
- if (event->button == 3)
- return TRUE;
-
- return FALSE;
-}
-
-
void remove_submenu_to_display_idle (gpointer data)
{
guint idle_id = GPOINTER_TO_UINT (data);
@@ -129,7 +88,7 @@
if (!g_object_get_data (G_OBJECT (menu), "panel-menu-needs-loading"))
{
- cd_debug ("needs no loading\n");
+ cd_debug ("needs no loading");
return;
}
@@ -150,7 +109,7 @@
tree = g_object_get_data (G_OBJECT (menu), "panel-menu-tree");
if (!tree)
{
- cd_warning ("no tree found in datas");
+ cd_warning ("no tree found in data");
return;
}
directory = gmenu_tree_get_directory_from_path (tree,
@@ -199,10 +158,7 @@
image = gtk_image_new_from_pixbuf (pixbuf);
g_object_unref (pixbuf);
}
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (pMenuItem), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
}
gtk_menu_shell_append (GTK_MENU_SHELL (pMenu), pMenuItem);
if (pFunction)
@@ -226,10 +182,6 @@
void panel_desktop_menu_item_append_menu (GtkWidget *menu, gpointer data)
{
CairoDockModuleInstance *myApplet = (CairoDockModuleInstance *) data;
-
- //panel_menu_items_append_from_desktop (menu, "yelp.desktop", NULL);
- //panel_menu_items_append_from_desktop (menu, "gnome-about.desktop", NULL);
-
if (myConfig.iShowQuit != CD_GMENU_SHOW_QUIT_NONE)
cd_menu_append_poweroff_to_menu (menu, myApplet);
}
@@ -240,24 +192,9 @@
//g_print ("%s ()\n", __func__);
CairoDockModuleInstance *myApplet;
GtkWidget *item;
- gboolean add_separator;
- GList *children;
- GList *last;
myApplet = (CairoDockModuleInstance *) data;
- add_separator = FALSE;
- children = gtk_container_get_children (GTK_CONTAINER (main_menu));
- last = g_list_last (children);
- if (last != NULL) {
- ///add_separator = !GTK_IS_SEPARATOR (GTK_WIDGET (last->data));
- }
- g_list_free (children);
-
- if (add_separator)
- add_menu_separator (main_menu);
-
-
GtkWidget *desktop_menu;
desktop_menu = create_applications_menu ("settings.menu", NULL, main_menu);
@@ -276,73 +213,8 @@
{
cd_menu_append_recent_to_menu (main_menu, myApplet);
}
-
-
- /*item = panel_place_menu_item_new (TRUE);
- panel_place_menu_item_set_panel (item, panel);
- gtk_menu_shell_append (GTK_MENU_SHELL (main_menu), item);
- gtk_widget_show (item);
-
- item = panel_desktop_menu_item_new (TRUE, FALSE);
- panel_desktop_menu_item_set_panel (item, panel);
- gtk_menu_shell_append (GTK_MENU_SHELL (main_menu), item);
- gtk_widget_show (item);
-
- panel_menu_items_append_lock_logout (main_menu);*/
-}
-
-/*gboolean show_item_menu (GtkWidget *item,
- GdkEventButton *bevent)
-{
- CairoDockModuleInstance *myApplet;
- GtkWidget *menu;
-
- if (panel_lockdown_get_locked_down ())
- return FALSE;
-
- panel_widget = menu_get_panel (item);
-
- menu = g_object_get_data (G_OBJECT (item), "panel-item-context-menu");
-
- if (!menu)
- menu = create_item_context_menu (item, panel_widget);
-
- if (!menu)
- return FALSE;
-
- gtk_menu_set_screen (GTK_MENU (menu),
- gtk_window_get_screen (GTK_WINDOW (panel_widget->toplevel)));
-
- gtk_menu_popup (GTK_MENU (menu),
- NULL, NULL, NULL, NULL,
- bevent->button,
- bevent->time);
-
- return TRUE;
-}
-gboolean panel_menu_key_press_handler (GtkWidget *widget,
- GdkEventKey *event)
-{
- gboolean retval = FALSE;
-
- if ((event->keyval == GDK_Menu) ||
- (event->keyval == GDK_F10 &&
- (event->state & gtk_accelerator_get_default_mod_mask ()) == GDK_SHIFT_MASK)) {
- GtkMenuShell *menu_shell = GTK_MENU_SHELL (widget);
-
- if (menu_shell->active_menu_item &&
- GTK_MENU_ITEM (menu_shell->active_menu_item)->submenu == NULL) {
- GdkEventButton bevent;
-
- bevent.button = 3;
- bevent.time = GDK_CURRENT_TIME;
- retval = show_item_menu (menu_shell->active_menu_item,
-// &bevent);
- }
-
- }
- return retval;
-}*/
+}
+
static void menu_item_style_set (GtkImage *image,
gpointer data)
@@ -614,76 +486,6 @@
}
-
-void drag_begin_menu_cb (GtkWidget *widget, GdkDragContext *context)
-{
- /* FIXME: workaround for a possible gtk+ bug
- * See bugs #92085(gtk+) and #91184(panel) for details.
- * Maybe it's not needed with GtkTooltip?
- */
- g_object_set (widget, "has-tooltip", FALSE, NULL);
-}
-
-/* This is a _horrible_ hack to have this here. This needs to be added to the
- * GTK+ menuing code in some manner.
- */
-void drag_end_menu_cb (GtkWidget *widget, GdkDragContext *context)
-{
- /**GtkWidget *xgrab_shell;
- GtkWidget *parent;
-
- // Find the last viewable ancestor, and make an X grab on it
- parent = widget->parent;
- xgrab_shell = NULL;
-
- // FIXME: workaround for a possible gtk+ bug
- // See bugs #92085(gtk+) and #91184(panel) for details.
- g_object_set (widget, "has-tooltip", TRUE, NULL);
-
- while (parent)
- {
- gboolean viewable = TRUE;
- GtkWidget *tmp = parent;
-
- while (tmp)
- {
- if (!GTK_WIDGET_MAPPED (tmp))
- {
- viewable = FALSE;
- break;
- }
- tmp = tmp->parent;
- }
-
- if (viewable)
- xgrab_shell = parent;
-
- parent = GTK_MENU_SHELL (parent)->parent_menu_shell;
- }
-
- if (xgrab_shell && !GTK_MENU(xgrab_shell)->torn_off)
- {
- GdkCursor *cursor = gdk_cursor_new (GDK_ARROW);
-
- if ((gdk_pointer_grab (xgrab_shell->window, TRUE,
- GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK |
- GDK_ENTER_NOTIFY_MASK | GDK_LEAVE_NOTIFY_MASK |
- GDK_POINTER_MOTION_MASK,
- NULL, cursor, GDK_CURRENT_TIME) == 0))
- {
- if (gdk_keyboard_grab (xgrab_shell->window, TRUE,
- GDK_CURRENT_TIME) == 0)
- GTK_MENU_SHELL (xgrab_shell)->have_xgrab = TRUE;
- else
- {
- gdk_pointer_ungrab (GDK_CURRENT_TIME);
- }
- }
-
- gdk_cursor_unref (cursor);
- }*/
-}
-
void drag_data_get_menu_cb (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection_data,
@@ -705,12 +507,3 @@
strlen (uri_list));
g_free (uri_list);
}
-
-/*gboolean menuitem_button_press_event (GtkWidget *menuitem,
- GdkEventButton *event)
-{
- if (event->button == 3)
- return show_item_menu (menuitem, event);
-
- return FALSE;
-}*/
=== modified file 'GMenu/src/applet-menu-callbacks.h'
--- GMenu/src/applet-menu-callbacks.h 2009-10-05 19:27:17 +0000
+++ GMenu/src/applet-menu-callbacks.h 2012-06-19 14:00:32 +0000
@@ -32,8 +32,6 @@
void remove_gmenu_tree_monitor (GtkWidget *menu,
GMenuTree *tree);
-gboolean menu_dummy_button_press_event (GtkWidget *menuitem,
- GdkEventButton *event);
void remove_submenu_to_display_idle (gpointer data);
gboolean submenu_to_display_in_idle (gpointer data);
@@ -52,10 +50,6 @@
void activate_app_def (GtkWidget *menuitem,
GMenuTreeEntry *entry);
-void drag_begin_menu_cb (GtkWidget *widget, GdkDragContext *context);
-
-void drag_end_menu_cb (GtkWidget *widget, GdkDragContext *context);
-
void drag_data_get_menu_cb (GtkWidget *widget,
GdkDragContext *context,
GtkSelectionData *selection_data,
=== modified file 'GMenu/src/applet-menu.c'
--- GMenu/src/applet-menu.c 2012-03-21 11:26:14 +0000
+++ GMenu/src/applet-menu.c 2012-06-19 14:00:32 +0000
@@ -64,17 +64,11 @@
submenu_to_display_in_idle,
menu,
NULL);
- if (myData.iSidFakeMenuIdle != 0)
- g_source_remove (myData.iSidFakeMenuIdle);
- myData.iSidFakeMenuIdle = idle_id;
g_object_set_data_full (G_OBJECT (menu),
"panel-menu-idle-id",
GUINT_TO_POINTER (idle_id),
remove_submenu_to_display_idle);
- g_signal_connect (menu, "button_press_event",
- G_CALLBACK (menu_dummy_button_press_event), NULL);
-
return menu;
}
@@ -252,7 +246,8 @@
image = gtk_image_new ();
///image->requisition.width = icon_height;
///image->requisition.height = icon_height;
-
+ gtk_widget_set_size_request (image, icon_height, icon_height);
+
/* this takes over the floating ref */
icon->pixmap = g_object_ref (G_OBJECT (image));
g_object_ref_sink (G_OBJECT (image));
@@ -275,11 +270,7 @@
if (myConfig.bHasIcons)
{
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (
- GTK_IMAGE_MENU_ITEM (image_menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (
+ _gtk_image_menu_item_set_image (
GTK_IMAGE_MENU_ITEM (image_menu_item), image);
}
@@ -423,12 +414,12 @@
}
}
- g_signal_connect (G_OBJECT (menuitem), "drag_begin",
- G_CALLBACK (drag_begin_menu_cb), NULL);
+ ///g_signal_connect (G_OBJECT (menuitem), "drag_begin",
+ /// G_CALLBACK (drag_begin_menu_cb), NULL);
g_signal_connect (menuitem, "drag_data_get",
G_CALLBACK (drag_data_get_menu_cb), entry);
- g_signal_connect (menuitem, "drag_end",
- G_CALLBACK (drag_end_menu_cb), NULL);
+ ///g_signal_connect (menuitem, "drag_end",
+ /// G_CALLBACK (drag_end_menu_cb), NULL);
}
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menuitem);
@@ -521,11 +512,7 @@
gtk_widget_show (image);
if (myConfig.bHasIcons)
{
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (
- GTK_IMAGE_MENU_ITEM (menuitem), TRUE);
-#endif
- gtk_image_menu_item_set_image (
+ _gtk_image_menu_item_set_image (
GTK_IMAGE_MENU_ITEM (menuitem), image);
}
} else if (icon_size != GTK_ICON_SIZE_INVALID)
@@ -600,7 +587,7 @@
reload_image_menu_items ();
}
-GtkWidget * panel_create_menu (void)
+static inline GtkWidget * panel_create_menu (void)
{
GtkWidget *retval;
static gboolean registered_icon_theme_changer = FALSE;
@@ -614,14 +601,6 @@
retval = gtk_menu_new ();
- /*panel_gconf_notify_add_while_alive ("/desktop/gnome/interface/menus_have_icons",
- (GConfClientNotifyFunc) menus_have_icons_changed,
- G_OBJECT (retval));*/
-
- /*g_signal_connect (retval, "key_press_event",
- G_CALLBACK (panel_menu_key_press_handler),
- NULL);*/
-
return retval;
}
GtkWidget * create_empty_menu (void)
@@ -630,13 +609,6 @@
retval = panel_create_menu ();
- //g_signal_connect (retval, "show", G_CALLBACK (setup_menu_panel), NULL);
-
- /* intercept all right button clicks makes sure they don't
- go to the object itself */
- g_signal_connect (retval, "button_press_event",
- G_CALLBACK (menu_dummy_button_press_event), NULL);
-
return retval;
}
@@ -672,7 +644,8 @@
g_object_set_data (G_OBJECT (menu),
"panel-menu-needs-loading",
GUINT_TO_POINTER (TRUE));
-
+
+ // load the menu in idle, and force the loading if it's shown before.
g_signal_connect (menu, "show",
G_CALLBACK (submenu_to_display), NULL);
@@ -680,17 +653,11 @@
submenu_to_display_in_idle,
menu,
NULL);
- if (myData.iSidCreateMenuIdle != 0)
- g_source_remove (myData.iSidCreateMenuIdle);
- myData.iSidCreateMenuIdle = idle_id;
g_object_set_data_full (G_OBJECT (menu),
"panel-menu-idle-id",
GUINT_TO_POINTER (idle_id),
remove_submenu_to_display_idle);
- g_signal_connect (menu, "button_press_event",
- G_CALLBACK (menu_dummy_button_press_event), NULL);
-
gmenu_tree_add_monitor (tree,
(GMenuTreeChangedFunc) handle_gmenu_tree_changed,
menu);
=== modified file 'GMenu/src/applet-recent.c'
--- GMenu/src/applet-recent.c 2012-03-21 11:26:14 +0000
+++ GMenu/src/applet-recent.c 2012-06-19 14:00:32 +0000
@@ -62,10 +62,7 @@
GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file_at_size (cIconPath, myData.iPanelDefaultMenuIconSize, myData.iPanelDefaultMenuIconSize, NULL);
GtkWidget *image = gtk_image_new_from_pixbuf (pixbuf);
g_object_unref (pixbuf);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (pMenuItem), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
gtk_menu_shell_append (GTK_MENU_SHELL (top_menu), pMenuItem);
gtk_widget_show_all (pMenuItem);
myData.pRecentMenuItem = pMenuItem;
@@ -80,9 +77,6 @@
}
//\_____________ les signaux
- g_signal_connect (G_OBJECT (recent_menu), "button_press_event",
- G_CALLBACK (menu_dummy_button_press_event), NULL); // utile ?
-
g_signal_connect (GTK_RECENT_CHOOSER (recent_menu),
"item-activated",
G_CALLBACK (recent_documents_activate_cb),
=== modified file 'GMenu/src/applet-struct.h'
--- GMenu/src/applet-struct.h 2012-03-21 11:26:14 +0000
+++ GMenu/src/applet-struct.h 2012-06-19 14:00:32 +0000
@@ -68,19 +68,17 @@
//\___________ structure containing the applet's data, like surfaces, dialogs, results of calculus, etc.
struct _AppletData {
+ // menu
GtkWidget *pMenu;
- CairoDialog *pQuickLaunchDialog;
gboolean bIconsLoaded;
CDGMenuShowQuit iShowQuit;
- guint iSidFakeMenuIdle;
- guint iSidCreateMenuIdle;
- guint iSidTreeChangeIdle;
gint iPanelDefaultMenuIconSize;
-
+ // recent files sub-menu
GtkRecentManager *pRecentManager;
GtkWidget *pRecentMenuItem;
GtkRecentFilter *pRecentFilter;
-
+ // quick-launcher
+ CairoDialog *pQuickLaunchDialog;
GHashTable *dir_hash;
GList *possible_executables;
GList *completion_items;
=== modified file 'Messaging-Menu/src/applet-menu.c'
--- Messaging-Menu/src/applet-menu.c 2012-04-16 16:47:20 +0000
+++ Messaging-Menu/src/applet-menu.c 2012-06-19 14:00:32 +0000
@@ -294,9 +294,6 @@
#endif
GtkMenuItem * gmi = GTK_MENU_ITEM(gtk_image_menu_item_new());
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image(GTK_IMAGE_MENU_ITEM(gmi), TRUE);
-#endif
gint padding = 4;
gtk_widget_style_get(GTK_WIDGET(gmi), "toggle-spacing", &padding, NULL);
=== modified file 'Recent-Events/src/applet-notifications.c'
--- Recent-Events/src/applet-notifications.c 2012-03-21 11:26:14 +0000
+++ Recent-Events/src/applet-notifications.c 2012-06-19 14:00:32 +0000
@@ -107,6 +107,7 @@
int iVolumeID;
gboolean bIsDirectory;
gint iDesiredIconSize = cairo_dock_search_icon_size (GTK_ICON_SIZE_LARGE_TOOLBAR); // 24px
+ GHashTable *pHashTable = g_hash_table_new_full (g_str_hash, g_str_equal, NULL, NULL); // used to prevent doubles
CD_APPLET_ADD_SEPARATOR_IN_MENU (s_pMenu);
@@ -119,12 +120,28 @@
{
subject = zeitgeist_event_get_subject (event, i);
cEventURI = zeitgeist_subject_get_uri (subject);
+ if (g_hash_table_lookup_extended (pHashTable, cEventURI, NULL, NULL))
+ continue;
cd_debug (" + %s", cEventURI);
+
+
+ gchar *cPath = g_filename_from_uri (cEventURI, NULL, NULL);
+
+ // check it's a file and if yes, if it exists
+ if (strncmp (cEventURI, "file://", 7) == 0 && ! g_file_test (cPath, G_FILE_TEST_EXISTS))
+ {
+ /*
+ * If it doesn't exist, we don't add it in the menu
+ * (we can set the widget as insensitive but why?
+ * If we add it, it's just an useless entry)
+ */
+ g_free (cPath);
+ continue;
+ }
cairo_dock_fm_get_file_info (cEventURI, &cName, &cURI, &cIconName, &bIsDirectory, &iVolumeID, &fOrder, 0);
- gchar *cPath = g_filename_from_uri (cEventURI, NULL, NULL); // some programs dont support URI, so we feed them with path.
- cCommand = g_strdup_printf ("%s \"%s\"", pIcon->cCommand, cPath);
+ cCommand = g_strdup_printf ("%s \"%s\"", pIcon->cCommand, cPath); // some programs don't support URI, so we feed them with path.
g_free (cPath);
s_pEventList = g_list_prepend (s_pEventList, cCommand);
@@ -137,8 +154,12 @@
cName = NULL;
g_free (cURI);
cURI = NULL;
+
+ g_hash_table_insert (pHashTable, (gchar*)cEventURI, NULL); // cEventURI stays valid in this function.
}
}
+ g_hash_table_destroy (pHashTable);
+
if (pSubMenu)
{
gtk_widget_show_all (pSubMenu); // sinon des fois il n'apparait pas au 1er survol de son entree.
=== modified file 'Remote-Control/src/applet-notifications.c'
--- Remote-Control/src/applet-notifications.c 2012-04-16 16:47:20 +0000
+++ Remote-Control/src/applet-notifications.c 2012-06-19 14:00:32 +0000
@@ -265,7 +265,6 @@
cairo_dock_stop_icon_animation (myData.pCurrentIcon); // car on va perdre le focus.
myData.bIgnoreIconState = FALSE;
- myData.pCurrentDock->bMenuVisible = TRUE;
GtkWidget *menu = cairo_dock_build_menu (myData.pCurrentIcon, CAIRO_CONTAINER (myData.pCurrentDock));
cairo_dock_popup_menu_on_icon (menu, myData.pCurrentIcon, CAIRO_CONTAINER (myData.pCurrentDock));
}
=== modified file 'Status-Notifier/src/applet-item.c'
--- Status-Notifier/src/applet-item.c 2012-04-16 16:47:20 +0000
+++ Status-Notifier/src/applet-item.c 2012-06-19 14:00:32 +0000
@@ -357,6 +357,45 @@
return cIconPath;
}
+static void _cd_cclosure_marshal_VOID__STRING_STRING (GClosure *closure,
+ GValue *return_value G_GNUC_UNUSED,
+ guint n_param_values,
+ const GValue *param_values,
+ gpointer invocation_hint G_GNUC_UNUSED,
+ gpointer marshal_data)
+{
+ typedef void (*GMarshalFunc_VOID__STRING_STRING) (
+ gpointer data1,
+ gchar *arg_1,
+ gchar *arg_2,
+ gpointer data2);
+ register GMarshalFunc_VOID__STRING_STRING callback;
+ register GCClosure *cc = (GCClosure*) closure;
+ register gpointer data1, data2;
+ g_return_if_fail (n_param_values == 3); // return_value est NULL ici, car la callback ne renvoit rien.
+
+ if (G_CCLOSURE_SWAP_DATA (closure))
+ {
+ data1 = closure->data;
+ data2 = g_value_peek_pointer (param_values + 0);
+ }
+ else
+ {
+ data1 = g_value_peek_pointer (param_values + 0);
+ data2 = closure->data;
+ }
+ callback = (GMarshalFunc_VOID__STRING_STRING) (marshal_data ? marshal_data : cc->callback);
+
+ g_return_if_fail (callback != NULL);
+ g_return_if_fail (G_VALUE_HOLDS_STRING (param_values + 1));
+ g_return_if_fail (G_VALUE_HOLDS_STRING (param_values + 2));
+
+ callback (data1,
+ (char*) g_value_get_string (param_values + 1),
+ (char*) g_value_get_string (param_values + 2),
+ data2);
+}
+
CDStatusNotifierItem *cd_satus_notifier_create_item (const gchar *cService, const gchar *cObjectPath)
{
g_return_val_if_fail (cService != NULL, NULL);
@@ -598,6 +637,8 @@
G_CALLBACK(on_new_item_attention_icon), pItem, NULL);
// signals supported by Ubuntu.
+ dbus_g_object_register_marshaller(_cd_cclosure_marshal_VOID__STRING_STRING,
+ G_TYPE_NONE, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID);
dbus_g_proxy_add_signal(pProxyItem, "XAyatanaNewLabel",
G_TYPE_STRING, G_TYPE_STRING, G_TYPE_INVALID);
dbus_g_proxy_connect_signal(pProxyItem, "XAyatanaNewLabel",
=== modified file 'alsaMixer/data/AlsaMixer.conf.in'
--- alsaMixer/data/AlsaMixer.conf.in 2012-04-16 16:47:20 +0000
+++ alsaMixer/data/AlsaMixer.conf.in 2012-06-19 14:00:32 +0000
@@ -114,7 +114,7 @@
#k Shortkey to show/hide the sound control dialog:
shortkey = <Control>F3
-#i[1;20] Variation for 1 mouse scroll, in %:
+#i[2;20] Variation for 1 mouse scroll, in %:
scroll variation = 5
#b Hide the scale when mouse leaves the desklet?
@@ -145,7 +145,7 @@
theme = Sound-Mono
#l+[No;With dock orientation;Yes] Rotate applet theme :
-rotate theme = No
+rotate theme = 0
#v
sep_disp =
=== modified file 'alsaMixer/src/applet-notifications.c'
--- alsaMixer/src/applet-notifications.c 2012-03-21 11:26:14 +0000
+++ alsaMixer/src/applet-notifications.c 2012-06-19 14:00:32 +0000
@@ -27,11 +27,26 @@
#include "applet-notifications.h"
static const gchar *s_cMixerCmd = NULL;
+static gboolean bMixerChecked = FALSE;
CD_APPLET_ON_CLICK_BEGIN
cd_show_hide ();
CD_APPLET_ON_CLICK_END
+static void _check_mixer_cmd (void)
+{
+ gchar *cResult = cairo_dock_launch_command_sync ("which gnome-control-center"); // Gnome3
+ if (cResult != NULL && *cResult == '/')
+ s_cMixerCmd = "gnome-control-center sound";
+ else
+ {
+ g_free (cResult);
+ cResult = cairo_dock_launch_command_sync ("which gnome-volume-control"); // Gnome2
+ if (cResult != NULL && *cResult == '/') /// TODO: other DE...
+ s_cMixerCmd = "gnome-volume-control -p applications";
+ } /// TODO: handle other DE ...
+ g_free (cResult);
+}
static void _mixer_show_advanced_mixer (GtkMenuItem *menu_item, gpointer data)
{
@@ -54,25 +69,12 @@
CD_APPLET_LEAVE();
}
CD_APPLET_ON_BUILD_MENU_BEGIN
- static gboolean bMixerChecked = FALSE;
gchar *cLabel;
if (!myConfig.cShowAdvancedMixerCommand && !bMixerChecked)
{
bMixerChecked = TRUE;
- gchar *cResult = cairo_dock_launch_command_sync ("which gnome-control-center"); // Gnome3
- if (cResult != NULL && *cResult == '/')
- {
- s_cMixerCmd = "gnome-control-center sound";
- }
- else
- {
- g_free (cResult);
- cResult = cairo_dock_launch_command_sync ("which gnome-volume-control"); // Gnome2
- if (cResult != NULL && *cResult == '/') /// TODO: other DE...
- s_cMixerCmd = "gnome-volume-control -p applications";
- } /// TODO: handle other DE ...
- g_free (cResult);
+ _check_mixer_cmd ();
}
if (myConfig.cShowAdvancedMixerCommand || s_cMixerCmd)
@@ -94,6 +96,11 @@
CD_APPLET_ON_DOUBLE_CLICK_BEGIN
+ if (!myConfig.cShowAdvancedMixerCommand && !bMixerChecked)
+ {
+ bMixerChecked = TRUE;
+ _check_mixer_cmd (); // looking for s_cMixerCmd
+ }
_mixer_show_advanced_mixer (NULL, NULL);
CD_APPLET_ON_DOUBLE_CLICK_END
=== modified file 'clock/data/clock.conf.in'
--- clock/data/clock.conf.in 2012-03-21 11:26:14 +0000
+++ clock/data/clock.conf.in 2012-06-19 14:00:32 +0000
@@ -158,7 +158,14 @@
font = Sans 16
#C+ Text colour:
-text color = 0.0; 0.0; 0.5; 1.
+text color = 0.85; 0.85; 0.85; 1.
+
+#i+[0;10] Outline thickness:
+#{Set to 0 to not have it}
+outline width = 0
+
+#C+ Outline colour:
+outline color = 0.85; 0.85; 0.85; 1.
#l+[Automatic;On 1 line;On 2 lines] Layout of the text:
text layout = 0
=== modified file 'clock/src/applet-config.c'
--- clock/src/applet-config.c 2012-03-21 11:26:14 +0000
+++ clock/src/applet-config.c 2012-06-19 14:00:32 +0000
@@ -66,15 +66,18 @@
myConfig.bOldStyle = (iStyle == 0);
}
- double couleur[4] = {0., 0., 0.5, 1.};
if (myConfig.bOldStyle)
{
+ double colour[4] = {0., 0., 0., 1.};
myConfig.cThemePath = CD_CONFIG_GET_THEME_PATH ("Configuration", "theme", "themes", "glassy");
- CD_CONFIG_GET_COLOR_WITH_DEFAULT ("Configuration", "date color", myConfig.fDateColor, couleur);
+ CD_CONFIG_GET_COLOR_WITH_DEFAULT ("Configuration", "date color", myConfig.fDateColor, colour);
}
else
{
- CD_CONFIG_GET_COLOR_WITH_DEFAULT ("Configuration", "text color", myConfig.fTextColor, couleur);
+ double colour[4] = {0.85, 0.85, 0.85, 1.};
+ CD_CONFIG_GET_COLOR_WITH_DEFAULT ("Configuration", "text color", myConfig.fTextColor, colour);
+ CD_CONFIG_GET_COLOR_WITH_DEFAULT ("Configuration", "outline color", myConfig.fOutlineColor, colour);
+ myConfig.iOutlineWidth = CD_CONFIG_GET_INTEGER ("Configuration", "outline width");
gboolean bCustomFont = CD_CONFIG_GET_BOOLEAN_WITH_DEFAULT ("Configuration", "custom font", FALSE); // false by default
if (bCustomFont)
=== modified file 'clock/src/applet-draw.c'
--- clock/src/applet-draw.c 2012-04-16 16:47:20 +0000
+++ clock/src/applet-draw.c 2012-06-19 14:00:32 +0000
@@ -31,7 +31,22 @@
#define GAPX .12
#define GAPY .02
-#define MAX_RATIO 2.
+///#define MAX_RATIO 2.
+#define MIN_TEXT_HEIGHT 12. // the text should be at least 12 pixels height, or it would be hard to read for a lot of people.
+
+static void _outlined_pango_cairo (CairoDockModuleInstance *myApplet, PangoLayout *pLayout)
+{
+ cairo_save (myDrawContext);
+ cairo_set_source_rgba (myDrawContext,
+ myConfig.fOutlineColor[0],
+ myConfig.fOutlineColor[1],
+ myConfig.fOutlineColor[2],
+ myConfig.fOutlineColor[3]);
+ cairo_set_line_width (myDrawContext, myConfig.iOutlineWidth);
+ pango_cairo_layout_path (myDrawContext, pLayout);
+ cairo_stroke (myDrawContext);
+ cairo_restore (myDrawContext);
+}
void cd_clock_draw_text (CairoDockModuleInstance *myApplet, int iWidth, int iHeight, struct tm *pTime)
{
@@ -77,6 +92,11 @@
pango_layout_set_text (pLayout, s_cDateBuffer, -1);
PangoRectangle log;
pango_layout_get_pixel_extents (pLayout, NULL, &log);
+ if (myConfig.iOutlineWidth)
+ {
+ log.width += myConfig.iOutlineWidth / 2;
+ log.height += myConfig.iOutlineWidth / 2;
+ }
//\______________ On dessine le texte.
cairo_save (myDrawContext);
@@ -89,6 +109,11 @@
pango_layout_set_text (pLayout2, s_cDateBuffer, -1);
PangoRectangle log2;
pango_layout_get_pixel_extents (pLayout2, NULL, &log2);
+ if (myConfig.iOutlineWidth)
+ {
+ log2.width += myConfig.iOutlineWidth / 2;
+ log2.height += myConfig.iOutlineWidth / 2;
+ }
double h=0, w=0, fZoomX=0, fZoomY=0; // parametres d'affichage 2 lignes
double h_=0, w_=0, fZoomX_=0, fZoomY_=0; // parametres d'affichage 1 ligne
@@ -103,9 +128,11 @@
if (myConfig.fTextRatio < 1)
fZoomY *= myConfig.fTextRatio;*/
- // keep the ratio of the text
+ // keep the ratio of the text, until 12px height.
fZoomX = MIN (fZoomX, fZoomY) * myConfig.fTextRatio;
fZoomY = fZoomX;
+ if (fZoomY * h < MIN_TEXT_HEIGHT)
+ fZoomY = MIN_TEXT_HEIGHT / h;
}
if (myData.iTextLayout == CD_TEXT_LAYOUT_1_LINE || myData.iTextLayout == CD_TEXT_LAYOUT_AUTO)
{
@@ -124,9 +151,11 @@
double fMaxScale = cairo_dock_get_icon_max_scale (myIcon);
fZoomY_ = MAX (fZoomX_, 16. * fMaxScale / h_); // en mode horizontal, on n'a pas besoin que le texte remplisse toute la hauteur de l'icone. 16 pixels de haut sont suffisant pour etre lisible.
}*/
- // keep the ratio of the text
+ // keep the ratio of the text, until 12px height.
fZoomX_ = MIN (fZoomX_, fZoomY_) * myConfig.fTextRatio;
fZoomY_ = fZoomX_;
+ if (fZoomY_ * h_ < MIN_TEXT_HEIGHT)
+ fZoomY_ = MIN_TEXT_HEIGHT / h_;
}
if (myData.iTextLayout == CD_TEXT_LAYOUT_AUTO) // si l'orientation n'est pas encore definie, on la definit de facon a ne pas changer (si on est tres proche de la limite, la taille du texte pourrait changer suffisamment pour nous faire passer d'une orientation a l'autre.
@@ -139,10 +168,12 @@
myData.iTextLayout = CD_TEXT_LAYOUT_1_LINE;
}
- if (myData.iTextLayout == CD_TEXT_LAYOUT_1_LINE) // mode 1 ligne
+ if (myData.iTextLayout == CD_TEXT_LAYOUT_1_LINE) // mode 1 line
{
cairo_translate (myDrawContext, (iWidth - fZoomX_ * w_) / 2, (iHeight - fZoomY_ * h_)/2); // text will be centred.
cairo_scale (myDrawContext, fZoomX_, fZoomY_);
+ if (myConfig.iOutlineWidth)
+ _outlined_pango_cairo (myApplet, pLayout2);
pango_cairo_show_layout (myDrawContext, pLayout2);
cairo_restore (myDrawContext);
@@ -150,12 +181,16 @@
cairo_translate (myDrawContext, (iWidth + fZoomX_ * w_) / 2 - fZoomX_ * log.width, (iHeight - fZoomY_ * h_)/2);
cairo_scale (myDrawContext, fZoomX_, fZoomY_);
+ if (myConfig.iOutlineWidth)
+ _outlined_pango_cairo (myApplet, pLayout);
pango_cairo_show_layout (myDrawContext, pLayout);
}
- else // mode 2 lignes
+ else // mode 2 lines
{
cairo_translate (myDrawContext, (iWidth - fZoomX * log.width) / 2, (iHeight - fZoomY * h)/2); // text will be centred.
cairo_scale (myDrawContext, fZoomX, fZoomY);
+ if (myConfig.iOutlineWidth)
+ _outlined_pango_cairo (myApplet, pLayout);
pango_cairo_show_layout (myDrawContext, pLayout);
cairo_restore (myDrawContext);
@@ -163,6 +198,8 @@
cairo_translate (myDrawContext, (iWidth - fZoomX * log2.width) / 2, (iHeight + fZoomY * GAPY)/2);
cairo_scale (myDrawContext, fZoomX, fZoomY);
+ if (myConfig.iOutlineWidth)
+ _outlined_pango_cairo (myApplet, pLayout2);
pango_cairo_show_layout (myDrawContext, pLayout2);
}
g_object_unref (pLayout2);
@@ -176,14 +213,18 @@
if (myConfig.fTextRatio < 1)
fZoomY *= myConfig.fTextRatio;*/
- // keep the ratio of the text
+ // keep the ratio of the text, until 12px height.
fZoomX = MIN (fZoomX, fZoomY) * myConfig.fTextRatio;
fZoomY = fZoomX;
+ if (fZoomY * log.height < MIN_TEXT_HEIGHT)
+ fZoomY = MIN_TEXT_HEIGHT / log.height;
cairo_translate (myDrawContext,
(iWidth - fZoomX * log.width)/2,
(iHeight - fZoomY * log.height)/2); // text will be centred.
cairo_scale (myDrawContext, fZoomX, fZoomY);
+ if (myConfig.iOutlineWidth)
+ _outlined_pango_cairo (myApplet, pLayout);
pango_cairo_show_layout (myDrawContext, pLayout);
}
cairo_restore (myDrawContext);
=== modified file 'clock/src/applet-struct.h'
--- clock/src/applet-struct.h 2012-04-16 16:47:20 +0000
+++ clock/src/applet-struct.h 2012-06-19 14:00:32 +0000
@@ -147,6 +147,8 @@
gboolean b24Mode;
CDClockTextLayout iPreferedTextLayout;
double fTextColor[4];
+ double fOutlineColor[4];
+ gint iOutlineWidth;
double fDateColor[4];
gchar *cThemePath;
gchar *cNumericBackgroundImage;
=== modified file 'clock/src/applet-timer.c'
--- clock/src/applet-timer.c 2012-03-21 11:26:14 +0000
+++ clock/src/applet-timer.c 2012-06-19 14:00:32 +0000
@@ -277,8 +277,6 @@
fScale,
iWidth,
&myData.iDateWidth, &myData.iDateHeight);
- myData.iDateWidth *= fScale;
- myData.iDateHeight *= fScale;
//g_print ("date : %dx%d\n", myData.iDateWidth, myData.iDateHeight);
myData.iDateTexture = cairo_dock_create_texture_from_surface (pDateSurface);
cairo_surface_destroy (pDateSurface);
=== modified file 'debian/changelog'
--- debian/changelog 2012-04-19 00:46:48 +0000
+++ debian/changelog 2012-06-19 14:00:32 +0000
@@ -1,3 +1,63 @@
+cairo-dock-plug-ins (3.0.2-0ubuntu1) UNRELEASED; urgency=low
+
+ * New upstream bug-fix release. (LP: #1014804)
+ * Upstream ChangeLog (3.0.0 -> 3.0.1):
+ - Gnome-integration: fixed the time&date command
+ - KDE integration: fixed the time&date command
+ - Updated previews of dustbin and logout with the new version
+ - Updated the version of applets that can be always visible
+ (for the new parameters)
+ - Clock: numeric view: increased the size of the rectangle if an
+ outline is used and modified the default colour
+ - Clock: Now with the possibility to have an outline with the digital view
+ to see when we don't use any background
+ - Used the core option to not force the display of icons in menus
+ - Minor fixes in Sound Control's .conf file
+ - MusicPlayer: mpris2: metadata: trackid attribute should be of D-Bus
+ type 'o'
+ - Switcher: fixed a possible crash (division by 0) if the X manager
+ couldn't get info from X + removed bMenuVisible
+ - Clock: analogic mode: fixed a bug where the date was not displayed
+ correctly (with opengl)
+ - Clock: numeric mode: set a minimum size for the text: we keep the
+ ratio until 12px (under 12px, it's hard to read)
+ - Logout: added a fallback method to get the users list if the accounts
+ daemon service is not running
+ - CMakeLists.txt: fixed a CMake warning (or error?)
+ * Upstream ChangeLog (3.0.1 -> 3.0.2):
+ - AlsaMixer: Fix: double-clicking did nothing if we didn't open the menu
+ of the applet
+ - DND2Share: Pastebin: Their public API is no longer available -> ported
+ to the new API
+ - GMenu: Fixed a bug that made sub-menus be too small,
+ and therefore have to be scrolled + code cleaning
+ - Logout: When the menu is reversed (top dock), select the last item so
+ that it's the same as the normal menu (ie, the 'shutdown' item)
+ - MusicPlayer: Prevented a warning message: when changing song, we don't
+ receive this value: Position (no need to display a warning each time)
+ - MusicPlayer: Allow recently played files in the menu (Recent-Files)
+ - MusicPlayer: Fixed a bug that prevented the player from being launched
+ the 2nd time in some cases
+ - MusicPlayer: Added raise and quit methods in the menu when the player is
+ in the systray (without that it's hard to display the window
+ - MusicPlayer: Used toggle buttons for Shuffle and Repeat properties
+ - Recent-Events: If the file doesn't exist, don't display it in the
+ 'Recent Files' menu
+ - Recent-Events: Prevent doubles in the menu list
+ - Po: Updated translations (added Croatian)
+ - Shortcuts: Fixed a small bug with bookmarks (extra new lines were
+ disrupting Thunar)
+ - Status-Notifier: Added the marshaller for the XAyatanaNewLabel signal
+ - Systray (old): Force the icons size to 24px, to avoid buggy programs to
+ display their icon with a wrong size
+ - Third-party applets: Reposition their right-click menu, so that it's the
+ same as a normal menu (on top of the icon and no scroll needed)
+ * debian/control:
+ - Bumped libgldi-dev version to avoid compilation error
+ (cmake check if libgldi has the same version than this package)
+
+ -- Matthieu Baerts (matttbe) <matttbe@xxxxxxxxx> Mon, 18 Jun 2012 20:03:47 +0200
+
cairo-dock-plug-ins (3.0.0.1-0ubuntu2) precise; urgency=low
* debian/control:
=== modified file 'debian/control'
--- debian/control 2012-04-18 20:16:59 +0000
+++ debian/control 2012-06-19 14:00:32 +0000
@@ -17,7 +17,7 @@
libgl1-mesa-dev | libgl-dev,
libglu1-mesa-dev | libglu-dev,
libpango1.0-dev,
- libgldi-dev (>= 3.0.0.1),
+ libgldi-dev (>= 3.0.2),
libasound2-dev,
libvte-2.90-dev,
x11proto-xf86vidmode-dev,
=== modified file 'dnd2share/src/applet-backend-pastebin.c'
--- dnd2share/src/applet-backend-pastebin.c 2011-04-20 20:46:51 +0000
+++ dnd2share/src/applet-backend-pastebin.c 2012-06-19 14:00:32 +0000
@@ -28,9 +28,11 @@
#include "applet-dnd2share.h"
#include "applet-backend-pastebin.h"
-#define URL "http://pastebin.com/api_public.php"
+#define URL "http://pastebin.com/api/api_post.php"
#define FORMAT "text"
#define EXPIRE "1M"
+#define DEV_KEY "4dacb211338b25bfad20bc6d4358e555"
+#define OPTION "paste"
#define NB_URLS 1
static const gchar *s_UrlLabels[NB_URLS] = {"DirectLink"};
@@ -39,10 +41,16 @@
static void upload (const gchar *cText, gchar *cDropboxDir, gboolean bAnonymous, gint iLimitRate, gchar **cResultUrls)
{
GError *erreur = NULL;
+ // http://pastebin.com/api
gchar *cResult = cairo_dock_get_url_data_with_post (URL, FALSE, &erreur,
- "paste_code", cText,
- "paste_expire_date", EXPIRE,
- "paste_format", FORMAT,
+ "api_option", OPTION,
+ "api_user_key", "", // guest
+ "api_paste_private", bAnonymous ? "1" : "0", // unlisted or public
+ "api_paste_name", bAnonymous ? "" : g_getenv ("USER"),
+ "api_paste_expire_date", EXPIRE,
+ "api_paste_format", FORMAT, // auto?
+ "api_dev_key", DEV_KEY,
+ "api_paste_code", cText,
NULL);
if (erreur)
{
=== modified file 'dustbin/data/preview.jpg'
Binary files dustbin/data/preview.jpg 2010-04-20 01:52:21 +0000 and dustbin/data/preview.jpg 2012-06-19 14:00:32 +0000 differ
=== modified file 'gnome-integration/src/applet-utils.c'
--- gnome-integration/src/applet-utils.c 2012-03-21 11:26:14 +0000
+++ gnome-integration/src/applet-utils.c 2012-06-19 14:00:32 +0000
@@ -52,8 +52,29 @@
void env_backend_setup_time (void)
{
- cairo_dock_launch_command ("time-admin"); // it uses PolicyKit => no gksudo.
- /// TODO: use gnome-control-center ...
+ static gboolean bChecked = FALSE;
+ static const gchar *cCmd = NULL;
+ if (!bChecked)
+ {
+ bChecked = TRUE;
+ gchar *cResult = cairo_dock_launch_command_sync ("which gnome-control-center"); // Gnome3
+ if (cResult != NULL && *cResult == '/')
+ {
+ cCmd = "gnome-control-center datetime";
+ }
+ else
+ {
+ g_free (cResult);
+ cResult = cairo_dock_launch_command_sync ("which time-admin"); // Gnome2
+ if (cResult != NULL && *cResult == '/')
+ cCmd = "time-admin"; // it uses PolicyKit => no gksudo.
+ }
+ g_free (cResult);
+ }
+ if (cCmd)
+ cairo_dock_launch_command (cCmd);
+ else
+ cd_warning ("couldn't guess what program to use to setup the time and date.");
}
void env_backend_show_system_monitor (void)
=== modified file 'kde-integration/src/applet-utils.c'
--- kde-integration/src/applet-utils.c 2012-02-16 01:45:57 +0000
+++ kde-integration/src/applet-utils.c 2012-06-19 14:00:32 +0000
@@ -63,7 +63,7 @@
void env_backend_setup_time (void)
{
- cairo_dock_launch_command ("kcmshell kde-clock.desktop"); /// kdesu avant ?...
+ cairo_dock_launch_command ("kcmshell4 clock"); // from KDE4
}
void env_backend_show_system_monitor (void)
=== modified file 'logout/data/CMakeLists.txt'
--- logout/data/CMakeLists.txt 2011-08-09 18:08:08 +0000
+++ logout/data/CMakeLists.txt 2012-06-19 14:00:32 +0000
@@ -11,6 +11,7 @@
system-restart.svg
system-shutdown.svg
system-suspend.svg
+ preview.jpg
DESTINATION ${logoutdatadir})
install(FILES logout.sh
=== added file 'logout/data/preview.jpg'
Binary files logout/data/preview.jpg 1970-01-01 00:00:00 +0000 and logout/data/preview.jpg 2012-06-19 14:00:32 +0000 differ
=== modified file 'logout/src/CMakeLists.txt'
--- logout/src/CMakeLists.txt 2011-08-09 18:08:08 +0000
+++ logout/src/CMakeLists.txt 2012-06-19 14:00:32 +0000
@@ -13,7 +13,7 @@
########### compil ###############
add_definitions (-DMY_APPLET_SHARE_DATA_DIR="${logoutdatadir}")
-add_definitions (-DMY_APPLET_PREVIEW_FILE="icon.svg")
+add_definitions (-DMY_APPLET_PREVIEW_FILE="preview.jpg")
add_definitions (-DMY_APPLET_CONF_FILE="logout.conf")
add_definitions (-DMY_APPLET_USER_DATA_DIR="logout")
add_definitions (-DMY_APPLET_VERSION="${VERSION_LOGOUT}")
=== modified file 'logout/src/applet-logout.c'
--- logout/src/applet-logout.c 2012-03-21 11:26:14 +0000
+++ logout/src/applet-logout.c 2012-06-19 14:00:32 +0000
@@ -275,15 +275,17 @@
g_free (cImagePath);
}
- if ((myDock && myDock->container.bIsHorizontal && ! myDock->container.bDirectionUp) // on the top, we inverse the menu
+ if ((myDock && myDock->container.bIsHorizontal && ! myDock->container.bDirectionUp) // on the top, we inverse the menu (mainly to be close to what others do).
|| (myDesklet && myDesklet->container.iWindowPositionY < (g_desktopGeometry.iXScreenHeight[CAIRO_DOCK_HORIZONTAL] / 2)))
{
+ GList *children = gtk_container_get_children (GTK_CONTAINER (pMenu));
GList *pMenuList;
- for (pMenuList = gtk_container_get_children (GTK_CONTAINER (pMenu)); pMenuList != NULL; pMenuList = pMenuList->next)
+ for (pMenuList = children; pMenuList != NULL; pMenuList = pMenuList->next)
{
pMenuItem = pMenuList->data;
gtk_menu_reorder_child (GTK_MENU (pMenu), pMenuItem, 0);
}
+ g_list_free (children);
}
return pMenu;
@@ -291,9 +293,24 @@
static void _display_menu (void)
{
+ // build and show the menu
GtkWidget *pMenu = _build_menu ();
CD_APPLET_POPUP_MENU_ON_MY_ICON (pMenu);
- gtk_menu_shell_select_first (GTK_MENU_SHELL (pMenu), FALSE); // must be done here, after the menu has been realized.
+
+ // select the first (or last) item, which corresponds to the 'shutdown' action.
+ if ((myDock && myDock->container.bIsHorizontal && ! myDock->container.bDirectionUp) // on the top, we inverse the menu
+ || (myDesklet && myDesklet->container.iWindowPositionY < (g_desktopGeometry.iXScreenHeight[CAIRO_DOCK_HORIZONTAL] / 2)))
+ {
+ GList *children = gtk_container_get_children (GTK_CONTAINER (pMenu));
+ GList *last_child = g_list_last (children);
+ if (last_child)
+ gtk_menu_shell_select_item (GTK_MENU_SHELL (pMenu), last_child->data);
+ g_list_free (children);
+ }
+ else
+ {
+ gtk_menu_shell_select_first (GTK_MENU_SHELL (pMenu), FALSE); // must be done here, after the menu has been realized.
+ }
}
@@ -716,6 +733,51 @@
{
return strcmp (pUser1->cUserName, pUser2->cUserName);
}
+static GList* _get_users_list_fallback (void)
+{
+ // read from /etc/passwd
+ gchar *cContent=NULL;
+ gsize length = 0;
+ g_file_get_contents ("/etc/passwd",
+ &cContent,
+ &length,
+ NULL);
+ g_return_val_if_fail (cContent != NULL, NULL);
+
+ // parse eash user
+ gchar **cUsers = g_strsplit (cContent, "\n", 0);
+ GList *pUserList = NULL;
+ gchar **cUserProps;
+ CDUser *pUser;
+ char *str;
+ int uid, gid;
+ int i;
+ for (i = 0; cUsers[i] != NULL; i ++)
+ {
+ cUserProps = g_strsplit (cUsers[i], ":", 0);
+ // add the user if it fits
+ if (cUserProps && cUserProps[0] && cUserProps[1] && cUserProps[2] && cUserProps[3]
+ && atoi (cUserProps[2]) >= 1000 // heuristic: first user has an udi of 1000, and other users an uid >= 1000
+ && strcmp (cUserProps[0], "nobody") != 0) // remove the 'nobody' user (uid=65534)
+ {
+ pUser = g_new0 (CDUser, 1);
+ pUser->cUserName = g_strdup (cUserProps[0]);
+ pUser->cIconFile = NULL;
+ pUser->cRealName = g_strdup (cUserProps[4]);
+ if (pUser->cRealName)
+ {
+ str = strchr (pUser->cRealName, ',');
+ if (str) // remove the comments, separated by ','
+ *str = '\0';
+ }
+ pUserList = g_list_insert_sorted (pUserList, pUser, (GCompareFunc)_compare_user_name);
+ }
+ }
+
+ free (cContent);
+ g_strfreev (cUsers);
+ return pUserList;
+}
GList *cd_logout_get_users_list (void)
{
// get the list of users
@@ -733,12 +795,12 @@
if (error)
{
- cd_warning ("Accounts error: %s", error->message);
+ cd_warning ("Couldn't get info on the bus from org.freedesktop.Accounts (%s)\n-> Using a fallback method.", error->message);
g_error_free (error);
- return NULL;
+ return _get_users_list_fallback ();
}
if (users == NULL)
- return NULL;
+ return _get_users_list_fallback ();
// foreach user, get its properties (name & icon).
CDUser *pUser;
=== modified file 'musicPlayer/src/applet-init.c'
--- musicPlayer/src/applet-init.c 2012-02-16 01:45:57 +0000
+++ musicPlayer/src/applet-init.c 2012-06-19 14:00:32 +0000
@@ -153,6 +153,17 @@
// stop the current handler.
cd_musicplayer_stop_current_handler (TRUE);
+ MusicPlayerHandler *pHandler = cd_musicplayer_get_handler_by_name ("Mpris2"); // Mpris2 handler has dynamic fields, free them.
+ g_free ((gchar*)pHandler->launch);
+ pHandler->launch = NULL;
+ g_free ((gchar*)pHandler->appclass);
+ pHandler->appclass = NULL;
+ g_free ((gchar*)pHandler->cDisplayedName);
+ pHandler->cDisplayedName = NULL;
+ g_free ((gchar*)pHandler->cMprisService);
+ pHandler->cMprisService = NULL;
+
+
// On stoppe les boucles de recup de la pochette.
if (myData.iSidCheckCover != 0)
g_source_remove (myData.iSidCheckCover);
=== modified file 'musicPlayer/src/applet-mpris2.c'
--- musicPlayer/src/applet-mpris2.c 2012-02-16 01:45:57 +0000
+++ musicPlayer/src/applet-mpris2.c 2012-06-19 14:00:32 +0000
@@ -34,6 +34,8 @@
static DBusGProxyCall *s_pGetStatusCall = NULL;
static void cd_mpris2_getSongInfos_async (void);
+static gboolean cd_mpris2_is_loop (void);
+static gboolean cd_mpris2_is_shuffle (void);
/*
Interface MediaPlayer2
@@ -97,6 +99,74 @@
/////////////////////////////////
// Les Fonctions propres a MP. //
/////////////////////////////////
+static gboolean s_bIsLoop = FALSE;
+static gboolean s_bGotLoopStatus = FALSE;
+static gboolean s_bIsShuffle = FALSE;
+static gboolean s_bGotShuffleStatus = FALSE;
+static gboolean s_bCanRaise = FALSE;
+static gboolean s_bGotCanRaise = FALSE;
+static gboolean s_bCanQuit = FALSE;
+static gboolean s_bGotCanQuit = FALSE;
+
+static gboolean get_loop_status (void)
+{
+ if (! s_bGotLoopStatus)
+ {
+ s_bIsLoop = cd_mpris2_is_loop ();
+ s_bGotLoopStatus = TRUE;
+ }
+ return s_bIsLoop;
+}
+
+static gboolean get_shuffle_status (void)
+{
+ if (! s_bGotShuffleStatus)
+ {
+ s_bIsShuffle = cd_mpris2_is_shuffle ();
+ s_bGotShuffleStatus = TRUE;
+ }
+ return s_bIsShuffle;
+}
+
+static gboolean _raise (void)
+{
+ if (! s_bGotCanRaise)
+ {
+ s_bCanRaise = cairo_dock_dbus_get_property_as_boolean (myData.dbus_proxy_shell, "org.mpris.MediaPlayer2", "CanRaise");
+ cd_debug ("s_bCanRaise : %d", s_bCanRaise);
+ s_bGotCanRaise = TRUE;
+ }
+
+ if (s_bCanRaise)
+ {
+ cairo_dock_dbus_call (myData.dbus_proxy_shell, "Raise");
+ return TRUE;
+ }
+ else
+ {
+ return FALSE;
+ }
+}
+
+static gboolean _quit (void)
+{
+ if (! s_bGotCanQuit)
+ {
+ s_bCanQuit = cairo_dock_dbus_get_property_as_boolean (myData.dbus_proxy_shell, "org.mpris.MediaPlayer2", "CanQuit");
+ cd_debug ("s_bCanQuit : %d", s_bCanQuit);
+ s_bGotCanQuit = TRUE;
+ }
+
+ if (s_bCanQuit)
+ {
+ cairo_dock_dbus_call (myData.dbus_proxy_shell, "Quit");
+ return TRUE;
+ }
+ else
+ {
+ return FALSE;
+ }
+}
static MyPlayerStatus _extract_status (const gchar *cStatus)
{
@@ -183,9 +253,14 @@
{
myData.iCurrentTime = g_value_get_uint64 (&v) / 1e6;
}
+ else if (G_VALUE_HOLDS_STRING (&v)) // this is bad ! (gmusicbrowser v1.1.7)
+ {
+ myData.iCurrentTime = atoi (g_value_get_string (&v)) / 1e6;
+ }
else
{
- cd_warning ("wrong type for the 'Position' property, please report this bug to the %s team", myData.pCurrentHandler->appclass);
+ if (G_IS_VALUE(&v)) // when changing song, we don't receive this value => no need to display a warning message each time
+ cd_warning ("wrong type for the 'Position' property, please report this bug to the %s team", myData.pCurrentHandler->appclass);
myData.iCurrentTime = -1;
}
}
@@ -200,22 +275,31 @@
return cairo_dock_dbus_get_property_as_double (myData.dbus_proxy_player, "org.mpris.MediaPlayer2.Player", "Volume");
}
+static gboolean _is_a_new_track (const gchar *cTrackID)
+{
+ if (cairo_dock_strings_differ (myData.cTrackID, cTrackID)) // track has changed.
+ {
+ g_free (myData.cTrackID);
+ myData.cTrackID = g_strdup (cTrackID);
+ return TRUE;
+ }
+ return FALSE;
+}
+
static gboolean _extract_metadata (GHashTable *pMetadata)
{
gboolean bTrackHasChanged = FALSE;
GValue *v;
- const gchar *str;
+ const gchar *str = NULL;
- v = g_hash_table_lookup (pMetadata, "mpris:trackid"); // a string that uniquely identifies the track within the scope of the playlist
- if (v != NULL && G_VALUE_HOLDS_STRING (v))
+ v = g_hash_table_lookup (pMetadata, "mpris:trackid"); // a string or a dbus object path that uniquely identifies the track within the scope of the playlist
+ if (v != NULL)
{
- const gchar *cTrackID = g_value_get_string (v);
- if (cairo_dock_strings_differ (myData.cTrackID, cTrackID)) // track has changed.
- {
- g_free (myData.cTrackID);
- myData.cTrackID = g_strdup (cTrackID);
- bTrackHasChanged = TRUE;
- }
+ if (G_VALUE_HOLDS (v, DBUS_TYPE_G_OBJECT_PATH)) // now this attribute should be of D-Bus type "o"
+ str = (gchar*) g_value_get_boxed (v);
+ else if (G_VALUE_HOLDS_STRING (v)) // but can be a string... e.g. with Rhythmbox
+ str = g_value_get_string (v);
+ bTrackHasChanged = _is_a_new_track (str);
}
v = g_hash_table_lookup (pMetadata, "mpris:length"); // length of the track, in microseconds (signed 64-bit integer)
@@ -400,6 +484,23 @@
cd_musicplayer_update_icon ();
}
}
+
+ v = g_hash_table_lookup (pChangedProps, "LoopStatus");
+ if (v != NULL && G_VALUE_HOLDS_STRING (v)) // loop status has changed
+ {
+ const gchar *cStatus = g_value_get_string (v); // "Playlist", "None"
+ s_bIsLoop = (cStatus && strcmp (cStatus, "Playlist") == 0);
+ cd_debug ("LoopStatus: %s, %d", cStatus, s_bIsLoop);
+ s_bGotLoopStatus = TRUE;
+ }
+
+ v = g_hash_table_lookup (pChangedProps, "Shuffle");
+ if (v != NULL && G_VALUE_HOLDS_BOOLEAN (v)) // Shuffle status has changed
+ {
+ s_bIsShuffle = g_value_get_boolean (v);
+ cd_debug ("Shuffle: %d", s_bIsShuffle);
+ s_bGotShuffleStatus = TRUE;
+ }
}
/*else if (strcmp (cInterface, "org.mpris.MediaPlayer2.TrackList") == 0)
{
@@ -621,6 +722,8 @@
// get the current state.
myData.iTrackListLength = 0;
myData.iTrackListIndex = 0;
+ s_bGotLoopStatus = FALSE;
+ s_bGotShuffleStatus = FALSE;
cd_mpris2_getPlaying_async (); // will get song infos after playing status.
}
@@ -633,6 +736,10 @@
pHandler->stop = cd_mpris2_stop;
pHandler->start = cd_mpris2_start;
pHandler->control = cd_mpris2_control;
+ pHandler->get_loop_status = get_loop_status;
+ pHandler->get_shuffle_status = get_shuffle_status;
+ pHandler->raise = _raise;
+ pHandler->quit = _quit;
pHandler->bSeparateAcquisition = FALSE;
pHandler->iLevel = PLAYER_GOOD;
=== modified file 'musicPlayer/src/applet-musicplayer.c'
--- musicPlayer/src/applet-musicplayer.c 2012-04-16 16:47:20 +0000
+++ musicPlayer/src/applet-musicplayer.c 2012-06-19 14:00:32 +0000
@@ -51,6 +51,20 @@
not owned => stop handler
*/
+static inline void _fill_handler_properties (const gchar *cDesktopFileName)
+{
+ g_free ((gchar*)myData.pCurrentHandler->appclass);
+ myData.pCurrentHandler->appclass = cairo_dock_register_class (cDesktopFileName);
+ g_free ((gchar*)myData.pCurrentHandler->launch);
+ myData.pCurrentHandler->launch = g_strdup (cairo_dock_get_class_command (myData.pCurrentHandler->appclass));
+ if (myData.pCurrentHandler->launch == NULL) // we really need a command to launch it on click, so insist a little
+ {
+ myData.pCurrentHandler->launch = g_strdup (cDesktopFileName);
+ }
+ g_free ((gchar*)myData.pCurrentHandler->cDisplayedName);
+ myData.pCurrentHandler->cDisplayedName = g_strdup (cairo_dock_get_class_name (myData.pCurrentHandler->appclass));
+}
+
MusicPlayerHandler *cd_musicplayer_get_handler_by_name (const gchar *cName)
{
g_return_val_if_fail (cName != NULL, NULL);
@@ -299,14 +313,7 @@
myConfig.cLastKnownDesktopFile = g_strdup (cDesktopFileName);
// register the desktop file, and get the common properties of this class.
- g_free ((gchar*)myData.pCurrentHandler->launch);
- g_free ((gchar*)myData.pCurrentHandler->appclass);
- g_free ((gchar*)myData.pCurrentHandler->cDisplayedName);
-
- myData.pCurrentHandler->appclass = cairo_dock_register_class (cDesktopFileName);
- myData.pCurrentHandler->launch = g_strdup (cairo_dock_get_class_command (myData.pCurrentHandler->appclass));
- myData.pCurrentHandler->cDisplayedName = g_strdup (cairo_dock_get_class_name (myData.pCurrentHandler->appclass));
- cd_debug (" class is now '%s'", myData.pCurrentHandler->appclass);
+ _fill_handler_properties (cDesktopFileName);
if (myData.pCurrentHandler->appclass != NULL)
{
@@ -346,6 +353,15 @@
// set the MPRIS2 handler as the current one
myData.pCurrentHandler = cd_musicplayer_get_handler_by_name ("Mpris2"); // no need to watch it, it was already done (that's why we are here !)
+ // fill its properties
+ myData.pCurrentHandler->appclass = cairo_dock_register_class (myConfig.cLastKnownDesktopFile ? myConfig.cLastKnownDesktopFile : cName); // myConfig.cLastKnownDesktopFile is NULL when transitionning from an old version of the applet where we didn't use the "Desktop Entry" property yet -> use some heuristic as a fallback.
+ myData.pCurrentHandler->launch = g_strdup (cairo_dock_get_class_command (myData.pCurrentHandler->appclass));
+ myData.pCurrentHandler->cDisplayedName = g_strdup (cairo_dock_get_class_name (myData.pCurrentHandler->appclass));
+ if (myData.pCurrentHandler->launch == NULL) // we really need a command to launch it on click, so insist a little
+ {
+ myData.pCurrentHandler->launch = g_strdup (cName);
+ }
+
g_free ((gchar*)myData.pCurrentHandler->cMprisService);
myData.pCurrentHandler->cMprisService = g_strdup (cName);
}
@@ -378,7 +394,7 @@
}
else // else stop the handler.
{
- cd_debug ("stop the handler");
+ cd_debug ("stop the handler {%s, %s}", myData.pCurrentHandler->name, myData.pCurrentHandler->launch);
cd_musicplayer_stop_current_handler (FALSE); // FALSE = keep watching it.
cd_musicplayer_apply_status_surface (PLAYER_NONE);
if (myConfig.cDefaultTitle != NULL)
@@ -395,6 +411,7 @@
{
CD_APPLET_SET_NAME_FOR_MY_ICON (myData.pCurrentHandler->name);
}
+ cd_debug ("stopped {%s, %s}", myData.pCurrentHandler->name, myData.pCurrentHandler->launch);
}
}
CD_APPLET_LEAVE ();
@@ -456,7 +473,7 @@
cairo_dock_watch_dbus_name_owner (myData.cMpris2Service, (CairoDockDbusNameOwnerChangedFunc) _on_name_owner_changed, NULL);
- myData.pDetectPlayerCall = cairo_dock_dbus_detect_application_async (myData.cMpris2Service, (CairoDockOnAppliPresentOnDbus) _on_detect_mpris2, NULL); // mpris2 first, and then the other one.
+ myData.pDetectPlayerCall = cairo_dock_dbus_detect_application_async (myData.cMpris2Service, (CairoDockOnAppliPresentOnDbus) _on_detect_mpris2, NULL); // mpris2 first, and then the other one.
}
else // no such handler, make an MPRIS2 service with this name.
{
@@ -464,22 +481,8 @@
myData.pCurrentHandler = cd_musicplayer_get_handler_by_name ("Mpris2");
// fill its properties
- if (myConfig.cLastKnownDesktopFile != NULL)
- {
- myData.pCurrentHandler->appclass = cairo_dock_register_class (myConfig.cLastKnownDesktopFile);
- myData.pCurrentHandler->launch = g_strdup (cairo_dock_get_class_command (myData.pCurrentHandler->appclass));
- myData.pCurrentHandler->cDisplayedName = g_strdup (cairo_dock_get_class_name (myData.pCurrentHandler->appclass));
- }
- else // can happen when transitionning from an old version of the applet where we didn't use the "Desktop Entry" property yet -> use some heuristic as a fallback.
- {
- myData.pCurrentHandler->appclass = cairo_dock_register_class (cName);
- myData.pCurrentHandler->launch = g_strdup (cairo_dock_get_class_command (myData.pCurrentHandler->appclass));
- myData.pCurrentHandler->cDisplayedName = g_strdup (cairo_dock_get_class_name (myData.pCurrentHandler->appclass));
- if (myData.pCurrentHandler->launch == NULL) // we really need a command to launch it on click, so insist a little
- {
- myData.pCurrentHandler->launch = g_strdup (cName);
- }
- }
+ _fill_handler_properties (myConfig.cLastKnownDesktopFile ? myConfig.cLastKnownDesktopFile : cName); // myConfig.cLastKnownDesktopFile is NULL when transitionning from an old version of the applet where we didn't use the "Desktop Entry" property yet -> use some heuristic as a fallback.
+
myData.pCurrentHandler->cMprisService = g_strdup_printf (CD_MPRIS2_SERVICE_BASE".%s", cName);
myData.cMpris2Service = NULL;
}
@@ -520,6 +523,11 @@
}
// manage its taskbar icon.
+ if (myData.pCurrentHandler->appclass != NULL)
+ {
+ cairo_dock_set_data_from_class (myData.pCurrentHandler->appclass, myIcon);
+ }
+
if (myConfig.bStealTaskBarIcon)
CD_APPLET_MANAGE_APPLICATION (myData.pCurrentHandler->appclass);
}
=== modified file 'musicPlayer/src/applet-notifications.c'
--- musicPlayer/src/applet-notifications.c 2012-03-21 11:26:14 +0000
+++ musicPlayer/src/applet-notifications.c 2012-06-19 14:00:32 +0000
@@ -43,8 +43,25 @@
static void _cd_musicplayer_next (GtkMenuItem *menu_item, gpointer *data) {
myData.pCurrentHandler->control (PLAYER_NEXT, NULL);
}
-static void _cd_musicplayer_show_from_systray (GtkMenuItem *menu_item, gpointer *data) {
- cairo_dock_launch_command (myData.pCurrentHandler->launch);
+static void _cd_musicplayer_show_from_systray (GtkMenuItem *menu_item, gpointer *data)
+{
+ gboolean bRaised = FALSE;
+ if (myData.pCurrentHandler->raise)
+ bRaised = myData.pCurrentHandler->raise ();
+ if (! bRaised)
+ cairo_dock_launch_command (myData.pCurrentHandler->launch);
+}
+static void _cd_musicplayer_quit (GtkMenuItem *menu_item, gpointer *data)
+{
+ gboolean bQuit = FALSE;
+ if (myData.pCurrentHandler->quit)
+ bQuit = myData.pCurrentHandler->quit ();
+ if (! bQuit)
+ {
+ gchar *cmd = g_strdup_printf ("killall %s", myData.pCurrentHandler->launch);
+ cairo_dock_launch_command (cmd);
+ g_free (cmd);
+ }
}
static void _cd_musicplayer_jumpbox (GtkMenuItem *menu_item, gpointer *data) {
myData.pCurrentHandler->control (PLAYER_JUMPBOX, NULL);
@@ -241,11 +258,16 @@
else
cairo_dock_show_xwindow (myIcon->Xid);
}
- else if (myData.pCurrentHandler->launch != NULL)
- cairo_dock_launch_command (myData.pCurrentHandler->launch);
+ else
+ {
+ _cd_musicplayer_show_from_systray (NULL, NULL);
+ }
}
- else if (myData.pCurrentHandler->launch != NULL)
+ else /*if (myData.pCurrentHandler->launch != NULL)*/
+ {
+ cd_message ("launching '%s'...\n", myData.pCurrentHandler->launch);
cairo_dock_launch_command (myData.pCurrentHandler->launch);
+ }
}
}
else
@@ -291,20 +313,36 @@
CD_APPLET_ADD_SEPARATOR_IN_MENU (CD_APPLET_MY_MENU); // on n'a jamais zero action, donc on met toujours un separateur.
CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("Information"), GTK_STOCK_INFO, _cd_musicplayer_info, CD_APPLET_MY_MENU);
-
- if (myIcon->Xid == 0) // lecteur dans le systray.
- CD_APPLET_ADD_IN_MENU (D_("Show the Window"), _cd_musicplayer_show_from_systray, CD_APPLET_MY_MENU);
CD_APPLET_ADD_SEPARATOR_IN_MENU (CD_APPLET_MY_MENU);
if (myData.pCurrentHandler->iPlayerControls & PLAYER_JUMPBOX)
CD_APPLET_ADD_IN_MENU (D_("Show JumpBox"), _cd_musicplayer_jumpbox, CD_APPLET_MY_MENU);
if (myData.pCurrentHandler->iPlayerControls & PLAYER_SHUFFLE)
- CD_APPLET_ADD_IN_MENU (D_("Toggle Shuffle"), _cd_musicplayer_shuffle, CD_APPLET_MY_MENU);
+ {
+ pMenuItem = gtk_check_menu_item_new_with_label (D_("Shuffle"));
+ gboolean bIsShuffle = (myData.pCurrentHandler->get_shuffle_status ? myData.pCurrentHandler->get_shuffle_status() : FALSE);
+ gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (pMenuItem), bIsShuffle);
+ gtk_menu_shell_append (GTK_MENU_SHELL (CD_APPLET_MY_MENU), pMenuItem);
+ g_signal_connect (G_OBJECT (pMenuItem), "toggled", G_CALLBACK (_cd_musicplayer_shuffle), NULL);
+ }
if (myData.pCurrentHandler->iPlayerControls & PLAYER_REPEAT)
- CD_APPLET_ADD_IN_MENU (D_("Toggle Repeat"), _cd_musicplayer_repeat, CD_APPLET_MY_MENU);
+ {
+ pMenuItem = gtk_check_menu_item_new_with_label (D_("Repeat"));
+ gboolean bIsLoop = (myData.pCurrentHandler->get_loop_status ? myData.pCurrentHandler->get_loop_status() : FALSE);
+ gtk_check_menu_item_set_active (GTK_CHECK_MENU_ITEM (pMenuItem), bIsLoop);
+ gtk_menu_shell_append (GTK_MENU_SHELL (CD_APPLET_MY_MENU), pMenuItem);
+ g_signal_connect (G_OBJECT (pMenuItem), "toggled", G_CALLBACK (_cd_musicplayer_repeat), NULL);
+ }
+
if (myData.pCurrentHandler->iPlayerControls & PLAYER_RATE)
CD_APPLET_ADD_IN_MENU (D_("Rate this song"), _cd_musicplayer_rate, CD_APPLET_MY_MENU);
+
+ if (myIcon->Xid == 0) // player in the systray.
+ {
+ CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("Show"), GTK_STOCK_FIND, _cd_musicplayer_show_from_systray, CD_APPLET_MY_MENU);
+ CD_APPLET_ADD_IN_MENU_WITH_STOCK (D_("Quit"), GTK_STOCK_CLOSE, _cd_musicplayer_quit, CD_APPLET_MY_MENU); // GTK_STOCK_QUIT looks too much like the "quit" of the dock.
+ }
}
CD_APPLET_ON_BUILD_MENU_END
=== modified file 'musicPlayer/src/applet-struct.h'
--- musicPlayer/src/applet-struct.h 2012-02-16 01:45:57 +0000
+++ musicPlayer/src/applet-struct.h 2012-06-19 14:00:32 +0000
@@ -60,6 +60,11 @@
typedef void (*MusicPlayerStartFunc) (void); // initialise le backend (connexion des signaux, etc)
typedef void (*MusicPlayerControlerFunc) (MyPlayerControl pControl, const gchar *cFile); // controle du lecteur (play/pause/next/etc)
typedef void (*MusicPlayerGetCoverFunc) (void); // pour les lecteurs buggues, recupere la couverture. Renseigner ce champ fera que si le lecteur n'a pas renvoye de couverture au changement de chanson, on retentera 2 secondes plus tard avec cette fonction.
+typedef gboolean (*MusicPlayerGetLoopStatusFunc) (void);
+typedef gboolean (*MusicPlayerGetShuffleStatusFunc) (void);
+typedef gboolean (*MusicPlayerRaiseFunc) (void); // show window from systray
+typedef gboolean (*MusicPlayerQuitFunc) (void); // quit when within the systray
+
struct _MusicPlayerHandler {
const gchar *name; // nom du backend.
@@ -68,6 +73,10 @@
MusicPlayerStartFunc start;
MusicPlayerControlerFunc control;
MusicPlayerGetCoverFunc get_cover; // actually deprecated, since now most players will send a signal when the 'cover' param is changed.
+ MusicPlayerGetLoopStatusFunc get_loop_status;
+ MusicPlayerGetShuffleStatusFunc get_shuffle_status;
+ MusicPlayerRaiseFunc raise;
+ MusicPlayerQuitFunc quit;
const gchar *cMprisService; // old Dbus service name (may not even follow the MPRIS protocole)
const gchar *path; // Player object
const gchar *interface;
=== modified file 'po/de.po'
--- po/de.po 2012-04-16 16:47:20 +0000
+++ po/de.po 2012-06-19 14:00:32 +0000
@@ -9,14 +9,14 @@
"Project-Id-Version: cairo-dock-plug-ins\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:37+0000\n"
-"Last-Translator: Mario Blättermann <mario.blaettermann@xxxxxxxxx>\n"
+"PO-Revision-Date: 2012-05-02 06:06+0000\n"
+"Last-Translator: claudia89 <Unknown>\n"
"Language-Team: German <de@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:32+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-05-03 05:31+0000\n"
+"X-Generator: Launchpad (build 15185)\n"
"Language: de\n"
#: ../Animated-icons/src/applet-init.c:32
@@ -2369,7 +2369,7 @@
#: ../logout/src/applet-init.c:38 ../logout/src/applet-logout.c:228
#: ../logout/data/messages:97
msgid "Log out"
-msgstr "Ausloggen"
+msgstr "Abmelden"
#: ../logout/src/applet-init.c:67
msgid "Lock the screen"
=== modified file 'po/fr.po'
--- po/fr.po 2012-04-16 16:47:20 +0000
+++ po/fr.po 2012-06-19 14:00:32 +0000
@@ -8,13 +8,13 @@
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-14 01:00+0000\n"
+"PO-Revision-Date: 2012-04-14 17:03+0000\n"
"Last-Translator: Matthieu Baerts <matttbe@xxxxxxxxx>\n"
"Language-Team: Cairo-Dock <LL@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-14 05:01+0000\n"
+"X-Launchpad-Export-Date: 2012-04-15 04:46+0000\n"
"X-Generator: Launchpad (build 15070)\n"
"Language: \n"
@@ -1828,8 +1828,8 @@
"<b>traiter des taches</b>.\n"
"Il accepte aussi les alarmes et vous autorises à définir l'heure et la "
"date.\n"
-"Clic-gauche pour montrer/cacher le calendrier, Clic du milieu pour arrêter une "
-"notification,\n"
+"Clic-gauche pour montrer/cacher le calendrier, Clic du milieu pour arrêter "
+"une notification,\n"
"Double-clic sur un jour pour éditer les taches pour ce jour."
#: ../clock/src/applet-notifications.c:62
=== added file 'po/hr.po'
--- po/hr.po 1970-01-01 00:00:00 +0000
+++ po/hr.po 2012-06-19 14:00:32 +0000
@@ -0,0 +1,8409 @@
+# Croatian translation for cairo-dock-plug-ins
+# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012
+# This file is distributed under the same license as the cairo-dock-plug-ins package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2012.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: cairo-dock-plug-ins\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2012-04-12 00:33+0000\n"
+"PO-Revision-Date: 2012-06-07 06:12+0000\n"
+"Last-Translator: vjeko janecic <vjeko@xxxxxxxxxxx>\n"
+"Language-Team: Croatian <hr@xxxxxx>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2012-06-08 05:01+0000\n"
+"X-Generator: Launchpad (build 15376)\n"
+
+#: ../Animated-icons/src/applet-init.c:32
+msgid "Animated icons"
+msgstr "Animirane ikone"
+
+#: ../Animated-icons/src/applet-init.c:35
+msgid "This plug-in provides many different animations for your icons."
+msgstr "Plug-in osigurava mnogo razlicitih animacija za ikone"
+
+#: ../Animated-icons/src/applet-init.c:80 ../Animated-icons/data/messages:9
+#: ../Animated-icons/data/messages:27 ../Animated-icons/data/messages:47
+#: ../Animated-icons/data/messages:157
+msgid "Bounce"
+msgstr "Odbijanje"
+
+#: ../Animated-icons/src/applet-init.c:81 ../Animated-icons/data/messages:11
+#: ../Animated-icons/data/messages:29 ../Animated-icons/data/messages:49
+msgid "Rotate"
+msgstr "Rotiraj"
+
+#: ../Animated-icons/src/applet-init.c:82 ../Animated-icons/data/messages:13
+#: ../Animated-icons/data/messages:31 ../Animated-icons/data/messages:51
+#: ../Animated-icons/data/messages:171
+msgid "Blink"
+msgstr "Treptanje"
+
+#: ../Animated-icons/src/applet-init.c:83 ../Animated-icons/data/messages:15
+#: ../Animated-icons/data/messages:33 ../Animated-icons/data/messages:53
+#: ../Animated-icons/data/messages:145
+msgid "Pulse"
+msgstr "Pulsiranje"
+
+#: ../Animated-icons/src/applet-init.c:84 ../Animated-icons/data/messages:17
+#: ../Animated-icons/data/messages:35 ../Animated-icons/data/messages:55
+#: ../Animated-icons/data/messages:117
+msgid "Wobbly"
+msgstr "Rastresi"
+
+#: ../Animated-icons/src/applet-init.c:85 ../Animated-icons/data/messages:19
+#: ../Animated-icons/data/messages:37 ../Animated-icons/data/messages:57
+#: ../Animated-icons/data/messages:133
+msgid "Wave"
+msgstr "Val"
+
+#: ../Animated-icons/src/applet-init.c:86 ../Animated-icons/data/messages:21
+#: ../Animated-icons/data/messages:39 ../Animated-icons/data/messages:59
+#: ../Animated-icons/data/messages:81 ../Animated-icons/data/messages:89
+msgid "Spot"
+msgstr "Pozicija"
+
+#: ../Cairo-Penguin/src/applet-init.c:33
+msgid ""
+"Add a lively Penguin in your dock !\n"
+"Left click to change the animation,\n"
+"Middle-click to disturb him ^_^\n"
+"Tux images are taken from Pingus, some other characters are available or can "
+"be added easily."
+msgstr ""
+"Dodaj okretnog Pingvina u svoj dok!\n"
+"Lijevim klikom promjeni animaciju,\n"
+"Srednjim klikom ga uznemiri.\n"
+"Slike Tuxa su iz Pingua, postoje i drugi likovi koje mozes dodati "
+"jednostavno."
+
+#: ../Cairo-Penguin/src/applet-init.c:39
+msgid "Cairo-Penguin"
+msgstr "Cairo-Pingvin"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:29
+msgid "Hey, I'm here!"
+msgstr "Hej, ovdje sam!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:30
+msgid "Sorry but I'm busy right now."
+msgstr "Oprosti zauzet sam sada"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:31
+msgid ""
+"I don't have time to play with you, I have to dig and mine all these icons."
+msgstr ""
+"Nemam vremena da se igram s tobom, moram iskopati i spremiti sve te ikone"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:32
+msgid "Your dock is so messy! Let me clean it."
+msgstr "Tvoj dok je tako neuredan! Daj da ga uredim."
+
+#: ../Cairo-Penguin/src/applet-notifications.c:33
+msgid "Admit my superiority on you as a penguin!"
+msgstr "Priznaj moju prednost, ja sam ipak pingvin!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:34
+msgid "Wait, do you want to kill me?!"
+msgstr "Stan tamo, jel ti to mene ubijas?!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:35
+msgid "Do you know how painful it is to be clicked on??"
+msgstr "Znas li kako boli kad me kliknes??"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:36
+msgid "It's my dock now, mwahahaha!"
+msgstr "To je sad moj dok, ua ha ha ha!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:37
+msgid "I want to be a pirate!"
+msgstr "Zelim postati pirat!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:38
+msgid "You shall not pass!"
+msgstr "Neces proci!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:39
+msgid "I'm your father!"
+msgstr "Ja sam ti otac!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:40
+msgid ""
+"- Gee, Brain, what do you want to do tonight?\n"
+"- The same thing we do every night, Pinky : try to take over the Dock!"
+msgstr ""
+"Hej Brale, sto cemo raditi veceras?\n"
+"- Isto sto i svake noci, Pero : pokusacemo zauzeti Dok!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:41
+msgid "For Aiur!"
+msgstr "Za Anicu!"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:118
+msgid "Wake up"
+msgstr "Probudi se"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:122
+msgid "Keep quiet"
+msgstr "Budi tiho"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:125
+#: ../Scooby-Do/data/messages:99
+msgid "Start XPenguins"
+msgstr "Pokreni XPingvina"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:126
+msgid "Stop XPenguins"
+msgstr "Zaustavi XPingvina"
+
+#: ../Cairo-Penguin/src/applet-notifications.c:148
+#: ../Cairo-Penguin/src/applet-notifications.c:150
+msgid "Zzzzz"
+msgstr "Zzzzz"
+
+#: ../Clipper/src/applet-init.c:32
+msgid ""
+"This applet keeps a trace of the clipboard and mouse selection,\n"
+"so that you can recall them quickly. It's a clone of the well-know Klipper.\n"
+"It supports clipboard and mouse selection, predefined actions, and "
+"persistent items.\n"
+"Left-click to popup the clipboard and mouse selection history,\n"
+"Drop text on the icon to create persistent items, and middle-clck to recall "
+"them."
+msgstr ""
+"Applet pamti sadrzaj medjuspremnika i selektirani sadrzaj na ekranu,\n"
+"tako da ih mozes vratiti brzo. Klon je dobro poznatog Klippera.\n"
+"Podrzava medjuspremnik i selektirani sadrzaj, predefinirane akcije, i trajne "
+"objekte.\n"
+"Lijevi klik za prikaz povijesti medjuspremnika i selektiranih sadrzaja,\n"
+"Ispusti tekst na ikonu da stvoris trajni objekt, a srednjim klikom ih mozes "
+"vratiti."
+
+#: ../Clipper/src/applet-init.c:39
+msgid "Clipboard history"
+msgstr "Povijest medjuspremnika"
+
+#: ../Clipper/src/applet-init.c:72
+msgid "Pop-up the items menu"
+msgstr "Pop-up meni objekata"
+
+#: ../Clipper/src/applet-notifications.c:33
+msgid "The clipboard history is empty."
+msgstr "Povijest medjuspremnika je prazna"
+
+#: ../Clipper/src/applet-notifications.c:89
+msgid "Clear clipboard History"
+msgstr "Obrisi povijest medjuspremnika"
+
+#: ../Clipper/src/applet-notifications.c:91
+msgid "Paste all copied items"
+msgstr "Zalijepi sve kopirane objekte"
+
+#: ../Clipper/src/applet-notifications.c:99
+msgid ""
+"No persistent items.\n"
+"You can add some by drag and dropping some text on the icon."
+msgstr ""
+"Nema trajnih objekata.\n"
+"Dodaj novi tako da povuces i ispustis tekst na ikonu."
+
+#: ../Clipper/src/applet-notifications.c:143
+msgid "No items yet."
+msgstr "Nema niti jedan objekt."
+
+#: ../Composite-Manager/src/applet-composite-manager.c:421
+#: ../Composite-Manager/src/applet-composite-manager.c:436
+msgid "No compositor is available."
+msgstr "Kompozitor nije dostupan"
+
+#: ../Composite-Manager/src/applet-composite-manager.c:444
+#: ../Composite-Manager/src/applet-composite-manager.c:459
+msgid "No fallback is available."
+msgstr "Povrat nije dostupan"
+
+#: ../Composite-Manager/src/applet-composite-manager.c:499
+#, c-format
+msgid "You need to install '%s'"
+msgstr "Moras instalirati '%s'"
+
+#: ../Composite-Manager/src/applet-composite-manager.c:510
+msgid "No configuration tool is available."
+msgstr "Alat za konfiguraciju nije dostupan"
+
+#: ../Composite-Manager/src/applet-init.c:27
+msgid "Composite-Manager"
+msgstr "Kompozitni urednik"
+
+#: ../Composite-Manager/src/applet-init.c:30
+msgid ""
+"This applet allows you to <b>toggle the composite ON/OFF</b>.\n"
+"The composite is what allows transparency on the desktop, but it can slow "
+"down your PC, especially during games.\n"
+"<b>Click</b> on the icon to switch the composite ON/OFF. You can define a "
+"<b>shortcut</b> for this action.\n"
+"The applet also lets you acces to some actions of the Window-Manager, from "
+"<b>middle-click and the menu</b>.\n"
+"You can define in the configuration a Window-Manager that will provide the "
+"composite, and another as a fallback."
+msgstr ""
+"Applet omogucuje <b>promjena kompozitnog desktopa ON/OFF</b>\n"
+"Kompozit omogucuje prozirnost desktopa, ali moze usporiti tvoj PC, narocito "
+"u igricama.\n"
+"<b>Klik</b> na ikonu da promjenis stanje ON/OFF. Mozes definirati "
+"<b>shortcut</b> za ovu akciju.\n"
+"Applet dozvoljava pristup nekim akcijama Window-Manager, pomocu <b>srednji "
+"klik i meni</b>.\n"
+"Mozes definirati u konfiguraciji Window-Managera koja ce ostvariti "
+"kompozitni prikaz, te drugi kao povrat."
+
+#: ../Composite-Manager/src/applet-init.c:52
+msgid "Toggle the composite ON/OFF"
+msgstr "Prebaci kompozitni prikaz ON/OFF"
+
+#: ../Composite-Manager/src/applet-notifications.c:43
+msgid "Toggle composite?"
+msgstr "Da prebacim kompozitni?"
+
+#: ../Composite-Manager/src/applet-notifications.c:120
+#: ../Composite-Manager/data/messages:129
+msgid "Edit Window-Manager settings"
+msgstr "Uredi Window-Manager postavke"
+
+#: ../Composite-Manager/src/applet-notifications.c:120
+#: ../Composite-Manager/src/applet-notifications.c:127
+#: ../Composite-Manager/src/applet-notifications.c:136
+#: ../Composite-Manager/src/applet-notifications.c:145
+#: ../Composite-Manager/src/applet-notifications.c:154
+#: ../Composite-Manager/src/applet-notifications.c:163
+#: ../Folders/src/applet-notifications.c:365
+#: ../GMenu/src/applet-notifications.c:81
+#: ../RSSreader/src/applet-notifications.c:129
+#: ../System-Monitor/src/applet-notifications.c:106
+#: ../Xgamma/src/applet-notifications.c:87
+#: ../alsaMixer/src/applet-notifications.c:85
+#: ../dustbin/src/applet-notifications.c:136
+#: ../mail/src/cd-mail-applet-notifications.c:154
+#: ../musicPlayer/src/applet-notifications.c:278
+#: ../netspeed/src/applet-notifications.c:94
+#: ../quick-browser/src/applet-notifications.c:41
+#: ../shortcuts/src/applet-notifications.c:249
+#: ../shortcuts/src/applet-notifications.c:269
+#: ../showDesktop/src/applet-notifications.c:165
+#: ../showDesktop/src/applet-notifications.c:177
+#: ../showDesktop/src/applet-notifications.c:189
+#: ../slider/src/applet-notifications.c:223
+#: ../slider/src/applet-notifications.c:265
+#: ../stack/src/applet-notifications.c:181
+#: ../switcher/src/applet-notifications.c:300
+#: ../switcher/src/applet-notifications.c:305
+#: ../switcher/src/applet-notifications.c:314
+#: ../switcher/src/applet-notifications.c:323
+msgid "middle-click"
+msgstr "srednji klik"
+
+#: ../Composite-Manager/src/applet-notifications.c:127
+#: ../Composite-Manager/data/messages:131
+msgid "Reload Window-Manager"
+msgstr "Ponovo ucitaj Window-Manager"
+
+#: ../Composite-Manager/src/applet-notifications.c:136
+#: ../showDesktop/src/applet-notifications.c:165
+#: ../showDesktop/src/applet-notifications.c:167
+#: ../Composite-Manager/data/messages:133 ../showDesktop/data/messages:103
+#: ../showDesktop/data/messages:117 ../switcher/data/messages:113
+msgid "Show desktop"
+msgstr "Pokaži radnu površinu"
+
+#: ../Composite-Manager/src/applet-notifications.c:145
+#: ../showDesktop/src/applet-notifications.c:177
+#: ../showDesktop/src/applet-notifications.c:179
+#: ../switcher/src/applet-notifications.c:314
+#: ../Composite-Manager/data/messages:135 ../showDesktop/data/messages:111
+#: ../showDesktop/data/messages:125 ../switcher/data/messages:115
+msgid "Expose all the desktops"
+msgstr "Prikazi sve desktope"
+
+#: ../Composite-Manager/src/applet-notifications.c:154
+#: ../switcher/src/applet-notifications.c:323
+#: ../Composite-Manager/data/messages:137 ../switcher/data/messages:117
+msgid "Expose all the windows"
+msgstr "Pokazi sve prozore"
+
+#: ../Composite-Manager/src/applet-notifications.c:163
+#: ../showDesktop/src/applet-notifications.c:189
+#: ../showDesktop/src/applet-notifications.c:191
+#: ../Composite-Manager/data/messages:139 ../showDesktop/data/messages:109
+#: ../showDesktop/data/messages:123
+msgid "Show the Widget Layer"
+msgstr "Pokazi nivo widgeta"
+
+#: ../Dbus/src/applet-init.c:36
+msgid ""
+"This plug-in lets extern applications interact on the dock.\n"
+"The communication between both sides is based on Dbus"
+msgstr ""
+"Plug-in dozvoljava eksternim aplikacijama interakciju s dokom.\n"
+"Komunikacija izmedju obje strane zasniva se na Dbusu."
+
+#: ../Dbus/src/interface-applet-signals.c:422
+#: ../Dbus/src/interface-applet-signals.c:453
+msgid "Sorry, this module couldn't be added."
+msgstr "Oprosti, ne mogu dodati taj modul."
+
+#: ../Dbus/src/interface-applet-signals.c:457
+#: ../Dbus/src/interface-applet-signals.c:463
+msgid "The module has been added, but couldn't be launched."
+msgstr "Modul je dodan, ali ne mogu ga pokrenuti."
+
+#: ../Dbus/src/interface-applet-signals.c:466
+#, c-format
+msgid ""
+"The applet '%s' has been succefully updated and automatically reloaded"
+msgstr "Applet '%s' je uspjesno osvjezen i automatski ucitan ponovo."
+
+#: ../Dbus/src/interface-applet-signals.c:466
+#, c-format
+msgid ""
+"The applet '%s' has been succefully installed and automatically launched"
+msgstr "Applet '%s' je uspjesno instaliran i automatski pokrenut."
+
+#: ../Disks/src/applet-disks.c:45 ../Disks/src/applet-disks.c:53
+#: ../Network-Monitor/src/applet-netspeed.c:42
+#: ../Network-Monitor/src/applet-netspeed.c:50
+#: ../netspeed/src/applet-netspeed.c:42 ../netspeed/src/applet-netspeed.c:50
+msgid "B"
+msgstr "B"
+
+#: ../Disks/src/applet-disks.c:61 ../Folders/src/applet-notifications.c:140
+#: ../Network-Monitor/src/applet-netspeed.c:58
+#: ../netspeed/src/applet-netspeed.c:58
+msgid "KB"
+msgstr "kB"
+
+#: ../Disks/src/applet-disks.c:69 ../Folders/src/applet-notifications.c:138
+#: ../Network-Monitor/src/applet-netspeed.c:66
+#: ../netspeed/src/applet-netspeed.c:66
+#: ../netspeed/src/applet-notifications.c:37
+#: ../netspeed/src/applet-notifications.c:38
+msgid "MB"
+msgstr "MB"
+
+#: ../Disks/src/applet-disks.c:77 ../Network-Monitor/src/applet-netspeed.c:74
+#: ../netspeed/src/applet-netspeed.c:74
+msgid "GB"
+msgstr "GB"
+
+#: ../Disks/src/applet-disks.c:85 ../Network-Monitor/src/applet-netspeed.c:82
+#: ../netspeed/src/applet-netspeed.c:82
+msgid "TB"
+msgstr "TB"
+
+#: ../Disks/src/applet-disks.c:171
+msgid "r"
+msgstr "r"
+
+#: ../Disks/src/applet-disks.c:171
+msgid "w"
+msgstr "w"
+
+#: ../Disks/src/applet-disks.c:175
+msgid "N/A"
+msgstr "N/A"
+
+#: ../Disks/src/applet-init.c:29
+msgid "Disks"
+msgstr "Diskovi"
+
+#: ../Disks/src/applet-init.c:32
+msgid ""
+"<b><i>Monitors disks speed and space</i></b>.\n"
+"\n"
+"This applet show your disks informations. You can activate both options at "
+"once, but they're better separated in 2 or more instances of the applet.\n"
+"Using both in the same applet can cause problems with the speed display not "
+"scaling down.\n"
+"\n"
+"<b>Disk space</b> : Show disk transfer rates. Up to 10 partitions\n"
+" You need to configure the mount point of each monitored partition like / "
+"or /home\n"
+" Better seen in a gauge, with 30 or 60s refresh rate and really short or no "
+"transition delay.\n"
+"\n"
+"<b>Disk speed</b> : Show disk transfer rates. Up to 5 disks\n"
+" You need to configure the name of each monitored disk with his device name "
+"like sda or sdb\n"
+" Better seen in a graph, with 2 or 3s refresh rate and no delay between "
+"transitions.\n"
+"\n"
+"Second release, a lot more need to be done :\n"
+" <u>Free space :</u>\n"
+" - Popup with detailed informations.\n"
+" - Editable labels ?\n"
+" <u>Speed :</u>\n"
+" - All disks option.\n"
+" - Pop up showing disks info to know what to add in the list.\n"
+" - Editable labels ?\n"
+" - Get real block size for disks\n"
+" <u>Global</u>\n"
+" - Find actions : left, middle click, drop and wheel.\n"
+" - Fill menu with actions.\n"
+msgstr ""
+"<b><i>Prati brzinu diska i zauzece</i></b>\n"
+"\n"
+"Applet pokazuje informacije o disku. Mozes aktivirati obje opcije odjednom, "
+"ali bolje da razdvojis na 2 ili vise instanci appleta.\n"
+"Upotrebom obje opcije odjednom moze uzrokovati probleme s prikazom brzine "
+"diska.\n"
+"\n"
+"<b>Zauzece diska</b>: Prikazuje slobodan prostor na disku. Max 10 particija "
+"odjednom.\n"
+" Moras definirati koji se direktorij promatra na svakoj particiji, poput / "
+"ili /home\n"
+" Bolje je vidljivo u grafu, s vremenom osvjezenja 30 do 60 s i s kratkim "
+"vremenom odgode prenosa.\n"
+"<b>Brzina diska</b>: Pokazuje brzine prijenosa. Max 5 diskova.\n"
+" Moras definirati ime svakog diska, zajedno sa imenom uredjaja, poput sda "
+"ili sdb\n"
+" Prikaz je bolji u grafu, s vremenom osvjezenja 2 do 3s bez odgode u "
+"prenosu.\n"
+"\n"
+"Drugo izdanje, ostaje dosta toga da se napravi:\n"
+" <u>Slobodan prostor:</u>\n"
+" - popup s detaljnim informacijama\n"
+" - labele koje mozes uredjivati ?\n"
+" <u>Brzina:</u>\n"
+" - Sve opcije diska.\n"
+" - popup pokazuje disk info da znas sto da dodas na listu\n"
+" - labele koje mozes uredjivati ?\n"
+" - daj realnu velicinu bloka za svaki disk\n"
+" <u>Globalno</u>\n"
+" - akcije misa: lijevi klik, srednji klik, ispusti, skrol na misu\n"
+" - popuni meni s akcijama\n"
+
+#: ../Disks/src/applet-notifications.c:69
+#: ../System-Monitor/src/applet-init.c:35
+msgid "System Monitor"
+msgstr "Nadzor sustava"
+
+#: ../Doncky/src/applet-cpusage.c:65 ../System-Monitor/src/applet-cpusage.c:58
+#: ../System-Monitor/src/applet-cpusage.c:63
+msgid "day(s)"
+msgstr "dan(a)"
+
+#: ../Doncky/src/applet-init.c:35
+msgid ""
+"This applet allows you to write texts and monitor your system\n"
+"with a \"text style desklet\".\n"
+"USAGE:\n"
+" - NEED TO BE DETACHED FROM THE DOCK TO WORK !\n"
+" - Middle-clic to reload values"
+msgstr ""
+"Applet dozvoljava da pisete tekstove i pratite rad sustava\n"
+"s desklet \"tekst stil\" \n"
+"UPOTREBA:\n"
+" - Moras osloboditi s doka prije upotrebe!\n"
+" - Srednji klik da ucitas vrijednosti"
+
+#: ../Doncky/src/applet-notifications.c:215
+msgid "It doesn't seem to be a valid XML file."
+msgstr "XML fajl nije ispravan"
+
+#: ../Folders/src/applet-init.c:29
+msgid "Folders"
+msgstr "Mape"
+
+#: ../Folders/src/applet-init.c:32
+msgid ""
+"This applet imports folders inside the Dock\n"
+"You can have as many instances of this applet as you want, each one with a "
+"different folder.\n"
+"To add a folder in your dock:\n"
+" - activate the applet, open its configuration panel, and select a folder\n"
+" - or just drop a folder into the dock\n"
+"Middle-click on the main icon opens the folder.\n"
+msgstr ""
+"Applet uvozi mape u Dok\n"
+"Mozes otvoriti vise instanci appleta, sa razlicitim mapama u svakom.\n"
+"Da bi dodao mapu u dok:\n"
+" - aktiviraj applet, otvori konfiguracijski panel, izaberi mapu\n"
+" - ili naprosto ispusti mapu na dok\n"
+"Srednji klik na glavnu ikonu otvara mapu.\n"
+
+#: ../Folders/src/applet-init.c:87 ../Folders/src/applet-init.c:150
+#: ../Folders/src/applet-notifications.c:42
+msgid "Open the configuration of the applet to choose a folder to import."
+msgstr "Otvori konfiguracijski panel appleta i izaberi mapu za unos."
+
+#: ../Folders/src/applet-notifications.c:54
+msgid "Empty or unreadable folder."
+msgstr "Mapa je prazna ili nije dostupna"
+
+#: ../Folders/src/applet-notifications.c:116
+msgid "Properties:"
+msgstr "Svojstva"
+
+#: ../Folders/src/applet-notifications.c:136 ../Folders/data/messages:117
+msgid "Size"
+msgstr "Veličina"
+
+#: ../Folders/src/applet-notifications.c:136
+msgid "bytes"
+msgstr "bajtova"
+
+#: ../Folders/src/applet-notifications.c:150
+msgid "Last Modification"
+msgstr "Zadnja promjena"
+
+#: ../Folders/src/applet-notifications.c:159
+msgid "Mime Type"
+msgstr "Mime tip"
+
+#: ../Folders/src/applet-notifications.c:173
+msgid "User ID"
+msgstr "Indentifikator korisnika"
+
+#: ../Folders/src/applet-notifications.c:173
+msgid "Group ID"
+msgstr "ID grupe"
+
+#: ../Folders/src/applet-notifications.c:183
+msgid "Permissions"
+msgstr "Dozvole"
+
+#: ../Folders/src/applet-notifications.c:183
+msgid "Read"
+msgstr "Čitanje"
+
+#: ../Folders/src/applet-notifications.c:184
+#: ../Folders/src/applet-notifications.c:185
+#: ../Folders/src/applet-notifications.c:186 ../Disks/data/messages:105
+#: ../System-Monitor/data/messages:115 ../alsaMixer/data/messages:147
+#: ../netspeed/data/messages:115 ../slider/data/messages:169
+msgid "Yes"
+msgstr "Da"
+
+#: ../Folders/src/applet-notifications.c:184
+#: ../Folders/src/applet-notifications.c:185
+#: ../Folders/src/applet-notifications.c:186 ../Disks/data/messages:101
+#: ../Disks/data/messages:137 ../Messaging-Menu/data/messages:15
+#: ../Network-Monitor/data/messages:17 ../Network-Monitor/data/messages:117
+#: ../RSSreader/data/messages:113 ../Status-Notifier/data/messages:19
+#: ../System-Monitor/data/messages:15 ../System-Monitor/data/messages:111
+#: ../System-Monitor/data/messages:163 ../Toons/data/messages:15
+#: ../alsaMixer/data/messages:17 ../alsaMixer/data/messages:113
+#: ../alsaMixer/data/messages:143 ../clock/data/messages:17
+#: ../clock/data/messages:105 ../keyboard-indicator/data/messages:15
+#: ../mail/data/messages:15 ../musicPlayer/data/messages:17
+#: ../netspeed/data/messages:15 ../netspeed/data/messages:111
+#: ../netspeed/data/messages:159 ../powermanager/data/messages:17
+#: ../shortcuts/data/messages:119 ../slider/data/messages:15
+#: ../slider/data/messages:167 ../weather/data/messages:17
+#: ../wifi/data/messages:15
+msgid "No"
+msgstr "Ne"
+
+#: ../Folders/src/applet-notifications.c:184
+msgid "Write"
+msgstr "Pisanje"
+
+#: ../Folders/src/applet-notifications.c:185
+#: ../Scooby-Do/src/applet-backend-command.c:95
+msgid "Execute"
+msgstr "Izvrši"
+
+#: ../Folders/src/applet-notifications.c:211
+#, c-format
+msgid ""
+"You're about deleting this file\n"
+" (%s)\n"
+"from your hard-disk. Sure ?"
+msgstr ""
+"Obrisat ces datoteku\n"
+" (%s)\n"
+"sa diska. Jesi siguran ?"
+
+#: ../Folders/src/applet-notifications.c:221
+msgid ""
+"Warning: could not delete this file.\n"
+"Please check file permissions."
+msgstr "Pozor: ne mogu obrisati datoteku"
+
+#: ../Folders/src/applet-notifications.c:234
+msgid "Rename to:"
+msgstr "Preimenuj u:"
+
+#: ../Folders/src/applet-notifications.c:241
+#, c-format
+msgid ""
+"Warning: could not rename %s.\n"
+"Check file permissions \n"
+"and that the new name does not already exist."
+msgstr ""
+"Pozor: ne mogu promjeniti ime %s\n"
+"Provjeri dozvole fajla \n"
+"ili se novo ime vec koristi."
+
+#: ../Folders/src/applet-notifications.c:255
+#: ../Scooby-Do/src/applet-backend-files.c:390
+msgid "Pick up a directory"
+msgstr "Izaberi direktorij"
+
+#: ../Folders/src/applet-notifications.c:280
+msgid "Enter a file name:"
+msgstr "Unesi ime fajla"
+
+#: ../Folders/src/applet-notifications.c:288
+#, c-format
+msgid ""
+"Warning: could not create %s.\n"
+"Check file permissions \n"
+"and that the new name does not already exist."
+msgstr ""
+"Pozor: ne mogu kreirati %s\n"
+"Provjeri dozvole fajla \n"
+"ili se novo ime vec koristi."
+
+#: ../Folders/src/applet-notifications.c:365
+msgid "Open the folder"
+msgstr "Otvori mapu"
+
+#: ../Folders/src/applet-notifications.c:372
+msgid "Rename this file"
+msgstr "Promjeni ime fajla"
+
+#: ../Folders/src/applet-notifications.c:373
+msgid "Delete this file"
+msgstr "Izbriši ovu datoteku"
+
+#: ../Folders/src/applet-notifications.c:374
+msgid "Move this file"
+msgstr "Premjesti datoteku"
+
+#: ../Folders/src/applet-notifications.c:380
+#: ../Recent-Events/src/applet-dialog.c:263
+#: ../slider/src/applet-notifications.c:233
+msgid "Open with"
+msgstr "Otvori s(a)"
+
+#: ../Folders/src/applet-notifications.c:413
+msgid "Properties"
+msgstr "Postavke"
+
+#: ../Folders/src/applet-notifications.c:416
+msgid "Create a new file"
+msgstr "Stvara novu datoteku"
+
+#: ../Folders/src/applet-notifications.c:417
+msgid "Create a new folder"
+msgstr "Napravi novu mapu"
+
+#: ../Folders/src/applet-notifications.c:422
+msgid "Sort by"
+msgstr "Poredaj po"
+
+#: ../Folders/src/applet-notifications.c:423
+msgid "By name"
+msgstr "Po imenu"
+
+#: ../Folders/src/applet-notifications.c:424
+msgid "By date"
+msgstr "Po datumu"
+
+#: ../Folders/src/applet-notifications.c:425
+msgid "By size"
+msgstr "Po velicini"
+
+#: ../Folders/src/applet-notifications.c:426
+msgid "By type"
+msgstr "Po tipu"
+
+#: ../Folders/src/applet-notifications.c:468
+msgid "The folder has been imported."
+msgstr "Mapa je uvezena"
+
+#: ../Folders/src/applet-notifications.c:529
+msgid "Do you want to import the content of the folder too?"
+msgstr "Da uvezem i sadrzaj mape takodjer ?"
+
+#: ../GMenu/src/applet-init.c:33
+msgid ""
+"Displays the common Applications menu and the Recently used files.\n"
+"It is compatible with any XDG compliant menu (Gnome, XFCE, KDE, ...)\n"
+"Middle-click to open a dialog to quickly launch any command (you can set up "
+"a shortkey for it, like ALT+F2)\n"
+"You can also set up a shortkey to pop up the menu (like ALT+F1)"
+msgstr ""
+"Prikazuje zajednicki meni Aplikacije te Nedavno koristene datoteke.\n"
+"Kompatibilan sa svakim XDG usluznim menijem (Gnome,XFCE,KDE,...)\n"
+"Srednji klik otvara dijalog brzog pristupa komandama (mozes definirati "
+"kombinaciju tipki za to, poput ALT F2)\n"
+"Mozes definirati kombinaciju tipki i za otvaranje samog popup menija, poput "
+"ALT F1"
+
+#: ../GMenu/src/applet-init.c:39
+msgid "Applications Menu"
+msgstr "Meni Aplikacija"
+
+#: ../GMenu/src/applet-init.c:66
+msgid "Show/hide the Applications menu"
+msgstr "Pokazi/Sakri Meni Aplikacija"
+
+#: ../GMenu/src/applet-init.c:71
+msgid "Show/hide the quick-launch dialog"
+msgstr "Pokazi/Sakri dijalog brzog pokretanja"
+
+#: ../GMenu/src/applet-menu-callbacks.c:218 ../GMenu/data/messages:121
+msgid "Logout"
+msgstr "Odjava"
+
+#: ../GMenu/src/applet-menu-callbacks.c:221 ../GMenu/data/messages:123
+msgid "Shutdown"
+msgstr "Isključi"
+
+#: ../GMenu/src/applet-notifications.c:81
+msgid "Quick launch"
+msgstr "Brzo pokretanje"
+
+#: ../GMenu/src/applet-notifications.c:105
+msgid "Configure menu"
+msgstr "Meni Konfiguracije"
+
+#: ../GMenu/src/applet-notifications.c:108
+msgid "Clear recent"
+msgstr "Očisti nedavno"
+
+#: ../GMenu/src/applet-recent.c:56
+msgid "Recent Documents"
+msgstr "Nedavno korišteni dokumenti"
+
+#: ../GMenu/src/applet-recent.c:115
+msgid "Clear the list of the recently used documents?"
+msgstr "Obrisi listu nedavno koristenih dokumenata?"
+
+#: ../GMenu/src/applet-run-dialog.c:353 ../Scooby-Do/data/messages:111
+msgid "Enter a command to launch:"
+msgstr "Unesi komandu koju zelis pokrenuti:"
+
+#: ../Global-Menu/src/applet-init.c:30
+msgid "Global Menu"
+msgstr "Globalni Meni"
+
+#: ../Global-Menu/src/applet-init.c:33
+msgid ""
+"This applet allows you to control the current active window:\n"
+" close, minimize, maximize, and display the application menu.To display the "
+"menu, applications have to support this feature, which is the case on Ubuntu "
+"by default.\n"
+"You can bind a shortkey to this action."
+msgstr ""
+"Applet omogucuje kontrolu trenutno aktivnog prozora:\n"
+" zatvori,minimize,maximize,prikazi meni aplikacije - ako aplikacija "
+"podrzava tu opciju, sto je kod Ubuntu dozvoljeno u osnovi."
+
+#: ../Global-Menu/src/applet-init.c:108 ../Global-Menu/src/applet-init.c:210
+msgid "Show/hide the current application menu"
+msgstr "Pokazi/Sakri meni trenutne aplikacije"
+
+#: ../Global-Menu/src/applet-notifications.c:52
+msgid "The application didn't send its menu to us."
+msgstr "Aplikacija nije dostavila meni"
+
+#: ../Impulse/src/applet-impulse.c:170
+msgid ""
+"There is something wrong with PulseAudio.\n"
+"Can you check its status (installed? running? version?) and report this bug "
+"(if any) to forum.glx-dock.org"
+msgstr ""
+"Nesto nije u redu s PulseAudio.\n"
+"Provjeri status (instaliran? startan? verzija?) i prijavi bug (ako postoji) "
+"na forum.glx-dock.org"
+
+#: ../Impulse/src/applet-init.c:32
+msgid ""
+"Did you know that your dock can dance? :)\n"
+"If you click on this icon, the dock will dance!\n"
+"In fact, you will have a graphical equalizer into the dock\n"
+"It will analyse the signal given by PulseAudio."
+msgstr ""
+"Znas li da tvoj Dok plese? :)\n"
+"Klikni na ovu ikonu, Dok ce zaplesati!\n"
+"Zapravo, dobit ces graficki prikaz miksera u Doku.\n"
+"Prikazuje signal s PulseAudio servisa."
+
+#: ../MeMenu/src/applet-init.c:30
+msgid "Me Menu"
+msgstr "Moj Meni"
+
+#: ../MeMenu/src/applet-init.c:33
+msgid ""
+"A menu that lets you access quickly to your information, your online status, "
+"your friends."
+msgstr ""
+"Meni omogucuje brzi pristup tvojim informacijama, online statusu, tvojim "
+"prijateljima."
+
+#: ../MeMenu/src/applet-notifications.c:31
+msgid "It seems that the Me-Menu is not installed on your system"
+msgstr "Izgleda da Moj Meni nije instaliran"
+
+#: ../Messaging-Menu/src/applet-init.c:30
+msgid "Messaging Menu"
+msgstr "Meni Poruka"
+
+#: ../Messaging-Menu/src/applet-init.c:33
+msgid ""
+"A menu that notices you about new messages from Mail or Chat applications.\n"
+"It handles Evolution, Pidgin, Empathy, etc\n"
+"It requires the Messaging service, which is available on Ubuntu by default."
+msgstr "Meni te obavijestava o novim porukama s Mail ili Chat aplikacije"
+
+#: ../Messaging-Menu/src/applet-init.c:66
+msgid "Show/hide the Messaging menu"
+msgstr "Pokazi/Sakri Menu Poruka"
+
+#: ../Messaging-Menu/src/applet-notifications.c:31
+msgid ""
+"The Messaging service did not reply.\n"
+"Please check that it is correctly installed."
+msgstr "Servis Poruka nije aktivan"
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:69
+msgid "Network connection state changed to inactive."
+msgstr "Mrežni status promijenjen u neaktivan"
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:75
+msgid "Connecting..."
+msgstr "Povezivanje…"
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:82
+msgid "Network connection is established."
+msgstr "Veza je uspostavljena."
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:88
+msgid "Network connection state changed to disconnected."
+msgstr "Mrezni status promijenjen u odspojen."
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:150
+msgid "A cable has been plugged"
+msgstr "Kabel je ukljucen"
+
+#: ../Network-Monitor/src/applet-dbus-callbacks.c:150
+msgid "A cable has been unplugged"
+msgstr "Kabel je iskljucen"
+
+#: ../Network-Monitor/src/applet-draw.c:30
+#: ../powermanager/src/powermanager-draw.c:174 ../wifi/src/applet-draw.c:31
+#: ../Clipper/data/messages:99 ../GMenu/data/messages:119
+#: ../Network-Monitor/data/messages:221 ../alsaMixer/data/messages:121
+#: ../dnd2share/data/messages:111 ../dustbin/data/messages:101
+#: ../wifi/data/messages:139 ../wifi/data/messages:189
+msgid "None"
+msgstr "Nijedan"
+
+#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
+msgid "Very Low"
+msgstr "Vrlo nisko"
+
+#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
+msgid "Low"
+msgstr "Nisko"
+
+#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
+msgid "Middle"
+msgstr "Sredina"
+
+#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
+msgid "Good"
+msgstr "Dobro"
+
+#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
+msgid "Excellent"
+msgstr "Odlicno"
+
+#: ../Network-Monitor/src/applet-draw.c:30
+msgid "Not connected"
+msgstr "Nije spojeno"
+
+#: ../Network-Monitor/src/applet-draw.c:30
+msgid "Wired connection"
+msgstr "Žičana veza"
+
+#: ../Network-Monitor/src/applet-draw.c:126 ../wifi/src/applet-draw.c:171
+msgid ""
+"Checking connection...\n"
+"Please retry in a few seconds"
+msgstr ""
+"Provjera veze...\n"
+"Molim ponovi za nekoliko trenutaka"
+
+#: ../Network-Monitor/src/applet-draw.c:134
+msgid "Wired Connection."
+msgstr "Zicana veza"
+
+#: ../Network-Monitor/src/applet-draw.c:136
+#: ../Network-Monitor/src/applet-draw.c:151 ../wifi/src/applet-draw.c:188
+msgid "Interface"
+msgstr "Sučelje"
+
+#: ../Network-Monitor/src/applet-draw.c:137
+#: ../Network-Monitor/src/applet-draw.c:149
+msgid "Speed"
+msgstr "Brzina"
+
+#: ../Network-Monitor/src/applet-draw.c:146 ../wifi/src/applet-draw.c:184
+msgid "Wifi enabled."
+msgstr "Wifi omogucen"
+
+#: ../Network-Monitor/src/applet-draw.c:148 ../wifi/src/applet-draw.c:186
+msgid "Network ID"
+msgstr "ID Mreže"
+
+#: ../Network-Monitor/src/applet-draw.c:148
+#: ../musicPlayer/src/applet-draw.c:152 ../musicPlayer/src/applet-draw.c:154
+#: ../musicPlayer/src/applet-draw.c:156
+#: ../powermanager/src/powermanager-draw.c:203
+#: ../powermanager/src/powermanager-draw.c:256
+msgid "Unknown"
+msgstr "Nepoznato"
+
+#: ../Network-Monitor/src/applet-draw.c:150 ../wifi/src/applet-draw.c:187
+msgid "Access point"
+msgstr "Pristupna točka"
+
+#: ../Network-Monitor/src/applet-draw.c:152 ../wifi/src/applet-draw.c:189
+msgid "Signal Quality"
+msgstr "Kvaliteta signala"
+
+#: ../Network-Monitor/src/applet-init.c:31
+msgid "Network-Monitor"
+msgstr "Mrezni-Monitor"
+
+#: ../Network-Monitor/src/applet-init.c:34
+msgid ""
+"This applet allows you to monitor your network connection(s).\n"
+"It can display the download/upload speeds and the wifi signal quality.\n"
+"If you have network-manager running, it can also let you choose the current "
+"wifi network.\n"
+"Left-click to pop-up some info,Scroll on the icon to switch the display "
+"between net speed and wifi."
+msgstr ""
+"Applet dozvoljava monitoring mreznih veza.\n"
+"Prikazuje brzinu downloada/uploada te kvalitetu Wifi signala.\n"
+"Ako je mrezni-urednik startan, mozes izabrati trenutnu wifi mrezu.\n"
+"Lijevi klik daje info pop-up, skrolaj na ikoni da prebacis izmedju mrezne "
+"brzine i izbora wifi mreze."
+
+#: ../Network-Monitor/src/applet-netspeed.c:200
+#: ../System-Monitor/src/applet-monitor.c:95
+#: ../System-Monitor/src/applet-top.c:428
+#: ../netspeed/src/applet-netspeed.c:200
+msgid "Loading"
+msgstr "Učitavam"
+
+#: ../Network-Monitor/src/applet-notifications.c:81
+#: ../wifi/src/applet-notifications.c:70
+msgid "Check for Wireless Extension"
+msgstr "Provjera bezicnog pristupa mrezi"
+
+#: ../Network-Monitor/src/applet-notifications.c:82
+#: ../wifi/src/applet-notifications.c:71
+msgid "Network Administration"
+msgstr "Mrezna Administracija"
+
+#: ../Network-Monitor/src/applet-notifications.c:86
+msgid "Activate network"
+msgstr "Aktiviraj mrezu"
+
+#: ../Network-Monitor/src/applet-notifications.c:86
+msgid "Deactivate network"
+msgstr "Iskljuci mrezu"
+
+#: ../Network-Monitor/src/applet-notifications.c:90
+msgid "Deactivate wifi"
+msgstr "Iskljuci wifi"
+
+#: ../Network-Monitor/src/applet-notifications.c:90
+msgid "Activate wifi"
+msgstr "Aktiviraj wifi"
+
+#: ../RSSreader/src/applet-init.c:31
+msgid "RSSreader"
+msgstr "RSS citac"
+
+#: ../RSSreader/src/applet-init.c:34
+msgid ""
+"This applet is an RSS/Atom feed reader.\n"
+"You can instanciate it as many times as you want.\n"
+"USAGE:\n"
+" - Left-click : display the complete feed lines in a dialog.\n"
+" - Middle-click : refresh the feed.\n"
+" - Scroll on the desklet : make the feed lines scroll.\n"
+" - Drag and drop a valid URL on the icon to use it,\n"
+" or copy it and use \"Paste a new RSS Url\" in the menu.\n"
+" or edit the Configuration Panel."
+msgstr ""
+"Applet je RSS/Atom citac.\n"
+"Mozes otvoriti vise instanci odjednom.\n"
+"UPOTREBA:\n"
+" - Lijevi klik: prikaz kompletnog sadrzaja u dijalogu.\n"
+" - Srednji klik: osvjezi citac.\n"
+" - Skrol na desklet: skrola sadrzaj u dijalogu.\n"
+" - Pokupi i ispusti URL na ikonu, da startas citac\n"
+" ili kopiraj/zalijepi novi RSS URL sa menija\n"
+" ili uredi u Konfiguracijskom panelu"
+
+#: ../RSSreader/src/applet-init.c:65 ../RSSreader/src/applet-init.c:125
+#: ../RSSreader/src/applet-notifications.c:56
+msgid "Retrieving data..."
+msgstr "Prihvacam podatke"
+
+#: ../RSSreader/src/applet-notifications.c:69
+msgid "It doesn't seem to be a valid URL."
+msgstr "Izgleda da je URL neispravan"
+
+#: ../RSSreader/src/applet-notifications.c:124
+msgid "Paste a new RSS Url (drag and drop)"
+msgstr "Zalijepi novi RSS URL (pokupi i ispusti)"
+
+#: ../RSSreader/src/applet-notifications.c:128
+msgid "Open with your web browser"
+msgstr "Otvori u internet pregledniku"
+
+#: ../RSSreader/src/applet-notifications.c:129
+#: ../switcher/src/applet-notifications.c:332
+msgid "Refresh"
+msgstr "Osvježi"
+
+#: ../RSSreader/src/applet-rss.c:400
+msgid "Warning: couldn't retrieve data last time we tried."
+msgstr "Pozor: zadnji prihvat podataka nije uspio"
+
+#: ../RSSreader/src/applet-rss.c:436
+msgid "No URL is defined."
+msgstr "URL nije definiran"
+
+#: ../RSSreader/src/applet-rss.c:437
+msgid "No data (no connection?)"
+msgstr "Nema podataka ( veza? )"
+
+#: ../RSSreader/src/applet-rss.c:468 ../RSSreader/src/applet-rss.c:487
+msgid "Invalid data (invalid RSS/Atom feed?)"
+msgstr "Neispravni podaci (nije RSS/Atom ?)"
+
+#: ../RSSreader/src/applet-rss.c:551
+msgid "No data"
+msgstr "Nema podataka"
+
+#: ../RSSreader/src/applet-rss.c:589
+msgid "No modification"
+msgstr "Bez promjene"
+
+#: ../RSSreader/src/applet-rss.c:614
+msgid "This RSS feed has been modified..."
+msgstr "RSS je promijenjen"
+
+#: ../RSSreader/src/applet-rss.c:775
+msgid ""
+"No URL is defined\n"
+"You can define one by copying the URL in the clipboard,\n"
+" and selecting \"Paste the URL\" in the menu."
+msgstr ""
+"URL nije definiran\n"
+"Kopiraj URL na clipboard \n"
+" zatim izaberi \"Zalijepi novi RSS URL\" s menija"
+
+#: ../RSSreader/src/applet-rss.c:781
+msgid ""
+"No data\n"
+"Did you set a valid RSS feed?\n"
+"Is your connection alive?"
+msgstr ""
+"Nema podataka\n"
+"Jesi postavio ispravan RSS?\n"
+"Da li je veza aktivna?"
+
+#: ../Recent-Events/src/applet-dialog.c:288
+#: ../stack/src/applet-notifications.c:179
+msgid "Open parent folder"
+msgstr "Otvori mapu iznad"
+
+#: ../Recent-Events/src/applet-dialog.c:290
+msgid "Copy the location"
+msgstr "Kopiraj lokaciju"
+
+#: ../Recent-Events/src/applet-dialog.c:292
+msgid "Delete this event"
+msgstr "Obrisi dogadjaj"
+
+#: ../Recent-Events/src/applet-dialog.c:365
+msgid "All"
+msgstr "Sve"
+
+#: ../Recent-Events/src/applet-dialog.c:366
+msgid "Document"
+msgstr "Dokument"
+
+#: ../Recent-Events/src/applet-dialog.c:368 ../logout/data/messages:129
+msgid "Image"
+msgstr "Slika"
+
+#: ../Recent-Events/src/applet-dialog.c:369
+msgid "Audio"
+msgstr "Zvuk"
+
+#: ../Recent-Events/src/applet-dialog.c:370
+msgid "Video"
+msgstr "Video"
+
+#: ../Recent-Events/src/applet-dialog.c:371
+msgid "Web"
+msgstr "Internet"
+
+#: ../Recent-Events/src/applet-dialog.c:372
+msgid "Other"
+msgstr "Ostalo"
+
+#: ../Recent-Events/src/applet-dialog.c:373
+msgid "Top Results"
+msgstr "Najbolji Rezultati"
+
+#: ../Recent-Events/src/applet-dialog.c:379
+msgid "Look for events"
+msgstr "Trazi dogadjaj"
+
+#: ../Recent-Events/src/applet-dialog.c:430
+msgid "File name"
+msgstr "Ime datoteke"
+
+#: ../Recent-Events/src/applet-dialog.c:437
+msgid "Last access"
+msgstr "Zadnji pristup"
+
+#: ../Recent-Events/src/applet-dialog.c:481
+msgid "You need to install the Zeitgeist data engine."
+msgstr "Moras instalirati Zeitgeist engine"
+
+#: ../Recent-Events/src/applet-dialog.c:516
+msgid "Browse and search in recent events"
+msgstr "Pregledaj i pretrazi zadnje dogadjaje"
+
+#: ../Recent-Events/src/applet-init.c:29
+msgid "Recent-Events"
+msgstr "Zadnji dogadjaji"
+
+#: ../Recent-Events/src/applet-init.c:58
+msgid "Show/hide the Recent Events"
+msgstr ""
+
+#: ../Recent-Events/src/applet-notifications.c:74
+#, c-format
+msgid "%d event(s) deleted"
+msgstr ""
+
+#: ../Recent-Events/src/applet-notifications.c:113
+#: ../Scooby-Do/src/applet-backend-recent.c:212 ../Scooby-Do/data/messages:105
+msgid "Recent files"
+msgstr ""
+
+#: ../Recent-Events/src/applet-notifications.c:161
+msgid "Delete today's events"
+msgstr ""
+
+#: ../Recent-Events/src/applet-notifications.c:163
+msgid "Delete all events"
+msgstr ""
+
+#: ../Remote-Control/src/applet-init.c:32
+msgid ""
+"This plug-in lets you control your dock from the keyboard\n"
+"Press the shortcut (by default Super + Return), then either:\n"
+" - press the number of the icon that you want to activate - or use the "
+"arrows to navigate into the docks and sub-docks (Ctrl + Page up/down to "
+"change to another main dock)\n"
+" - or type the name of a launcher and press Tab to automatically jump to the "
+"next suitable launcher\n"
+"Press Enter to click on the icon, Shift+Enter for Shift+click, Alt+Enter for "
+"middle click, and Ctrl+Enter for left click\n"
+"Escape or the same shortkey will cancel."
+msgstr ""
+
+#: ../Remote-Control/src/applet-init.c:42
+msgid "Control from keyboard"
+msgstr ""
+
+#: ../Remote-Control/src/applet-init.c:49
+msgid "Enable/disable the keyboard control of the dock"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-command.c:63
+#, c-format
+msgid "The value %s has been copied into the clipboard."
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:161
+msgid "Open a terminal here"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:169
+msgid "Zip folder"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:177
+#: ../Scooby-Do/src/applet-backend-files.c:251
+msgid "Move to"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:185
+#: ../Scooby-Do/src/applet-backend-files.c:259
+#: ../Scooby-Do/src/applet-backend-firefox.c:374
+msgid "Copy URL"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:227
+#: ../Scooby-Do/src/applet-backend-recent.c:145
+msgid "Open location"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:235
+msgid "Zip file"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:243
+msgid "Mail file"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-files.c:524
+msgid "Files"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-firefox.c:358
+msgid "Open"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-firefox.c:366
+msgid "Open in new window"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-firefox.c:433
+#: ../dnd2share/src/applet-notifications.c:483
+msgid "Open file"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-firefox.c:496
+#: ../Scooby-Do/data/messages:103
+msgid "Firefox bookmarks"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:99
+msgid "Wikipedia"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:107
+msgid "Yahoo!"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:115
+msgid "Google"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:125
+msgid "Search on the web"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:139
+msgid "Mediadico"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-backend-web.c:147
+msgid "Amazon"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-init.c:73
+msgid "Enable/disable the Finder"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:514
+msgid "(F1) Match case"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:521
+msgid "(F2) Music"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:528
+msgid "(F3) Image"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:535
+msgid "(F4) Video"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:542
+msgid "(F5) Text"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:549
+msgid "(F6) Html"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:556
+msgid "(F7) Sources"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:675 ../Scooby-Do/src/applet-search.c:362
+msgid "No result"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:679 ../Scooby-Do/src/applet-search.c:358
+#: ../tomboy/src/tomboy-draw.c:156 ../tomboy/src/tomboy-draw.c:169
+msgid "results"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-listing.c:679 ../Scooby-Do/src/applet-search.c:358
+#: ../tomboy/src/tomboy-draw.c:156 ../tomboy/src/tomboy-draw.c:169
+msgid "result"
+msgstr ""
+
+#: ../Scooby-Do/src/applet-search.c:132
+msgid "Searching ..."
+msgstr ""
+
+#: ../Scooby-Do/src/applet-session.c:70
+msgid "Enter your search"
+msgstr ""
+
+#: ../Status-Notifier/src/applet-init.c:33
+msgid ""
+"A <b>notification area</b> for your dock\n"
+"Programs can use it to display their current status.\n"
+"If a program doesn't appear inside when it should, it's probably because it "
+"doesn't support this feature yet. Please fill a bug report to the devs."
+msgstr ""
+
+#: ../Status-Notifier/src/applet-init.c:38
+msgid "Notification Area"
+msgstr ""
+
+#: ../System-Monitor/src/applet-cpusage.c:57
+msgid "Uptime"
+msgstr ""
+
+#: ../System-Monitor/src/applet-cpusage.c:62
+msgid "Activity time"
+msgstr ""
+
+#: ../System-Monitor/src/applet-cpusage.c:145
+msgid "CPU model"
+msgstr ""
+
+#: ../System-Monitor/src/applet-cpusage.c:146
+msgid "Frequency"
+msgstr ""
+
+#: ../System-Monitor/src/applet-cpusage.c:147
+msgid "core(s)"
+msgstr ""
+
+#: ../System-Monitor/src/applet-init.c:38
+msgid ""
+"This applet shows you the CPU load, RAM usage, graphic card temperature, "
+"etc.\n"
+"Middle click on the icon to get some valuable info.\n"
+"Left click on the icon to get a list of the most ressources using programs.\n"
+"You can instanciate this applet several times to show different values each "
+"time."
+msgstr ""
+
+#: ../System-Monitor/src/applet-notifications.c:40
+#: ../System-Monitor/src/applet-notifications.c:83
+msgid ""
+"The acquisition of one or more data has failed.\n"
+"You should remove the data that couldn't be fetched."
+msgstr ""
+
+#: ../System-Monitor/src/applet-notifications.c:104
+#: ../netspeed/src/applet-notifications.c:98
+msgid "Open the System-Monitor"
+msgstr ""
+
+#: ../System-Monitor/src/applet-notifications.c:106
+msgid "Show info"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:146
+msgid "GPU model"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:147
+msgid "Video Ram"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:147
+#: ../System-Monitor/src/applet-rame.c:124
+#: ../System-Monitor/src/applet-top.c:297
+msgid "Mb"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:148
+msgid "Driver Version"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:149
+msgid "Core Temperature"
+msgstr ""
+
+#: ../System-Monitor/src/applet-nvidia.c:161
+#, c-format
+msgid "Alert! Graphic Card core temperature has reached %d°C"
+msgstr ""
+
+#: ../System-Monitor/src/applet-rame.c:124
+msgid "Gb"
+msgstr ""
+
+#: ../System-Monitor/src/applet-rame.c:134
+msgid "Memory"
+msgstr ""
+
+#: ../System-Monitor/src/applet-rame.c:135
+msgid "Available"
+msgstr ""
+
+#: ../System-Monitor/src/applet-rame.c:136
+msgid "Cached"
+msgstr ""
+
+#: ../System-Monitor/src/applet-rame.c:137
+msgid "Buffers"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:358
+msgid "min"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:360
+msgid "max"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:363
+#: ../System-Monitor/src/applet-sensors.c:396
+msgid "alarm"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:394
+msgid "rpm"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:413
+#, c-format
+msgid "CPU temperature has reached %d°C"
+msgstr ""
+
+#: ../System-Monitor/src/applet-sensors.c:427
+#, c-format
+msgid "Fan speed has reached %d rpm"
+msgstr ""
+
+#: ../Toons/src/applet-init.c:29
+msgid "Toons"
+msgstr ""
+
+#: ../Toons/src/applet-init.c:32
+msgid "This applet displays a toon that will look at your mouse."
+msgstr ""
+
+#: ../Xgamma/src/applet-init.c:44
+msgid ""
+"Setup the luminosity of your screen directly from your dock.\n"
+"Scroll up/down to increase/decrease the luminosity\n"
+"Left-click to open a dialog to setup the luminosity\n"
+"Middle-click to set it up for each color.\n"
+"You can also define a luminosity value that will be applied automatically on "
+"startup."
+msgstr ""
+
+#: ../Xgamma/src/applet-init.c:52
+msgid "Screen Luminosity"
+msgstr ""
+
+#: ../Xgamma/src/applet-init.c:64
+msgid "Increase the brightness"
+msgstr ""
+
+#: ../Xgamma/src/applet-init.c:68
+msgid "Decrease the brightness"
+msgstr ""
+
+#: ../Xgamma/src/applet-notifications.c:87
+msgid "Set up gamma correction"
+msgstr ""
+
+#: ../Xgamma/src/applet-notifications.c:91
+msgid "Apply current luminosity on startup"
+msgstr ""
+
+#: ../Xgamma/src/applet-xgamma.c:206 ../Xgamma/src/applet-xgamma.c:280
+msgid "Set up gamma:"
+msgstr ""
+
+#: ../Xgamma/src/applet-xgamma.c:293
+msgid "Luminosity"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:46
+#, c-format
+msgid "I couldn't open card '%s'"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:51
+#, c-format
+msgid "Card '%s' opened but I couldn't get any info"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:59
+msgid "I couldn't open the mixer"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:66
+msgid "I couldn't attach the mixer to the card"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:73
+msgid "I couldn't register options"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:80
+msgid "I couldn't load the mixer"
+msgstr ""
+
+#: ../alsaMixer/src/applet-backend-alsamixer.c:261
+msgid "Set up volume:"
+msgstr ""
+
+#: ../alsaMixer/src/applet-draw.c:64
+msgid "Volume"
+msgstr ""
+
+#: ../alsaMixer/src/applet-init.c:34
+msgid ""
+"This applet lets you control the sound volume from the dock.\n"
+"Scroll up/down on the icon to increase/decrease the volume.\n"
+"Click on icon to show/hide the volume control (you can bind a keyboard "
+"shortcut for it)\n"
+"Middle-click to set or unset to mute, double-click to raise the channels "
+"mixer.\n"
+"The applet can either use the Ubuntu Sound-menu or the Alsa driver."
+msgstr ""
+
+#: ../alsaMixer/src/applet-init.c:42
+msgid "Sound Control"
+msgstr ""
+
+#: ../alsaMixer/src/applet-init.c:118
+msgid "Show/hide the Sound menu"
+msgstr ""
+
+#: ../alsaMixer/src/applet-notifications.c:80
+msgid "Adjust channels"
+msgstr ""
+
+#: ../alsaMixer/src/applet-notifications.c:80
+msgid "double-click"
+msgstr ""
+
+#: ../alsaMixer/src/applet-notifications.c:85
+msgid "Unmute"
+msgstr ""
+
+#: ../alsaMixer/src/applet-notifications.c:85
+msgid "Mute"
+msgstr ""
+
+#: ../clock/src/applet-calendar.c:193 ../clock/src/applet-calendar.c:274
+#: ../clock/src/applet-calendar.c:528 ../clock/src/applet-calendar.c:533
+#: ../clock/src/applet-task-editor.c:119 ../clock/src/applet-timer.c:87
+#: ../clock/src/applet-timer.c:175 ../clock/src/applet-timer.c:457
+#: ../clock/src/applet-timer.c:474 ../clock/src/applet-timer.c:494
+msgid "No title"
+msgstr ""
+
+#: ../clock/src/applet-calendar.c:529
+msgid "years"
+msgstr ""
+
+#: ../clock/src/applet-calendar.c:651
+msgid "Calendar and tasks"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../clock/data/messages:175
+msgid "Alarm"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Time you want to be notified:"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "In the form xx:xx. E.g.: 20:35 for 8:35pm"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Never"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Day"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Monday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Tuesday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Wednesday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Thursday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Friday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Saturday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36 ../weather/src/applet-load-icons.c:26
+msgid "Sunday"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Week Day"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Week End"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Month"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Repeat every:"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "If every month, which day of the month?"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Message you want to use to be notified:"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Tea Time!"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "Command to launch:"
+msgstr ""
+
+#: ../clock/src/applet-config.c:36
+msgid "E.g.:"
+msgstr ""
+
+#: ../clock/src/applet-config.c:505 ../weather/src/applet-config.c:207
+msgid "Search for your location :"
+msgstr ""
+
+#: ../clock/src/applet-init.c:35
+msgid "clock"
+msgstr ""
+
+#: ../clock/src/applet-init.c:38
+msgid ""
+"This applet displays time, date and a calandar.\n"
+"2 view are available : <b>numeric</b> and <b>analogic</b>.\n"
+" Analogic view is compatible with the Cairo-Clock's themes, and you can "
+"detach the applet to be a perfect clone of Cairo-Clock.\n"
+"It displays a <b>calendar</b> on left-click, which lets you <b>manage "
+"tasks</b>.\n"
+"It also supports alarms, and allows you to setup time and date.\n"
+"Left-click to show/hide the calendar, Middle-click to stop a notification,\n"
+"Double-click on a day to edit the tasks for this day."
+msgstr ""
+
+#: ../clock/src/applet-notifications.c:62
+msgid ""
+"No task is sheduled for today.\n"
+"\n"
+"You can add tasks by clicking on the applet to open the calendar, and then "
+"double-clicking on a day."
+msgstr ""
+
+#: ../clock/src/applet-notifications.c:77
+msgid ""
+"No task is sheduled for the next 7 days.\n"
+"\n"
+"You can add tasks by clicking on the applet to open the calendar, and then "
+"double-clicking on a day."
+msgstr ""
+
+#: ../clock/src/applet-notifications.c:89
+msgid "Show today's tasks"
+msgstr ""
+
+#: ../clock/src/applet-notifications.c:90
+msgid "Show this week's tasks"
+msgstr ""
+
+#: ../clock/src/applet-notifications.c:95
+msgid "Set up time and date"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:156
+msgid "Add a new task"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:177
+msgid "Delete this task"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:215
+msgid "Don't repeat"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:221
+msgid "Each month"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:227
+msgid "Each year"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:350
+msgid "each month"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:353
+msgid "each year"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:392
+msgid "Right-click to add a new task."
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:398 ../musicPlayer/src/applet-draw.c:153
+#: ../RSSreader/data/messages:135
+msgid "Title"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:405
+#: ../dnd2share/src/applet-notifications.c:387 ../Doncky/data/messages:97
+#: ../RSSreader/data/messages:151
+msgid "Text"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:412
+msgid "Time"
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:426
+msgid "Freq."
+msgstr ""
+
+#: ../clock/src/applet-task-editor.c:433
+msgid "Tags"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:58
+msgid "1mn"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:63
+msgid "1h"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:86
+msgid "The following task was scheduled at"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:89 ../clock/src/applet-timer.c:459
+#: ../clock/src/applet-timer.c:496
+msgid "Repeat this message every:"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:173
+msgid "The following task has felt due:"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:456
+msgid "It's time for the following task:"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:473
+msgid "This task will begin in 15 minutes:"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:493
+msgid "Today is the following anniversary:"
+msgstr ""
+
+#: ../clock/src/applet-timer.c:493
+msgid "Tomorrow is the following anniversary:"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:46
+msgid "frame&reflects"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:55
+msgid "scotch sellotape"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:64
+msgid "frame with sellotape"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:73
+msgid "CD box"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:81
+msgid "dark"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:89
+msgid "clear"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:97
+msgid "futuristic"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:105
+#: ../slider/data/messages:137
+msgid "none"
+msgstr ""
+
+#: ../desklet-rendering/src/rendering-desklet-decorations.c:113
+msgid "board"
+msgstr ""
+
+#: ../dialog-rendering/src/applet-decorator-3Dplane.h:26
+msgid "3Dplane"
+msgstr ""
+
+#: ../dialog-rendering/src/applet-decorator-comics.h:26
+msgid "comics"
+msgstr ""
+
+#: ../dialog-rendering/src/applet-decorator-curly.h:26
+msgid "curly"
+msgstr ""
+
+#: ../dialog-rendering/src/applet-decorator-modern.h:26
+msgid "modern"
+msgstr ""
+
+#: ../dialog-rendering/src/applet-decorator-tooltip.h:26
+msgid "tooltip"
+msgstr ""
+
+#: ../dnd2share/src/applet-dnd2share.c:165
+msgid ""
+"Couldn't upload the file, check that your internet connection is active."
+msgstr ""
+
+#: ../dnd2share/src/applet-dnd2share.c:280
+msgid ""
+"File has been uploaded.\n"
+"Just press CTRL+v to paste its URL anywhere."
+msgstr ""
+
+#: ../dnd2share/src/applet-dnd2share.c:331
+msgid ""
+"Please wait for the current upload to finish before starting a new one."
+msgstr ""
+
+#: ../dnd2share/src/applet-dnd2share.c:591
+msgid "Tiny URL"
+msgstr ""
+
+#: ../dnd2share/src/applet-init.c:45
+msgid ""
+"This applet lets you share files easily:\n"
+"Drag-and-drop a file on the icon to upload it to one of the available "
+"hosting sites.\n"
+"You can upload text, image, video, files, and even the current clipboard\n"
+" and you can choose amongst many sites, like DropBox, Imageshack, pastebin, "
+"etc\n"
+"The resulting URL is automatically stored in the clipboard to be directly "
+"copied by CTRL+v.\n"
+"It can keep an history of your last uploads to retrieve them without "
+"registering on the sites.\n"
+"Press left-click to copy the latest URL into the clipboard, middle-click to "
+"copy it into the mouse selection.\n"
+"You'll need to install 'curl' and 'wget' to upload the data."
+msgstr ""
+
+#: ../dnd2share/src/applet-init.c:55
+msgid "Drop to share"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:33
+msgid "Clear the list of the recently uploaded files?"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:51
+msgid ""
+"The text has been pasted in the clipboard.\n"
+"You can retrieve it with CTRL+v."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:73
+msgid "Sorry, couldn't find the original file nor a preview of it."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:98
+msgid ""
+"The URL has been stored in the clipboard.\n"
+"Just use 'CTRL+v' to paste it anywhere."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:113
+msgid ""
+"No uploaded file available\n"
+".Just drag'n drop a file on the icon to upload it"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:114
+msgid ""
+"No uploaded file available.\n"
+"Consider activating the history if you want the applet to remember previous "
+"uploads."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:131
+msgid ""
+"The current URL has been stored in the clipboard.\n"
+"Just use 'CTRL+v' to paste it anywhere."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:132
+msgid ""
+"The current URL has been stored into the selection.\n"
+"Just middle-click to paste it anywhere."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:387
+msgid "File"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:390
+msgid "Click on the icon to copy the URL into the clipboard."
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:402
+msgid "Send the clipboard's content"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:405
+msgid "History"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:485
+msgid "Get text"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:487
+msgid "Remove from history"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:490
+msgid "Clear History"
+msgstr ""
+
+#: ../dnd2share/src/applet-notifications.c:495
+msgid "Use only a files hosting site"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:34
+msgid "Caroussel"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:35
+msgid "3D plane"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:36
+#: ../dock-rendering/data/messages:87
+msgid "Parabolic"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:37
+#: ../dock-rendering/data/messages:111
+msgid "Rainbow"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:39
+#: ../dock-rendering/data/messages:29 ../shortcuts/data/messages:111
+#: ../stack/data/messages:103
+msgid "Slide"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:40 ../dock-rendering/data/messages:7
+msgid "Curve"
+msgstr ""
+
+#: ../dock-rendering/src/rendering-init.c:41
+#: ../dock-rendering/data/messages:17
+msgid "Panel"
+msgstr ""
+
+#: ../drop-indicator/src/applet-init.c:28
+msgid "drop indicator"
+msgstr ""
+
+#: ../dustbin/src/applet-init.c:30
+msgid "dustbin"
+msgstr ""
+
+#: ../dustbin/src/applet-init.c:33
+msgid ""
+"This applet manages the dustbin\n"
+"You can threw files and unmount disks by drag-and-dropping them on the "
+"icon.\n"
+"Middle-click on the icon will empty the dustbin."
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:32
+msgid "You're about to delete all files in all dustbins. Sure ?"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:91
+msgid "The trash contains"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:93
+msgid "files"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:93
+msgid "elements"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:95
+msgid "Mo"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:95
+msgid "Ko"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:115
+msgid "Counting total size and files number..."
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:135
+msgid "Show Trash (click)"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:136
+msgid "Empty Trash"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:140
+msgid "Display dustbins information"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:150
+#, c-format
+msgid "%s successfully unmounted"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:154
+#, c-format
+msgid "failed to unmount %s"
+msgstr ""
+
+#: ../dustbin/src/applet-notifications.c:178
+#: ../shortcuts/src/applet-notifications.c:167
+msgid "Unmouting this volume ..."
+msgstr ""
+
+#: ../dustbin/src/applet-trashes-manager.c:68
+msgid " trashe(s)"
+msgstr ""
+
+#: ../dustbin/src/applet-trashes-manager.c:72
+msgid " file(s)"
+msgstr ""
+
+#: ../dustbin/src/applet-trashes-manager.c:114
+#: ../dustbin/src/applet-trashes-manager.c:153
+msgid "calculating"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:34
+msgid "icon effects"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:37
+msgid "This plugin adds many special effects to your icons."
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:101 ../icon-effect/data/messages:7
+#: ../icon-effect/data/messages:23 ../icon-effect/data/messages:39
+#: ../icon-effect/data/messages:55
+msgid "Fire"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:104 ../icon-effect/data/messages:9
+#: ../icon-effect/data/messages:25 ../icon-effect/data/messages:41
+#: ../icon-effect/data/messages:83
+msgid "Stars"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:107 ../icon-effect/data/messages:11
+#: ../icon-effect/data/messages:27 ../icon-effect/data/messages:43
+#: ../icon-effect/data/messages:127
+msgid "Rain"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:110 ../icon-effect/data/messages:13
+#: ../icon-effect/data/messages:29 ../icon-effect/data/messages:45
+#: ../icon-effect/data/messages:105
+msgid "Snow"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:113 ../icon-effect/data/messages:15
+#: ../icon-effect/data/messages:31 ../icon-effect/data/messages:47
+#: ../icon-effect/data/messages:149
+msgid "Storm"
+msgstr ""
+
+#: ../icon-effect/src/applet-init.c:116 ../icon-effect/data/messages:17
+#: ../icon-effect/data/messages:33 ../icon-effect/data/messages:49
+#: ../icon-effect/data/messages:169
+msgid "Firework"
+msgstr ""
+
+#: ../illusion/src/applet-init.c:30
+msgid "illusion"
+msgstr ""
+
+#: ../illusion/src/applet-init.c:33
+msgid ""
+"This plugin provides animations for appearance & disappearance of icons."
+msgstr ""
+
+#: ../keyboard-indicator/src/applet-init.c:31
+msgid "keyboard indicator"
+msgstr ""
+
+#: ../keyboard-indicator/src/applet-init.c:34
+msgid ""
+"This applet lets you control the keyboard layout.\n"
+"\tIt can also display the current num and caps lock.\n"
+"\tLeft-click to switch to the next layout\n"
+"\tScroll up/down to select the previous/next layout\n"
+"\tRight-click gives you access to the list of available layouts."
+msgstr ""
+
+#: ../keyboard-indicator/src/applet-init.c:81
+msgid "Switch keyboard language"
+msgstr ""
+
+#: ../keyboard-indicator/src/applet-notifications.c:77
+msgid "Keyboard preferences"
+msgstr ""
+
+#: ../logout/src/applet-init.c:31
+msgid ""
+"This applet lets you manage the current session. You can either:\n"
+"shut down, restart, hibernate, suspend, log out, lock the screen, switch to "
+"another user, or program an automatic shutdown\n"
+"It will also tell you if your system needs to be restarted.\n"
+"<b>Click</b> on the icon to pop the menu up.\n"
+"You can bind a <b>shortcut</b> to it, and also to lock the screen."
+msgstr ""
+
+#: ../logout/src/applet-init.c:38 ../logout/src/applet-logout.c:228
+#: ../logout/data/messages:97
+msgid "Log out"
+msgstr ""
+
+#: ../logout/src/applet-init.c:67
+msgid "Lock the screen"
+msgstr ""
+
+#: ../logout/src/applet-init.c:71
+msgid "Show the log-out menu"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:200 ../logout/data/messages:99
+msgid "Shut down"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:206
+msgid "Restart"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:212
+#: ../powermanager/src/powermanager-menu-functions.c:97
+#: ../powermanager/src/powermanager-menu-functions.c:105
+msgid "Hibernate"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:214
+msgid "Your computer will not consume any energy."
+msgstr ""
+
+#: ../logout/src/applet-logout.c:219
+#: ../powermanager/src/powermanager-menu-functions.c:100
+#: ../powermanager/src/powermanager-menu-functions.c:107
+msgid "Suspend"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:221
+msgid "Your computer will still consume a small amount of energy."
+msgstr ""
+
+#: ../logout/src/applet-logout.c:230
+msgid "Close your session and allow to open a new one."
+msgstr ""
+
+#: ../logout/src/applet-logout.c:241
+msgid "Switch user"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:262
+msgid "Guest session"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:269 ../logout/data/messages:101
+msgid "Lock screen"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:274
+msgid "Program an automatic shut-down"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:325
+msgid "Your computer will shut-down in 1 minute."
+msgstr ""
+
+#: ../logout/src/applet-logout.c:349
+msgid "Choose in how many minutes your PC will stop:"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:523
+#, c-format
+msgid "It will automatically shut-down in %ds"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:524
+msgid "Shut down the computer?"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:584
+msgid "Restart the computer?"
+msgstr ""
+
+#: ../logout/src/applet-logout.c:621
+msgid "Close the current session?"
+msgstr ""
+
+#: ../logout/src/applet-notifications.c:103
+msgid "Manage users"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Server address:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+#: ../mail/src/cd-mail-applet-accounts.c:44
+msgid "myLogin"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "myHost"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Username:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Password:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "The password will be crypted."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Port:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid ""
+"Enter 0 to use the default port. Default ports are 110 for POP3 or APOP and "
+"995 for POP3S."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid ""
+"Enter 0 to use the default port. Default ports are 143 for IMAP4 and 993 for "
+"IMAP4 over SSL."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Use a secure connection (SSL)"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39 ../RSSreader/data/messages:109
+#: ../netspeed/data/messages:151 ../powermanager/data/messages:161
+#: ../weather/data/messages:117
+msgid "Refresh time:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39 ../RSSreader/data/messages:107
+#: ../weather/data/messages:115
+msgid "In minutes."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Specific mail application"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Leave empty to use the default mail application."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Directory on server:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Path of mbox file:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Path to Mail directory:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Address of feed:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid "Remove this account"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-accounts.c:39
+msgid ""
+"Don't forget to enable IMAP (or POP) service from settings of your mail "
+"account."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:230
+msgid "Please choose an account type."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:235
+msgid "New account's name"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:238
+msgid "Please enter a name for this account."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:248
+msgid ""
+"This account already exists.\n"
+"Please choose another name for the new account."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:392
+msgid "Enter a name for this account. You can give it any name you want."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-config.c:447
+msgid "Remove Account"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-etpan.c:236 ../wifi/src/applet-draw.c:186
+msgid "unknown"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-etpan.c:236
+msgid "no subject"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-etpan.c:404
+msgid "No unread mail in your mailboxes"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-etpan.c:426
+#, c-format
+msgid "You have %d new mails:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-etpan.c:428
+msgid "You have a new mail:"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-init.c:33
+msgid "mail"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-init.c:36
+msgid ""
+"This applet is very useful to warn you when you get new e-mails\n"
+"It can check in any kind of mailbox (yahoo, gmail, etc)\n"
+"Left-click to launch the prefered mail application,\n"
+"Middle-click to refresh all the mailboxes."
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:62
+#, c-format
+msgid ""
+"A problem occured\n"
+"If '%s' is not your usual mail application,\n"
+"you can change it in the configuration panel of this module"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:67
+msgid ""
+"No mail application is defined,\n"
+"you can define it in the configuration panel of this module"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:147
+msgid "Refresh a mail account"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:154
+msgid "Refresh all"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:161
+#, c-format
+msgid "Refresh %s"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:167
+msgid "Mark all emails as read"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:170
+#, c-format
+msgid "Launch %s"
+msgstr ""
+
+#: ../mail/src/cd-mail-applet-notifications.c:343
+msgid "Mail"
+msgstr ""
+
+#: ../motion-blur/src/applet-init.c:28
+msgid "motion blur"
+msgstr ""
+
+#: ../motion-blur/src/applet-init.c:31
+msgid "This plugin adds a motion blur effect to docks."
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:59
+msgid "Unknown artist"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:59
+msgid "Unknown title"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:65 ../musicPlayer/src/applet-mpris.c:336
+msgid "Track"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:151
+msgid "Artist"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:155
+msgid "Album"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:157
+msgid "Length"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:159
+msgid "Track n°"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:160
+msgid "Song n°"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:176
+msgid "Current song"
+msgstr ""
+
+#: ../musicPlayer/src/applet-draw.c:182
+msgid "There is no media playing."
+msgstr ""
+
+#: ../musicPlayer/src/applet-init.c:48
+msgid "musicPlayer"
+msgstr ""
+
+#: ../musicPlayer/src/applet-init.c:51
+msgid ""
+"This applet lets you control any music player.\n"
+"First choose the player you want to control.\n"
+"<b>click</b> to show/hide the player or pause,\n"
+"<b>middle-click</b> to pause or go to next song,\n"
+"<b>Scroll up/down</b> to change the song or control the volume.\n"
+"You can drag and drop songs on the icon to put them in the queue (depends on "
+"Player),\n"
+" and jpeg image to use as cover.\n"
+"Note: you may have to install or activate the MPRIS plug-in of the player."
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:83
+msgid ""
+"Sorry, I couldn't detect any player.\n"
+"If it is running, it is maybe because its version is too old and does not "
+"offer such service."
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:175
+msgid "Choose a music player to control"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:262
+msgid "Find opened player"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:266
+msgid "Choose a player"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:272
+msgid "Previous"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:272
+msgid "scroll-up"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:278
+msgid "Play/Pause"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:278
+msgid "left-click"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:284
+msgid "Next"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:284
+msgid "scroll-down"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:289
+msgid "Stop"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:293
+msgid "Information"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:296
+msgid "Show the Window"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:301
+msgid "Show JumpBox"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:303
+msgid "Toggle Shuffle"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:305
+msgid "Toggle Repeat"
+msgstr ""
+
+#: ../musicPlayer/src/applet-notifications.c:307
+msgid "Rate this song"
+msgstr ""
+
+#: ../netspeed/src/applet-init.c:29
+msgid "netspeed"
+msgstr ""
+
+#: ../netspeed/src/applet-init.c:32
+msgid ""
+"This applet shows you the bit rate of your internet connection and some "
+"stats about it.\n"
+"Left-click on the icon to have the total amount of data transfered\n"
+"Middle-click to (de)activate the network (needs NetworManager)"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:36
+msgid "Total amount of data"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:37
+msgid "downloaded"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:38
+msgid "uploaded"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:42
+#, c-format
+msgid ""
+"Interface '%s' doesn't seem to exist or is not readable.\n"
+" You may have to set up the interface you wish to monitor.\n"
+" Do you want to do it now?"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:94
+msgid "Enable/disable network"
+msgstr ""
+
+#: ../netspeed/src/applet-notifications.c:102
+msgid "Re-check interface"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:130
+msgid "Battery charged"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:152
+msgid "Time before empty"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:152
+msgid "Time before full"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:209
+msgid "Laptop on Battery."
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:210
+#: ../powermanager/src/powermanager-draw.c:219
+msgid "Battery charged at:"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:211
+msgid "Estimated time before empty:"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:218
+msgid "Laptop on Charge."
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:220
+msgid "Estimated time before full:"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:227
+msgid "Model"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:235
+msgid "Maximum capacity"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:240
+msgid "No battery found."
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:262
+msgid ""
+"PowerManager.\n"
+"Battery charge seems to be low"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:262
+msgid "Estimated time with charge:"
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:262
+msgid "Please put your laptop on charge."
+msgstr ""
+
+#: ../powermanager/src/powermanager-draw.c:276
+msgid ""
+"PowerManager.\n"
+"Your battery is now charged"
+msgstr ""
+
+#: ../powermanager/src/powermanager-init.c:32
+msgid "PowerManager"
+msgstr ""
+
+#: ../powermanager/src/powermanager-init.c:35
+msgid ""
+"This applet displays the current state of your <b>laptop battery</b>: "
+"charge, time remaining, etc\n"
+"<b>Click</b> on the icon to have useful inforamtion,\n"
+"<b>Right-click</b> on the icon to hibernate or suspend the system."
+msgstr ""
+
+#: ../powermanager/src/powermanager-menu-functions.c:71
+msgid "Set up power management"
+msgstr ""
+
+#: ../powermanager/src/powermanager-menu-functions.c:88
+msgid "Power statistics"
+msgstr ""
+
+#: ../quick-browser/src/applet-init.c:29
+msgid "Quick Browser"
+msgstr ""
+
+#: ../quick-browser/src/applet-init.c:32
+msgid ""
+"This applet lets you browse a folder and its sub-folders very quickly.\n"
+"You can set up a shortkey to pop up the menu.\n"
+"Midlle-click will open the main folder.\n"
+"This applet can be instanciated several times, if you want to browse "
+"different folders."
+msgstr ""
+
+#: ../quick-browser/src/applet-init.c:64
+msgid "Show/hide the folder menu"
+msgstr ""
+
+#: ../quick-browser/src/applet-menu.c:107
+#: ../quick-browser/src/applet-menu.c:116
+msgid "Open this folder"
+msgstr ""
+
+#: ../quick-browser/src/applet-notifications.c:41
+msgid "Open folder"
+msgstr ""
+
+#: ../shortcuts/src/applet-bookmarks.c:131
+#: ../shortcuts/src/applet-bookmarks.c:393
+#: ../shortcuts/src/applet-drives.c:283
+msgid "Unmounted"
+msgstr ""
+
+#: ../shortcuts/src/applet-drives.c:151 ../shortcuts/src/applet-drives.c:210
+#, c-format
+msgid "%s is now mounted"
+msgstr ""
+
+#: ../shortcuts/src/applet-drives.c:151
+#: ../shortcuts/src/applet-load-icons.c:137
+#, c-format
+msgid "%s has been connected"
+msgstr ""
+
+#: ../shortcuts/src/applet-drives.c:210
+#, c-format
+msgid "%s is now unmounted"
+msgstr ""
+
+#: ../shortcuts/src/applet-init.c:32
+msgid "shortcuts"
+msgstr ""
+
+#: ../shortcuts/src/applet-init.c:35
+msgid ""
+"An applet that let you access quickly to all of your shortcuts.\n"
+"It can manage disks, network points, and Nautilus bookmarks (even if you "
+"don't have Nautilus).\n"
+"Drag and drop a folder on the main icon or the sub-dock to add a bookmark.\n"
+"Middle-click on the main icon to show your home folder.\n"
+"Middle-click on a mounting point icon to (un)mount is quickly.\n"
+"The applet can also display valuable information about your disks, like free "
+"space, type, etc."
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:44
+#: ../shortcuts/src/applet-notifications.c:72
+#, c-format
+msgid "failed to mount %s"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:44
+#: ../shortcuts/src/applet-notifications.c:72
+#, c-format
+msgid "Failed to unmount %s"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:88
+msgid "Sorry, this applet is not yet available for KDE."
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:90
+msgid "No disks or bookmarks were found."
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:193
+msgid "Enter a name for this bookmark:"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:249
+msgid "Open Home directory"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:257
+msgid "Rename this bookmark"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:258
+msgid "Remove this bookmark"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:264
+msgid "Eject"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:269
+msgid "Unmount"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:269
+msgid "Mount"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:273
+msgid "Get disk info"
+msgstr ""
+
+#: ../shortcuts/src/applet-notifications.c:299
+msgid "Only folders can be bookmarked."
+msgstr ""
+
+#: ../show-mouse/src/applet-init.c:28
+msgid "show mouse"
+msgstr ""
+
+#: ../show-mouse/src/applet-init.c:31
+msgid ""
+"This plugin draws some animations around the cursor when it's inside a "
+"dock/desklet."
+msgstr ""
+
+#: ../showDesktop/src/applet-init.c:28
+msgid "showDesktop"
+msgstr ""
+
+#: ../showDesktop/src/applet-init.c:31
+msgid ""
+"This applet adds an icon to show your desktop,\n"
+" and also : the desklets, the Widget Layer, or all the desktops at once.\n"
+"It can also be used to quickly change the screen's resolution from the right-"
+"click menu.\n"
+"Left-click to show/hide the desktop,\n"
+"Middle-click to show/hide either the desktop, the desklets, the Widget "
+"Layer, or all the desktops at once."
+msgstr ""
+
+#: ../showDesktop/src/applet-notifications.c:201
+msgid "Change screen resolution"
+msgstr ""
+
+#: ../slider/src/applet-init.c:29
+msgid "slider"
+msgstr ""
+
+#: ../slider/src/applet-init.c:32
+msgid ""
+"This applet is a basic image slider\n"
+" You just have to select a directory and a display effect and you're done\n"
+"Click to play/pause or to edit the current image.\n"
+"Middle-click to open the images folder."
+msgstr ""
+
+#: ../slider/src/applet-notifications.c:215
+msgid "Play"
+msgstr ""
+
+#: ../slider/src/applet-notifications.c:215
+msgid "Pause"
+msgstr ""
+
+#: ../slider/src/applet-notifications.c:223
+#: ../slider/src/applet-notifications.c:225
+msgid "Open current image"
+msgstr ""
+
+#: ../slider/src/applet-notifications.c:265
+#: ../slider/src/applet-notifications.c:267
+msgid "Browse images folder"
+msgstr ""
+
+#: ../slider/src/applet-notifications.c:270
+msgid "Refresh images list"
+msgstr ""
+
+#: ../stack/src/applet-init.c:31
+msgid "stack"
+msgstr ""
+
+#: ../stack/src/applet-init.c:34
+msgid ""
+"This applet allows you to build a stack of files, just like the Stacks "
+"applet of MacOS X.\n"
+"To add file into your stacks, you just have to drag and drop it on the "
+"Stacks icon and you're done.\n"
+"You can drop any file, or web URL, or even some piece of text\n"
+"You can quickly copy the path/url/text to the clipboard, or open it."
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:50
+msgid ""
+"No items in the stack.\n"
+"You can add files, URL, and even a piece of text by dragging them onto the "
+"icon."
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:78
+msgid "Clear the stack?"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:99
+msgid "Set new name for this item:"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:169
+msgid "Paste (drag'n'drop)"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:171
+msgid "Clear the stack"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:176
+msgid "Open (click)"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:181
+#: ../terminal/src/terminal-callbacks.c:82
+#: ../terminal/src/terminal-widget.c:398
+msgid "Copy"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:184
+msgid "Cut"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:187
+msgid "Rename this item"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:188
+msgid "Remove this item"
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:257
+msgid "The file has been added to the stack."
+msgstr ""
+
+#: ../stack/src/applet-notifications.c:258
+msgid "The URL has been added to the stack."
+msgstr ""
+
+#: ../switcher/src/applet-draw.c:597 ../switcher/src/applet-draw.c:604
+#: ../switcher/src/applet-load-icons.c:53
+#: ../switcher/src/applet-notifications.c:415
+msgid "Current"
+msgstr ""
+
+#: ../switcher/src/applet-draw.c:604 ../switcher/src/applet-draw.c:606
+#: ../switcher/src/applet-load-icons.c:59
+#: ../switcher/src/applet-notifications.c:216
+#: ../switcher/src/applet-notifications.c:228
+#: ../switcher/src/applet-notifications.c:407
+#: ../switcher/src/applet-notifications.c:467
+msgid "Desktop"
+msgstr ""
+
+#: ../switcher/src/applet-init.c:32
+msgid "switcher"
+msgstr ""
+
+#: ../switcher/src/applet-init.c:35
+msgid ""
+"This applet allows you to interact with your workspaces :\n"
+" - switch between your workspaces (scroll up/down with the mouse),\n"
+" - name them (in the config),\n"
+" - quickly add/remove a workspace (in the menu),\n"
+" - show the desktop (middle-click or in the menu),\n"
+" - list all windows on each workspace ((middle-click or in the menu)\n"
+"It has 2 modes : compact (on 1 icon) and expanded (with a sub-dock)."
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:217
+#: ../switcher/src/applet-notifications.c:279
+msgid "Rename this workspace"
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:266
+msgid "Add a workspace"
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:270
+msgid "Remove last workspace"
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:286
+msgid "Move current workspace to this workspace"
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:291
+msgid ""
+"This will move all windows from the current desktop to the one you clicked "
+"on."
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:300
+msgid "Windows List"
+msgstr ""
+
+#: ../switcher/src/applet-notifications.c:305
+msgid "Show the desktop"
+msgstr ""
+
+#: ../systray/src/systray-init.c:35
+msgid ""
+"Add a systray to your dock.\n"
+"Left-click to show/hide the systray in a dialog (you can bind a keyboard "
+"shortcut for it.)\n"
+"But the best way to use it is to detach it from the dock, and place it "
+"somewhere, above other windows."
+msgstr ""
+
+#: ../systray/src/systray-init.c:41
+msgid "Notification Area Old"
+msgstr ""
+
+#: ../systray/src/systray-init.c:65
+msgid "Show/hide the systray"
+msgstr ""
+
+#: ../systray/src/systray-interface.c:70
+msgid ""
+"Another systray is already running (probably on your panel)\n"
+"Since there can only be one systray at once, you should remove it to avoid "
+"any conflict."
+msgstr ""
+
+#: ../template/src/applet-init.c:28
+msgid "CD_APPLET_NAME"
+msgstr ""
+
+#: ../template/src/applet-init.c:31
+msgid ""
+"Useful description\n"
+"and manual"
+msgstr ""
+
+#: ../terminal/src/terminal-init.c:31
+msgid "terminal"
+msgstr ""
+
+#: ../terminal/src/terminal-init.c:34
+msgid ""
+"Add a terminal to your dock !\n"
+"Left-click to show/hide terminal (you can bind a keyboard shortcut for it.)\n"
+"You can drag'n'drop files or text and select an action.\n"
+"You can open many tabs, rename them, change their color (right-click on a "
+"tab to interact on it)\n"
+"To open a new tab : type 'CTRL+t' or double-click next to the last tab\n"
+"To close a tab : type 'CTRL+w' or middle-click on it."
+msgstr ""
+
+#: ../terminal/src/terminal-init.c:59
+msgid "Show/hide the terminal"
+msgstr ""
+
+#: ../terminal/src/terminal-menu-functions.c:78
+#: ../terminal/src/terminal-widget.c:420
+msgid "New Tab"
+msgstr ""
+
+#: ../terminal/src/terminal-menu-functions.c:79
+msgid "Rename current Tab"
+msgstr ""
+
+#: ../terminal/src/terminal-menu-functions.c:80
+msgid "Close current Tab"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:56 ../terminal/data/messages:107
+msgid "Terminal"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:160
+msgid "Set title for this tab:"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:215
+msgid "Select a color"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:358
+#, c-format
+msgid "You can recall the Terminal desklet by typing %s"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:407
+msgid "Paste"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:429
+msgid "Rename this Tab"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:438
+msgid "Change this Tab's colour"
+msgstr ""
+
+#: ../terminal/src/terminal-widget.c:447
+msgid "Close this Tab"
+msgstr ""
+
+#: ../tomboy/src/tomboy-init.c:30
+msgid "Note-Taking"
+msgstr ""
+
+#: ../tomboy/src/tomboy-init.c:33
+msgid ""
+"Control your Gnote or TomBoy's notes directly in the dock !\n"
+"Click on a note to open it, Escape to close it.\n"
+"Middle-click to instantly create a new note.\n"
+"You can search inside notes and display their content on the icons."
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:100
+msgid "Note name : "
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:123
+msgid "Delete this note?"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:138
+msgid "Search for:"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:154
+msgid "Search for tag:"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:195
+msgid "Add a note"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:199
+msgid "Delete this note"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:202
+msgid "Reload notes"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:208
+msgid "Search"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:209
+msgid "Search for tag"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:211
+msgid "Search for today's note"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:212
+msgid "Search for this week's note"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:213
+msgid "Search for next week's note"
+msgstr ""
+
+#: ../tomboy/src/tomboy-notifications.c:223
+msgid "Reset marks"
+msgstr ""
+
+#: ../weather/src/applet-config.c:120
+msgid ""
+"I couldn't get the info\n"
+" Is connexion alive ?"
+msgstr ""
+
+#: ../weather/src/applet-config.c:126
+msgid "Couldn't get the location code (is connection alive?)"
+msgstr ""
+
+#: ../weather/src/applet-config.c:134
+msgid "I couldn't find this location"
+msgstr ""
+
+#: ../weather/src/applet-config.c:185
+msgid "Searching the location code..."
+msgstr ""
+
+#: ../weather/src/applet-config.c:211
+msgid ""
+"Enter the name of your location and press Enter to choose amongst results."
+msgstr ""
+
+#: ../weather/src/applet-init.c:29
+msgid "weather"
+msgstr ""
+
+#: ../weather/src/applet-init.c:32
+msgid ""
+"This applet displays weather into your dock.\n"
+"Data are provided by www.weather.com, you can find your location in the "
+"config panel.\n"
+"It can detach itself to be a totally eye-candy 3D deskelt.\n"
+"Middle-click on the main icon to have current conditions information, left-"
+"click on a sub-icon to have forcast information.\n"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Jan"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Feb"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Mar"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Apr"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "May"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Jun"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Jui"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Aug"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Sep"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Oct"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Nov"
+msgstr ""
+
+#: ../weather/src/applet-load-icons.c:26
+msgid "Dec"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:61
+msgid "Data are being retrieved, please wait a moment."
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:97
+msgid "Show current conditions (middle-click)"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:102
+msgid "Open weather.com (double-click)"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:104
+msgid "Reload now"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:137
+msgid ""
+"No data available\n"
+" is your connection alive?"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:157
+#: ../weather/src/applet-notifications.c:195
+msgid "Temperature"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:158
+msgid "Precipitation probability"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:159
+#: ../weather/src/applet-notifications.c:196
+msgid "Wind"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:160
+#: ../weather/src/applet-notifications.c:197
+msgid "Humidity"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:161
+#: ../weather/src/applet-notifications.c:198
+msgid "Sunrise"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:161
+#: ../weather/src/applet-notifications.c:198
+msgid "Sunset"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:171
+msgid "Data are being fetched, please re-try in a few seconds."
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:181
+msgid ""
+"No data available\n"
+"Retrying now..."
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:195
+msgid "Feels like"
+msgstr ""
+
+#: ../weather/src/applet-notifications.c:197
+msgid "Pressure"
+msgstr ""
+
+#: ../weblets/src/applet-init.c:28
+msgid "weblets"
+msgstr ""
+
+#: ../weblets/src/applet-init.c:31
+msgid ""
+"The weblets applet allows you to show an interactive web page on your "
+"desktop.\n"
+"You can select your web page, set the desired scrolling,\n"
+"and hide the scrollbars to get a real 'crop' of the page."
+msgstr ""
+
+#: ../weblets/src/applet-widget.c:58
+msgid "Weblets"
+msgstr ""
+
+#: ../wifi/src/applet-draw.c:179
+msgid "WiFi disabled."
+msgstr ""
+
+#: ../wifi/src/applet-init.c:30
+msgid "wifi"
+msgstr ""
+
+#: ../wifi/src/applet-init.c:33
+msgid ""
+"This applet shows you the signal strength of the first active wifi "
+"connection\n"
+"Left-click to pop-up some info,Middle-click to re-check immediately."
+msgstr ""
+
+#: ../Animated-icons/data/messages:1 ../icon-effect/data/messages:1
+#: ../illusion/data/messages:1
+msgid "Global"
+msgstr ""
+
+#: ../Animated-icons/data/messages:3
+msgid "Animations are triggered when hovering an icon only in OpenGL mode."
+msgstr ""
+
+#: ../Animated-icons/data/messages:5 ../icon-effect/data/messages:3
+msgid "when hovering over an icon"
+msgstr ""
+
+#: ../Animated-icons/data/messages:7 ../icon-effect/data/messages:5
+msgid "Effects used:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:23 ../icon-effect/data/messages:19
+msgid "when clicking on an launcher"
+msgstr ""
+
+#: ../Animated-icons/data/messages:25 ../icon-effect/data/messages:21
+msgid "Effects used on launcher:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:41 ../Animated-icons/data/messages:61
+msgid "Number of times the animation will play:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:43 ../icon-effect/data/messages:35
+msgid "when clicking on an application"
+msgstr ""
+
+#: ../Animated-icons/data/messages:45 ../icon-effect/data/messages:37
+msgid "Effects used on applications:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:63
+msgid "Rotation"
+msgstr ""
+
+#: ../Animated-icons/data/messages:65 ../Animated-icons/data/messages:83
+#: ../Animated-icons/data/messages:135 ../Animated-icons/data/messages:147
+#: ../Animated-icons/data/messages:159 ../Animated-icons/data/messages:173
+#: ../Remote-Control/data/messages:9 ../Scooby-Do/data/messages:15
+#: ../Scooby-Do/data/messages:19 ../Toons/data/messages:105
+#: ../icon-effect/data/messages:85 ../icon-effect/data/messages:107
+#: ../icon-effect/data/messages:129 ../icon-effect/data/messages:151
+#: ../icon-effect/data/messages:171 ../show-mouse/data/messages:19
+msgid "In ms."
+msgstr ""
+
+#: ../Animated-icons/data/messages:67 ../Animated-icons/data/messages:85
+#: ../Animated-icons/data/messages:137 ../icon-effect/data/messages:59
+#: ../icon-effect/data/messages:87 ../icon-effect/data/messages:109
+#: ../icon-effect/data/messages:131 ../icon-effect/data/messages:153
+#: ../icon-effect/data/messages:173 ../illusion/data/messages:33
+#: ../illusion/data/messages:55 ../illusion/data/messages:59
+#: ../illusion/data/messages:69 ../illusion/data/messages:75
+#: ../mail/data/messages:143
+msgid "Duration of the animation:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:69 ../Animated-icons/data/messages:87
+#: ../Animated-icons/data/messages:139 ../Animated-icons/data/messages:151
+#: ../Animated-icons/data/messages:163 ../Animated-icons/data/messages:177
+#: ../icon-effect/data/messages:61 ../icon-effect/data/messages:89
+#: ../icon-effect/data/messages:111 ../icon-effect/data/messages:133
+#: ../icon-effect/data/messages:155 ../icon-effect/data/messages:175
+msgid "Repeat while icon is pointed to?"
+msgstr ""
+
+#: ../Animated-icons/data/messages:71
+msgid "Type of mesh:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:73 ../Clipper/data/messages:45
+#: ../Composite-Manager/data/messages:41 ../Disks/data/messages:27
+#: ../Doncky/data/messages:43 ../Folders/data/messages:57
+#: ../GMenu/data/messages:45 ../Global-Menu/data/messages:39
+#: ../Impulse/data/messages:43 ../MeMenu/data/messages:39
+#: ../Messaging-Menu/data/messages:51 ../Network-Monitor/data/messages:53
+#: ../RSSreader/data/messages:47 ../Recent-Events/data/messages:45
+#: ../Status-Notifier/data/messages:55 ../System-Monitor/data/messages:51
+#: ../Toons/data/messages:51 ../Xgamma/data/messages:47
+#: ../alsaMixer/data/messages:53 ../clock/data/messages:53
+#: ../dnd2share/data/messages:41 ../dustbin/data/messages:41
+#: ../keyboard-indicator/data/messages:51 ../logout/data/messages:45
+#: ../mail/data/messages:51 ../musicPlayer/data/messages:53
+#: ../netspeed/data/messages:51 ../powermanager/data/messages:53
+#: ../quick-browser/data/messages:47 ../shortcuts/data/messages:45
+#: ../showDesktop/data/messages:49 ../slider/data/messages:51
+#: ../stack/data/messages:47 ../switcher/data/messages:39
+#: ../systray/data/messages:37 ../template/data/messages:45
+#: ../terminal/data/messages:45 ../tomboy/data/messages:55
+#: ../weather/data/messages:53 ../weblets/data/messages:45
+#: ../wifi/data/messages:51
+msgid "Normal"
+msgstr ""
+
+#: ../Animated-icons/data/messages:75
+msgid "Cube"
+msgstr ""
+
+#: ../Animated-icons/data/messages:77
+msgid "Capsule"
+msgstr ""
+
+#: ../Animated-icons/data/messages:79
+msgid "Colour of the sheen:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:91 ../Animated-icons/data/messages:95
+#: ../Clipper/data/messages:9 ../Composite-Manager/data/messages:91
+#: ../Composite-Manager/data/messages:95 ../Doncky/data/messages:9
+#: ../Doncky/data/messages:91 ../Folders/data/messages:21
+#: ../GMenu/data/messages:9 ../GMenu/data/messages:99
+#: ../Impulse/data/messages:7 ../Impulse/data/messages:125
+#: ../Impulse/data/messages:129 ../Impulse/data/messages:133
+#: ../RSSreader/data/messages:11 ../RSSreader/data/messages:129
+#: ../Recent-Events/data/messages:9 ../System-Monitor/data/messages:187
+#: ../System-Monitor/data/messages:195 ../Xgamma/data/messages:11
+#: ../alsaMixer/data/messages:131 ../alsaMixer/data/messages:135
+#: ../alsaMixer/data/messages:149 ../dnd2share/data/messages:9
+#: ../logout/data/messages:9 ../quick-browser/data/messages:11
+#: ../shortcuts/data/messages:9 ../showDesktop/data/messages:9
+#: ../stack/data/messages:11 ../switcher/data/messages:9
+#: ../switcher/data/messages:151 ../systray/data/messages:9
+#: ../template/data/messages:9 ../terminal/data/messages:9
+#: ../weblets/data/messages:9
+msgid "Leave empty to use the default one."
+msgstr ""
+
+#: ../Animated-icons/data/messages:93
+msgid "Image for the spotlight:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:97
+msgid "Image for the front spotlight:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:99
+msgid "Spot colour:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:101
+msgid "Halo colour:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:103
+msgid "Rays"
+msgstr ""
+
+#: ../Animated-icons/data/messages:105 ../icon-effect/data/messages:65
+#: ../icon-effect/data/messages:93 ../icon-effect/data/messages:115
+#: ../icon-effect/data/messages:137 ../icon-effect/data/messages:159
+#: ../illusion/data/messages:37 ../show-mouse/data/messages:27
+msgid "1st color of gradation :"
+msgstr ""
+
+#: ../Animated-icons/data/messages:107 ../icon-effect/data/messages:67
+#: ../icon-effect/data/messages:95 ../icon-effect/data/messages:117
+#: ../icon-effect/data/messages:139 ../icon-effect/data/messages:161
+#: ../illusion/data/messages:39 ../show-mouse/data/messages:29
+msgid "2nd color of gradation :"
+msgstr ""
+
+#: ../Animated-icons/data/messages:109 ../icon-effect/data/messages:69
+#: ../icon-effect/data/messages:97 ../icon-effect/data/messages:181
+#: ../illusion/data/messages:41 ../show-mouse/data/messages:31
+msgid "Random colours?"
+msgstr ""
+
+#: ../Animated-icons/data/messages:111
+msgid "Number of rays:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:113
+msgid "Ray size:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:115
+msgid "Ray speed:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:119
+msgid "Initial stretch:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:121
+msgid "Horizontal stretch"
+msgstr ""
+
+#: ../Animated-icons/data/messages:123
+msgid "Vertical stretch"
+msgstr ""
+
+#: ../Animated-icons/data/messages:125
+msgid "Corner stretch"
+msgstr ""
+
+#: ../Animated-icons/data/messages:127
+msgid "Spring constant:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:129
+msgid "Friction:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:131
+msgid "Number of points on the grid in each direction:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:141
+msgid "Wave width:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:143
+msgid "Wave amplitude:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:149
+msgid "Pulse duration:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:153
+msgid "Pulse max zoom:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:155
+msgid "Pulse follows icon shape?"
+msgstr ""
+
+#: ../Animated-icons/data/messages:161
+msgid "Bounce duration:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:165
+msgid "When bouncing, resize the icon by:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:167
+msgid "the lower the value, the more it will flatten."
+msgstr ""
+
+#: ../Animated-icons/data/messages:169
+msgid "How much the icon will flatten when hitting the ground:"
+msgstr ""
+
+#: ../Animated-icons/data/messages:175
+msgid "Blink duration:"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:1 ../Cairo-Penguin/data/messages:3
+#: ../Clipper/data/messages:1 ../Clipper/data/messages:3
+#: ../Composite-Manager/data/messages:1 ../Composite-Manager/data/messages:3
+#: ../Disks/data/messages:1 ../Disks/data/messages:3 ../Doncky/data/messages:1
+#: ../Doncky/data/messages:3 ../Folders/data/messages:1
+#: ../Folders/data/messages:3 ../GMenu/data/messages:1
+#: ../GMenu/data/messages:3 ../Global-Menu/data/messages:1
+#: ../Global-Menu/data/messages:3 ../Impulse/data/messages:1
+#: ../Impulse/data/messages:3 ../MeMenu/data/messages:1
+#: ../MeMenu/data/messages:3 ../Messaging-Menu/data/messages:1
+#: ../Messaging-Menu/data/messages:3 ../Network-Monitor/data/messages:1
+#: ../Network-Monitor/data/messages:3 ../RSSreader/data/messages:1
+#: ../RSSreader/data/messages:3 ../Recent-Events/data/messages:1
+#: ../Recent-Events/data/messages:3 ../Status-Notifier/data/messages:1
+#: ../Status-Notifier/data/messages:3 ../System-Monitor/data/messages:1
+#: ../System-Monitor/data/messages:3 ../Toons/data/messages:1
+#: ../Toons/data/messages:3 ../Xgamma/data/messages:1
+#: ../Xgamma/data/messages:3 ../alsaMixer/data/messages:1
+#: ../alsaMixer/data/messages:3 ../clock/data/messages:1
+#: ../clock/data/messages:3 ../dnd2share/data/messages:1
+#: ../dnd2share/data/messages:3 ../dustbin/data/messages:1
+#: ../dustbin/data/messages:3 ../keyboard-indicator/data/messages:1
+#: ../keyboard-indicator/data/messages:3 ../logout/data/messages:1
+#: ../logout/data/messages:3 ../mail/data/messages:1 ../mail/data/messages:3
+#: ../musicPlayer/data/messages:1 ../musicPlayer/data/messages:3
+#: ../netspeed/data/messages:1 ../netspeed/data/messages:3
+#: ../powermanager/data/messages:1 ../powermanager/data/messages:3
+#: ../quick-browser/data/messages:1 ../quick-browser/data/messages:3
+#: ../shortcuts/data/messages:1 ../shortcuts/data/messages:3
+#: ../showDesktop/data/messages:1 ../showDesktop/data/messages:3
+#: ../slider/data/messages:1 ../slider/data/messages:3
+#: ../stack/data/messages:1 ../stack/data/messages:3
+#: ../switcher/data/messages:1 ../switcher/data/messages:3
+#: ../systray/data/messages:1 ../systray/data/messages:3
+#: ../template/data/messages:1 ../template/data/messages:3
+#: ../terminal/data/messages:1 ../terminal/data/messages:3
+#: ../tomboy/data/messages:1 ../tomboy/data/messages:3
+#: ../weather/data/messages:1 ../weather/data/messages:3
+#: ../weblets/data/messages:1 ../weblets/data/messages:3
+#: ../wifi/data/messages:1 ../wifi/data/messages:3
+msgid "Icon"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:5 ../Clipper/data/messages:5
+#: ../Composite-Manager/data/messages:5 ../Doncky/data/messages:5
+#: ../Folders/data/messages:5 ../GMenu/data/messages:5
+#: ../Global-Menu/data/messages:5 ../Impulse/data/messages:5
+#: ../MeMenu/data/messages:5 ../Messaging-Menu/data/messages:5
+#: ../Network-Monitor/data/messages:5 ../RSSreader/data/messages:5
+#: ../Recent-Events/data/messages:5 ../Status-Notifier/data/messages:5
+#: ../System-Monitor/data/messages:5 ../Toons/data/messages:5
+#: ../Xgamma/data/messages:5 ../alsaMixer/data/messages:5
+#: ../clock/data/messages:5 ../dnd2share/data/messages:5
+#: ../dustbin/data/messages:5 ../keyboard-indicator/data/messages:5
+#: ../logout/data/messages:5 ../mail/data/messages:5
+#: ../musicPlayer/data/messages:5 ../netspeed/data/messages:5
+#: ../powermanager/data/messages:5 ../quick-browser/data/messages:5
+#: ../shortcuts/data/messages:5 ../showDesktop/data/messages:5
+#: ../slider/data/messages:5 ../stack/data/messages:5
+#: ../switcher/data/messages:5 ../systray/data/messages:5
+#: ../template/data/messages:5 ../terminal/data/messages:5
+#: ../tomboy/data/messages:5 ../weather/data/messages:5
+#: ../weblets/data/messages:5 ../wifi/data/messages:5
+msgid "Name of the dock it belongs to:"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:7 ../Clipper/data/messages:7
+#: ../Composite-Manager/data/messages:7 ../Disks/data/messages:7
+#: ../Doncky/data/messages:7 ../Folders/data/messages:9
+#: ../GMenu/data/messages:7 ../Messaging-Menu/data/messages:7
+#: ../Network-Monitor/data/messages:9 ../RSSreader/data/messages:9
+#: ../Recent-Events/data/messages:7 ../Status-Notifier/data/messages:7
+#: ../System-Monitor/data/messages:7 ../Toons/data/messages:7
+#: ../Xgamma/data/messages:9 ../alsaMixer/data/messages:9
+#: ../clock/data/messages:9 ../dnd2share/data/messages:7
+#: ../dustbin/data/messages:7 ../keyboard-indicator/data/messages:7
+#: ../logout/data/messages:7 ../mail/data/messages:7
+#: ../musicPlayer/data/messages:9 ../netspeed/data/messages:7
+#: ../powermanager/data/messages:9 ../quick-browser/data/messages:9
+#: ../shortcuts/data/messages:7 ../showDesktop/data/messages:7
+#: ../slider/data/messages:7 ../stack/data/messages:9
+#: ../switcher/data/messages:7 ../systray/data/messages:7
+#: ../template/data/messages:7 ../terminal/data/messages:7
+#: ../tomboy/data/messages:7 ../weather/data/messages:9
+#: ../weblets/data/messages:7 ../wifi/data/messages:7
+msgid "Name of the icon as it will appear in its caption in the dock:"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:9 ../Clipper/data/messages:13
+#: ../Composite-Manager/data/messages:9 ../Disks/data/messages:9
+#: ../Doncky/data/messages:13 ../Folders/data/messages:25
+#: ../GMenu/data/messages:13 ../Global-Menu/data/messages:7
+#: ../Impulse/data/messages:11 ../MeMenu/data/messages:7
+#: ../Messaging-Menu/data/messages:9 ../Network-Monitor/data/messages:11
+#: ../RSSreader/data/messages:15 ../Recent-Events/data/messages:13
+#: ../Status-Notifier/data/messages:13 ../System-Monitor/data/messages:9
+#: ../Toons/data/messages:9 ../Xgamma/data/messages:15
+#: ../alsaMixer/data/messages:11 ../clock/data/messages:11
+#: ../dnd2share/data/messages:13 ../dustbin/data/messages:9
+#: ../keyboard-indicator/data/messages:9 ../logout/data/messages:13
+#: ../mail/data/messages:9 ../musicPlayer/data/messages:11
+#: ../netspeed/data/messages:9 ../powermanager/data/messages:11
+#: ../quick-browser/data/messages:15 ../shortcuts/data/messages:13
+#: ../showDesktop/data/messages:17 ../slider/data/messages:9
+#: ../stack/data/messages:15 ../switcher/data/messages:13
+#: ../systray/data/messages:13 ../template/data/messages:13
+#: ../terminal/data/messages:13 ../tomboy/data/messages:23
+#: ../weather/data/messages:11 ../weblets/data/messages:13
+#: ../wifi/data/messages:9
+msgid "Set to 0 to use the default applet size"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:11 ../Clipper/data/messages:15
+#: ../Composite-Manager/data/messages:11 ../Disks/data/messages:11
+#: ../Doncky/data/messages:15 ../Folders/data/messages:27
+#: ../GMenu/data/messages:15 ../Global-Menu/data/messages:9
+#: ../Impulse/data/messages:13 ../MeMenu/data/messages:9
+#: ../Messaging-Menu/data/messages:11 ../Network-Monitor/data/messages:13
+#: ../RSSreader/data/messages:17 ../Recent-Events/data/messages:15
+#: ../Status-Notifier/data/messages:15 ../System-Monitor/data/messages:11
+#: ../Toons/data/messages:11 ../Xgamma/data/messages:17
+#: ../alsaMixer/data/messages:13 ../clock/data/messages:13
+#: ../dnd2share/data/messages:15 ../dustbin/data/messages:11
+#: ../keyboard-indicator/data/messages:11 ../logout/data/messages:15
+#: ../mail/data/messages:11 ../musicPlayer/data/messages:13
+#: ../netspeed/data/messages:11 ../powermanager/data/messages:13
+#: ../quick-browser/data/messages:17 ../shortcuts/data/messages:15
+#: ../showDesktop/data/messages:19 ../slider/data/messages:11
+#: ../stack/data/messages:17 ../switcher/data/messages:15
+#: ../systray/data/messages:15 ../template/data/messages:15
+#: ../terminal/data/messages:15 ../tomboy/data/messages:25
+#: ../weather/data/messages:13 ../weblets/data/messages:15
+#: ../wifi/data/messages:11
+msgid "Desired icon size for this applet"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:13 ../Clipper/data/messages:17
+#: ../Composite-Manager/data/messages:13 ../Disks/data/messages:13
+#: ../Folders/data/messages:29 ../GMenu/data/messages:17
+#: ../Global-Menu/data/messages:11 ../Impulse/data/messages:15
+#: ../MeMenu/data/messages:11 ../Messaging-Menu/data/messages:23
+#: ../Network-Monitor/data/messages:25 ../RSSreader/data/messages:19
+#: ../Recent-Events/data/messages:17 ../Scooby-Do/data/messages:115
+#: ../Status-Notifier/data/messages:27 ../System-Monitor/data/messages:23
+#: ../Toons/data/messages:23 ../Xgamma/data/messages:19
+#: ../alsaMixer/data/messages:25 ../clock/data/messages:25
+#: ../dnd2share/data/messages:17 ../dustbin/data/messages:13
+#: ../keyboard-indicator/data/messages:23 ../logout/data/messages:17
+#: ../mail/data/messages:23 ../musicPlayer/data/messages:25
+#: ../netspeed/data/messages:23 ../powermanager/data/messages:25
+#: ../quick-browser/data/messages:19 ../shortcuts/data/messages:17
+#: ../showDesktop/data/messages:21 ../slider/data/messages:23
+#: ../stack/data/messages:19 ../switcher/data/messages:17
+#: ../systray/data/messages:17 ../template/data/messages:17
+#: ../terminal/data/messages:17 ../tomboy/data/messages:27
+#: ../weather/data/messages:25 ../weblets/data/messages:17
+#: ../wifi/data/messages:23
+msgid "Applet's Handbook"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:15 ../Clipper/data/messages:91
+#: ../Composite-Manager/data/messages:87 ../Dbus/data/messages:1
+#: ../Disks/data/messages:87 ../Doncky/data/messages:89
+#: ../Folders/data/messages:103 ../GMenu/data/messages:91
+#: ../Global-Menu/data/messages:85 ../Impulse/data/messages:89
+#: ../MeMenu/data/messages:85 ../Messaging-Menu/data/messages:97
+#: ../Network-Monitor/data/messages:99 ../RSSreader/data/messages:93
+#: ../Recent-Events/data/messages:91 ../Remote-Control/data/messages:1
+#: ../Scooby-Do/data/messages:1 ../Status-Notifier/data/messages:101
+#: ../System-Monitor/data/messages:97 ../Toons/data/messages:97
+#: ../Xgamma/data/messages:93 ../alsaMixer/data/messages:99
+#: ../clock/data/messages:99 ../dnd2share/data/messages:87
+#: ../dustbin/data/messages:87 ../keyboard-indicator/data/messages:97
+#: ../logout/data/messages:91 ../mail/data/messages:97
+#: ../motion-blur/data/messages:1 ../musicPlayer/data/messages:99
+#: ../netspeed/data/messages:97 ../powermanager/data/messages:99
+#: ../quick-browser/data/messages:93 ../shortcuts/data/messages:91
+#: ../show-mouse/data/messages:1 ../showDesktop/data/messages:95
+#: ../slider/data/messages:97 ../stack/data/messages:93
+#: ../switcher/data/messages:85 ../switcher/data/messages:87
+#: ../systray/data/messages:83 ../template/data/messages:91
+#: ../terminal/data/messages:91 ../tomboy/data/messages:101
+#: ../weather/data/messages:99 ../weather/data/messages:101
+#: ../weblets/data/messages:91 ../wifi/data/messages:97
+msgid "Configuration"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:17 ../Disks/data/messages:97
+#: ../Network-Monitor/data/messages:147 ../Network-Monitor/data/messages:191
+#: ../System-Monitor/data/messages:107 ../Toons/data/messages:99
+#: ../alsaMixer/data/messages:139 ../dustbin/data/messages:91
+#: ../mail/data/messages:105 ../netspeed/data/messages:107
+#: ../powermanager/data/messages:111 ../weather/data/messages:131
+#: ../wifi/data/messages:109
+msgid "Choose one of the available themes:"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:19 ../Clipper/data/messages:139
+#: ../Disks/data/messages:143 ../Network-Monitor/data/messages:175
+#: ../System-Monitor/data/messages:169 ../System-Monitor/data/messages:215
+#: ../Toons/data/messages:101 ../dnd2share/data/messages:93
+#: ../mail/data/messages:137 ../musicPlayer/data/messages:153
+#: ../netspeed/data/messages:149 ../powermanager/data/messages:159
+#: ../shortcuts/data/messages:129 ../slider/data/messages:131
+#: ../tomboy/data/messages:115 ../wifi/data/messages:173
+msgid "in seconds."
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:21
+msgid "Delay between animation changes :"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:23
+msgid "Penguin transparency:"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:25
+msgid "Let the penguin wander everywhere in the dock?"
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:27 ../dock-rendering/data/messages:13
+#: ../dock-rendering/data/messages:103 ../show-mouse/data/messages:23
+msgid "in pixels."
+msgstr ""
+
+#: ../Cairo-Penguin/data/messages:29
+msgid "Ground offset:"
+msgstr ""
+
+#: ../Clipper/data/messages:11 ../Doncky/data/messages:11
+#: ../Folders/data/messages:23 ../GMenu/data/messages:11
+#: ../Impulse/data/messages:9 ../RSSreader/data/messages:13
+#: ../Recent-Events/data/messages:11 ../Xgamma/data/messages:13
+#: ../dnd2share/data/messages:11 ../logout/data/messages:11
+#: ../quick-browser/data/messages:13 ../shortcuts/data/messages:11
+#: ../showDesktop/data/messages:11 ../stack/data/messages:13
+#: ../switcher/data/messages:11 ../systray/data/messages:11
+#: ../template/data/messages:11 ../terminal/data/messages:11
+#: ../weblets/data/messages:11
+msgid "Image filename:"
+msgstr ""
+
+#: ../Clipper/data/messages:19 ../Composite-Manager/data/messages:15
+#: ../Disks/data/messages:15 ../Doncky/data/messages:17
+#: ../Folders/data/messages:31 ../GMenu/data/messages:19
+#: ../Global-Menu/data/messages:13 ../Impulse/data/messages:17
+#: ../MeMenu/data/messages:13 ../Messaging-Menu/data/messages:25
+#: ../Network-Monitor/data/messages:27 ../RSSreader/data/messages:21
+#: ../Recent-Events/data/messages:19 ../Status-Notifier/data/messages:29
+#: ../System-Monitor/data/messages:25 ../Toons/data/messages:25
+#: ../Xgamma/data/messages:21 ../alsaMixer/data/messages:27
+#: ../clock/data/messages:27 ../dnd2share/data/messages:19
+#: ../dustbin/data/messages:15 ../keyboard-indicator/data/messages:25
+#: ../logout/data/messages:19 ../mail/data/messages:25
+#: ../musicPlayer/data/messages:27 ../netspeed/data/messages:25
+#: ../powermanager/data/messages:27 ../quick-browser/data/messages:21
+#: ../shortcuts/data/messages:19 ../show-mouse/data/messages:13
+#: ../showDesktop/data/messages:23 ../slider/data/messages:25
+#: ../stack/data/messages:21 ../switcher/data/messages:19
+#: ../systray/data/messages:19 ../template/data/messages:19
+#: ../terminal/data/messages:19 ../tomboy/data/messages:29
+#: ../weather/data/messages:27 ../weblets/data/messages:19
+#: ../wifi/data/messages:25
+msgid "Desklet"
+msgstr ""
+
+#: ../Clipper/data/messages:21 ../Composite-Manager/data/messages:17
+#: ../Disks/data/messages:39 ../Doncky/data/messages:19
+#: ../Folders/data/messages:33 ../GMenu/data/messages:21
+#: ../Global-Menu/data/messages:15 ../Impulse/data/messages:19
+#: ../MeMenu/data/messages:15 ../Messaging-Menu/data/messages:27
+#: ../Network-Monitor/data/messages:29 ../RSSreader/data/messages:23
+#: ../Recent-Events/data/messages:21 ../Status-Notifier/data/messages:31
+#: ../System-Monitor/data/messages:27 ../Toons/data/messages:27
+#: ../Xgamma/data/messages:23 ../alsaMixer/data/messages:29
+#: ../clock/data/messages:29 ../dnd2share/data/messages:21
+#: ../dustbin/data/messages:17 ../keyboard-indicator/data/messages:27
+#: ../logout/data/messages:21 ../mail/data/messages:27
+#: ../musicPlayer/data/messages:29 ../netspeed/data/messages:27
+#: ../powermanager/data/messages:29 ../quick-browser/data/messages:23
+#: ../shortcuts/data/messages:21 ../showDesktop/data/messages:25
+#: ../slider/data/messages:27 ../stack/data/messages:23
+#: ../switcher/data/messages:21 ../systray/data/messages:21
+#: ../template/data/messages:21 ../terminal/data/messages:21
+#: ../tomboy/data/messages:31 ../weather/data/messages:29
+#: ../weblets/data/messages:21 ../wifi/data/messages:27
+msgid "Position"
+msgstr ""
+
+#: ../Clipper/data/messages:23 ../Composite-Manager/data/messages:19
+#: ../Disks/data/messages:41 ../Doncky/data/messages:21
+#: ../Folders/data/messages:35 ../GMenu/data/messages:23
+#: ../Global-Menu/data/messages:17 ../Impulse/data/messages:21
+#: ../MeMenu/data/messages:17 ../Messaging-Menu/data/messages:29
+#: ../Network-Monitor/data/messages:31 ../RSSreader/data/messages:25
+#: ../Recent-Events/data/messages:23 ../Status-Notifier/data/messages:33
+#: ../System-Monitor/data/messages:29 ../Toons/data/messages:29
+#: ../Xgamma/data/messages:25 ../alsaMixer/data/messages:31
+#: ../clock/data/messages:31 ../dnd2share/data/messages:23
+#: ../dustbin/data/messages:19 ../keyboard-indicator/data/messages:29
+#: ../logout/data/messages:23 ../mail/data/messages:29
+#: ../musicPlayer/data/messages:31 ../netspeed/data/messages:29
+#: ../powermanager/data/messages:31 ../quick-browser/data/messages:25
+#: ../shortcuts/data/messages:23 ../showDesktop/data/messages:27
+#: ../slider/data/messages:29 ../stack/data/messages:25
+#: ../switcher/data/messages:23 ../systray/data/messages:23
+#: ../template/data/messages:23 ../terminal/data/messages:23
+#: ../tomboy/data/messages:33 ../weather/data/messages:31
+#: ../weblets/data/messages:23 ../wifi/data/messages:29
+msgid ""
+"If locked, the desklet cannot be moved by simply dragging it with the left "
+"mouse button. It can still be moved with ALT + left-click."
+msgstr ""
+
+#: ../Clipper/data/messages:25 ../Composite-Manager/data/messages:21
+#: ../Disks/data/messages:43 ../Doncky/data/messages:23
+#: ../Folders/data/messages:37 ../GMenu/data/messages:25
+#: ../Global-Menu/data/messages:19 ../Impulse/data/messages:23
+#: ../MeMenu/data/messages:19 ../Messaging-Menu/data/messages:31
+#: ../Network-Monitor/data/messages:33 ../RSSreader/data/messages:27
+#: ../Recent-Events/data/messages:25 ../Status-Notifier/data/messages:35
+#: ../System-Monitor/data/messages:31 ../Toons/data/messages:31
+#: ../Xgamma/data/messages:27 ../alsaMixer/data/messages:33
+#: ../clock/data/messages:33 ../dnd2share/data/messages:25
+#: ../dustbin/data/messages:21 ../keyboard-indicator/data/messages:31
+#: ../logout/data/messages:25 ../mail/data/messages:31
+#: ../musicPlayer/data/messages:33 ../netspeed/data/messages:31
+#: ../powermanager/data/messages:33 ../quick-browser/data/messages:27
+#: ../shortcuts/data/messages:25 ../showDesktop/data/messages:29
+#: ../slider/data/messages:31 ../stack/data/messages:27
+#: ../switcher/data/messages:25 ../systray/data/messages:25
+#: ../template/data/messages:25 ../terminal/data/messages:25
+#: ../tomboy/data/messages:35 ../weather/data/messages:33
+#: ../weblets/data/messages:25 ../wifi/data/messages:31
+msgid "Lock position?"
+msgstr ""
+
+#: ../Clipper/data/messages:27 ../Composite-Manager/data/messages:23
+#: ../Disks/data/messages:21 ../Doncky/data/messages:25
+#: ../Folders/data/messages:39 ../GMenu/data/messages:27
+#: ../Global-Menu/data/messages:21 ../Impulse/data/messages:25
+#: ../MeMenu/data/messages:21 ../Messaging-Menu/data/messages:33
+#: ../Network-Monitor/data/messages:35 ../RSSreader/data/messages:29
+#: ../Recent-Events/data/messages:27 ../Status-Notifier/data/messages:37
+#: ../System-Monitor/data/messages:33 ../Toons/data/messages:33
+#: ../Xgamma/data/messages:29 ../alsaMixer/data/messages:35
+#: ../clock/data/messages:35 ../dnd2share/data/messages:27
+#: ../dustbin/data/messages:23 ../keyboard-indicator/data/messages:33
+#: ../logout/data/messages:27 ../mail/data/messages:33
+#: ../musicPlayer/data/messages:35 ../netspeed/data/messages:33
+#: ../powermanager/data/messages:35 ../quick-browser/data/messages:29
+#: ../shortcuts/data/messages:27 ../showDesktop/data/messages:31
+#: ../slider/data/messages:33 ../stack/data/messages:29
+#: ../switcher/data/messages:27 ../template/data/messages:27
+#: ../terminal/data/messages:27 ../tomboy/data/messages:37
+#: ../weather/data/messages:35 ../weblets/data/messages:27
+#: ../wifi/data/messages:33
+msgid ""
+"Depending on your WindowManager, you may be able to resize this with ALT + "
+"middle-click or ALT + left-click."
+msgstr ""
+
+#: ../Clipper/data/messages:29 ../Composite-Manager/data/messages:25
+#: ../Disks/data/messages:23 ../Doncky/data/messages:27
+#: ../Folders/data/messages:41 ../GMenu/data/messages:29
+#: ../Global-Menu/data/messages:23 ../Impulse/data/messages:27
+#: ../MeMenu/data/messages:23 ../Messaging-Menu/data/messages:35
+#: ../Network-Monitor/data/messages:37 ../RSSreader/data/messages:31
+#: ../Recent-Events/data/messages:29 ../Status-Notifier/data/messages:39
+#: ../System-Monitor/data/messages:35 ../Toons/data/messages:35
+#: ../Xgamma/data/messages:31 ../alsaMixer/data/messages:37
+#: ../clock/data/messages:37 ../dnd2share/data/messages:29
+#: ../dustbin/data/messages:25 ../keyboard-indicator/data/messages:35
+#: ../logout/data/messages:29 ../mail/data/messages:35
+#: ../musicPlayer/data/messages:37 ../netspeed/data/messages:35
+#: ../powermanager/data/messages:37 ../quick-browser/data/messages:31
+#: ../shortcuts/data/messages:29 ../showDesktop/data/messages:33
+#: ../slider/data/messages:35 ../stack/data/messages:31
+#: ../switcher/data/messages:29 ../template/data/messages:29
+#: ../terminal/data/messages:29 ../tomboy/data/messages:39
+#: ../weather/data/messages:37 ../weblets/data/messages:29
+#: ../wifi/data/messages:35
+msgid "Desklet dimensions (width x height):"
+msgstr ""
+
+#: ../Clipper/data/messages:31 ../Disks/data/messages:45
+#: ../Doncky/data/messages:29 ../Folders/data/messages:43
+#: ../GMenu/data/messages:31 ../MeMenu/data/messages:25
+#: ../Messaging-Menu/data/messages:37 ../Network-Monitor/data/messages:39
+#: ../RSSreader/data/messages:33 ../System-Monitor/data/messages:37
+#: ../Toons/data/messages:37 ../Xgamma/data/messages:33
+#: ../dnd2share/data/messages:31 ../keyboard-indicator/data/messages:37
+#: ../logout/data/messages:31 ../mail/data/messages:37
+#: ../musicPlayer/data/messages:39 ../powermanager/data/messages:39
+#: ../quick-browser/data/messages:33 ../shortcuts/data/messages:31
+#: ../showDesktop/data/messages:35 ../slider/data/messages:37
+#: ../stack/data/messages:33 ../terminal/data/messages:31
+#: ../weather/data/messages:39 ../weblets/data/messages:31
+#: ../wifi/data/messages:37
+msgid ""
+"Depending on your WindowManager, you may be able to move this with ALT + "
+"left-click."
+msgstr ""
+
+#: ../Clipper/data/messages:33 ../Composite-Manager/data/messages:29
+#: ../Disks/data/messages:47 ../Doncky/data/messages:31
+#: ../Folders/data/messages:45 ../GMenu/data/messages:33
+#: ../Global-Menu/data/messages:27 ../Impulse/data/messages:31
+#: ../MeMenu/data/messages:27 ../Messaging-Menu/data/messages:39
+#: ../Network-Monitor/data/messages:41 ../RSSreader/data/messages:35
+#: ../Recent-Events/data/messages:33 ../Status-Notifier/data/messages:43
+#: ../System-Monitor/data/messages:39 ../Toons/data/messages:39
+#: ../Xgamma/data/messages:35 ../alsaMixer/data/messages:41
+#: ../clock/data/messages:41 ../dnd2share/data/messages:33
+#: ../dustbin/data/messages:29 ../keyboard-indicator/data/messages:39
+#: ../logout/data/messages:33 ../mail/data/messages:39
+#: ../musicPlayer/data/messages:41 ../netspeed/data/messages:39
+#: ../powermanager/data/messages:41 ../quick-browser/data/messages:35
+#: ../shortcuts/data/messages:33 ../showDesktop/data/messages:37
+#: ../slider/data/messages:39 ../stack/data/messages:35
+#: ../switcher/data/messages:31 ../systray/data/messages:29
+#: ../template/data/messages:33 ../terminal/data/messages:33
+#: ../tomboy/data/messages:43 ../weather/data/messages:41
+#: ../weblets/data/messages:33 ../wifi/data/messages:39
+msgid "Desklet position (x, y):"
+msgstr ""
+
+#: ../Clipper/data/messages:35 ../Composite-Manager/data/messages:31
+#: ../Disks/data/messages:49 ../Doncky/data/messages:33
+#: ../Folders/data/messages:47 ../GMenu/data/messages:35
+#: ../Global-Menu/data/messages:29 ../Impulse/data/messages:33
+#: ../MeMenu/data/messages:29 ../Messaging-Menu/data/messages:41
+#: ../Network-Monitor/data/messages:43 ../RSSreader/data/messages:37
+#: ../Recent-Events/data/messages:35 ../Status-Notifier/data/messages:45
+#: ../System-Monitor/data/messages:41 ../Toons/data/messages:41
+#: ../Xgamma/data/messages:37 ../alsaMixer/data/messages:43
+#: ../clock/data/messages:43 ../dustbin/data/messages:31
+#: ../keyboard-indicator/data/messages:41 ../logout/data/messages:35
+#: ../mail/data/messages:41 ../musicPlayer/data/messages:43
+#: ../netspeed/data/messages:41 ../powermanager/data/messages:43
+#: ../quick-browser/data/messages:37 ../shortcuts/data/messages:35
+#: ../showDesktop/data/messages:39 ../slider/data/messages:41
+#: ../stack/data/messages:37 ../template/data/messages:35
+#: ../terminal/data/messages:35 ../tomboy/data/messages:45
+#: ../weather/data/messages:43 ../weblets/data/messages:35
+#: ../wifi/data/messages:41
+msgid ""
+"You can quickly rotate the desklet with the mouse, by dragging the little "
+"buttons on its left and top sides."
+msgstr ""
+
+#: ../Clipper/data/messages:37 ../Composite-Manager/data/messages:33
+#: ../Disks/data/messages:51 ../Doncky/data/messages:35
+#: ../Folders/data/messages:49 ../GMenu/data/messages:37
+#: ../Global-Menu/data/messages:31 ../Impulse/data/messages:35
+#: ../MeMenu/data/messages:31 ../Messaging-Menu/data/messages:43
+#: ../Network-Monitor/data/messages:45 ../RSSreader/data/messages:39
+#: ../Recent-Events/data/messages:37 ../Status-Notifier/data/messages:47
+#: ../System-Monitor/data/messages:43 ../Toons/data/messages:43
+#: ../Xgamma/data/messages:39 ../alsaMixer/data/messages:45
+#: ../clock/data/messages:45 ../dustbin/data/messages:33
+#: ../keyboard-indicator/data/messages:43 ../logout/data/messages:37
+#: ../mail/data/messages:43 ../musicPlayer/data/messages:45
+#: ../netspeed/data/messages:43 ../powermanager/data/messages:45
+#: ../quick-browser/data/messages:39 ../shortcuts/data/messages:37
+#: ../showDesktop/data/messages:41 ../slider/data/messages:43
+#: ../stack/data/messages:39 ../template/data/messages:37
+#: ../terminal/data/messages:37 ../tomboy/data/messages:47
+#: ../weather/data/messages:45 ../weblets/data/messages:37
+#: ../wifi/data/messages:43
+msgid "Rotation:"
+msgstr ""
+
+#: ../Clipper/data/messages:39 ../Composite-Manager/data/messages:35
+#: ../Doncky/data/messages:37 ../Folders/data/messages:51
+#: ../GMenu/data/messages:39 ../Global-Menu/data/messages:33
+#: ../Impulse/data/messages:37 ../MeMenu/data/messages:33
+#: ../Messaging-Menu/data/messages:45 ../Network-Monitor/data/messages:47
+#: ../RSSreader/data/messages:41 ../Recent-Events/data/messages:39
+#: ../Status-Notifier/data/messages:49 ../System-Monitor/data/messages:45
+#: ../Toons/data/messages:45 ../Xgamma/data/messages:41
+#: ../alsaMixer/data/messages:47 ../clock/data/messages:47
+#: ../dnd2share/data/messages:35 ../dustbin/data/messages:35
+#: ../keyboard-indicator/data/messages:45 ../logout/data/messages:39
+#: ../mail/data/messages:45 ../musicPlayer/data/messages:47
+#: ../netspeed/data/messages:45 ../powermanager/data/messages:47
+#: ../quick-browser/data/messages:41 ../shortcuts/data/messages:39
+#: ../showDesktop/data/messages:43 ../slider/data/messages:45
+#: ../stack/data/messages:41 ../switcher/data/messages:33
+#: ../systray/data/messages:31 ../template/data/messages:39
+#: ../terminal/data/messages:39 ../tomboy/data/messages:49
+#: ../weather/data/messages:47 ../weblets/data/messages:39
+#: ../wifi/data/messages:45
+msgid "Visibility"
+msgstr ""
+
+#: ../Clipper/data/messages:41 ../Composite-Manager/data/messages:37
+#: ../Disks/data/messages:19 ../Doncky/data/messages:39
+#: ../Folders/data/messages:53 ../GMenu/data/messages:41
+#: ../Global-Menu/data/messages:35 ../Impulse/data/messages:39
+#: ../MeMenu/data/messages:35 ../Messaging-Menu/data/messages:47
+#: ../Network-Monitor/data/messages:49 ../RSSreader/data/messages:43
+#: ../Recent-Events/data/messages:41 ../Scooby-Do/data/messages:25
+#: ../Status-Notifier/data/messages:51 ../System-Monitor/data/messages:47
+#: ../Toons/data/messages:47 ../Xgamma/data/messages:43
+#: ../alsaMixer/data/messages:49 ../clock/data/messages:49
+#: ../dnd2share/data/messages:37 ../dustbin/data/messages:37
+#: ../keyboard-indicator/data/messages:47 ../logout/data/messages:41
+#: ../mail/data/messages:47 ../musicPlayer/data/messages:49
+#: ../netspeed/data/messages:47 ../powermanager/data/messages:49
+#: ../quick-browser/data/messages:43 ../shortcuts/data/messages:41
+#: ../showDesktop/data/messages:45 ../slider/data/messages:47
+#: ../stack/data/messages:43 ../switcher/data/messages:35
+#: ../systray/data/messages:33 ../template/data/messages:41
+#: ../terminal/data/messages:41 ../tomboy/data/messages:51
+#: ../weather/data/messages:49 ../weblets/data/messages:41
+#: ../wifi/data/messages:47
+msgid "Is detached from the dock"
+msgstr ""
+
+#: ../Clipper/data/messages:43 ../Composite-Manager/data/messages:39
+#: ../Disks/data/messages:25 ../Doncky/data/messages:41
+#: ../Folders/data/messages:55 ../GMenu/data/messages:43
+#: ../Global-Menu/data/messages:37 ../Impulse/data/messages:41
+#: ../MeMenu/data/messages:37 ../Messaging-Menu/data/messages:49
+#: ../Network-Monitor/data/messages:51 ../RSSreader/data/messages:45
+#: ../Recent-Events/data/messages:43 ../Status-Notifier/data/messages:53
+#: ../System-Monitor/data/messages:49 ../Toons/data/messages:49
+#: ../Xgamma/data/messages:45 ../alsaMixer/data/messages:51
+#: ../clock/data/messages:51 ../dnd2share/data/messages:39
+#: ../dustbin/data/messages:39 ../keyboard-indicator/data/messages:49
+#: ../logout/data/messages:43 ../mail/data/messages:49
+#: ../musicPlayer/data/messages:51 ../netspeed/data/messages:49
+#: ../powermanager/data/messages:51 ../quick-browser/data/messages:45
+#: ../shortcuts/data/messages:43 ../showDesktop/data/messages:47
+#: ../slider/data/messages:49 ../stack/data/messages:45
+#: ../switcher/data/messages:37 ../systray/data/messages:35
+#: ../template/data/messages:43 ../terminal/data/messages:43
+#: ../tomboy/data/messages:53 ../weather/data/messages:51
+#: ../weblets/data/messages:43 ../wifi/data/messages:49
+msgid "Visibility:"
+msgstr ""
+
+#: ../Clipper/data/messages:47 ../Composite-Manager/data/messages:43
+#: ../Disks/data/messages:29 ../Doncky/data/messages:45
+#: ../Folders/data/messages:59 ../GMenu/data/messages:47
+#: ../Global-Menu/data/messages:41 ../Impulse/data/messages:45
+#: ../MeMenu/data/messages:41 ../Messaging-Menu/data/messages:53
+#: ../Network-Monitor/data/messages:55 ../RSSreader/data/messages:49
+#: ../Recent-Events/data/messages:47 ../Status-Notifier/data/messages:57
+#: ../System-Monitor/data/messages:53 ../Toons/data/messages:53
+#: ../Xgamma/data/messages:49 ../alsaMixer/data/messages:55
+#: ../clock/data/messages:55 ../dnd2share/data/messages:43
+#: ../dustbin/data/messages:43 ../keyboard-indicator/data/messages:53
+#: ../logout/data/messages:47 ../mail/data/messages:53
+#: ../musicPlayer/data/messages:55 ../netspeed/data/messages:53
+#: ../powermanager/data/messages:55 ../quick-browser/data/messages:49
+#: ../shortcuts/data/messages:47 ../showDesktop/data/messages:51
+#: ../slider/data/messages:53 ../stack/data/messages:49
+#: ../switcher/data/messages:41 ../systray/data/messages:39
+#: ../template/data/messages:47 ../terminal/data/messages:47
+#: ../tomboy/data/messages:57 ../weather/data/messages:55
+#: ../weblets/data/messages:47 ../wifi/data/messages:53
+msgid "Keep above"
+msgstr ""
+
+#: ../Clipper/data/messages:49 ../Composite-Manager/data/messages:45
+#: ../Disks/data/messages:31 ../Doncky/data/messages:47
+#: ../Folders/data/messages:61 ../GMenu/data/messages:49
+#: ../Global-Menu/data/messages:43 ../Impulse/data/messages:47
+#: ../MeMenu/data/messages:43 ../Messaging-Menu/data/messages:55
+#: ../Network-Monitor/data/messages:57 ../RSSreader/data/messages:51
+#: ../Recent-Events/data/messages:49 ../Status-Notifier/data/messages:59
+#: ../System-Monitor/data/messages:55 ../Toons/data/messages:55
+#: ../Xgamma/data/messages:51 ../alsaMixer/data/messages:57
+#: ../clock/data/messages:57 ../dnd2share/data/messages:45
+#: ../dustbin/data/messages:45 ../keyboard-indicator/data/messages:55
+#: ../logout/data/messages:49 ../mail/data/messages:55
+#: ../musicPlayer/data/messages:57 ../netspeed/data/messages:55
+#: ../powermanager/data/messages:57 ../quick-browser/data/messages:51
+#: ../shortcuts/data/messages:49 ../showDesktop/data/messages:53
+#: ../slider/data/messages:55 ../stack/data/messages:51
+#: ../switcher/data/messages:43 ../systray/data/messages:41
+#: ../template/data/messages:49 ../terminal/data/messages:49
+#: ../tomboy/data/messages:59 ../weather/data/messages:57
+#: ../weblets/data/messages:49 ../wifi/data/messages:55
+msgid "Keep below"
+msgstr ""
+
+#: ../Clipper/data/messages:51 ../Composite-Manager/data/messages:47
+#: ../Disks/data/messages:33 ../Doncky/data/messages:49
+#: ../Folders/data/messages:63 ../GMenu/data/messages:51
+#: ../Global-Menu/data/messages:45 ../Impulse/data/messages:49
+#: ../MeMenu/data/messages:45 ../Messaging-Menu/data/messages:57
+#: ../Network-Monitor/data/messages:59 ../RSSreader/data/messages:53
+#: ../Recent-Events/data/messages:51 ../Status-Notifier/data/messages:61
+#: ../System-Monitor/data/messages:57 ../Toons/data/messages:57
+#: ../Xgamma/data/messages:53 ../alsaMixer/data/messages:59
+#: ../clock/data/messages:59 ../dnd2share/data/messages:47
+#: ../dustbin/data/messages:47 ../keyboard-indicator/data/messages:57
+#: ../logout/data/messages:51 ../mail/data/messages:57
+#: ../musicPlayer/data/messages:59 ../netspeed/data/messages:57
+#: ../powermanager/data/messages:59 ../quick-browser/data/messages:53
+#: ../shortcuts/data/messages:51 ../showDesktop/data/messages:55
+#: ../slider/data/messages:57 ../stack/data/messages:53
+#: ../switcher/data/messages:45 ../systray/data/messages:43
+#: ../template/data/messages:51 ../terminal/data/messages:51
+#: ../tomboy/data/messages:61 ../weather/data/messages:59
+#: ../weblets/data/messages:51 ../wifi/data/messages:57
+msgid "Keep on widget layer"
+msgstr ""
+
+#: ../Clipper/data/messages:53 ../Composite-Manager/data/messages:49
+#: ../Disks/data/messages:35 ../Doncky/data/messages:51
+#: ../Folders/data/messages:65 ../GMenu/data/messages:53
+#: ../Global-Menu/data/messages:47 ../Impulse/data/messages:51
+#: ../MeMenu/data/messages:47 ../Messaging-Menu/data/messages:59
+#: ../Network-Monitor/data/messages:61 ../RSSreader/data/messages:55
+#: ../Recent-Events/data/messages:53 ../Status-Notifier/data/messages:63
+#: ../System-Monitor/data/messages:59 ../Toons/data/messages:59
+#: ../Xgamma/data/messages:55 ../alsaMixer/data/messages:61
+#: ../clock/data/messages:61 ../dnd2share/data/messages:49
+#: ../dustbin/data/messages:49 ../keyboard-indicator/data/messages:59
+#: ../logout/data/messages:53 ../mail/data/messages:59
+#: ../musicPlayer/data/messages:61 ../netspeed/data/messages:59
+#: ../powermanager/data/messages:61 ../quick-browser/data/messages:55
+#: ../shortcuts/data/messages:53 ../showDesktop/data/messages:57
+#: ../slider/data/messages:59 ../stack/data/messages:55
+#: ../switcher/data/messages:47 ../systray/data/messages:45
+#: ../template/data/messages:53 ../terminal/data/messages:53
+#: ../tomboy/data/messages:63 ../weather/data/messages:61
+#: ../weblets/data/messages:53 ../wifi/data/messages:59
+msgid "Reserve space"
+msgstr ""
+
+#: ../Clipper/data/messages:55 ../Composite-Manager/data/messages:51
+#: ../Disks/data/messages:37 ../Doncky/data/messages:53
+#: ../Folders/data/messages:67 ../GMenu/data/messages:55
+#: ../Global-Menu/data/messages:49 ../Impulse/data/messages:53
+#: ../MeMenu/data/messages:49 ../Messaging-Menu/data/messages:61
+#: ../Network-Monitor/data/messages:63 ../RSSreader/data/messages:57
+#: ../Recent-Events/data/messages:55 ../Status-Notifier/data/messages:65
+#: ../System-Monitor/data/messages:61 ../Toons/data/messages:61
+#: ../Xgamma/data/messages:57 ../alsaMixer/data/messages:63
+#: ../clock/data/messages:63 ../dnd2share/data/messages:51
+#: ../dustbin/data/messages:51 ../keyboard-indicator/data/messages:61
+#: ../logout/data/messages:55 ../mail/data/messages:61
+#: ../musicPlayer/data/messages:63 ../netspeed/data/messages:61
+#: ../powermanager/data/messages:63 ../quick-browser/data/messages:57
+#: ../shortcuts/data/messages:55 ../showDesktop/data/messages:59
+#: ../slider/data/messages:61 ../stack/data/messages:57
+#: ../switcher/data/messages:49 ../systray/data/messages:47
+#: ../template/data/messages:55 ../terminal/data/messages:55
+#: ../tomboy/data/messages:65 ../weather/data/messages:63
+#: ../weblets/data/messages:55 ../wifi/data/messages:61
+msgid "Should be visible on all desktops?"
+msgstr ""
+
+#: ../Clipper/data/messages:57 ../Composite-Manager/data/messages:53
+#: ../Disks/data/messages:53 ../Doncky/data/messages:55
+#: ../Folders/data/messages:69 ../GMenu/data/messages:57
+#: ../Global-Menu/data/messages:51 ../Impulse/data/messages:55
+#: ../MeMenu/data/messages:51 ../Messaging-Menu/data/messages:63
+#: ../Network-Monitor/data/messages:65 ../RSSreader/data/messages:59
+#: ../Recent-Events/data/messages:57 ../Status-Notifier/data/messages:67
+#: ../System-Monitor/data/messages:63 ../Toons/data/messages:63
+#: ../Xgamma/data/messages:59 ../alsaMixer/data/messages:65
+#: ../clock/data/messages:65 ../dnd2share/data/messages:53
+#: ../dustbin/data/messages:53 ../keyboard-indicator/data/messages:63
+#: ../logout/data/messages:57 ../mail/data/messages:63
+#: ../musicPlayer/data/messages:65 ../netspeed/data/messages:63
+#: ../powermanager/data/messages:65 ../quick-browser/data/messages:59
+#: ../shortcuts/data/messages:57 ../showDesktop/data/messages:61
+#: ../slider/data/messages:63 ../stack/data/messages:59
+#: ../switcher/data/messages:51 ../systray/data/messages:49
+#: ../template/data/messages:57 ../terminal/data/messages:57
+#: ../tomboy/data/messages:67 ../weather/data/messages:65
+#: ../weblets/data/messages:57 ../wifi/data/messages:63
+msgid "Decorations"
+msgstr ""
+
+#: ../Clipper/data/messages:59 ../Composite-Manager/data/messages:55
+#: ../Disks/data/messages:55 ../Doncky/data/messages:57
+#: ../Folders/data/messages:71 ../GMenu/data/messages:59
+#: ../Global-Menu/data/messages:53 ../Impulse/data/messages:57
+#: ../MeMenu/data/messages:53 ../Messaging-Menu/data/messages:65
+#: ../Network-Monitor/data/messages:67 ../RSSreader/data/messages:61
+#: ../Recent-Events/data/messages:59 ../Status-Notifier/data/messages:69
+#: ../System-Monitor/data/messages:65 ../Toons/data/messages:65
+#: ../Xgamma/data/messages:61 ../alsaMixer/data/messages:67
+#: ../clock/data/messages:67 ../dnd2share/data/messages:55
+#: ../dustbin/data/messages:55 ../keyboard-indicator/data/messages:65
+#: ../logout/data/messages:59 ../mail/data/messages:65
+#: ../musicPlayer/data/messages:67 ../netspeed/data/messages:65
+#: ../powermanager/data/messages:67 ../quick-browser/data/messages:61
+#: ../shortcuts/data/messages:59 ../showDesktop/data/messages:63
+#: ../slider/data/messages:65 ../stack/data/messages:61
+#: ../switcher/data/messages:53 ../systray/data/messages:51
+#: ../template/data/messages:59 ../terminal/data/messages:59
+#: ../tomboy/data/messages:69 ../weather/data/messages:67
+#: ../weblets/data/messages:59 ../wifi/data/messages:65
+msgid "Choose 'Custom decorations' to define your own decorations below."
+msgstr ""
+
+#: ../Clipper/data/messages:61 ../Composite-Manager/data/messages:57
+#: ../Disks/data/messages:57 ../Doncky/data/messages:59
+#: ../Folders/data/messages:73 ../GMenu/data/messages:61
+#: ../Global-Menu/data/messages:55 ../Impulse/data/messages:59
+#: ../MeMenu/data/messages:55 ../Messaging-Menu/data/messages:67
+#: ../Network-Monitor/data/messages:69 ../RSSreader/data/messages:63
+#: ../Recent-Events/data/messages:61 ../Status-Notifier/data/messages:71
+#: ../System-Monitor/data/messages:67 ../Toons/data/messages:67
+#: ../Xgamma/data/messages:63 ../alsaMixer/data/messages:69
+#: ../clock/data/messages:69 ../dnd2share/data/messages:57
+#: ../dustbin/data/messages:57 ../keyboard-indicator/data/messages:67
+#: ../logout/data/messages:61 ../mail/data/messages:67
+#: ../musicPlayer/data/messages:69 ../netspeed/data/messages:67
+#: ../powermanager/data/messages:69 ../quick-browser/data/messages:63
+#: ../shortcuts/data/messages:61 ../showDesktop/data/messages:65
+#: ../slider/data/messages:67 ../stack/data/messages:63
+#: ../switcher/data/messages:55 ../systray/data/messages:53
+#: ../template/data/messages:61 ../terminal/data/messages:61
+#: ../tomboy/data/messages:71 ../weather/data/messages:69
+#: ../weblets/data/messages:61 ../wifi/data/messages:67
+msgid "Choose a decoration theme for this desklet:"
+msgstr ""
+
+#: ../Clipper/data/messages:63 ../Composite-Manager/data/messages:59
+#: ../Disks/data/messages:59 ../Doncky/data/messages:61
+#: ../Folders/data/messages:75 ../GMenu/data/messages:63
+#: ../Global-Menu/data/messages:57 ../Impulse/data/messages:61
+#: ../MeMenu/data/messages:57 ../Messaging-Menu/data/messages:69
+#: ../Network-Monitor/data/messages:71 ../RSSreader/data/messages:65
+#: ../Recent-Events/data/messages:63 ../Status-Notifier/data/messages:73
+#: ../System-Monitor/data/messages:69 ../Toons/data/messages:69
+#: ../Xgamma/data/messages:65 ../alsaMixer/data/messages:71
+#: ../clock/data/messages:71 ../dnd2share/data/messages:59
+#: ../dustbin/data/messages:59 ../keyboard-indicator/data/messages:69
+#: ../logout/data/messages:63 ../mail/data/messages:69
+#: ../musicPlayer/data/messages:71 ../netspeed/data/messages:69
+#: ../powermanager/data/messages:71 ../quick-browser/data/messages:65
+#: ../shortcuts/data/messages:63 ../showDesktop/data/messages:67
+#: ../slider/data/messages:69 ../stack/data/messages:65
+#: ../switcher/data/messages:57 ../systray/data/messages:55
+#: ../template/data/messages:63 ../terminal/data/messages:63
+#: ../tomboy/data/messages:73 ../weather/data/messages:71
+#: ../weblets/data/messages:63 ../wifi/data/messages:69
+msgid ""
+"Image to be displayed below drawings, e.g. a frame. Leave empty for no image."
+msgstr ""
+
+#: ../Clipper/data/messages:65 ../Composite-Manager/data/messages:61
+#: ../Disks/data/messages:61 ../Doncky/data/messages:63
+#: ../Folders/data/messages:77 ../GMenu/data/messages:65
+#: ../Global-Menu/data/messages:59 ../Impulse/data/messages:63
+#: ../MeMenu/data/messages:59 ../Messaging-Menu/data/messages:71
+#: ../Network-Monitor/data/messages:73 ../RSSreader/data/messages:67
+#: ../Recent-Events/data/messages:65 ../Status-Notifier/data/messages:75
+#: ../System-Monitor/data/messages:71 ../Toons/data/messages:71
+#: ../Xgamma/data/messages:67 ../alsaMixer/data/messages:73
+#: ../clock/data/messages:73 ../clock/data/messages:167
+#: ../dnd2share/data/messages:61 ../dustbin/data/messages:61
+#: ../keyboard-indicator/data/messages:71
+#: ../keyboard-indicator/data/messages:125 ../logout/data/messages:65
+#: ../mail/data/messages:71 ../musicPlayer/data/messages:73
+#: ../netspeed/data/messages:71 ../powermanager/data/messages:73
+#: ../quick-browser/data/messages:67 ../shortcuts/data/messages:65
+#: ../showDesktop/data/messages:69 ../slider/data/messages:71
+#: ../stack/data/messages:67 ../switcher/data/messages:59
+#: ../systray/data/messages:57 ../template/data/messages:65
+#: ../terminal/data/messages:65 ../tomboy/data/messages:75
+#: ../weather/data/messages:73 ../weblets/data/messages:65
+#: ../wifi/data/messages:71
+msgid "Background image:"
+msgstr ""
+
+#: ../Clipper/data/messages:67 ../Composite-Manager/data/messages:63
+#: ../Disks/data/messages:63 ../Doncky/data/messages:65
+#: ../Folders/data/messages:79 ../GMenu/data/messages:67
+#: ../Global-Menu/data/messages:61 ../Impulse/data/messages:65
+#: ../MeMenu/data/messages:61 ../Messaging-Menu/data/messages:73
+#: ../Network-Monitor/data/messages:75 ../RSSreader/data/messages:69
+#: ../Recent-Events/data/messages:67 ../Status-Notifier/data/messages:77
+#: ../System-Monitor/data/messages:73 ../Toons/data/messages:73
+#: ../Xgamma/data/messages:69 ../alsaMixer/data/messages:75
+#: ../clock/data/messages:75 ../dnd2share/data/messages:63
+#: ../dustbin/data/messages:63 ../keyboard-indicator/data/messages:73
+#: ../logout/data/messages:67 ../mail/data/messages:73
+#: ../musicPlayer/data/messages:75 ../netspeed/data/messages:73
+#: ../powermanager/data/messages:75 ../quick-browser/data/messages:69
+#: ../shortcuts/data/messages:67 ../showDesktop/data/messages:71
+#: ../slider/data/messages:73 ../stack/data/messages:69
+#: ../switcher/data/messages:61 ../systray/data/messages:59
+#: ../template/data/messages:67 ../terminal/data/messages:67
+#: ../tomboy/data/messages:77 ../weather/data/messages:75
+#: ../weblets/data/messages:67 ../wifi/data/messages:73
+msgid "Background transparency:"
+msgstr ""
+
+#: ../Clipper/data/messages:69 ../Composite-Manager/data/messages:65
+#: ../Disks/data/messages:71 ../Doncky/data/messages:67
+#: ../Folders/data/messages:81 ../GMenu/data/messages:69
+#: ../Global-Menu/data/messages:63 ../Impulse/data/messages:67
+#: ../MeMenu/data/messages:63 ../Messaging-Menu/data/messages:75
+#: ../Network-Monitor/data/messages:77 ../RSSreader/data/messages:71
+#: ../Recent-Events/data/messages:69 ../Status-Notifier/data/messages:79
+#: ../System-Monitor/data/messages:75 ../Toons/data/messages:75
+#: ../Xgamma/data/messages:71 ../alsaMixer/data/messages:77
+#: ../clock/data/messages:77 ../dnd2share/data/messages:65
+#: ../dustbin/data/messages:65 ../keyboard-indicator/data/messages:75
+#: ../logout/data/messages:69 ../mail/data/messages:75
+#: ../musicPlayer/data/messages:77 ../netspeed/data/messages:75
+#: ../powermanager/data/messages:77 ../quick-browser/data/messages:71
+#: ../shortcuts/data/messages:69 ../showDesktop/data/messages:73
+#: ../slider/data/messages:75 ../stack/data/messages:71
+#: ../switcher/data/messages:63 ../systray/data/messages:61
+#: ../template/data/messages:69 ../terminal/data/messages:69
+#: ../tomboy/data/messages:79 ../weather/data/messages:77
+#: ../weblets/data/messages:69 ../wifi/data/messages:75
+msgid "in pixels. Use this to adjust the left position of drawings."
+msgstr ""
+
+#: ../Clipper/data/messages:71 ../Composite-Manager/data/messages:67
+#: ../Disks/data/messages:73 ../Doncky/data/messages:69
+#: ../Folders/data/messages:83 ../GMenu/data/messages:71
+#: ../Global-Menu/data/messages:65 ../Impulse/data/messages:69
+#: ../MeMenu/data/messages:65 ../Messaging-Menu/data/messages:77
+#: ../Network-Monitor/data/messages:79 ../RSSreader/data/messages:73
+#: ../Recent-Events/data/messages:71 ../Status-Notifier/data/messages:81
+#: ../System-Monitor/data/messages:77 ../Toons/data/messages:77
+#: ../Xgamma/data/messages:73 ../alsaMixer/data/messages:79
+#: ../clock/data/messages:79 ../dnd2share/data/messages:67
+#: ../dustbin/data/messages:67 ../keyboard-indicator/data/messages:77
+#: ../logout/data/messages:71 ../mail/data/messages:77
+#: ../musicPlayer/data/messages:79 ../netspeed/data/messages:77
+#: ../powermanager/data/messages:79 ../quick-browser/data/messages:73
+#: ../shortcuts/data/messages:71 ../showDesktop/data/messages:75
+#: ../slider/data/messages:77 ../stack/data/messages:73
+#: ../switcher/data/messages:65 ../systray/data/messages:63
+#: ../template/data/messages:71 ../terminal/data/messages:71
+#: ../tomboy/data/messages:81 ../weather/data/messages:79
+#: ../weblets/data/messages:71 ../wifi/data/messages:77
+msgid "Left offset:"
+msgstr ""
+
+#: ../Clipper/data/messages:73 ../Composite-Manager/data/messages:69
+#: ../Disks/data/messages:75 ../Doncky/data/messages:71
+#: ../Folders/data/messages:85 ../GMenu/data/messages:73
+#: ../Global-Menu/data/messages:67 ../Impulse/data/messages:71
+#: ../MeMenu/data/messages:67 ../Messaging-Menu/data/messages:79
+#: ../Network-Monitor/data/messages:81 ../RSSreader/data/messages:75
+#: ../Recent-Events/data/messages:73 ../Status-Notifier/data/messages:83
+#: ../System-Monitor/data/messages:79 ../Toons/data/messages:79
+#: ../Xgamma/data/messages:75 ../alsaMixer/data/messages:81
+#: ../clock/data/messages:81 ../dnd2share/data/messages:69
+#: ../dustbin/data/messages:69 ../keyboard-indicator/data/messages:79
+#: ../logout/data/messages:73 ../mail/data/messages:79
+#: ../musicPlayer/data/messages:81 ../netspeed/data/messages:79
+#: ../powermanager/data/messages:81 ../quick-browser/data/messages:75
+#: ../shortcuts/data/messages:73 ../showDesktop/data/messages:77
+#: ../slider/data/messages:79 ../stack/data/messages:75
+#: ../switcher/data/messages:67 ../systray/data/messages:65
+#: ../template/data/messages:73 ../terminal/data/messages:73
+#: ../tomboy/data/messages:83 ../weather/data/messages:81
+#: ../weblets/data/messages:73 ../wifi/data/messages:79
+msgid "in pixels. Use this to adjust the top position of drawings."
+msgstr ""
+
+#: ../Clipper/data/messages:75 ../Composite-Manager/data/messages:71
+#: ../Disks/data/messages:77 ../Doncky/data/messages:73
+#: ../Folders/data/messages:87 ../GMenu/data/messages:75
+#: ../Global-Menu/data/messages:69 ../Impulse/data/messages:73
+#: ../MeMenu/data/messages:69 ../Messaging-Menu/data/messages:81
+#: ../Network-Monitor/data/messages:83 ../RSSreader/data/messages:77
+#: ../Recent-Events/data/messages:75 ../Status-Notifier/data/messages:85
+#: ../System-Monitor/data/messages:81 ../Toons/data/messages:81
+#: ../Xgamma/data/messages:77 ../alsaMixer/data/messages:83
+#: ../clock/data/messages:83 ../dnd2share/data/messages:71
+#: ../dustbin/data/messages:71 ../keyboard-indicator/data/messages:81
+#: ../logout/data/messages:75 ../mail/data/messages:81
+#: ../musicPlayer/data/messages:83 ../netspeed/data/messages:81
+#: ../powermanager/data/messages:83 ../quick-browser/data/messages:77
+#: ../shortcuts/data/messages:75 ../showDesktop/data/messages:79
+#: ../slider/data/messages:81 ../stack/data/messages:77
+#: ../switcher/data/messages:69 ../systray/data/messages:67
+#: ../template/data/messages:75 ../terminal/data/messages:75
+#: ../tomboy/data/messages:85 ../weather/data/messages:83
+#: ../weblets/data/messages:75 ../wifi/data/messages:81
+msgid "Top offset:"
+msgstr ""
+
+#: ../Clipper/data/messages:77 ../Composite-Manager/data/messages:73
+#: ../Disks/data/messages:79 ../Doncky/data/messages:75
+#: ../Folders/data/messages:89 ../GMenu/data/messages:77
+#: ../Global-Menu/data/messages:71 ../Impulse/data/messages:75
+#: ../MeMenu/data/messages:71 ../Messaging-Menu/data/messages:83
+#: ../Network-Monitor/data/messages:85 ../RSSreader/data/messages:79
+#: ../Recent-Events/data/messages:77 ../Status-Notifier/data/messages:87
+#: ../System-Monitor/data/messages:83 ../Toons/data/messages:83
+#: ../Xgamma/data/messages:79 ../alsaMixer/data/messages:85
+#: ../clock/data/messages:85 ../dnd2share/data/messages:73
+#: ../dustbin/data/messages:73 ../keyboard-indicator/data/messages:83
+#: ../logout/data/messages:77 ../mail/data/messages:83
+#: ../musicPlayer/data/messages:85 ../netspeed/data/messages:83
+#: ../powermanager/data/messages:85 ../quick-browser/data/messages:79
+#: ../shortcuts/data/messages:77 ../showDesktop/data/messages:81
+#: ../slider/data/messages:83 ../stack/data/messages:79
+#: ../switcher/data/messages:71 ../systray/data/messages:69
+#: ../template/data/messages:77 ../terminal/data/messages:77
+#: ../tomboy/data/messages:87 ../weather/data/messages:85
+#: ../weblets/data/messages:77 ../wifi/data/messages:83
+msgid "in pixels. Use this to adjust the right position of drawings."
+msgstr ""
+
+#: ../Clipper/data/messages:79 ../Composite-Manager/data/messages:75
+#: ../Disks/data/messages:81 ../Doncky/data/messages:77
+#: ../Folders/data/messages:91 ../GMenu/data/messages:79
+#: ../Global-Menu/data/messages:73 ../Impulse/data/messages:77
+#: ../MeMenu/data/messages:73 ../Messaging-Menu/data/messages:85
+#: ../Network-Monitor/data/messages:87 ../RSSreader/data/messages:81
+#: ../Recent-Events/data/messages:79 ../Status-Notifier/data/messages:89
+#: ../System-Monitor/data/messages:85 ../Toons/data/messages:85
+#: ../Xgamma/data/messages:81 ../alsaMixer/data/messages:87
+#: ../clock/data/messages:87 ../dnd2share/data/messages:75
+#: ../dustbin/data/messages:75 ../keyboard-indicator/data/messages:85
+#: ../logout/data/messages:79 ../mail/data/messages:85
+#: ../musicPlayer/data/messages:87 ../netspeed/data/messages:85
+#: ../powermanager/data/messages:87 ../quick-browser/data/messages:81
+#: ../shortcuts/data/messages:79 ../showDesktop/data/messages:83
+#: ../slider/data/messages:85 ../stack/data/messages:81
+#: ../switcher/data/messages:73 ../systray/data/messages:71
+#: ../template/data/messages:79 ../terminal/data/messages:79
+#: ../tomboy/data/messages:89 ../weather/data/messages:87
+#: ../weblets/data/messages:79 ../wifi/data/messages:85
+msgid "Right offset:"
+msgstr ""
+
+#: ../Clipper/data/messages:81 ../Composite-Manager/data/messages:77
+#: ../Disks/data/messages:83 ../Doncky/data/messages:79
+#: ../Folders/data/messages:93 ../GMenu/data/messages:81
+#: ../Global-Menu/data/messages:75 ../Impulse/data/messages:79
+#: ../MeMenu/data/messages:75 ../Messaging-Menu/data/messages:87
+#: ../Network-Monitor/data/messages:89 ../RSSreader/data/messages:83
+#: ../Recent-Events/data/messages:81 ../Status-Notifier/data/messages:91
+#: ../System-Monitor/data/messages:87 ../Toons/data/messages:87
+#: ../Xgamma/data/messages:83 ../alsaMixer/data/messages:89
+#: ../clock/data/messages:89 ../dnd2share/data/messages:77
+#: ../dustbin/data/messages:77 ../keyboard-indicator/data/messages:87
+#: ../logout/data/messages:81 ../mail/data/messages:87
+#: ../musicPlayer/data/messages:89 ../netspeed/data/messages:87
+#: ../powermanager/data/messages:89 ../quick-browser/data/messages:83
+#: ../shortcuts/data/messages:81 ../showDesktop/data/messages:85
+#: ../slider/data/messages:87 ../stack/data/messages:83
+#: ../switcher/data/messages:75 ../systray/data/messages:73
+#: ../template/data/messages:81 ../terminal/data/messages:81
+#: ../tomboy/data/messages:91 ../weather/data/messages:89
+#: ../weblets/data/messages:81 ../wifi/data/messages:87
+msgid "in pixels. Use this to adjust the bottom position of drawings."
+msgstr ""
+
+#: ../Clipper/data/messages:83 ../Composite-Manager/data/messages:79
+#: ../Disks/data/messages:85 ../Doncky/data/messages:81
+#: ../Folders/data/messages:95 ../GMenu/data/messages:83
+#: ../Global-Menu/data/messages:77 ../Impulse/data/messages:81
+#: ../MeMenu/data/messages:77 ../Messaging-Menu/data/messages:89
+#: ../Network-Monitor/data/messages:91 ../RSSreader/data/messages:85
+#: ../Recent-Events/data/messages:83 ../Status-Notifier/data/messages:93
+#: ../System-Monitor/data/messages:89 ../Toons/data/messages:89
+#: ../Xgamma/data/messages:85 ../alsaMixer/data/messages:91
+#: ../clock/data/messages:91 ../dnd2share/data/messages:79
+#: ../dustbin/data/messages:79 ../keyboard-indicator/data/messages:89
+#: ../logout/data/messages:83 ../mail/data/messages:89
+#: ../musicPlayer/data/messages:91 ../netspeed/data/messages:89
+#: ../powermanager/data/messages:91 ../quick-browser/data/messages:85
+#: ../shortcuts/data/messages:83 ../showDesktop/data/messages:87
+#: ../slider/data/messages:89 ../stack/data/messages:85
+#: ../switcher/data/messages:77 ../systray/data/messages:75
+#: ../template/data/messages:83 ../terminal/data/messages:83
+#: ../tomboy/data/messages:93 ../weather/data/messages:91
+#: ../weblets/data/messages:83 ../wifi/data/messages:89
+msgid "Bottom offset:"
+msgstr ""
+
+#: ../Clipper/data/messages:85 ../Composite-Manager/data/messages:81
+#: ../Disks/data/messages:65 ../Doncky/data/messages:83
+#: ../Folders/data/messages:97 ../GMenu/data/messages:85
+#: ../Global-Menu/data/messages:79 ../Impulse/data/messages:83
+#: ../MeMenu/data/messages:79 ../Messaging-Menu/data/messages:91
+#: ../Network-Monitor/data/messages:93 ../RSSreader/data/messages:87
+#: ../Recent-Events/data/messages:85 ../Status-Notifier/data/messages:95
+#: ../System-Monitor/data/messages:91 ../Toons/data/messages:91
+#: ../Xgamma/data/messages:87 ../alsaMixer/data/messages:93
+#: ../clock/data/messages:93 ../dnd2share/data/messages:81
+#: ../dustbin/data/messages:81 ../keyboard-indicator/data/messages:91
+#: ../logout/data/messages:85 ../mail/data/messages:91
+#: ../musicPlayer/data/messages:93 ../netspeed/data/messages:91
+#: ../powermanager/data/messages:93 ../quick-browser/data/messages:87
+#: ../shortcuts/data/messages:85 ../showDesktop/data/messages:89
+#: ../slider/data/messages:91 ../stack/data/messages:87
+#: ../switcher/data/messages:79 ../systray/data/messages:77
+#: ../template/data/messages:85 ../terminal/data/messages:85
+#: ../tomboy/data/messages:95 ../weather/data/messages:93
+#: ../weblets/data/messages:85 ../wifi/data/messages:91
+msgid ""
+"Image to be displayed above the drawings, e.g. a reflection. Leave empty for "
+"no image."
+msgstr ""
+
+#: ../Clipper/data/messages:87 ../Composite-Manager/data/messages:83
+#: ../Disks/data/messages:67 ../Doncky/data/messages:85
+#: ../Folders/data/messages:99 ../GMenu/data/messages:87
+#: ../Global-Menu/data/messages:81 ../Impulse/data/messages:85
+#: ../MeMenu/data/messages:81 ../Messaging-Menu/data/messages:93
+#: ../Network-Monitor/data/messages:95 ../RSSreader/data/messages:89
+#: ../Recent-Events/data/messages:87 ../Status-Notifier/data/messages:97
+#: ../System-Monitor/data/messages:93 ../Toons/data/messages:93
+#: ../Xgamma/data/messages:89 ../alsaMixer/data/messages:95
+#: ../clock/data/messages:95 ../dnd2share/data/messages:83
+#: ../dustbin/data/messages:83 ../keyboard-indicator/data/messages:93
+#: ../logout/data/messages:87 ../mail/data/messages:93
+#: ../musicPlayer/data/messages:95 ../netspeed/data/messages:93
+#: ../powermanager/data/messages:95 ../quick-browser/data/messages:89
+#: ../shortcuts/data/messages:87 ../showDesktop/data/messages:91
+#: ../slider/data/messages:93 ../stack/data/messages:89
+#: ../switcher/data/messages:81 ../systray/data/messages:79
+#: ../template/data/messages:87 ../terminal/data/messages:87
+#: ../tomboy/data/messages:97 ../weather/data/messages:95
+#: ../weblets/data/messages:87 ../wifi/data/messages:93
+msgid "Foreground image:"
+msgstr ""
+
+#: ../Clipper/data/messages:89 ../Composite-Manager/data/messages:85
+#: ../Disks/data/messages:69 ../Doncky/data/messages:87
+#: ../Folders/data/messages:101 ../GMenu/data/messages:89
+#: ../Global-Menu/data/messages:83 ../Impulse/data/messages:87
+#: ../MeMenu/data/messages:83 ../Messaging-Menu/data/messages:95
+#: ../Network-Monitor/data/messages:97 ../RSSreader/data/messages:91
+#: ../Recent-Events/data/messages:89 ../Status-Notifier/data/messages:99
+#: ../System-Monitor/data/messages:95 ../Toons/data/messages:95
+#: ../Xgamma/data/messages:91 ../alsaMixer/data/messages:97
+#: ../clock/data/messages:97 ../dnd2share/data/messages:85
+#: ../dustbin/data/messages:85 ../keyboard-indicator/data/messages:95
+#: ../logout/data/messages:89 ../mail/data/messages:95
+#: ../musicPlayer/data/messages:97 ../netspeed/data/messages:95
+#: ../powermanager/data/messages:97 ../quick-browser/data/messages:91
+#: ../shortcuts/data/messages:89 ../showDesktop/data/messages:93
+#: ../slider/data/messages:95 ../stack/data/messages:91
+#: ../switcher/data/messages:83 ../systray/data/messages:81
+#: ../template/data/messages:89 ../terminal/data/messages:89
+#: ../tomboy/data/messages:99 ../weather/data/messages:97
+#: ../weblets/data/messages:89 ../wifi/data/messages:95
+msgid "Foreground tansparency:"
+msgstr ""
+
+#: ../Clipper/data/messages:93
+msgid "Items"
+msgstr ""
+
+#: ../Clipper/data/messages:95
+msgid ""
+"Clipboard items are those you get with CTRL+c. Selection items are those you "
+"get by selecting some text with the mouse."
+msgstr ""
+
+#: ../Clipper/data/messages:97
+msgid "Which items should be remembered?"
+msgstr ""
+
+#: ../Clipper/data/messages:101
+msgid "Clipboard"
+msgstr ""
+
+#: ../Clipper/data/messages:103
+msgid "Selection"
+msgstr ""
+
+#: ../Clipper/data/messages:105 ../GMenu/data/messages:125
+#: ../show-mouse/data/messages:15
+msgid "Both"
+msgstr ""
+
+#: ../Clipper/data/messages:107
+msgid "Number of items:"
+msgstr ""
+
+#: ../Clipper/data/messages:109
+msgid "Remember items between 2 sessions ?"
+msgstr ""
+
+#: ../Clipper/data/messages:111
+msgid ""
+"It is especially useful if you often select text with the mouse and don't "
+"want to loose your clipboard items due to too many items in the selection."
+msgstr ""
+
+#: ../Clipper/data/messages:113
+msgid "Separate clipboard and selection?"
+msgstr ""
+
+#: ../Clipper/data/messages:115
+msgid "If so, number of selection items:"
+msgstr ""
+
+#: ../Clipper/data/messages:117
+msgid ""
+"When you click on an item, its content will become accessible with CTRL+v"
+msgstr ""
+
+#: ../Clipper/data/messages:119
+msgid "Paste into Clipboard?"
+msgstr ""
+
+#: ../Clipper/data/messages:121
+msgid ""
+"When you click on an item, its content will become accessible with the "
+"middle-click"
+msgstr ""
+
+#: ../Clipper/data/messages:123
+msgid "Paste into Selection?"
+msgstr ""
+
+#: ../Clipper/data/messages:125 ../keyboard-indicator/data/messages:99
+msgid "Shortkey to pop-up the items menu:"
+msgstr ""
+
+#: ../Clipper/data/messages:127
+msgid "Pop-up menus at mouse position?"
+msgstr ""
+
+#: ../Clipper/data/messages:129
+msgid "Actions"
+msgstr ""
+
+#: ../Clipper/data/messages:131
+msgid ""
+"If some actions are associated with an item, they will be proposed when the "
+"item is created."
+msgstr ""
+
+#: ../Clipper/data/messages:133
+msgid "Enable actions?"
+msgstr ""
+
+#: ../Clipper/data/messages:135
+msgid "Display actions when selecting an item in the history."
+msgstr ""
+
+#: ../Clipper/data/messages:137
+msgid "Replay actions?"
+msgstr ""
+
+#: ../Clipper/data/messages:141
+msgid "Duration of the action menu:"
+msgstr ""
+
+#: ../Clipper/data/messages:143
+msgid "Persistent items"
+msgstr ""
+
+#: ../Clipper/data/messages:145
+msgid "A list of persistent items which can be accessed with middle-click:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:27 ../Global-Menu/data/messages:25
+#: ../Impulse/data/messages:29 ../Recent-Events/data/messages:31
+#: ../Status-Notifier/data/messages:41 ../alsaMixer/data/messages:39
+#: ../clock/data/messages:39 ../dustbin/data/messages:27
+#: ../netspeed/data/messages:37 ../systray/data/messages:27
+#: ../template/data/messages:31 ../tomboy/data/messages:41
+msgid ""
+"Depending on your WindowManager, you may be able to move this with ALT + "
+"left-click.. Negative values are counted from the right/bottom of the screen"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:89 ../Impulse/data/messages:123
+#: ../clock/data/messages:133
+msgid "Style"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:93
+msgid "Image when composite is active:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:97
+msgid "Image when composite is inactive:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:99 ../Global-Menu/data/messages:89
+#: ../RSSreader/data/messages:105 ../Status-Notifier/data/messages:117
+#: ../clock/data/messages:101 ../dnd2share/data/messages:97
+#: ../showDesktop/data/messages:97 ../slider/data/messages:115
+msgid "Behaviour"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:101
+#: ../Composite-Manager/data/messages:113
+msgid ""
+"Let empty to use the default one. Alternatively, you can set any command you "
+"want."
+msgstr ""
+
+#: ../Composite-Manager/data/messages:103
+msgid "Composite window-manager:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:105
+#: ../Composite-Manager/data/messages:117
+msgid "Compiz"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:107
+#: ../Composite-Manager/data/messages:119
+msgid "KWin"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:109
+#: ../Composite-Manager/data/messages:121
+msgid "Xfwm"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:111
+#: ../Composite-Manager/data/messages:123
+msgid "Metacity"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:115
+msgid "Fallback window-manager:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:125
+msgid "Ask before switching:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:127 ../logout/data/messages:95
+#: ../showDesktop/data/messages:115 ../slider/data/messages:123
+#: ../switcher/data/messages:109
+msgid "Action on middle-click:"
+msgstr ""
+
+#: ../Composite-Manager/data/messages:141
+msgid "Shortkey to toggle the composite ON/OFF:"
+msgstr ""
+
+#: ../Dbus/data/messages:3
+msgid "Let external applications pop up dialogs in the dock?"
+msgstr ""
+
+#: ../Dbus/data/messages:5
+msgid "Let external applications reboot the dock?"
+msgstr ""
+
+#: ../Dbus/data/messages:7
+msgid "Let external applications quit the dock?"
+msgstr ""
+
+#: ../Dbus/data/messages:9
+msgid "Let external applications show/hide desklets?"
+msgstr ""
+
+#: ../Dbus/data/messages:11
+msgid "Let external applications reload applets?"
+msgstr ""
+
+#: ../Dbus/data/messages:13
+msgid "Let external applications show/hide docks?"
+msgstr ""
+
+#: ../Dbus/data/messages:15
+msgid "Let extern applications add launchers to the docks?"
+msgstr ""
+
+#: ../Dbus/data/messages:17
+msgid "Let external applications modify the labels of icons?"
+msgstr ""
+
+#: ../Dbus/data/messages:19
+msgid "Let extern applications modify the quick-infos on icons?"
+msgstr ""
+
+#: ../Dbus/data/messages:21
+msgid "Let extern applications modify the icons' image?"
+msgstr ""
+
+#: ../Dbus/data/messages:23
+msgid "Let extern applications animate icons?"
+msgstr ""
+
+#: ../Disks/data/messages:5
+msgid "Name of the container it belongs to:"
+msgstr ""
+
+#: ../Disks/data/messages:17
+msgid "Desklet mode"
+msgstr ""
+
+#: ../Disks/data/messages:89 ../Network-Monitor/data/messages:139
+#: ../System-Monitor/data/messages:99 ../netspeed/data/messages:99
+#: ../powermanager/data/messages:101 ../wifi/data/messages:99
+msgid "Choose the style of the display: "
+msgstr ""
+
+#: ../Disks/data/messages:91 ../Disks/data/messages:95
+#: ../Network-Monitor/data/messages:141 ../Network-Monitor/data/messages:145
+#: ../Network-Monitor/data/messages:183 ../Network-Monitor/data/messages:189
+#: ../System-Monitor/data/messages:101 ../System-Monitor/data/messages:105
+#: ../alsaMixer/data/messages:129 ../netspeed/data/messages:101
+#: ../netspeed/data/messages:105 ../powermanager/data/messages:103
+#: ../powermanager/data/messages:109 ../wifi/data/messages:101
+#: ../wifi/data/messages:107
+msgid "Gauge"
+msgstr ""
+
+#: ../Disks/data/messages:93 ../Disks/data/messages:107
+#: ../Network-Monitor/data/messages:143 ../Network-Monitor/data/messages:149
+#: ../Network-Monitor/data/messages:185 ../Network-Monitor/data/messages:193
+#: ../System-Monitor/data/messages:103 ../System-Monitor/data/messages:117
+#: ../netspeed/data/messages:103 ../netspeed/data/messages:117
+#: ../powermanager/data/messages:105 ../powermanager/data/messages:113
+#: ../wifi/data/messages:103 ../wifi/data/messages:111
+msgid "Graph"
+msgstr ""
+
+#: ../Disks/data/messages:99 ../System-Monitor/data/messages:109
+#: ../alsaMixer/data/messages:141 ../netspeed/data/messages:109
+msgid "Rotate applet theme :"
+msgstr ""
+
+#: ../Disks/data/messages:103 ../System-Monitor/data/messages:113
+#: ../alsaMixer/data/messages:145 ../netspeed/data/messages:113
+msgid "With dock orientation"
+msgstr ""
+
+#: ../Disks/data/messages:109 ../Network-Monitor/data/messages:151
+#: ../Network-Monitor/data/messages:195 ../System-Monitor/data/messages:119
+#: ../netspeed/data/messages:119 ../powermanager/data/messages:115
+#: ../wifi/data/messages:113
+msgid "Type of graphic :"
+msgstr ""
+
+#: ../Disks/data/messages:111 ../Network-Monitor/data/messages:153
+#: ../Network-Monitor/data/messages:197 ../System-Monitor/data/messages:121
+#: ../netspeed/data/messages:121 ../powermanager/data/messages:117
+#: ../wifi/data/messages:115
+msgid "Line"
+msgstr ""
+
+#: ../Disks/data/messages:113 ../Network-Monitor/data/messages:155
+#: ../Network-Monitor/data/messages:199 ../System-Monitor/data/messages:123
+#: ../netspeed/data/messages:123 ../powermanager/data/messages:119
+#: ../wifi/data/messages:117
+msgid "Plain"
+msgstr ""
+
+#: ../Disks/data/messages:115 ../Network-Monitor/data/messages:157
+#: ../Network-Monitor/data/messages:201 ../System-Monitor/data/messages:125
+#: ../netspeed/data/messages:125 ../powermanager/data/messages:121
+#: ../wifi/data/messages:119
+msgid "Bar"
+msgstr ""
+
+#: ../Disks/data/messages:117 ../Network-Monitor/data/messages:159
+#: ../Network-Monitor/data/messages:203 ../System-Monitor/data/messages:127
+#: ../netspeed/data/messages:127 ../powermanager/data/messages:123
+#: ../wifi/data/messages:121
+msgid "Circle"
+msgstr ""
+
+#: ../Disks/data/messages:119 ../Network-Monitor/data/messages:161
+#: ../Network-Monitor/data/messages:205 ../System-Monitor/data/messages:129
+#: ../netspeed/data/messages:129 ../powermanager/data/messages:125
+#: ../wifi/data/messages:123
+msgid "Plain Circle"
+msgstr ""
+
+#: ../Disks/data/messages:121 ../netspeed/data/messages:131
+msgid "It's the colour of the graphic for high rate values."
+msgstr ""
+
+#: ../Disks/data/messages:123 ../Network-Monitor/data/messages:165
+#: ../Network-Monitor/data/messages:209 ../System-Monitor/data/messages:133
+#: ../netspeed/data/messages:133 ../powermanager/data/messages:129
+#: ../wifi/data/messages:127
+msgid "High value's colour :"
+msgstr ""
+
+#: ../Disks/data/messages:125 ../netspeed/data/messages:135
+msgid "Graph colour for low rate vaues:"
+msgstr ""
+
+#: ../Disks/data/messages:127 ../Network-Monitor/data/messages:169
+#: ../Network-Monitor/data/messages:213 ../System-Monitor/data/messages:137
+#: ../netspeed/data/messages:137 ../powermanager/data/messages:133
+#: ../wifi/data/messages:131
+msgid "Low value's colour :"
+msgstr ""
+
+#: ../Disks/data/messages:129 ../Network-Monitor/data/messages:171
+#: ../Network-Monitor/data/messages:215 ../System-Monitor/data/messages:139
+#: ../netspeed/data/messages:139 ../powermanager/data/messages:135
+#: ../wifi/data/messages:133
+msgid "Background colour of the graphic :"
+msgstr ""
+
+#: ../Disks/data/messages:131 ../System-Monitor/data/messages:141
+#: ../netspeed/data/messages:141
+msgid "Show all values on same graph?"
+msgstr ""
+
+#: ../Disks/data/messages:133 ../Impulse/data/messages:91
+#: ../Status-Notifier/data/messages:103 ../alsaMixer/data/messages:109
+#: ../keyboard-indicator/data/messages:109 ../mail/data/messages:103
+#: ../musicPlayer/data/messages:159 ../shortcuts/data/messages:93
+#: ../shortcuts/data/messages:103 ../slider/data/messages:163
+#: ../stack/data/messages:95 ../tomboy/data/messages:103
+#: ../weather/data/messages:129
+msgid "Display"
+msgstr ""
+
+#: ../Disks/data/messages:135
+msgid "Display values"
+msgstr ""
+
+#: ../Disks/data/messages:139 ../Network-Monitor/data/messages:119
+#: ../System-Monitor/data/messages:165 ../alsaMixer/data/messages:117
+#: ../clock/data/messages:107 ../netspeed/data/messages:161
+msgid "On icon"
+msgstr ""
+
+#: ../Disks/data/messages:141 ../Network-Monitor/data/messages:121
+#: ../System-Monitor/data/messages:167 ../alsaMixer/data/messages:115
+#: ../clock/data/messages:109 ../netspeed/data/messages:163
+msgid "On label"
+msgstr ""
+
+#: ../Disks/data/messages:145
+msgid "Refresh time"
+msgstr ""
+
+#: ../Disks/data/messages:147 ../netspeed/data/messages:153
+msgid ""
+"You need OpenGL for this option. Set it to 0 to disable it, 1 means the "
+"transition is continue."
+msgstr ""
+
+#: ../Disks/data/messages:149
+msgid "Fluidity of the transition between 2 values"
+msgstr ""
+
+#: ../Disks/data/messages:151
+msgid "Partitions monitored : Size"
+msgstr ""
+
+#: ../Disks/data/messages:153
+msgid "E.g. sda1, sdb5..."
+msgstr ""
+
+#: ../Disks/data/messages:155
+msgid "Disks monitored : Speed"
+msgstr ""
+
+#: ../Disks/data/messages:157
+msgid "E.g. sda, sdb... Up to 5 values allowed"
+msgstr ""
+
+#: ../Disks/data/messages:159
+msgid "Preferences"
+msgstr ""
+
+#: ../Disks/data/messages:161 ../Network-Monitor/data/messages:133
+#: ../netspeed/data/messages:165
+msgid "Leave empty to use the default."
+msgstr ""
+
+#: ../Disks/data/messages:163
+msgid "System monitor command"
+msgstr ""
+
+#: ../Doncky/data/messages:93
+msgid "Specify the xml file to be used :"
+msgstr ""
+
+#: ../Doncky/data/messages:95 ../RSSreader/data/messages:133
+msgid "Appearance"
+msgstr ""
+
+#: ../Doncky/data/messages:99
+msgid "Font to be used by default if none is specify in the .xml"
+msgstr ""
+
+#: ../Doncky/data/messages:101
+msgid "Default Font:"
+msgstr ""
+
+#: ../Doncky/data/messages:103
+msgid "Color to be used by default if none is specify in the .xml"
+msgstr ""
+
+#: ../Doncky/data/messages:105 ../icon-effect/data/messages:179
+msgid "Default colour:"
+msgstr ""
+
+#: ../Doncky/data/messages:107
+msgid "Margin to be used on left, right and top of the desklet"
+msgstr ""
+
+#: ../Doncky/data/messages:109
+msgid "Margin all around the desklet:"
+msgstr ""
+
+#: ../Doncky/data/messages:111
+msgid "Use this to increase the space between the lines"
+msgstr ""
+
+#: ../Doncky/data/messages:113
+msgid "Space between lines:"
+msgstr ""
+
+#: ../Doncky/data/messages:115 ../RSSreader/data/messages:179
+msgid "Background"
+msgstr ""
+
+#: ../Doncky/data/messages:117 ../RSSreader/data/messages:181
+msgid ""
+"You can have more attractive backgrounds using the Desklet decorations"
+msgstr ""
+
+#: ../Doncky/data/messages:119 ../RSSreader/data/messages:183
+msgid "Display a simple background?"
+msgstr ""
+
+#: ../Doncky/data/messages:121 ../RSSreader/data/messages:185
+msgid "first colour of the gradation"
+msgstr ""
+
+#: ../Doncky/data/messages:123 ../RSSreader/data/messages:187
+msgid "Background first colour :"
+msgstr ""
+
+#: ../Doncky/data/messages:125 ../RSSreader/data/messages:189
+msgid "second colour of the gradation"
+msgstr ""
+
+#: ../Doncky/data/messages:127 ../RSSreader/data/messages:191
+msgid "Background second colour:"
+msgstr ""
+
+#: ../Doncky/data/messages:129 ../RSSreader/data/messages:193
+msgid "Set the radius corner to 0 for no radius"
+msgstr ""
+
+#: ../Doncky/data/messages:131 ../RSSreader/data/messages:195
+msgid "Background radius corner:"
+msgstr ""
+
+#: ../Doncky/data/messages:133 ../RSSreader/data/messages:197
+msgid "Set the thickness to 0 for no border"
+msgstr ""
+
+#: ../Doncky/data/messages:135 ../RSSreader/data/messages:199
+msgid "Border thickness:"
+msgstr ""
+
+#: ../Doncky/data/messages:137 ../RSSreader/data/messages:201
+msgid "Border colour"
+msgstr ""
+
+#: ../Doncky/data/messages:139 ../RSSreader/data/messages:203
+msgid "Border colour :"
+msgstr ""
+
+#: ../Folders/data/messages:7
+msgid "Let empty to use the name of the folder."
+msgstr ""
+
+#: ../Folders/data/messages:11
+msgid "How to render the icon :"
+msgstr ""
+
+#: ../Folders/data/messages:13
+msgid "Use an image"
+msgstr ""
+
+#: ../Folders/data/messages:15
+msgid "Draw sub-dock's content as emblems"
+msgstr ""
+
+#: ../Folders/data/messages:17
+msgid "Draw sub-dock's content as stack"
+msgstr ""
+
+#: ../Folders/data/messages:19
+msgid "Draw sub-dock's content inside a box"
+msgstr ""
+
+#: ../Folders/data/messages:105
+msgid "Folder's path:"
+msgstr ""
+
+#: ../Folders/data/messages:107
+msgid ""
+"Allow to show the files of the folder in a sub-dock. If disabled, the applet "
+"behaves as a mere launcher."
+msgstr ""
+
+#: ../Folders/data/messages:109
+msgid "Show folder's content?"
+msgstr ""
+
+#: ../Folders/data/messages:111
+msgid "Sort files by :"
+msgstr ""
+
+#: ../Folders/data/messages:113 ../stack/data/messages:129
+msgid "Name"
+msgstr ""
+
+#: ../Folders/data/messages:115 ../stack/data/messages:131
+msgid "Date"
+msgstr ""
+
+#: ../Folders/data/messages:119
+msgid "Sort folders before files?"
+msgstr ""
+
+#: ../Folders/data/messages:121 ../Scooby-Do/data/messages:101
+#: ../quick-browser/data/messages:103
+msgid "Show hidden files?"
+msgstr ""
+
+#: ../GMenu/data/messages:93 ../quick-browser/data/messages:109
+msgid "Display icons in the menu?"
+msgstr ""
+
+#: ../GMenu/data/messages:95 ../Messaging-Menu/data/messages:101
+#: ../quick-browser/data/messages:119
+msgid "Shortkey to show/hide the menu:"
+msgstr ""
+
+#: ../GMenu/data/messages:97
+msgid "Shortkey to show/hide the quick-launch dialog:"
+msgstr ""
+
+#: ../GMenu/data/messages:101
+msgid "Command to use for configuring the menu:"
+msgstr ""
+
+#: ../GMenu/data/messages:103
+msgid "Recent documents"
+msgstr ""
+
+#: ../GMenu/data/messages:105
+msgid "Show recent documents?"
+msgstr ""
+
+#: ../GMenu/data/messages:107
+msgid "Leave blank if filter is not needed."
+msgstr ""
+
+#: ../GMenu/data/messages:109
+msgid "Only show files that are under this folder or its sub-folder:"
+msgstr ""
+
+#: ../GMenu/data/messages:111
+msgid "in days. Set 0 if unsued."
+msgstr ""
+
+#: ../GMenu/data/messages:113
+msgid "Only show files whose last modification date is less than ;"
+msgstr ""
+
+#: ../GMenu/data/messages:115
+msgid "Session management buttons"
+msgstr ""
+
+#: ../GMenu/data/messages:117
+msgid "Show Logout and/or Shutdown : "
+msgstr ""
+
+#: ../Global-Menu/data/messages:87
+msgid ""
+"The applet can steal the top border of maximized windows, in which case it "
+"will display the window control buttons.\n"
+" The applet can steal the menu from the windows, in which case it will "
+"display a button to pop up the menu of the current window."
+msgstr ""
+
+#: ../Global-Menu/data/messages:91
+msgid "Steal window menu"
+msgstr ""
+
+#: ../Global-Menu/data/messages:93
+msgid "Steal window decoration"
+msgstr ""
+
+#: ../Global-Menu/data/messages:95
+msgid "Steal window menu and border"
+msgstr ""
+
+#: ../Global-Menu/data/messages:97
+msgid "Shortkey to pop up the menu"
+msgstr ""
+
+#: ../Global-Menu/data/messages:99
+msgid "Pop up the menu at mouse position"
+msgstr ""
+
+#: ../Global-Menu/data/messages:101
+msgid "Compact mode"
+msgstr ""
+
+#: ../Global-Menu/data/messages:103
+msgid "Order of the buttons: "
+msgstr ""
+
+#: ../Global-Menu/data/messages:105
+msgid "Auto"
+msgstr ""
+
+#: ../Global-Menu/data/messages:107
+msgid "Close button at the end"
+msgstr ""
+
+#: ../Global-Menu/data/messages:109
+msgid "Close button at first"
+msgstr ""
+
+#: ../Global-Menu/data/messages:111
+msgid "Image for the 'minimize' button"
+msgstr ""
+
+#: ../Global-Menu/data/messages:113
+msgid "Image for the 'maximize' button"
+msgstr ""
+
+#: ../Global-Menu/data/messages:115
+msgid "Image for the 'restore' button"
+msgstr ""
+
+#: ../Global-Menu/data/messages:117
+msgid "Image for the 'close' button"
+msgstr ""
+
+#: ../Impulse/data/messages:93
+msgid "Animation of the icons:"
+msgstr ""
+
+#: ../Impulse/data/messages:95
+msgid ""
+"Do we have to stop the animation on a icon which doesn't have to be animated "
+"each refresh?"
+msgstr ""
+
+#: ../Impulse/data/messages:97
+msgid "Stop animations sooner?"
+msgstr ""
+
+#: ../Impulse/data/messages:99 ../alsaMixer/data/messages:101
+msgid "Control"
+msgstr ""
+
+#: ../Impulse/data/messages:101
+msgid ""
+"It's the sensitivity in order to know if the animation is played or not."
+msgstr ""
+
+#: ../Impulse/data/messages:103
+msgid "Sensitivity of the animation:"
+msgstr ""
+
+#: ../Impulse/data/messages:105 ../Impulse/data/messages:115
+msgid "More"
+msgstr ""
+
+#: ../Impulse/data/messages:107 ../Impulse/data/messages:113
+msgid "Less"
+msgstr ""
+
+#: ../Impulse/data/messages:109
+msgid "in ms."
+msgstr ""
+
+#: ../Impulse/data/messages:111
+msgid "Time between two animations:"
+msgstr ""
+
+#: ../Impulse/data/messages:117
+msgid "Action at Startup"
+msgstr ""
+
+#: ../Impulse/data/messages:119
+msgid "Launch automatically at startup?"
+msgstr ""
+
+#: ../Impulse/data/messages:121
+msgid "Hide the icon?"
+msgstr ""
+
+#: ../Impulse/data/messages:127
+msgid "Image when the applet is active:"
+msgstr ""
+
+#: ../Impulse/data/messages:131
+msgid "Image when the applet is inactive:"
+msgstr ""
+
+#: ../Impulse/data/messages:135 ../musicPlayer/data/messages:205
+#: ../tomboy/data/messages:21
+msgid "'Broken' icon image name:"
+msgstr ""
+
+#: ../Impulse/data/messages:137
+msgid "PulseAudio"
+msgstr ""
+
+#: ../Impulse/data/messages:139
+msgid "0 in most cases"
+msgstr ""
+
+#: ../Impulse/data/messages:141
+msgid "Index of the source:"
+msgstr ""
+
+#: ../Messaging-Menu/data/messages:13 ../Network-Monitor/data/messages:15
+#: ../Status-Notifier/data/messages:17 ../System-Monitor/data/messages:13
+#: ../Toons/data/messages:13 ../alsaMixer/data/messages:15
+#: ../clock/data/messages:15 ../keyboard-indicator/data/messages:13
+#: ../mail/data/messages:13 ../musicPlayer/data/messages:15
+#: ../netspeed/data/messages:13 ../powermanager/data/messages:15
+#: ../slider/data/messages:13 ../weather/data/messages:15
+#: ../wifi/data/messages:13
+msgid "Always display the icon, even when the dock is hidden?"
+msgstr ""
+
+#: ../Messaging-Menu/data/messages:17 ../Network-Monitor/data/messages:19
+#: ../Status-Notifier/data/messages:21 ../System-Monitor/data/messages:17
+#: ../Toons/data/messages:17 ../alsaMixer/data/messages:19
+#: ../clock/data/messages:19 ../keyboard-indicator/data/messages:17
+#: ../mail/data/messages:17 ../musicPlayer/data/messages:19
+#: ../netspeed/data/messages:17 ../powermanager/data/messages:19
+#: ../slider/data/messages:17 ../weather/data/messages:19
+#: ../wifi/data/messages:17
+msgid "With default background"
+msgstr ""
+
+#: ../Messaging-Menu/data/messages:19 ../Network-Monitor/data/messages:21
+#: ../Status-Notifier/data/messages:23 ../System-Monitor/data/messages:19
+#: ../Toons/data/messages:19 ../alsaMixer/data/messages:21
+#: ../clock/data/messages:21 ../keyboard-indicator/data/messages:19
+#: ../mail/data/messages:19 ../musicPlayer/data/messages:21
+#: ../netspeed/data/messages:19 ../powermanager/data/messages:21
+#: ../slider/data/messages:19 ../weather/data/messages:21
+#: ../wifi/data/messages:19
+msgid "With custom background"
+msgstr ""
+
+#: ../Messaging-Menu/data/messages:21 ../Network-Monitor/data/messages:23
+#: ../Status-Notifier/data/messages:25 ../System-Monitor/data/messages:21
+#: ../Toons/data/messages:21 ../alsaMixer/data/messages:23
+#: ../clock/data/messages:23 ../keyboard-indicator/data/messages:21
+#: ../mail/data/messages:21 ../musicPlayer/data/messages:23
+#: ../netspeed/data/messages:21 ../powermanager/data/messages:23
+#: ../slider/data/messages:21 ../weather/data/messages:23
+#: ../wifi/data/messages:21
+msgid "Background color to add in this case"
+msgstr ""
+
+#: ../Messaging-Menu/data/messages:99
+msgid ""
+"Animation of the icon when one of the application demands your attention :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:7
+msgid "Leave empty to use the connection name."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:101 ../Network-Monitor/data/messages:173
+#: ../Network-Monitor/data/messages:261 ../System-Monitor/data/messages:143
+#: ../netspeed/data/messages:143 ../powermanager/data/messages:157
+#: ../tomboy/data/messages:123 ../wifi/data/messages:171
+msgid "Parameters"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:103
+msgid "You can quickly switch to the other mode by scrolling on the icon."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:105
+msgid "Info displayed by the icon:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:107
+msgid "Wifi signal"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:109
+msgid "Connexion speed"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:111
+msgid "By default the first active interface is used."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:113
+msgid "Connection interface to monitor:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:115
+msgid "Display numeric values:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:123 ../System-Monitor/data/messages:173
+#: ../wifi/data/messages:177
+msgid ""
+"You need OpenGL for this option. Set it to 0 means not used, 1 means the "
+"movement is continue."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:125
+msgid "Fluidity of the transition animation between 2 values:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:127
+msgid "Animation of the icon when connecting:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:129
+msgid ""
+"Allow you to overwrite applet's default command line and launch your "
+"preferred wireless configuration interface."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:131
+msgid "User command to show Wireless Configuration:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:135 ../System-Monitor/data/messages:189
+#: ../netspeed/data/messages:167
+msgid "User command to display a system monitor:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:137
+msgid "Net Speed"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:163 ../Network-Monitor/data/messages:207
+#: ../wifi/data/messages:125
+msgid "It's the colour of the graphic for high quality signal."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:167 ../Network-Monitor/data/messages:211
+#: ../wifi/data/messages:129
+msgid "It's the colour of the graphic for low quality signal."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:177
+msgid "Delays between net speed checks:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:179
+msgid "Wifi"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:181
+msgid "Choose the style of the display:"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:187 ../Network-Monitor/data/messages:217
+#: ../powermanager/data/messages:107 ../powermanager/data/messages:137
+#: ../wifi/data/messages:105 ../wifi/data/messages:135
+msgid "Icons"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:219 ../wifi/data/messages:137
+msgid "Effect to apply on the icon according to strength :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:223 ../alsaMixer/data/messages:123
+#: ../powermanager/data/messages:151 ../wifi/data/messages:141
+msgid "Zoom"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:225 ../alsaMixer/data/messages:125
+#: ../powermanager/data/messages:153 ../wifi/data/messages:143
+msgid "Transparency"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:227 ../alsaMixer/data/messages:127
+#: ../wifi/data/messages:145
+msgid "Draw Bar"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:229 ../Network-Monitor/data/messages:233
+#: ../Network-Monitor/data/messages:237 ../Network-Monitor/data/messages:241
+#: ../Network-Monitor/data/messages:245 ../Network-Monitor/data/messages:249
+#: ../Network-Monitor/data/messages:253 ../Network-Monitor/data/messages:257
+#: ../logout/data/messages:121 ../musicPlayer/data/messages:187
+#: ../musicPlayer/data/messages:191 ../musicPlayer/data/messages:195
+#: ../musicPlayer/data/messages:199 ../musicPlayer/data/messages:203
+#: ../powermanager/data/messages:139 ../powermanager/data/messages:143
+#: ../powermanager/data/messages:171 ../tomboy/data/messages:11
+#: ../tomboy/data/messages:15 ../tomboy/data/messages:19
+#: ../tomboy/data/messages:105 ../wifi/data/messages:147
+#: ../wifi/data/messages:151 ../wifi/data/messages:155
+#: ../wifi/data/messages:159 ../wifi/data/messages:163
+#: ../wifi/data/messages:167
+msgid "Leave empty to use the default icon."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:231
+msgid "Name of the image for the 'No signal' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:235
+msgid "Name of the image for the 'Very low' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:239
+msgid "Name of the image for the 'Low' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:243
+msgid "Name of the image for the 'Middle' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:247
+msgid "Name of an image for the 'Good' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:251
+msgid "Name of the image for the 'Excellent' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:255
+msgid "Name of the image for the 'Not connected' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:259
+msgid "Name of the image for the 'Wired connection' icon :"
+msgstr ""
+
+#: ../Network-Monitor/data/messages:263
+msgid "in seconds. if you don't have Network-Manager."
+msgstr ""
+
+#: ../Network-Monitor/data/messages:265
+msgid "Delays between wifi signal checks:"
+msgstr ""
+
+#: ../RSSreader/data/messages:7
+msgid "Leave empty to use the title of the RSS feed."
+msgstr ""
+
+#: ../RSSreader/data/messages:95
+msgid "RSS Feed"
+msgstr ""
+
+#: ../RSSreader/data/messages:97
+msgid "Enter a valid atom/rss feed"
+msgstr ""
+
+#: ../RSSreader/data/messages:99
+msgid "URL:"
+msgstr ""
+
+#: ../RSSreader/data/messages:101
+msgid "RSS login (optional):"
+msgstr ""
+
+#: ../RSSreader/data/messages:103
+msgid "RSS password (optional):"
+msgstr ""
+
+#: ../RSSreader/data/messages:111
+msgid "Notify about feed updates:"
+msgstr ""
+
+#: ../RSSreader/data/messages:115 ../powermanager/data/messages:205
+msgid "Icon animation"
+msgstr ""
+
+#: ../RSSreader/data/messages:117 ../powermanager/data/messages:207
+msgid "Dialog bubble"
+msgstr ""
+
+#: ../RSSreader/data/messages:119 ../powermanager/data/messages:209
+msgid "Icon animation + Dialog bubble"
+msgstr ""
+
+#: ../RSSreader/data/messages:121 ../powermanager/data/messages:211
+msgid "Let empty to use the default notification animation."
+msgstr ""
+
+#: ../RSSreader/data/messages:123 ../powermanager/data/messages:213
+msgid "Animation of the icon:"
+msgstr ""
+
+#: ../RSSreader/data/messages:125 ../powermanager/data/messages:215
+msgid ""
+"In seconds. Set to 0 for infinite time (need to click on dialog to close it)."
+msgstr ""
+
+#: ../RSSreader/data/messages:127 ../powermanager/data/messages:217
+msgid "Duration of the notification:"
+msgstr ""
+
+#: ../RSSreader/data/messages:131
+msgid "Open the feed with the following program:"
+msgstr ""
+
+#: ../RSSreader/data/messages:137
+msgid "Font to be used for the title"
+msgstr ""
+
+#: ../RSSreader/data/messages:139
+msgid "Title font:"
+msgstr ""
+
+#: ../RSSreader/data/messages:141
+msgid "Colour to be used for the title"
+msgstr ""
+
+#: ../RSSreader/data/messages:143
+msgid "Title colour:"
+msgstr ""
+
+#: ../RSSreader/data/messages:145
+msgid "Alignment of the title:"
+msgstr ""
+
+#: ../RSSreader/data/messages:147
+msgid "left"
+msgstr ""
+
+#: ../RSSreader/data/messages:149
+msgid "right"
+msgstr ""
+
+#: ../RSSreader/data/messages:153
+msgid "Font to be used for the feed lines"
+msgstr ""
+
+#: ../RSSreader/data/messages:155
+msgid "Feed lines font:"
+msgstr ""
+
+#: ../RSSreader/data/messages:157
+msgid "Colour to be used for the feed lines"
+msgstr ""
+
+#: ../RSSreader/data/messages:159
+msgid "Feed lines colour:"
+msgstr ""
+
+#: ../RSSreader/data/messages:161
+msgid "Left margin for the feed lines:"
+msgstr ""
+
+#: ../RSSreader/data/messages:163
+msgid "Space between 2 feed lines:"
+msgstr ""
+
+#: ../RSSreader/data/messages:165
+msgid "Logo"
+msgstr ""
+
+#: ../RSSreader/data/messages:167
+msgid "The default logo is the applet's icon"
+msgstr ""
+
+#: ../RSSreader/data/messages:169
+msgid "Display the logo?"
+msgstr ""
+
+#: ../RSSreader/data/messages:171
+msgid "Adjust to increase/decrease the logo's size"
+msgstr ""
+
+#: ../RSSreader/data/messages:173
+msgid "Logo size:"
+msgstr ""
+
+#: ../RSSreader/data/messages:175 ../dock-rendering/data/messages:47
+#: ../keyboard-indicator/data/messages:123
+msgid "normal"
+msgstr ""
+
+#: ../RSSreader/data/messages:177 ../dock-rendering/data/messages:49
+msgid "big"
+msgstr ""
+
+#: ../Recent-Events/data/messages:93
+msgid "Shortkey to show/hide the search dialog"
+msgstr ""
+
+#: ../Recent-Events/data/messages:95
+msgid "Max number of results to show"
+msgstr ""
+
+#: ../Remote-Control/data/messages:3
+msgid "Shortkey to trigger the applet:"
+msgstr ""
+
+#: ../Remote-Control/data/messages:5
+msgid "Dock to control initially"
+msgstr ""
+
+#: ../Remote-Control/data/messages:7 ../Scooby-Do/data/messages:23
+msgid "Animation of the current icon :"
+msgstr ""
+
+#: ../Remote-Control/data/messages:11 ../Scooby-Do/data/messages:21
+msgid "Duration of the stop animation :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:3
+msgid "Shortkey to enable/disable the finder mode:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:5
+msgid ""
+"Maximum number of mails that will be previewed. Put -1 to show the maximum "
+"possible."
+msgstr ""
+
+#: ../Scooby-Do/data/messages:7
+msgid "Maximum number of results :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:9
+msgid ""
+"Number of lines of the listing. If there are more results, the listing will "
+"scroll when you go up or down with the arrows."
+msgstr ""
+
+#: ../Scooby-Do/data/messages:11
+msgid "Number of lines to display :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:13
+msgid "Animations"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:17
+msgid "Duration of the appearance animation :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:27
+msgid "Font used to display what you type:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:29
+msgid "Color of the text's frame :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:31
+msgid "Font size, relative to the dock size:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:33
+msgid "between 1 and 9, the higher, the bigger."
+msgstr ""
+
+#: ../Scooby-Do/data/messages:35
+msgid "Text size:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:37 ../keyboard-indicator/data/messages:115
+msgid "Outline text?"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:39 ../clock/data/messages:155
+msgid "Text colour:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:41
+msgid "Character background colour:"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:43
+msgid "Write text on the top of the dock?"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:45
+msgid "Favorite applications"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:47
+msgid "FAvorite applications starting with 'a' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:49
+msgid "Favorite application starting with 'b' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:51
+msgid "Favorite application(s) starting with 'c' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:53
+msgid "Favorite application(s starting with 'd' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:55
+msgid "Favorite application(s) starting with 'e' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:57
+msgid "Favorite application(s) starting with 'f' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:59
+msgid "Favorite application(s) starting with 'g' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:61
+msgid "Favorite application(s) starting with 'h' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:63
+msgid "Favorite application(s) starting with 'i' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:65
+msgid "Favorite application(s) starting with 'j' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:67
+msgid "Favorite application(s) starting with 'k' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:69
+msgid "Favorite application(s) starting with 'l' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:71
+msgid "Favorite application(s) starting with 'm' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:73
+msgid "Favorite application(s) starting with 'n' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:75
+msgid "Favorite application(s) starting with 'o' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:77
+msgid "Favorite application(s) starting with 'p' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:79
+msgid "Favorite application(s) starting with 'q' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:81
+msgid "Favorite application(s) starting with 'r' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:83
+msgid "Favorite application(s) starting with 's' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:85
+msgid "Favorite application(s) starting with 't' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:87
+msgid "Favorite application(s) starting with 'u' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:89
+msgid "Favorite application(s) starting with 'v' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:91
+msgid "Favorite application(s) starting with 'w' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:93
+msgid "Favorite application(s) starting with 'x' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:95
+msgid "Favorite application(s) starting with 'y' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:97
+msgid "Favorite application(s) starting with 'z' :"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:107
+msgid "Propose some web search engines ?"
+msgstr ""
+
+#: ../Scooby-Do/data/messages:109
+msgid "It can launch commands and even do some calculations."
+msgstr ""
+
+#: ../Scooby-Do/data/messages:113
+msgid "Help"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:9 ../mail/data/messages:107
+#: ../mail/data/messages:111 ../mail/data/messages:127
+msgid "Let empty to use the default one."
+msgstr ""
+
+#: ../Status-Notifier/data/messages:11
+msgid "Image's filename :"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:105
+msgid "Hide inactive items"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:107
+msgid "How to display items:"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:109
+msgid "Compact"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:111
+msgid "Sub-dock"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:113
+msgid "Allow the icon to automatically resize itself?"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:115
+msgid "Number of lines to pack items in:"
+msgstr ""
+
+#: ../Status-Notifier/data/messages:119
+msgid "Left click pops up the items' menu"
+msgstr ""
+
+#: ../System-Monitor/data/messages:131 ../powermanager/data/messages:127
+msgid "It's the colour of the graphic for high values."
+msgstr ""
+
+#: ../System-Monitor/data/messages:135 ../powermanager/data/messages:131
+msgid "It's the colour of the graphic for low values."
+msgstr ""
+
+#: ../System-Monitor/data/messages:145
+msgid "Show CPU usage?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:147
+msgid "Show RAM usage ?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:149
+msgid "Show SWAP too?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:151
+msgid "You need an nVidia card and the 'nvidia-settings' tool."
+msgstr ""
+
+#: ../System-Monitor/data/messages:153
+msgid "Show graphic card's temperature?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:155
+msgid "Show CPU temperature?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:157
+msgid "Show fan speed?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:159
+msgid "Show free memory instead of used memory?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:161
+msgid "Display values :"
+msgstr ""
+
+#: ../System-Monitor/data/messages:171
+msgid "Delay between refreshes:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:175 ../wifi/data/messages:179
+msgid "How smooth is the movement?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:177
+msgid "Alerts"
+msgstr ""
+
+#: ../System-Monitor/data/messages:179
+msgid "Show alerts?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:181
+msgid "Play a sound when displaying warning?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:183
+msgid "Path to sound file:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:185
+msgid "System-Monitor"
+msgstr ""
+
+#: ../System-Monitor/data/messages:191
+msgid ""
+"It will prevent the system monitor's icon to show in the taskbar. The "
+"applet's icon will then behave as a launcher, an application, and an applet."
+msgstr ""
+
+#: ../System-Monitor/data/messages:193
+msgid "Steal the system monitor's icon from the taskbar?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:197
+msgid "Class of the system monitor program:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:199
+msgid "Top List"
+msgstr ""
+
+#: ../System-Monitor/data/messages:201
+msgid ""
+"When you left-click on the icon, you will get the list of the N most CPU/RAM-"
+"intensive programs."
+msgstr ""
+
+#: ../System-Monitor/data/messages:203
+msgid "Number of programs to display in the top list:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:205
+msgid "The first colour of the gradient used to display the top list."
+msgstr ""
+
+#: ../System-Monitor/data/messages:207
+msgid "Top list start colour:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:209
+msgid "The second colour of the gradient used to display the top list."
+msgstr ""
+
+#: ../System-Monitor/data/messages:211
+msgid "Top list stop colour:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:213
+msgid "Show top memory usage in %?"
+msgstr ""
+
+#: ../System-Monitor/data/messages:217
+msgid "Delay between top list refreshes:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:219
+msgid "Graphic Card temperature"
+msgstr ""
+
+#: ../System-Monitor/data/messages:221 ../System-Monitor/data/messages:225
+msgid ""
+"in Celsius. The temperature will be displayed between this value and the "
+"upper limit."
+msgstr ""
+
+#: ../System-Monitor/data/messages:223
+msgid "Lower limit of graphic card temperature:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:227
+msgid "Upper limit of graphic card temperature:"
+msgstr ""
+
+#: ../System-Monitor/data/messages:229
+msgid "in celcius."
+msgstr ""
+
+#: ../System-Monitor/data/messages:231
+msgid "Notification limit of graphic card temperature:"
+msgstr ""
+
+#: ../Toons/data/messages:103
+msgid "Mean delay between winks:"
+msgstr ""
+
+#: ../Toons/data/messages:107
+msgid "Wink duration:"
+msgstr ""
+
+#: ../Toons/data/messages:109
+msgid "Keep ratio?"
+msgstr ""
+
+#: ../Toons/data/messages:111
+msgid "A high refresh frequency will use more CPU."
+msgstr ""
+
+#: ../Toons/data/messages:113
+msgid "High refresh frequency?"
+msgstr ""
+
+#: ../Xgamma/data/messages:7
+msgid "Leave empty to display the current luminosity."
+msgstr ""
+
+#: ../Xgamma/data/messages:95 ../alsaMixer/data/messages:105
+msgid "Variation for 1 mouse scroll, in %:"
+msgstr ""
+
+#: ../Xgamma/data/messages:97
+msgid "Use 0 for none."
+msgstr ""
+
+#: ../Xgamma/data/messages:99
+msgid "Brightness to apply automatically on startup:"
+msgstr ""
+
+#: ../Xgamma/data/messages:101
+msgid "Shortkey to increase the brightness:"
+msgstr ""
+
+#: ../Xgamma/data/messages:103
+msgid "Shortkey to decrease the brightness:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:7 ../alsaMixer/data/messages:155
+msgid "Leave empty to use the default sound card."
+msgstr ""
+
+#: ../alsaMixer/data/messages:103
+msgid "Shortkey to show/hide the sound control dialog:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:107
+msgid "Hide the scale when mouse leaves the desklet?"
+msgstr ""
+
+#: ../alsaMixer/data/messages:111
+msgid "Display volume :"
+msgstr ""
+
+#: ../alsaMixer/data/messages:119
+msgid "Effect to apply to the icon when adjusting volume:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:133
+msgid "Default icon:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:137
+msgid "Mute icon:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:151
+msgid "Broken icon:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:153
+msgid "Alsa"
+msgstr ""
+
+#: ../alsaMixer/data/messages:157
+msgid "Sound card:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:159
+msgid "Select channel:"
+msgstr ""
+
+#: ../alsaMixer/data/messages:161
+msgid ""
+"On some cards, a channel only controls 1 side (right or left). You will then "
+"need to specify a second channel here, to control both sides. Most of the "
+"time, you should just leave this empty."
+msgstr ""
+
+#: ../alsaMixer/data/messages:163
+msgid "Choose a second channel to control (optional):"
+msgstr ""
+
+#: ../alsaMixer/data/messages:165
+msgid "Leave empty to use the default command."
+msgstr ""
+
+#: ../alsaMixer/data/messages:167
+msgid "Specific command to run to show an advanced sound mixer:"
+msgstr ""
+
+#: ../clock/data/messages:7
+msgid "Leave empty to use the location name if available."
+msgstr ""
+
+#: ../clock/data/messages:103
+msgid "Show the date:"
+msgstr ""
+
+#: ../clock/data/messages:111
+msgid "for digital format only."
+msgstr ""
+
+#: ../clock/data/messages:113
+msgid "Display the time in a 24h format?"
+msgstr ""
+
+#: ../clock/data/messages:115
+msgid ""
+"if not, then the applet will update the time once a minute, saving CPU power."
+msgstr ""
+
+#: ../clock/data/messages:117
+msgid "Show seconds?"
+msgstr ""
+
+#: ../clock/data/messages:119
+msgid ""
+"In ms. Set 0 for non-smooth animation, set 1000 to have a continuous "
+"animation. Requires OpenGL."
+msgstr ""
+
+#: ../clock/data/messages:121
+msgid "Display seconds with smooth animation for a duration of:"
+msgstr ""
+
+#: ../clock/data/messages:123
+msgid "E.g. :Europe/Paris, :Japan, etc. Leave empty for local time."
+msgstr ""
+
+#: ../clock/data/messages:125
+msgid "Timezone:"
+msgstr ""
+
+#: ../clock/data/messages:127
+msgid "Use the tasks from the following task-manager:"
+msgstr ""
+
+#: ../clock/data/messages:129
+msgid "Default"
+msgstr ""
+
+#: ../clock/data/messages:131
+msgid "iCal"
+msgstr ""
+
+#: ../clock/data/messages:135
+msgid ""
+"The analogue view is based on CairoClock; otherwise it will be displayed in "
+"digital format."
+msgstr ""
+
+#: ../clock/data/messages:137
+msgid "Select the view :"
+msgstr ""
+
+#: ../clock/data/messages:139
+msgid "Analogue"
+msgstr ""
+
+#: ../clock/data/messages:141
+msgid "Digital"
+msgstr ""
+
+#: ../clock/data/messages:143
+msgid "Analogue View"
+msgstr ""
+
+#: ../clock/data/messages:145
+msgid "List of available themes for analogue display:"
+msgstr ""
+
+#: ../clock/data/messages:147
+msgid "Date text colour:"
+msgstr ""
+
+#: ../clock/data/messages:149
+msgid "Digital View"
+msgstr ""
+
+#: ../clock/data/messages:151
+msgid "Use a custom font"
+msgstr ""
+
+#: ../clock/data/messages:153 ../keyboard-indicator/data/messages:111
+msgid "Font:"
+msgstr ""
+
+#: ../clock/data/messages:157
+msgid "Layout of the text:"
+msgstr ""
+
+#: ../clock/data/messages:159 ../switcher/data/messages:95
+msgid "Automatic"
+msgstr ""
+
+#: ../clock/data/messages:161
+msgid "On 1 line"
+msgstr ""
+
+#: ../clock/data/messages:163
+msgid "On 2 lines"
+msgstr ""
+
+#: ../clock/data/messages:165
+msgid "Ratio to apply on text :"
+msgstr ""
+
+#: ../clock/data/messages:169
+msgid "Configure time and date"
+msgstr ""
+
+#: ../clock/data/messages:171 ../logout/data/messages:111
+msgid "Leave empty to execute the default command."
+msgstr ""
+
+#: ../clock/data/messages:173
+msgid "Specific command to run:"
+msgstr ""
+
+#: ../clock/data/messages:177
+msgid ""
+"The new alarm will be added to the end / the last alarm will be removed."
+msgstr ""
+
+#: ../clock/data/messages:179
+msgid "Add or remove an alarm:"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:1
+msgid "Comics"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:3 ../dialog-rendering/data/messages:11
+#: ../dialog-rendering/data/messages:21 ../dialog-rendering/data/messages:29
+#: ../dock-rendering/data/messages:69
+msgid "Corner radius:"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:5 ../dialog-rendering/data/messages:13
+#: ../dialog-rendering/data/messages:23 ../dialog-rendering/data/messages:31
+msgid "Border width:"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:7 ../dialog-rendering/data/messages:15
+#: ../dialog-rendering/data/messages:25 ../dialog-rendering/data/messages:33
+msgid "Bubble's line colour:"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:9
+msgid "Modern"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:17
+msgid "Space between lines of the tip :"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:19
+msgid "Tooltip"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:27
+msgid "Curly"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:35
+msgid "Curvature of the tip :"
+msgstr ""
+
+#: ../dialog-rendering/data/messages:37
+msgid "Curve the sides too?"
+msgstr ""
+
+#: ../dnd2share/data/messages:89
+msgid "Info-bubbles"
+msgstr ""
+
+#: ../dnd2share/data/messages:91
+msgid "Enable info-bubbles?"
+msgstr ""
+
+#: ../dnd2share/data/messages:95
+msgid "Duration of the info-bubbles :"
+msgstr ""
+
+#: ../dnd2share/data/messages:99
+msgid "Number of items to keep in the history :"
+msgstr ""
+
+#: ../dnd2share/data/messages:101
+msgid "Keep a copy of each uploaded image?"
+msgstr ""
+
+#: ../dnd2share/data/messages:103
+msgid "This will override the image setting."
+msgstr ""
+
+#: ../dnd2share/data/messages:105
+msgid "If so, display the last image on the icon?"
+msgstr ""
+
+#: ../dnd2share/data/messages:107
+msgid "Animation of the icon during upload :"
+msgstr ""
+
+#: ../dnd2share/data/messages:109
+msgid "Use the following service to make the URL smaller:"
+msgstr ""
+
+#: ../dnd2share/data/messages:113
+msgid "Tiny-URL"
+msgstr ""
+
+#: ../dnd2share/data/messages:115
+msgid "Shorter-Link"
+msgstr ""
+
+#: ../dnd2share/data/messages:117
+msgid "Use the tiny URL by default?"
+msgstr ""
+
+#: ../dnd2share/data/messages:119
+msgid "in KB/s - 0 means unlimited"
+msgstr ""
+
+#: ../dnd2share/data/messages:121
+msgid "Maximum upload rate:"
+msgstr ""
+
+#: ../dnd2share/data/messages:123
+msgid "Sites"
+msgstr ""
+
+#: ../dnd2share/data/messages:125
+msgid "Use files hosting site for any kind of files?"
+msgstr ""
+
+#: ../dnd2share/data/messages:127
+msgid "Preferred site for texts hosting :"
+msgstr ""
+
+#: ../dnd2share/data/messages:129 ../dnd2share/data/messages:141
+#: ../dnd2share/data/messages:151 ../dnd2share/data/messages:157
+msgid "Custom"
+msgstr ""
+
+#: ../dnd2share/data/messages:131
+msgid "Pastebin.com"
+msgstr ""
+
+#: ../dnd2share/data/messages:133
+msgid "Paste-ubuntu.com"
+msgstr ""
+
+#: ../dnd2share/data/messages:135
+msgid "Pastebin.mozilla.org"
+msgstr ""
+
+#: ../dnd2share/data/messages:137
+msgid "Codepad.org"
+msgstr ""
+
+#: ../dnd2share/data/messages:139
+msgid "Preferred site for images hosting :"
+msgstr ""
+
+#: ../dnd2share/data/messages:143
+msgid "Uppix.net"
+msgstr ""
+
+#: ../dnd2share/data/messages:145
+msgid "Imagebin.ca"
+msgstr ""
+
+#: ../dnd2share/data/messages:147
+msgid "ImageShack.us"
+msgstr ""
+
+#: ../dnd2share/data/messages:149
+msgid "Preferred site for videos hosting :"
+msgstr ""
+
+#: ../dnd2share/data/messages:153
+msgid "VideoBin.org"
+msgstr ""
+
+#: ../dnd2share/data/messages:155
+msgid "Preferred site for files hosting :"
+msgstr ""
+
+#: ../dnd2share/data/messages:159
+msgid "dl.free.fr"
+msgstr ""
+
+#: ../dnd2share/data/messages:161
+msgid "DropBox"
+msgstr ""
+
+#: ../dnd2share/data/messages:163
+msgid "UbuntuOne"
+msgstr ""
+
+#: ../dnd2share/data/messages:165 ../dnd2share/data/messages:169
+#: ../dnd2share/data/messages:173 ../dnd2share/data/messages:177
+msgid ""
+"The script takes the file path as a parameter, and write the resulting URL "
+"on the standard output."
+msgstr ""
+
+#: ../dnd2share/data/messages:167
+msgid "Custom script for text upload :"
+msgstr ""
+
+#: ../dnd2share/data/messages:171
+msgid "Custom script for image upload :"
+msgstr ""
+
+#: ../dnd2share/data/messages:175
+msgid "Custom script for video upload :"
+msgstr ""
+
+#: ../dnd2share/data/messages:179
+msgid "Custom script for file upload :"
+msgstr ""
+
+#: ../dnd2share/data/messages:181
+msgid "Leave empty to upload files into '~/Dropbox/Public'."
+msgstr ""
+
+#: ../dnd2share/data/messages:183
+msgid "Path of the DropBox folder :"
+msgstr ""
+
+#: ../dnd2share/data/messages:185
+msgid "Otherwise, your user name will be used when possible."
+msgstr ""
+
+#: ../dnd2share/data/messages:187
+msgid "Post text as Anonymous ?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:1
+msgid "Inclinated Plane"
+msgstr ""
+
+#: ../dock-rendering/data/messages:3
+msgid "The lower the value, the lower the point of view on the plane."
+msgstr ""
+
+#: ../dock-rendering/data/messages:5
+msgid "Height of the vanishing point:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:9
+msgid "The lower the value, the flatter the curve will appear."
+msgstr ""
+
+#: ../dock-rendering/data/messages:11
+msgid "Curvature of the curve in percent:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:15
+msgid "Amplitude of the curve:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:19
+msgid "Physically separate groups of icons"
+msgstr ""
+
+#: ../dock-rendering/data/messages:21
+msgid "At 1, the icons will have the same size as in other views."
+msgstr ""
+
+#: ../dock-rendering/data/messages:23
+msgid "Ratio to apply on icons' size :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:25
+msgid "smaller icons"
+msgstr ""
+
+#: ../dock-rendering/data/messages:27
+msgid "normal icons"
+msgstr ""
+
+#: ../dock-rendering/data/messages:31
+msgid "Grid"
+msgstr ""
+
+#: ../dock-rendering/data/messages:33
+msgid "Space between columns:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:35 ../dock-rendering/data/messages:113
+msgid "Space between rows:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:37
+msgid "Only for sub-docks."
+msgstr ""
+
+#: ../dock-rendering/data/messages:39
+msgid "Maximum size of the dock:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:41
+msgid "Small"
+msgstr ""
+
+#: ../dock-rendering/data/messages:43
+msgid "Full screen"
+msgstr ""
+
+#: ../dock-rendering/data/messages:45
+msgid "Zoom when mouse hovers an icon:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:51
+msgid "Sinusoidal wave radius:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:53
+msgid "Use a linear wave rather than a sinusoidal wave?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:55
+msgid "Display text for all icons?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:57 ../slider/data/messages:171
+msgid "Frame"
+msgstr ""
+
+#: ../dock-rendering/data/messages:59
+msgid "Draw a background?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:61
+msgid "First gradient colour :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:63
+msgid "Second gradient colour :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:65
+msgid "Top to bottom gradient?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:67
+msgid "Left to right gradient?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:71
+msgid "Border line width :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:73
+msgid "Border line colour :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:75
+msgid "Arrow width :"
+msgstr ""
+
+#: ../dock-rendering/data/messages:77
+msgid "Arrow height:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:79
+msgid "Scroll bar"
+msgstr ""
+
+#: ../dock-rendering/data/messages:81
+msgid "Color of the scroll bar's outline:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:83
+msgid "Color of the scroll bar's inside:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:85
+msgid "Color of the scroll grip:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:89
+msgid "The higher this value, the sooner the parabola will be curved."
+msgstr ""
+
+#: ../dock-rendering/data/messages:91
+msgid "Curvature:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:93
+msgid "The parabola will be restricted to a rectangle of this proportion."
+msgstr ""
+
+#: ../dock-rendering/data/messages:95
+msgid "Height/width ratio:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:97
+msgid "0 represents a flat wave, 1 represents maximum wave curvature."
+msgstr ""
+
+#: ../dock-rendering/data/messages:99 ../dock-rendering/data/messages:119
+msgid "Magnitude of the wave:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:101
+msgid "Curve towards the outside?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:105
+msgid "Space between icons and their captions:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:107
+msgid ""
+"This may recquire more CPU during the unfolding animation, except if you "
+"launch Cairo-Dock with OpenGL."
+msgstr ""
+
+#: ../dock-rendering/data/messages:109
+msgid "Draw captions while unfolding?"
+msgstr ""
+
+#: ../dock-rendering/data/messages:115
+msgid "Space between icons:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:117
+msgid ""
+"0 represents a flat wave, 1 means the wave is identical to other views."
+msgstr ""
+
+#: ../dock-rendering/data/messages:121
+msgid "Number of icons on the first row:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:123
+msgid ""
+"in degrees. The lower the value, the narrower the cone. 180° represents a "
+"wide open cone."
+msgstr ""
+
+#: ../dock-rendering/data/messages:125
+msgid "Cone width:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:127
+msgid "Set transparency to 0 to not use it. This is quite slow with cairo."
+msgstr ""
+
+#: ../dock-rendering/data/messages:129
+msgid "Bow colour:"
+msgstr ""
+
+#: ../dock-rendering/data/messages:131
+msgid "Line colour:"
+msgstr ""
+
+#: ../drop-indicator/data/messages:1
+msgid "Drag and drop indicator"
+msgstr ""
+
+#: ../drop-indicator/data/messages:3
+msgid "Images"
+msgstr ""
+
+#: ../drop-indicator/data/messages:5
+msgid ""
+"Typically an arrow, this will be displayed when you try to drop a new "
+"launcher into the dock. Leave this empty to use the default."
+msgstr ""
+
+#: ../drop-indicator/data/messages:7
+msgid "Image for the drag & drop animation:"
+msgstr ""
+
+#: ../drop-indicator/data/messages:9
+msgid ""
+"An emblem that will be displayed when you try to drop something on an icon. "
+"Leave empty to use the default one."
+msgstr ""
+
+#: ../drop-indicator/data/messages:11
+msgid "Image when hovering an icon :"
+msgstr ""
+
+#: ../drop-indicator/data/messages:13
+msgid "Animation"
+msgstr ""
+
+#: ../drop-indicator/data/messages:15
+msgid "Speed:"
+msgstr ""
+
+#: ../drop-indicator/data/messages:17
+msgid "Number of round per second."
+msgstr ""
+
+#: ../drop-indicator/data/messages:19 ../illusion/data/messages:79
+#: ../show-mouse/data/messages:7
+msgid "Rotation speed :"
+msgstr ""
+
+#: ../dustbin/data/messages:89
+msgid "Theme"
+msgstr ""
+
+#: ../dustbin/data/messages:93
+msgid "Name of the image to overwrite the theme's empty image :"
+msgstr ""
+
+#: ../dustbin/data/messages:95
+msgid "Name of the image to overwrite the theme's full image :"
+msgstr ""
+
+#: ../dustbin/data/messages:97
+msgid "Config"
+msgstr ""
+
+#: ../dustbin/data/messages:99
+msgid "Display the following quick info :"
+msgstr ""
+
+#: ../dustbin/data/messages:103
+msgid "Number of files"
+msgstr ""
+
+#: ../dustbin/data/messages:105
+msgid "Total number of files"
+msgstr ""
+
+#: ../dustbin/data/messages:107
+msgid "Total weight"
+msgstr ""
+
+#: ../dustbin/data/messages:109
+msgid "Ask confirmation before emptying Dustbin?"
+msgstr ""
+
+#: ../icon-effect/data/messages:51
+msgid "Draw in background?"
+msgstr ""
+
+#: ../icon-effect/data/messages:53
+msgid "Rotate effects with dock?"
+msgstr ""
+
+#: ../icon-effect/data/messages:57
+msgid "In ms. Set 0 to not use this effect."
+msgstr ""
+
+#: ../icon-effect/data/messages:63 ../icon-effect/data/messages:91
+#: ../icon-effect/data/messages:113 ../icon-effect/data/messages:135
+#: ../icon-effect/data/messages:157 ../icon-effect/data/messages:177
+#: ../illusion/data/messages:35 ../terminal/data/messages:93
+msgid "Colours"
+msgstr ""
+
+#: ../icon-effect/data/messages:71
+msgid ""
+"This will slightly alter your colours, so you may have to modify them."
+msgstr ""
+
+#: ../icon-effect/data/messages:73 ../icon-effect/data/messages:185
+msgid "Add luminance?"
+msgstr ""
+
+#: ../icon-effect/data/messages:75 ../icon-effect/data/messages:99
+#: ../icon-effect/data/messages:119 ../icon-effect/data/messages:141
+#: ../icon-effect/data/messages:163 ../icon-effect/data/messages:187
+#: ../illusion/data/messages:43
+msgid "Particles"
+msgstr ""
+
+#: ../icon-effect/data/messages:77 ../icon-effect/data/messages:101
+#: ../icon-effect/data/messages:121 ../icon-effect/data/messages:143
+#: ../icon-effect/data/messages:165 ../illusion/data/messages:45
+msgid "Number of particles:"
+msgstr ""
+
+#: ../icon-effect/data/messages:79 ../icon-effect/data/messages:103
+#: ../icon-effect/data/messages:123 ../icon-effect/data/messages:145
+#: ../icon-effect/data/messages:167 ../icon-effect/data/messages:197
+#: ../illusion/data/messages:47 ../show-mouse/data/messages:25
+msgid "Particle size:"
+msgstr ""
+
+#: ../icon-effect/data/messages:81 ../icon-effect/data/messages:125
+#: ../icon-effect/data/messages:147 ../illusion/data/messages:49
+msgid "Particle speed:"
+msgstr ""
+
+#: ../icon-effect/data/messages:183
+msgid "It particularily fits a dark wallpaper or a dark theme."
+msgstr ""
+
+#: ../icon-effect/data/messages:189 ../show-mouse/data/messages:3
+msgid "Number of sources:"
+msgstr ""
+
+#: ../icon-effect/data/messages:191 ../show-mouse/data/messages:17
+msgid "Number of particles per source:"
+msgstr ""
+
+#: ../icon-effect/data/messages:193
+msgid "In percentage of the icon's size."
+msgstr ""
+
+#: ../icon-effect/data/messages:195
+msgid "Radius of the explosion:"
+msgstr ""
+
+#: ../icon-effect/data/messages:199
+msgid "Show the launching?"
+msgstr ""
+
+#: ../icon-effect/data/messages:201
+msgid "Particle friction:"
+msgstr ""
+
+#: ../illusion/data/messages:3
+msgid "Animation on disappearance:"
+msgstr ""
+
+#: ../illusion/data/messages:5 ../illusion/data/messages:19
+#: ../illusion/data/messages:31
+msgid "Evaporate"
+msgstr ""
+
+#: ../illusion/data/messages:7 ../illusion/data/messages:21
+#: ../illusion/data/messages:53
+msgid "Fade out"
+msgstr ""
+
+#: ../illusion/data/messages:9 ../illusion/data/messages:23
+#: ../illusion/data/messages:57
+msgid "Explode"
+msgstr ""
+
+#: ../illusion/data/messages:11 ../illusion/data/messages:25
+#: ../illusion/data/messages:67
+msgid "Break"
+msgstr ""
+
+#: ../illusion/data/messages:13 ../illusion/data/messages:27
+#: ../illusion/data/messages:73
+msgid "Black Hole"
+msgstr ""
+
+#: ../illusion/data/messages:15 ../illusion/data/messages:29
+msgid "Random"
+msgstr ""
+
+#: ../illusion/data/messages:17
+msgid "Animation on appearance:"
+msgstr ""
+
+#: ../illusion/data/messages:51
+msgid "Evaporate upwards?"
+msgstr ""
+
+#: ../illusion/data/messages:61 ../illusion/data/messages:71
+msgid "Number of pieces:"
+msgstr ""
+
+#: ../illusion/data/messages:63
+msgid "Explosion radius:"
+msgstr ""
+
+#: ../illusion/data/messages:65
+msgid "Break the icon into cubes?"
+msgstr ""
+
+#: ../illusion/data/messages:77
+msgid "in round per second."
+msgstr ""
+
+#: ../illusion/data/messages:81
+msgid "The greater, the faster the icon will collapse to the center."
+msgstr ""
+
+#: ../illusion/data/messages:83
+msgid "Attraction of the Black Hole:"
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:101
+msgid "caps lock, num lock, etc."
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:103
+msgid "Display keyboard locks as quick-info?"
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:105
+msgid ""
+"in ms. Set to 0 if you don't want an animation when the keyboard layout "
+"changes."
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:107
+msgid "Duration of the transition animation:"
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:113
+msgid "Text colour"
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:117
+msgid ""
+"the smaller is the text in the icon. 1 means the text fills all the icon."
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:119
+msgid "Relative size of the text :"
+msgstr ""
+
+#: ../keyboard-indicator/data/messages:121
+msgid "smaller"
+msgstr ""
+
+#: ../logout/data/messages:93
+msgid "Action"
+msgstr ""
+
+#: ../logout/data/messages:103
+msgid "Shortkey to lock the screen"
+msgstr ""
+
+#: ../logout/data/messages:105
+msgid "Shortkey to show the menu"
+msgstr ""
+
+#: ../logout/data/messages:107
+msgid "Demand confirmation before closing"
+msgstr ""
+
+#: ../logout/data/messages:109
+msgid "Commands"
+msgstr ""
+
+#: ../logout/data/messages:113
+msgid "User-defined command to execute for logout:"
+msgstr ""
+
+#: ../logout/data/messages:115
+msgid ""
+"This will be available when middle-clicking. Leave empty to execute the "
+"default command, which depends on your distribution. In some cases the "
+"command to shutdown is the same as the one to log out."
+msgstr ""
+
+#: ../logout/data/messages:117
+msgid "User-defined command to execute for shutdown:"
+msgstr ""
+
+#: ../logout/data/messages:119 ../musicPlayer/data/messages:185
+#: ../tomboy/data/messages:9
+msgid "Customisation"
+msgstr ""
+
+#: ../logout/data/messages:123
+msgid "Icon image name to use when the system has to be rebooted:"
+msgstr ""
+
+#: ../logout/data/messages:125
+msgid ""
+"Display this image as an emblem or replace applet's icon with this image?"
+msgstr ""
+
+#: ../logout/data/messages:127
+msgid "Emblem"
+msgstr ""
+
+#: ../mail/data/messages:99
+msgid ""
+"If you have any problem with the applet, uncheck this option during the "
+"maintenance mode, then after the dock has relaunched, remove/modify the mail "
+"accounts you want."
+msgstr ""
+
+#: ../mail/data/messages:101
+msgid "Check mail account on startup?"
+msgstr ""
+
+#: ../mail/data/messages:109
+msgid "Name of the file for the \"no mail\" image :"
+msgstr ""
+
+#: ../mail/data/messages:113
+msgid "Name of the file for the \"has mail\" image :"
+msgstr ""
+
+#: ../mail/data/messages:115
+msgid ""
+"If checked, the number of mails will be shown even if there is no mail."
+msgstr ""
+
+#: ../mail/data/messages:117
+msgid "Show '0' if there is no mail?"
+msgstr ""
+
+#: ../mail/data/messages:119 ../shortcuts/data/messages:105
+#: ../stack/data/messages:97 ../switcher/data/messages:155
+#: ../tomboy/data/messages:119 ../weather/data/messages:133
+msgid "Leave empty to use default sub-dock view."
+msgstr ""
+
+#: ../mail/data/messages:121 ../shortcuts/data/messages:107
+#: ../stack/data/messages:99 ../switcher/data/messages:157
+#: ../tomboy/data/messages:121 ../weather/data/messages:135
+msgid "Sub-dock view name:"
+msgstr ""
+
+#: ../mail/data/messages:123
+msgid "Action on new mail"
+msgstr ""
+
+#: ../mail/data/messages:125
+msgid "Play sound when a new e-mail is received?"
+msgstr ""
+
+#: ../mail/data/messages:129
+msgid "Name of the file for the \"new mail\" sound :"
+msgstr ""
+
+#: ../mail/data/messages:131
+msgid "Show new messages' content?"
+msgstr ""
+
+#: ../mail/data/messages:133
+msgid "Maximum number of mails that will be previewed."
+msgstr ""
+
+#: ../mail/data/messages:135
+msgid "Maximum of new messages shown?"
+msgstr ""
+
+#: ../mail/data/messages:139 ../tomboy/data/messages:117
+msgid "Duration of the dialog:"
+msgstr ""
+
+#: ../mail/data/messages:141
+msgid "Animation when new message arrives:"
+msgstr ""
+
+#: ../mail/data/messages:145
+msgid "Mail application"
+msgstr ""
+
+#: ../mail/data/messages:147
+msgid "for instance \"thunderbird\" or \"firefox mail.google.com\""
+msgstr ""
+
+#: ../mail/data/messages:149
+msgid "Preferred mail application to launch on left-click :"
+msgstr ""
+
+#: ../mail/data/messages:151
+msgid "Add a mail account (you've to launch the applet)"
+msgstr ""
+
+#: ../mail/data/messages:153
+msgid "The new account will be created with the specified type and name."
+msgstr ""
+
+#: ../mail/data/messages:155
+msgid "Add an account with specified type and name:"
+msgstr ""
+
+#: ../motion-blur/data/messages:3
+msgid "Also blur on mouse movement?"
+msgstr ""
+
+#: ../motion-blur/data/messages:5
+msgid "Blur amount:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:7
+msgid ""
+"Leave it empty to display the name of the player currently controlled."
+msgstr ""
+
+#: ../musicPlayer/data/messages:101
+msgid "Audio Player"
+msgstr ""
+
+#: ../musicPlayer/data/messages:103
+msgid "Player to control:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:105
+msgid "Amarok 2"
+msgstr ""
+
+#: ../musicPlayer/data/messages:107
+msgid "Audacious"
+msgstr ""
+
+#: ../musicPlayer/data/messages:109
+msgid "Banshee"
+msgstr ""
+
+#: ../musicPlayer/data/messages:111
+msgid "Clementine"
+msgstr ""
+
+#: ../musicPlayer/data/messages:113
+msgid "Exaile"
+msgstr ""
+
+#: ../musicPlayer/data/messages:115
+msgid "Exaile 0.3"
+msgstr ""
+
+#: ../musicPlayer/data/messages:117
+msgid "GMusicBrowser"
+msgstr ""
+
+#: ../musicPlayer/data/messages:119
+msgid "Guayadeque"
+msgstr ""
+
+#: ../musicPlayer/data/messages:121
+msgid "Listen"
+msgstr ""
+
+#: ../musicPlayer/data/messages:123
+msgid "Qmmp"
+msgstr ""
+
+#: ../musicPlayer/data/messages:125
+msgid "QuodLibet"
+msgstr ""
+
+#: ../musicPlayer/data/messages:127
+msgid "Rhythmbox"
+msgstr ""
+
+#: ../musicPlayer/data/messages:129
+msgid "Songbird"
+msgstr ""
+
+#: ../musicPlayer/data/messages:131
+msgid "XMMS 2"
+msgstr ""
+
+#: ../musicPlayer/data/messages:133
+msgid ""
+"This will prevent the player icon appearing in the taskbar. The applet's "
+"icon will then behave as a launcher, an application and an applet."
+msgstr ""
+
+#: ../musicPlayer/data/messages:135
+msgid "Steal the player's icon from the taskbar?"
+msgstr ""
+
+#: ../musicPlayer/data/messages:137
+msgid "Actions on click and middle-click :"
+msgstr ""
+
+#: ../musicPlayer/data/messages:139
+msgid "Play/Pause on click, Next on middle-click"
+msgstr ""
+
+#: ../musicPlayer/data/messages:141
+msgid "Show/Hide player on click, Play/Pause on middle-click"
+msgstr ""
+
+#: ../musicPlayer/data/messages:143
+msgid "Actions on scroll up/down:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:145
+msgid "Next/previous song"
+msgstr ""
+
+#: ../musicPlayer/data/messages:147
+msgid "Control the volume"
+msgstr ""
+
+#: ../musicPlayer/data/messages:149
+msgid "Action on music change"
+msgstr ""
+
+#: ../musicPlayer/data/messages:151
+msgid "Show tooltips?"
+msgstr ""
+
+#: ../musicPlayer/data/messages:155
+msgid "Time length of tooltips:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:157
+msgid "Animation when music changes:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:161 ../powermanager/data/messages:163
+#: ../wifi/data/messages:187
+msgid "Information to display on the icon :"
+msgstr ""
+
+#: ../musicPlayer/data/messages:163 ../powermanager/data/messages:149
+#: ../powermanager/data/messages:165
+msgid "Nothing"
+msgstr ""
+
+#: ../musicPlayer/data/messages:165
+msgid "Time Elapsed"
+msgstr ""
+
+#: ../musicPlayer/data/messages:167
+msgid "Time Remaining"
+msgstr ""
+
+#: ../musicPlayer/data/messages:169
+msgid "Track number"
+msgstr ""
+
+#: ../musicPlayer/data/messages:171
+msgid "Display album's cover?"
+msgstr ""
+
+#: ../musicPlayer/data/messages:173
+msgid "You need to be connected to the Internet."
+msgstr ""
+
+#: ../musicPlayer/data/messages:175
+msgid "Allow Cairo-Dock to download missing covers?"
+msgstr ""
+
+#: ../musicPlayer/data/messages:177 ../musicPlayer/data/messages:181
+msgid "requires OpenGL."
+msgstr ""
+
+#: ../musicPlayer/data/messages:179
+msgid "Use 3D themes?"
+msgstr ""
+
+#: ../musicPlayer/data/messages:183
+msgid "List of available 3D themes for covers :"
+msgstr ""
+
+#: ../musicPlayer/data/messages:189 ../tomboy/data/messages:13
+msgid "'Default' icon image name:"
+msgstr ""
+
+#: ../musicPlayer/data/messages:193
+msgid "Name of the image for the 'play' icon :"
+msgstr ""
+
+#: ../musicPlayer/data/messages:197
+msgid "Name of the image for the 'stop' icon :"
+msgstr ""
+
+#: ../musicPlayer/data/messages:201
+msgid "Name of the image for the 'pause' icon :"
+msgstr ""
+
+#: ../netspeed/data/messages:145
+msgid "By default this will be 'eth0'."
+msgstr ""
+
+#: ../netspeed/data/messages:147
+msgid "interface:"
+msgstr ""
+
+#: ../netspeed/data/messages:155
+msgid "Fluidity of the transition between 2 values :"
+msgstr ""
+
+#: ../netspeed/data/messages:157
+msgid "Display rate values :"
+msgstr ""
+
+#: ../powermanager/data/messages:7
+msgid "Leave empty to display the current status information."
+msgstr ""
+
+#: ../powermanager/data/messages:141
+msgid "'On-battery' icon filename:"
+msgstr ""
+
+#: ../powermanager/data/messages:145
+msgid "Icon's filename when on charge :"
+msgstr ""
+
+#: ../powermanager/data/messages:147
+msgid "Effect to apply on the icon according to the charge :"
+msgstr ""
+
+#: ../powermanager/data/messages:155
+msgid "Draw bar"
+msgstr ""
+
+#: ../powermanager/data/messages:167
+msgid "charge"
+msgstr ""
+
+#: ../powermanager/data/messages:169
+msgid "Timelength"
+msgstr ""
+
+#: ../powermanager/data/messages:173
+msgid "Emblem icon's filename when on charge:"
+msgstr ""
+
+#: ../powermanager/data/messages:175
+msgid "Hide the icon when not on battery?"
+msgstr ""
+
+#: ../powermanager/data/messages:177
+msgid "Notification"
+msgstr ""
+
+#: ../powermanager/data/messages:179
+msgid "Notification when battery charged ?"
+msgstr ""
+
+#: ../powermanager/data/messages:181 ../powermanager/data/messages:191
+#: ../powermanager/data/messages:199
+msgid "Leave it empty for no sound"
+msgstr ""
+
+#: ../powermanager/data/messages:183 ../powermanager/data/messages:193
+#: ../powermanager/data/messages:201
+msgid "Play a sound:"
+msgstr ""
+
+#: ../powermanager/data/messages:185
+msgid "Notification when low battery ?"
+msgstr ""
+
+#: ../powermanager/data/messages:187
+msgid "in percent."
+msgstr ""
+
+#: ../powermanager/data/messages:189
+msgid "Battery level:"
+msgstr ""
+
+#: ../powermanager/data/messages:195
+msgid "When battery level is under 4%"
+msgstr ""
+
+#: ../powermanager/data/messages:197
+msgid "Notification when battery charge is critical ?"
+msgstr ""
+
+#: ../powermanager/data/messages:203
+msgid "Notification type:"
+msgstr ""
+
+#: ../quick-browser/data/messages:7
+msgid "Leave empty to use the folder's name."
+msgstr ""
+
+#: ../quick-browser/data/messages:95 ../slider/data/messages:99
+msgid "Folder"
+msgstr ""
+
+#: ../quick-browser/data/messages:97
+msgid "Folder to browse :"
+msgstr ""
+
+#: ../quick-browser/data/messages:99
+msgid "List folders first?"
+msgstr ""
+
+#: ../quick-browser/data/messages:101
+msgid "Ignore case?"
+msgstr ""
+
+#: ../quick-browser/data/messages:105
+msgid "Menu"
+msgstr ""
+
+#: ../quick-browser/data/messages:107
+msgid "It can be CPU intense to load a lot of icons."
+msgstr ""
+
+#: ../quick-browser/data/messages:111
+msgid "Icon size :"
+msgstr ""
+
+#: ../quick-browser/data/messages:113
+msgid "small"
+msgstr ""
+
+#: ../quick-browser/data/messages:115
+msgid "medium"
+msgstr ""
+
+#: ../quick-browser/data/messages:117
+msgid "large"
+msgstr ""
+
+#: ../quick-browser/data/messages:121
+msgid ""
+"Number of items loaded at once. Setting a high value speeds up loading a "
+"little but will hang the application for longer."
+msgstr ""
+
+#: ../quick-browser/data/messages:123
+msgid "Build menu gradually:"
+msgstr ""
+
+#: ../shortcuts/data/messages:95
+msgid "List drives and volumes?"
+msgstr ""
+
+#: ../shortcuts/data/messages:97
+msgid "List networks?"
+msgstr ""
+
+#: ../shortcuts/data/messages:99
+msgid "GTK bookmarks, that are used by Nautilus for exemple."
+msgstr ""
+
+#: ../shortcuts/data/messages:101
+msgid "List bookmarks?"
+msgstr ""
+
+#: ../shortcuts/data/messages:109 ../stack/data/messages:101
+msgid "Type of view for the desklet mode :"
+msgstr ""
+
+#: ../shortcuts/data/messages:113 ../stack/data/messages:105
+msgid "Tree"
+msgstr ""
+
+#: ../shortcuts/data/messages:115
+msgid "Disk usage"
+msgstr ""
+
+#: ../shortcuts/data/messages:117
+msgid "Show disk usage :"
+msgstr ""
+
+#: ../shortcuts/data/messages:121
+msgid "Free space"
+msgstr ""
+
+#: ../shortcuts/data/messages:123
+msgid "Used space"
+msgstr ""
+
+#: ../shortcuts/data/messages:125
+msgid "Free space (in percent)"
+msgstr ""
+
+#: ../shortcuts/data/messages:127
+msgid "Used space (in percent)"
+msgstr ""
+
+#: ../shortcuts/data/messages:131
+msgid "Delay between disk usage refresh :"
+msgstr ""
+
+#: ../shortcuts/data/messages:133
+msgid "Display disk usage with a bar?"
+msgstr ""
+
+#: ../show-mouse/data/messages:5
+msgid "In rotations per second."
+msgstr ""
+
+#: ../show-mouse/data/messages:9
+msgid "Show mouse on:"
+msgstr ""
+
+#: ../show-mouse/data/messages:11
+msgid "Dock"
+msgstr ""
+
+#: ../show-mouse/data/messages:21
+msgid "Particle life time:"
+msgstr ""
+
+#: ../show-mouse/data/messages:33
+msgid ""
+"The higher the value, the more particles will scatter from their source."
+msgstr ""
+
+#: ../show-mouse/data/messages:35
+msgid "Scattering:"
+msgstr ""
+
+#: ../showDesktop/data/messages:13
+msgid "Leave empty to use the same image."
+msgstr ""
+
+#: ../showDesktop/data/messages:15
+msgid "Image when the applet is active :"
+msgstr ""
+
+#: ../showDesktop/data/messages:99 ../showDesktop/data/messages:113
+msgid ""
+"You need to activate the Dbus plug-in in Compiz for the last 2 actions. "
+"Showing desktop and desklets can fail on some Window Manager (like Metacity)."
+msgstr ""
+
+#: ../showDesktop/data/messages:101 ../slider/data/messages:117
+msgid "Action on left-click:"
+msgstr ""
+
+#: ../showDesktop/data/messages:105 ../showDesktop/data/messages:119
+msgid "Show the desklets"
+msgstr ""
+
+#: ../showDesktop/data/messages:107 ../showDesktop/data/messages:121
+msgid "Show desktop and desklets"
+msgstr ""
+
+#: ../showDesktop/data/messages:127
+msgid "Shortkey for the middle-click action:"
+msgstr ""
+
+#: ../slider/data/messages:101
+msgid "Folder for the images:"
+msgstr ""
+
+#: ../slider/data/messages:103
+msgid "Scan sub direcotries?"
+msgstr ""
+
+#: ../slider/data/messages:105
+msgid "Randomly browse files?"
+msgstr ""
+
+#: ../slider/data/messages:107
+msgid "Display image name as quickinfo?"
+msgstr ""
+
+#: ../slider/data/messages:109
+msgid ""
+"This will prevent the dock from freezing during image loading, but works "
+"only with OpenGL."
+msgstr ""
+
+#: ../slider/data/messages:111
+msgid "Use another thread to load images?"
+msgstr ""
+
+#: ../slider/data/messages:113
+msgid "Read all images properties on startup?"
+msgstr ""
+
+#: ../slider/data/messages:119 ../slider/data/messages:125
+msgid "play/pause"
+msgstr ""
+
+#: ../slider/data/messages:121 ../slider/data/messages:127
+msgid "open image"
+msgstr ""
+
+#: ../slider/data/messages:129
+msgid "open parent folder"
+msgstr ""
+
+#: ../slider/data/messages:133
+msgid "Sliding delay:"
+msgstr ""
+
+#: ../slider/data/messages:135
+msgid "Effect while changing image:"
+msgstr ""
+
+#: ../slider/data/messages:139
+msgid "fade"
+msgstr ""
+
+#: ../slider/data/messages:141
+msgid "blank fade"
+msgstr ""
+
+#: ../slider/data/messages:143
+msgid "fade in/out"
+msgstr ""
+
+#: ../slider/data/messages:145
+msgid "side kick"
+msgstr ""
+
+#: ../slider/data/messages:147
+msgid "slideshow"
+msgstr ""
+
+#: ../slider/data/messages:149
+msgid "grow up"
+msgstr ""
+
+#: ../slider/data/messages:151
+msgid "shrink"
+msgstr ""
+
+#: ../slider/data/messages:153
+msgid "cube"
+msgstr ""
+
+#: ../slider/data/messages:155
+msgid "random"
+msgstr ""
+
+#: ../slider/data/messages:157
+msgid "Number of steps for transitions:"
+msgstr ""
+
+#: ../slider/data/messages:159
+msgid "fast"
+msgstr ""
+
+#: ../slider/data/messages:161
+msgid "slow"
+msgstr ""
+
+#: ../slider/data/messages:165
+msgid "Add a background to the image?"
+msgstr ""
+
+#: ../slider/data/messages:173
+msgid ""
+"Set the transparency channel to 0 if you just don't want to have a "
+"background."
+msgstr ""
+
+#: ../slider/data/messages:175
+msgid "Choose a background colour :"
+msgstr ""
+
+#: ../slider/data/messages:177
+msgid "Frame width:"
+msgstr ""
+
+#: ../slider/data/messages:179
+msgid "Gives better image rendering."
+msgstr ""
+
+#: ../slider/data/messages:181
+msgid "Keep width/height ratio?"
+msgstr ""
+
+#: ../slider/data/messages:183
+msgid "If the image is too small, it will be stretched."
+msgstr ""
+
+#: ../slider/data/messages:185
+msgid "Force the image to fill the icon/desklet?"
+msgstr ""
+
+#: ../stack/data/messages:7
+msgid "Leave empty to use a default name"
+msgstr ""
+
+#: ../stack/data/messages:107
+msgid "They are items created by dropping a text into the Stack."
+msgstr ""
+
+#: ../stack/data/messages:109
+msgid "Image for 'text' items:"
+msgstr ""
+
+#: ../stack/data/messages:111
+msgid "These are items created by dropping a URL into the Stack."
+msgstr ""
+
+#: ../stack/data/messages:113
+msgid "Image for 'URL' items:"
+msgstr ""
+
+#: ../stack/data/messages:115
+msgid "Options"
+msgstr ""
+
+#: ../stack/data/messages:117
+msgid "Separate the items by type (file/web page/text)"
+msgstr ""
+
+#: ../stack/data/messages:119
+msgid ""
+"These options allow you to prevent some files from displaying in stacks "
+"based on their type (video, image, etc.)"
+msgstr ""
+
+#: ../stack/data/messages:121
+msgid "Filter files on MIME type?"
+msgstr ""
+
+#: ../stack/data/messages:123
+msgid "E.g. image, text, video, audio, application..."
+msgstr ""
+
+#: ../stack/data/messages:125
+msgid "Here you can specify a list of MIME types to ignore:"
+msgstr ""
+
+#: ../stack/data/messages:127
+msgid "Sort items by:"
+msgstr ""
+
+#: ../stack/data/messages:133
+msgid "Type"
+msgstr ""
+
+#: ../stack/data/messages:135
+msgid "Manual order"
+msgstr ""
+
+#: ../switcher/data/messages:89
+msgid ""
+"All desktops will be drawn on the main icon. Otherwise a sub-dock will "
+"contain all desktops."
+msgstr ""
+
+#: ../switcher/data/messages:91
+msgid "Use the compact mode?"
+msgstr ""
+
+#: ../switcher/data/messages:93
+msgid "Desktops layout"
+msgstr ""
+
+#: ../switcher/data/messages:97
+msgid "On a single line"
+msgstr ""
+
+#: ../switcher/data/messages:99
+msgid "Map wallpaper to icons?"
+msgstr ""
+
+#: ../switcher/data/messages:101
+msgid "Preserve the ratio of the screen ?"
+msgstr ""
+
+#: ../switcher/data/messages:103
+msgid "Show desktop number on icons?"
+msgstr ""
+
+#: ../switcher/data/messages:105
+msgid "Draw windows on icons?"
+msgstr ""
+
+#: ../switcher/data/messages:107
+msgid "Draw hidden windows?"
+msgstr ""
+
+#: ../switcher/data/messages:111
+msgid "Show windows' list"
+msgstr ""
+
+#: ../switcher/data/messages:119
+msgid "Workspace names :"
+msgstr ""
+
+#: ../switcher/data/messages:121
+msgid "Display options"
+msgstr ""
+
+#: ../switcher/data/messages:123
+msgid "Size of the inside lines :"
+msgstr ""
+
+#: ../switcher/data/messages:125 ../switcher/data/messages:131
+#: ../switcher/data/messages:135 ../switcher/data/messages:139
+msgid "r, g, b, a"
+msgstr ""
+
+#: ../switcher/data/messages:127
+msgid "Internal line colour:"
+msgstr ""
+
+#: ../switcher/data/messages:129
+msgid "External line size:"
+msgstr ""
+
+#: ../switcher/data/messages:133
+msgid "External line colour:"
+msgstr ""
+
+#: ../switcher/data/messages:137
+msgid "Window line colour:"
+msgstr ""
+
+#: ../switcher/data/messages:141
+msgid "Current desktop colour:"
+msgstr ""
+
+#: ../switcher/data/messages:143
+msgid "How to draw the current desktop:"
+msgstr ""
+
+#: ../switcher/data/messages:145
+msgid "draw a frame"
+msgstr ""
+
+#: ../switcher/data/messages:147
+msgid "fill"
+msgstr ""
+
+#: ../switcher/data/messages:149
+msgid "fill others"
+msgstr ""
+
+#: ../switcher/data/messages:153
+msgid "Icon to use in expanded mode if wallpaper is not mapped:"
+msgstr ""
+
+#: ../switcher/data/messages:159
+msgid "In expanded mode, render the desklet in 3D?"
+msgstr ""
+
+#: ../systray/data/messages:85
+msgid "Shortkey to toggle the systray in dock mode:"
+msgstr ""
+
+#: ../systray/data/messages:87
+msgid "Icons packing :"
+msgstr ""
+
+#: ../systray/data/messages:89
+msgid "horizontal"
+msgstr ""
+
+#: ../systray/data/messages:91
+msgid "vertical"
+msgstr ""
+
+#: ../template/data/messages:93
+msgid "This is a tooltip for this parameter."
+msgstr ""
+
+#: ../template/data/messages:95
+msgid "This is a boolean parameter. Y/N ?"
+msgstr ""
+
+#: ../template/data/messages:97
+msgid "This integer can go from 0 to 10 :"
+msgstr ""
+
+#: ../template/data/messages:99
+msgid "Enter some text here :"
+msgstr ""
+
+#: ../terminal/data/messages:95
+msgid "needs to restart the applet."
+msgstr ""
+
+#: ../terminal/data/messages:97
+msgid "Terminal transparency:"
+msgstr ""
+
+#: ../terminal/data/messages:99
+msgid "transparent"
+msgstr ""
+
+#: ../terminal/data/messages:101
+msgid "opaque"
+msgstr ""
+
+#: ../terminal/data/messages:103
+msgid "Foreground colour:"
+msgstr ""
+
+#: ../terminal/data/messages:105
+msgid "Background colour:"
+msgstr ""
+
+#: ../terminal/data/messages:109
+msgid ""
+"When the terminal is in a dialog. When it is in a desklet, you can just "
+"resize the desklet as usual."
+msgstr ""
+
+#: ../terminal/data/messages:111
+msgid "Size of the terminal (line x columns):"
+msgstr ""
+
+#: ../terminal/data/messages:113
+msgid "Shortkey to show the terminal:"
+msgstr ""
+
+#: ../tomboy/data/messages:17
+msgid "'Close' icon image name:"
+msgstr ""
+
+#: ../tomboy/data/messages:107
+msgid "Image file for the notes:"
+msgstr ""
+
+#: ../tomboy/data/messages:109
+msgid "Draw note's content on their icon?"
+msgstr ""
+
+#: ../tomboy/data/messages:111
+msgid "Text colour of the content :"
+msgstr ""
+
+#: ../tomboy/data/messages:113
+msgid "Display note's content with a dialog?"
+msgstr ""
+
+#: ../tomboy/data/messages:125
+msgid "Choose the note-taking application to control :"
+msgstr ""
+
+#: ../tomboy/data/messages:127
+msgid "Gnote"
+msgstr ""
+
+#: ../tomboy/data/messages:129
+msgid "Tomboy"
+msgstr ""
+
+#: ../tomboy/data/messages:131
+msgid "Ask for confirmation before deleting a note?"
+msgstr ""
+
+#: ../tomboy/data/messages:133
+msgid "Otherwise you will be asked to name it."
+msgstr ""
+
+#: ../tomboy/data/messages:135
+msgid "Automatically name a new note?"
+msgstr ""
+
+#: ../tomboy/data/messages:137
+msgid ""
+"Write the date format you usually use in your notes. The syntax is the one "
+"of 'strftime' : %d for the day, %m for the month, %y for the year (2 "
+"digits), etc. Leave it blank to use the default one (%d/%m/%y)."
+msgstr ""
+
+#: ../tomboy/data/messages:139
+msgid "Date format to search for :"
+msgstr ""
+
+#: ../tomboy/data/messages:141
+msgid ""
+"Depending on your tomboy's version, the note deletion may not be "
+"automatically notified to us. Only check this box if you notice some error "
+"message like <<No marshaller for signature of signal 'NoteDeleted'>> in the "
+"terminal."
+msgstr ""
+
+#: ../tomboy/data/messages:143
+msgid "Emulate the 'NoteDeleted' signal?"
+msgstr ""
+
+#: ../weather/data/messages:7
+msgid "Leave empty to use the name of the city."
+msgstr ""
+
+#: ../weather/data/messages:103
+msgid "Enter the name of your location in the text entry and press Enter."
+msgstr ""
+
+#: ../weather/data/messages:105
+msgid "Code for your location:"
+msgstr ""
+
+#: ../weather/data/messages:107
+msgid "If so, degrees will be displayed in Celsius, otherwise in Fahrenheit."
+msgstr ""
+
+#: ../weather/data/messages:109
+msgid "Use International System Units?"
+msgstr ""
+
+#: ../weather/data/messages:111
+msgid "in seconds. Set 0 to have never-ending dialogs."
+msgstr ""
+
+#: ../weather/data/messages:113
+msgid "Dialog duration:"
+msgstr ""
+
+#: ../weather/data/messages:119 ../wifi/data/messages:185
+msgid "Info"
+msgstr ""
+
+#: ../weather/data/messages:121
+msgid "Display current conditions on the icon instead of the default one?"
+msgstr ""
+
+#: ../weather/data/messages:123
+msgid "Number of days to forecast:"
+msgstr ""
+
+#: ../weather/data/messages:125
+msgid "Display nights?"
+msgstr ""
+
+#: ../weather/data/messages:127
+msgid "Display temperature as quick info?"
+msgstr ""
+
+#: ../weather/data/messages:137
+msgid "Render desklet in 3D?"
+msgstr ""
+
+#: ../weblets/data/messages:93
+msgid "URI to load in weblet"
+msgstr ""
+
+#: ../weblets/data/messages:95
+msgid "Show scrollbars?"
+msgstr ""
+
+#: ../weblets/data/messages:97
+msgid "Horizontal scroll of the browser in pixels"
+msgstr ""
+
+#: ../weblets/data/messages:99
+msgid "Position of horizontal scrollbar"
+msgstr ""
+
+#: ../weblets/data/messages:101
+msgid "Vertical scroll of the browser in pixels"
+msgstr ""
+
+#: ../weblets/data/messages:103
+msgid "Position of vertical scrollbar in pixel"
+msgstr ""
+
+#: ../weblets/data/messages:105
+msgid ""
+"This lets you right-click on the desklet to pop up the Cairo-Dock menu."
+msgstr ""
+
+#: ../weblets/data/messages:107
+msgid "Right margin width, in pixels:"
+msgstr ""
+
+#: ../weblets/data/messages:109
+msgid "Transparent background?"
+msgstr ""
+
+#: ../weblets/data/messages:111
+msgid ""
+"Time before reloading the weblet URI, in seconds. Zero means never reload."
+msgstr ""
+
+#: ../weblets/data/messages:113
+msgid "Time between two page refreshes"
+msgstr ""
+
+#: ../weblets/data/messages:115
+msgid "Any valid URI should work."
+msgstr ""
+
+#: ../weblets/data/messages:117
+msgid "Predefined bookmarks to show in applet menu:"
+msgstr ""
+
+#: ../wifi/data/messages:149
+msgid "'No signal' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:153
+msgid "'Very low' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:157
+msgid "'Low' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:161
+msgid "'Average' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:165
+msgid "'Good' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:169
+msgid "'Excellent' icon filename:"
+msgstr ""
+
+#: ../wifi/data/messages:175
+msgid "Delay between signal checks :"
+msgstr ""
+
+#: ../wifi/data/messages:181
+msgid ""
+"Allow you to overwrite applet's default command line and launch your "
+"wireless configuration interface."
+msgstr ""
+
+#: ../wifi/data/messages:183
+msgid "Alternative command line to launch Wireless Configuration :"
+msgstr ""
+
+#: ../wifi/data/messages:191
+msgid "Signal Strength"
+msgstr ""
+
+#: ../wifi/data/messages:193
+msgid "Signal Strength in percent"
+msgstr ""
+
+#: ../wifi/data/messages:195
+msgid "Raw Signal Informations"
+msgstr ""
+
+#: ../wifi/data/messages:197
+msgid "Overwrite the default label with the connection point name?"
+msgstr ""
=== modified file 'po/it.po'
--- po/it.po 2012-04-16 16:47:20 +0000
+++ po/it.po 2012-06-19 14:00:32 +0000
@@ -8,14 +8,14 @@
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:37+0000\n"
-"Last-Translator: Mattia Tavernini <maathias@xxxxxxxxxxxx>\n"
+"PO-Revision-Date: 2012-06-05 21:20+0000\n"
+"Last-Translator: Wonderfulheart <Unknown>\n"
"Language-Team: Italian <LL@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:33+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-06-06 04:54+0000\n"
+"X-Generator: Launchpad (build 15353)\n"
"Language: it\n"
#: ../Animated-icons/src/applet-init.c:32
@@ -191,19 +191,19 @@
#: ../Clipper/src/applet-init.c:72
msgid "Pop-up the items menu"
-msgstr ""
+msgstr "Voci del menu a comparsa"
#: ../Clipper/src/applet-notifications.c:33
msgid "The clipboard history is empty."
-msgstr ""
+msgstr "Lo storico della clipboard è vuoto."
#: ../Clipper/src/applet-notifications.c:89
msgid "Clear clipboard History"
-msgstr ""
+msgstr "Cancella lo storico della clipboard"
#: ../Clipper/src/applet-notifications.c:91
msgid "Paste all copied items"
-msgstr ""
+msgstr "Incolla tutti gli elementi copiati"
#: ../Clipper/src/applet-notifications.c:99
msgid ""
@@ -225,7 +225,7 @@
#: ../Composite-Manager/src/applet-composite-manager.c:444
#: ../Composite-Manager/src/applet-composite-manager.c:459
msgid "No fallback is available."
-msgstr "Nesun fallback è disponibile."
+msgstr "Non è disponibile nessun fallback."
#: ../Composite-Manager/src/applet-composite-manager.c:499
#, c-format
@@ -265,7 +265,7 @@
#: ../Composite-Manager/src/applet-init.c:52
msgid "Toggle the composite ON/OFF"
-msgstr ""
+msgstr "Commuta la composizione ON/OFF"
#: ../Composite-Manager/src/applet-notifications.c:43
msgid "Toggle composite?"
@@ -549,7 +549,7 @@
#: ../Folders/src/applet-notifications.c:116
msgid "Properties:"
-msgstr ""
+msgstr "Proprietà:"
#: ../Folders/src/applet-notifications.c:136 ../Folders/data/messages:117
msgid "Size"
@@ -557,31 +557,31 @@
#: ../Folders/src/applet-notifications.c:136
msgid "bytes"
-msgstr ""
+msgstr "byte"
#: ../Folders/src/applet-notifications.c:150
msgid "Last Modification"
-msgstr ""
+msgstr "Ultima Modifica"
#: ../Folders/src/applet-notifications.c:159
msgid "Mime Type"
-msgstr ""
+msgstr "Tipo Mime"
#: ../Folders/src/applet-notifications.c:173
msgid "User ID"
-msgstr ""
+msgstr "Identificativo dell'Utente"
#: ../Folders/src/applet-notifications.c:173
msgid "Group ID"
-msgstr ""
+msgstr "Identificativo del Gruppo"
#: ../Folders/src/applet-notifications.c:183
msgid "Permissions"
-msgstr ""
+msgstr "Permessi"
#: ../Folders/src/applet-notifications.c:183
msgid "Read"
-msgstr ""
+msgstr "Lettura"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -613,7 +613,7 @@
#: ../Folders/src/applet-notifications.c:184
msgid "Write"
-msgstr ""
+msgstr "Scrittura"
#: ../Folders/src/applet-notifications.c:185
#: ../Scooby-Do/src/applet-backend-command.c:95
@@ -744,11 +744,13 @@
"a shortkey for it, like ALT+F2)\n"
"You can also set up a shortkey to pop up the menu (like ALT+F1)"
msgstr ""
-"Visualizza il Menu applicazioni classico ed i File usati recentemente.\n"
-"E' compatibile con ogni XDG menu (Gnome, XFCE, KDE, ...)\n"
-"Clic centrale apre una finestra di dialogo per lanciare ogni comando (puoi "
-"settare scorciatoie da tastiera per farlo, come ALT+F2)\n"
-"Puoi anche settare una scorciatoia per aprire il menù (come LT+F1)"
+"Visualizza il menu delle Applicazioni classico ed i file Recentemente "
+"utilizzati.\n"
+"E' compatibile con ogni menu XDG (Gnome, XFCE, KDE, ...)\n"
+"Clic centrale per aprire una finestra di dialogo per lanciare velocemente "
+"ogni comando (puoi impostare delle scorciatoie da tastiera per farlo, come "
+"ALT+F2)\n"
+"Puoi anche impostare una scorciatoia per aprire il menu (come ALT+F1)"
#: ../GMenu/src/applet-init.c:39
msgid "Applications Menu"
@@ -756,11 +758,11 @@
#: ../GMenu/src/applet-init.c:66
msgid "Show/hide the Applications menu"
-msgstr ""
+msgstr "Mostra/Nascondi il menu delle Applicazioni"
#: ../GMenu/src/applet-init.c:71
msgid "Show/hide the quick-launch dialog"
-msgstr ""
+msgstr "Mostra/Nascondi il dialogo avvio rapido"
#: ../GMenu/src/applet-menu-callbacks.c:218 ../GMenu/data/messages:121
msgid "Logout"
@@ -796,7 +798,7 @@
#: ../Global-Menu/src/applet-init.c:30
msgid "Global Menu"
-msgstr ""
+msgstr "Menu Globale"
#: ../Global-Menu/src/applet-init.c:33
msgid ""
@@ -806,14 +808,19 @@
"by default.\n"
"You can bind a shortkey to this action."
msgstr ""
+"Questa applet ti permette di controllare la finestra correntemente attiva:\n"
+" chiudi, minimizza, massimizza e visualizza il menu applicazioni. Per "
+"visualizzare il menu, le applicazioni debbono supportare questa "
+"caratteristica. Essa è predefinita su Ubuntu.\n"
+"Puoi impostare una scorciatoia per questa azione."
#: ../Global-Menu/src/applet-init.c:108 ../Global-Menu/src/applet-init.c:210
msgid "Show/hide the current application menu"
-msgstr ""
+msgstr "Mostra/Nasconde il menu dell'applicazione corrente"
#: ../Global-Menu/src/applet-notifications.c:52
msgid "The application didn't send its menu to us."
-msgstr ""
+msgstr "L'applicazione non ci mostrerà il suo menu."
#: ../Impulse/src/applet-impulse.c:170
msgid ""
@@ -863,16 +870,23 @@
"It handles Evolution, Pidgin, Empathy, etc\n"
"It requires the Messaging service, which is available on Ubuntu by default."
msgstr ""
+"Un menu che ti informa dei nuovi messaggi dalle applicazioni di Posta o "
+"Chat.\n"
+"Gestisce Evolution, Pidgin, Empathy, ecc\n"
+"Richiede il servizio di Messaggistica il quale è disponibile su Ubuntu in "
+"modo predefinito."
#: ../Messaging-Menu/src/applet-init.c:66
msgid "Show/hide the Messaging menu"
-msgstr ""
+msgstr "Mostra/Nascondi il menu di Messaggistica"
#: ../Messaging-Menu/src/applet-notifications.c:31
msgid ""
"The Messaging service did not reply.\n"
"Please check that it is correctly installed."
msgstr ""
+"Il servizio di Messaggistica non ha risposto.\n"
+"Per favore controlla che sia correttamente installato."
#: ../Network-Monitor/src/applet-dbus-callbacks.c:69
msgid "Network connection state changed to inactive."
@@ -1037,7 +1051,7 @@
#: ../RSSreader/src/applet-init.c:31
msgid "RSSreader"
-msgstr "lettore RSS"
+msgstr "Lettore RSS"
#: ../RSSreader/src/applet-init.c:34
msgid ""
@@ -1203,7 +1217,7 @@
#: ../Recent-Events/src/applet-init.c:58
msgid "Show/hide the Recent Events"
-msgstr ""
+msgstr "Mostra/Nascondi gli Eventi Recenti"
#: ../Recent-Events/src/applet-notifications.c:74
#, c-format
@@ -1236,14 +1250,25 @@
"middle click, and Ctrl+Enter for left click\n"
"Escape or the same shortkey will cancel."
msgstr ""
+"Queto plugin ti permette di contrallare la dock dalla tastiera\n"
+"Premi la scorciatoia (predefinita Super + Return), quindi uno fra:\n"
+" - premi il numero dell'icona che vuoi attivare - o usa i tasti freccia per "
+"spostarti nelle dock e nelle sub-dock (Ctrl + Pagina su/giù per passare ad "
+"un'altra dock principale)\n"
+" - o scrivi il nome di un lanciatore e premi Tab per saltare automaticamente "
+"al successivo lanciatore\n"
+"Premi Invio per cliccare sull'icona, Shift+Invio in luogo di Shift+clic, "
+"Alt+Invio in luogo del clic centrale del mouse e Ctrl+Invio in luogo del "
+"clic sinistro\n"
+"Escape o la corrispondente scorciatoia per annullare."
#: ../Remote-Control/src/applet-init.c:42
msgid "Control from keyboard"
-msgstr ""
+msgstr "Controllo da tastiera"
#: ../Remote-Control/src/applet-init.c:49
msgid "Enable/disable the keyboard control of the dock"
-msgstr ""
+msgstr "Abilita/Disabilita il controllo da tastiera della dock"
#: ../Scooby-Do/src/applet-backend-command.c:63
#, c-format
@@ -1330,7 +1355,7 @@
#: ../Scooby-Do/src/applet-init.c:73
msgid "Enable/disable the Finder"
-msgstr ""
+msgstr "Abilita/Disabilita la Ricerca"
#: ../Scooby-Do/src/applet-listing.c:514
msgid "(F1) Match case"
@@ -1559,11 +1584,11 @@
#: ../Xgamma/src/applet-init.c:64
msgid "Increase the brightness"
-msgstr ""
+msgstr "Aumenta la luminosità"
#: ../Xgamma/src/applet-init.c:68
msgid "Decrease the brightness"
-msgstr ""
+msgstr "Diminuisce la luminosità"
#: ../Xgamma/src/applet-notifications.c:87
msgid "Set up gamma correction"
@@ -1613,7 +1638,7 @@
#: ../alsaMixer/src/applet-draw.c:64
msgid "Volume"
-msgstr ""
+msgstr "Volume"
#: ../alsaMixer/src/applet-init.c:34
msgid ""
@@ -1625,6 +1650,13 @@
"mixer.\n"
"The applet can either use the Ubuntu Sound-menu or the Alsa driver."
msgstr ""
+"Questa applet ti permette di controllare il volume dei suoni dalla dock.\n"
+"Scorri su/giù sull'icona per alzare/abbassare il volume.\n"
+"Clicca sull'icona per mostrare/nascondere il controllo del volume (puoi "
+"impostare una scorciatoia da tastiera per esso)\n"
+"Clic centrale del mouse per attivare o togliere il suono, doppio clic per "
+"far apparire i canali del mixer.\n"
+"L'applet può usare uno fra il menu del Suono di Ubuntu o il driver Alsa."
#: ../alsaMixer/src/applet-init.c:42
msgid "Sound Control"
@@ -1632,7 +1664,7 @@
#: ../alsaMixer/src/applet-init.c:118
msgid "Show/hide the Sound menu"
-msgstr ""
+msgstr "Mostra/Nascondi il menu del Suono"
#: ../alsaMixer/src/applet-notifications.c:80
msgid "Adjust channels"
@@ -2310,7 +2342,7 @@
#: ../keyboard-indicator/src/applet-init.c:81
msgid "Switch keyboard language"
-msgstr ""
+msgstr "Cambia la lingua della tastiera"
#: ../keyboard-indicator/src/applet-notifications.c:77
msgid "Keyboard preferences"
@@ -2325,6 +2357,13 @@
"<b>Click</b> on the icon to pop the menu up.\n"
"You can bind a <b>shortcut</b> to it, and also to lock the screen."
msgstr ""
+"Questa applet ti permette di gestire la sessione corrente. Puoi:\n"
+"spegnere, riavviare, ibernare, sospendere, fare il log out, bloccare lo "
+"schermo, cambiare utente o programmare uno spegnimento automatico.\n"
+"Ti informerà anche se il tuo Sistema necessita di essere riavviato.\n"
+"<b>Clic</b> sull'icona per far comparire il menu.\n"
+"Puoi impostare una <b>scorciatoia</b> per essa, anche per bloccare lo "
+"schermo."
#: ../logout/src/applet-init.c:38 ../logout/src/applet-logout.c:228
#: ../logout/data/messages:97
@@ -2333,11 +2372,11 @@
#: ../logout/src/applet-init.c:67
msgid "Lock the screen"
-msgstr ""
+msgstr "Blocca lo schermo"
#: ../logout/src/applet-init.c:71
msgid "Show the log-out menu"
-msgstr ""
+msgstr "Mostra il menu di log-out"
#: ../logout/src/applet-logout.c:200 ../logout/data/messages:99
msgid "Shut down"
@@ -2373,7 +2412,7 @@
#: ../logout/src/applet-logout.c:241
msgid "Switch user"
-msgstr ""
+msgstr "Cambia utente"
#: ../logout/src/applet-logout.c:262
msgid "Guest session"
@@ -2398,23 +2437,23 @@
#: ../logout/src/applet-logout.c:523
#, c-format
msgid "It will automatically shut-down in %ds"
-msgstr ""
+msgstr "Sarà spento automaticamente in %ds"
#: ../logout/src/applet-logout.c:524
msgid "Shut down the computer?"
-msgstr ""
+msgstr "Spegnere il computer?"
#: ../logout/src/applet-logout.c:584
msgid "Restart the computer?"
-msgstr ""
+msgstr "Riavviare il computer?"
#: ../logout/src/applet-logout.c:621
msgid "Close the current session?"
-msgstr ""
+msgstr "Chiudere la sessione corrente?"
#: ../logout/src/applet-notifications.c:103
msgid "Manage users"
-msgstr ""
+msgstr "Gestisci gli utenti"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Server address:"
@@ -2690,6 +2729,16 @@
" and jpeg image to use as cover.\n"
"Note: you may have to install or activate the MPRIS plug-in of the player."
msgstr ""
+"Questa applet ti permette di controllare alcuni lettori musicali.\n"
+"Scegli dapprima il lettore che vuoi controllare.\n"
+"<b>clic</b> per mostrare/nascondere il lettore o per la pausa,\n"
+"<b>clic centrale del mouse</b> per la pausa o per andare al brano "
+"successivo,\n"
+"<b>Scorri su/giù</b> per cambiare brano o controllare il volume.\n"
+"Puoi trascinare il brano sull'icona per accodarlo alla lista d'esecuzione "
+"(dipende dal Lettore musicale)\n"
+" e puoi usare un'immagine jpeg come copertina.\n"
+"Nota: potresti installare o attivare il plugin MPRIS del lettore."
#: ../musicPlayer/src/applet-notifications.c:83
msgid ""
@@ -2927,7 +2976,7 @@
#: ../quick-browser/src/applet-init.c:64
msgid "Show/hide the folder menu"
-msgstr ""
+msgstr "Mostra/Nascondi il menu della cartella"
#: ../quick-browser/src/applet-menu.c:107
#: ../quick-browser/src/applet-menu.c:116
@@ -2962,7 +3011,7 @@
#: ../shortcuts/src/applet-init.c:32
msgid "shortcuts"
-msgstr "scorciatoie"
+msgstr "Scorciatoie"
#: ../shortcuts/src/applet-init.c:35
msgid ""
@@ -3116,7 +3165,7 @@
#: ../slider/src/applet-notifications.c:270
msgid "Refresh images list"
-msgstr ""
+msgstr "Aggiorna l'elenco delle immagini"
#: ../stack/src/applet-init.c:31
msgid "stack"
@@ -3284,7 +3333,7 @@
#: ../systray/src/systray-init.c:65
msgid "Show/hide the systray"
-msgstr ""
+msgstr "Mostra/Nascondi l'area di notifica"
#: ../systray/src/systray-interface.c:70
msgid ""
@@ -3334,7 +3383,7 @@
#: ../terminal/src/terminal-init.c:59
msgid "Show/hide the terminal"
-msgstr ""
+msgstr "Mostra/Nascondi il terminale"
#: ../terminal/src/terminal-menu-functions.c:78
#: ../terminal/src/terminal-widget.c:420
@@ -5651,62 +5700,66 @@
" The applet can steal the menu from the windows, in which case it will "
"display a button to pop up the menu of the current window."
msgstr ""
+"L'applet può togliere il bordo superiore delle finestre massimizzate, in tal "
+"caso essa visualizzerà i pulsanti di controllo della finestra.\n"
+" L'applet può togliere il menu dalle finestre, in tal caso essa visualizzerà "
+"un pulsante per la comparsa del menu della finestra corrente."
#: ../Global-Menu/data/messages:91
msgid "Steal window menu"
-msgstr ""
+msgstr "Togliere il menu della finestra"
#: ../Global-Menu/data/messages:93
msgid "Steal window decoration"
-msgstr ""
+msgstr "Togliere la decorazione della finestra"
#: ../Global-Menu/data/messages:95
msgid "Steal window menu and border"
-msgstr ""
+msgstr "Togliere il bordo e il menu della finestra"
#: ../Global-Menu/data/messages:97
msgid "Shortkey to pop up the menu"
-msgstr ""
+msgstr "Scorciatoia per il menu a comparsa"
#: ../Global-Menu/data/messages:99
msgid "Pop up the menu at mouse position"
-msgstr ""
+msgstr "Comparsa del menu nella posizione del mouse"
#: ../Global-Menu/data/messages:101
msgid "Compact mode"
-msgstr ""
+msgstr "Modalità compatta"
#: ../Global-Menu/data/messages:103
msgid "Order of the buttons: "
-msgstr ""
+msgstr "Ordine dei pulsanti: "
#: ../Global-Menu/data/messages:105
msgid "Auto"
-msgstr ""
+msgstr "Automatico"
#: ../Global-Menu/data/messages:107
msgid "Close button at the end"
-msgstr ""
+msgstr "Chiudi il pulsante al termine"
#: ../Global-Menu/data/messages:109
msgid "Close button at first"
-msgstr ""
+msgstr "Chiudi il pulsante all'inizio"
#: ../Global-Menu/data/messages:111
msgid "Image for the 'minimize' button"
-msgstr ""
+msgstr "Immagine per il pulsante 'minimizza'"
#: ../Global-Menu/data/messages:113
msgid "Image for the 'maximize' button"
-msgstr ""
+msgstr "Immagine per il pulsante 'massimizza'"
#: ../Global-Menu/data/messages:115
msgid "Image for the 'restore' button"
-msgstr ""
+msgstr "Immagine per il pulsante 'ripristina'"
#: ../Global-Menu/data/messages:117
msgid "Image for the 'close' button"
-msgstr ""
+msgstr "Immagine per il pulsante 'chiudi'"
#: ../Impulse/data/messages:93
msgid "Animation of the icons:"
@@ -5811,7 +5864,7 @@
#: ../slider/data/messages:17 ../weather/data/messages:19
#: ../wifi/data/messages:17
msgid "With default background"
-msgstr ""
+msgstr "Con sfondo predefinito"
#: ../Messaging-Menu/data/messages:19 ../Network-Monitor/data/messages:21
#: ../Status-Notifier/data/messages:23 ../System-Monitor/data/messages:19
@@ -5822,7 +5875,7 @@
#: ../slider/data/messages:19 ../weather/data/messages:21
#: ../wifi/data/messages:19
msgid "With custom background"
-msgstr ""
+msgstr "Con sfondo personalizzato"
#: ../Messaging-Menu/data/messages:21 ../Network-Monitor/data/messages:23
#: ../Status-Notifier/data/messages:25 ../System-Monitor/data/messages:21
@@ -6182,7 +6235,7 @@
#: ../Remote-Control/data/messages:5
msgid "Dock to control initially"
-msgstr ""
+msgstr "Dock al controllo iniziale"
#: ../Remote-Control/data/messages:7 ../Scooby-Do/data/messages:23
msgid "Animation of the current icon :"
@@ -6396,7 +6449,7 @@
#: ../Status-Notifier/data/messages:105
msgid "Hide inactive items"
-msgstr ""
+msgstr "Nascondi gli elementi inattivi"
#: ../Status-Notifier/data/messages:107
msgid "How to display items:"
@@ -6617,11 +6670,11 @@
#: ../Xgamma/data/messages:101
msgid "Shortkey to increase the brightness:"
-msgstr ""
+msgstr "Scorciatoia per aumentare la luminosità:"
#: ../Xgamma/data/messages:103
msgid "Shortkey to decrease the brightness:"
-msgstr ""
+msgstr "Scorciatoia per diminuire la luminosità:"
#: ../alsaMixer/data/messages:7 ../alsaMixer/data/messages:155
msgid "Leave empty to use the default sound card."
@@ -6791,7 +6844,7 @@
#: ../clock/data/messages:151
msgid "Use a custom font"
-msgstr ""
+msgstr "Usa un carattere personalizzato"
#: ../clock/data/messages:153 ../keyboard-indicator/data/messages:111
msgid "Font:"
@@ -7079,7 +7132,7 @@
#: ../dock-rendering/data/messages:19
msgid "Physically separate groups of icons"
-msgstr ""
+msgstr "Separa fisicamente i gruppi delle icone"
#: ../dock-rendering/data/messages:21
msgid "At 1, the icons will have the same size as in other views."
@@ -7560,15 +7613,15 @@
#: ../logout/data/messages:103
msgid "Shortkey to lock the screen"
-msgstr ""
+msgstr "Scorciatoia per bloccare lo schermo"
#: ../logout/data/messages:105
msgid "Shortkey to show the menu"
-msgstr ""
+msgstr "Scorciatoia per mostrare il menu"
#: ../logout/data/messages:107
msgid "Demand confirmation before closing"
-msgstr ""
+msgstr "Chiedi la conferma prima di chiudere"
#: ../logout/data/messages:109
msgid "Commands"
@@ -7607,10 +7660,12 @@
msgid ""
"Display this image as an emblem or replace applet's icon with this image?"
msgstr ""
+"Visualizzare questa immagine come un emblema o sostituire l'icona "
+"dell'applet con questa immagine?"
#: ../logout/data/messages:127
msgid "Emblem"
-msgstr ""
+msgstr "Emblema"
#: ../mail/data/messages:99
msgid ""
@@ -7817,15 +7872,15 @@
#: ../musicPlayer/data/messages:143
msgid "Actions on scroll up/down:"
-msgstr ""
+msgstr "Azioni allo scorrimento su/giù:"
#: ../musicPlayer/data/messages:145
msgid "Next/previous song"
-msgstr ""
+msgstr "Brano successivo/precedente"
#: ../musicPlayer/data/messages:147
msgid "Control the volume"
-msgstr ""
+msgstr "Controllo del volume"
#: ../musicPlayer/data/messages:149
msgid "Action on music change"
@@ -8330,7 +8385,7 @@
#: ../stack/data/messages:117
msgid "Separate the items by type (file/web page/text)"
-msgstr ""
+msgstr "Separa gli elementi per tipo (file/pagina web/testo)"
#: ../stack/data/messages:119
msgid ""
@@ -8378,11 +8433,11 @@
#: ../switcher/data/messages:93
msgid "Desktops layout"
-msgstr ""
+msgstr "Disposizione delle Scrivanie"
#: ../switcher/data/messages:97
msgid "On a single line"
-msgstr ""
+msgstr "Su una riga singola"
#: ../switcher/data/messages:99
msgid "Map wallpaper to icons?"
=== modified file 'po/nl.po'
--- po/nl.po 2012-04-16 16:47:20 +0000
+++ po/nl.po 2012-06-19 14:00:32 +0000
@@ -8,14 +8,14 @@
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-14 08:21+0000\n"
+"PO-Revision-Date: 2012-06-03 20:29+0000\n"
"Last-Translator: rob <linuxned@xxxxxxxxx>\n"
"Language-Team: LANGUAGE <LL@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-14 14:49+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-06-04 04:42+0000\n"
+"X-Generator: Launchpad (build 15353)\n"
"Language: \n"
#: ../Animated-icons/src/applet-init.c:32
@@ -531,7 +531,7 @@
"Middle-click on the main icon opens the folder.\n"
msgstr ""
"Dit applet importeert mappen in het dock\n"
-"U kunt dit applet zo vaak openen als u wilt,, elk met een aparte map.\n"
+"U kunt dit applet zo vaak openen als u wilt, elk met een aparte map.\n"
"Om een map toe te voegen aan uw dock:\n"
" - activeert u dit applet, opent zijn configuratiepaneel en selecteert een "
"map\n"
@@ -766,7 +766,7 @@
#: ../GMenu/src/applet-menu-callbacks.c:218 ../GMenu/data/messages:121
msgid "Logout"
-msgstr "Uitloggen"
+msgstr "Afmelden"
#: ../GMenu/src/applet-menu-callbacks.c:221 ../GMenu/data/messages:123
msgid "Shutdown"
@@ -2360,7 +2360,7 @@
"Met dit applet kunt u de huidige sessie beheren. Het biedt de volgende "
"opties:\n"
"uitschakelen, herstarten, in slaapstand zetten, in pauzestand zetten, "
-"uitloggen, scherm afgrendelen, naar een andere gebruiker wisselen of "
+"afmelden, scherm afgrendelen, naar een andere gebruiker wisselen of "
"automatisch uitschakelen.\n"
"Het zal u ook waarschuwen wanneer uw systeem herstart dient te worden.\n"
"<b>Klik</b> op het pictogram om het menu te tonen.\n"
@@ -2369,7 +2369,7 @@
#: ../logout/src/applet-init.c:38 ../logout/src/applet-logout.c:228
#: ../logout/data/messages:97
msgid "Log out"
-msgstr "Uitloggen"
+msgstr "Afmelden"
#: ../logout/src/applet-init.c:67
msgid "Lock the screen"
@@ -2409,7 +2409,7 @@
#: ../logout/src/applet-logout.c:230
msgid "Close your session and allow to open a new one."
-msgstr "Sluit uw sessie en sta toe dat er een nieuwe geopend wordt."
+msgstr "Sluit uw sessie en open een nieuwe."
#: ../logout/src/applet-logout.c:241
msgid "Switch user"
@@ -2433,7 +2433,7 @@
#: ../logout/src/applet-logout.c:349
msgid "Choose in how many minutes your PC will stop:"
-msgstr "Selecteer aantal minuten waarna uw PC zal afsluiten :"
+msgstr "Stel aantal minuten in waarna uw PC afgesloten zal worden:"
#: ../logout/src/applet-logout.c:523
#, c-format
@@ -2463,7 +2463,7 @@
#: ../mail/src/cd-mail-applet-accounts.c:39
#: ../mail/src/cd-mail-applet-accounts.c:44
msgid "myLogin"
-msgstr "mijnLogin"
+msgstr "Aanmelden"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "myHost"
@@ -5169,11 +5169,11 @@
#: ../Composite-Manager/data/messages:93
msgid "Image when composite is active:"
-msgstr "Afbeelding wanneer composite actief is:"
+msgstr "Afbeelding wanneer composite ingeschakeld is:"
#: ../Composite-Manager/data/messages:97
msgid "Image when composite is inactive:"
-msgstr "Afbeelding wanneer composite inactief is:"
+msgstr "Afbeelding wanneer composite uitgeschakeld is:"
#: ../Composite-Manager/data/messages:99 ../Global-Menu/data/messages:89
#: ../RSSreader/data/messages:105 ../Status-Notifier/data/messages:117
@@ -5678,7 +5678,7 @@
#: ../GMenu/data/messages:117
msgid "Show Logout and/or Shutdown : "
-msgstr "Uitloggen en/of Uitschakelen tonen : "
+msgstr "Afmelden en/of Uitschakelen tonen : "
#: ../Global-Menu/data/messages:87
msgid ""
@@ -7619,7 +7619,7 @@
#: ../logout/data/messages:113
msgid "User-defined command to execute for logout:"
-msgstr "Door gebruiker bepaalde opdracht om uit te loggen :"
+msgstr "Door gebruiker bepaalde opdracht voor afmelden :"
#: ../logout/data/messages:115
msgid ""
@@ -7627,14 +7627,14 @@
"default command, which depends on your distribution. In some cases the "
"command to shutdown is the same as the one to log out."
msgstr ""
-"Dit zal beschikbaar zijn bij middelklik. Laat dit leeg om de "
-"standaardopdracht uit te voeren, die sterk afhangt van uw distributie. Soms "
-"is de opdracht om uit te loggen hetzelfde als die om de computer af te "
-"sluiten."
+"Dit zal beschikbaar zijn bij het middelklikken. Laat dit leeg om de "
+"standaardopdracht uit te voeren, die afhankelijk is van uw distributie. Soms "
+"is de opdracht voor het afmelden hetzelfde als die om de computer uit te "
+"schakelen."
#: ../logout/data/messages:117
msgid "User-defined command to execute for shutdown:"
-msgstr "Door gebruiker bepaalde opdracht om de computer af te sluiten :"
+msgstr "Door gebruiker bepaalde opdracht om de computer uit te schakelen :"
#: ../logout/data/messages:119 ../musicPlayer/data/messages:185
#: ../tomboy/data/messages:9
=== modified file 'po/pt_BR.po'
--- po/pt_BR.po 2012-04-16 16:47:20 +0000
+++ po/pt_BR.po 2012-06-19 14:00:32 +0000
@@ -7,14 +7,14 @@
"Project-Id-Version: 2.1.0-alpha\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:34+0000\n"
+"PO-Revision-Date: 2012-05-22 20:09+0000\n"
"Last-Translator: Eduardo Mucelli Rezende Oliveira <edumucelli@xxxxxxxxx>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:34+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-05-24 11:25+0000\n"
+"X-Generator: Launchpad (build 15288)\n"
"Language: \n"
#: ../Animated-icons/src/applet-init.c:32
@@ -200,11 +200,11 @@
#: ../Clipper/src/applet-notifications.c:89
msgid "Clear clipboard History"
-msgstr ""
+msgstr "Limpar histórico da área de transferência"
#: ../Clipper/src/applet-notifications.c:91
msgid "Paste all copied items"
-msgstr ""
+msgstr "Colar todos os itens copiados"
#: ../Clipper/src/applet-notifications.c:99
msgid ""
@@ -3087,7 +3087,7 @@
#: ../slider/src/applet-notifications.c:270
msgid "Refresh images list"
-msgstr ""
+msgstr "Atualizar lista de imagens"
#: ../stack/src/applet-init.c:31
msgid "stack"
@@ -5776,7 +5776,7 @@
#: ../slider/data/messages:17 ../weather/data/messages:19
#: ../wifi/data/messages:17
msgid "With default background"
-msgstr ""
+msgstr "Com o fundo padrão"
#: ../Messaging-Menu/data/messages:19 ../Network-Monitor/data/messages:21
#: ../Status-Notifier/data/messages:23 ../System-Monitor/data/messages:19
@@ -5787,7 +5787,7 @@
#: ../slider/data/messages:19 ../weather/data/messages:21
#: ../wifi/data/messages:19
msgid "With custom background"
-msgstr ""
+msgstr "Com fundo personalizado"
#: ../Messaging-Menu/data/messages:21 ../Network-Monitor/data/messages:23
#: ../Status-Notifier/data/messages:25 ../System-Monitor/data/messages:21
@@ -6746,7 +6746,7 @@
#: ../clock/data/messages:151
msgid "Use a custom font"
-msgstr ""
+msgstr "Usar fonte personalizada"
#: ../clock/data/messages:153 ../keyboard-indicator/data/messages:111
msgid "Font:"
=== modified file 'po/sk.po'
--- po/sk.po 2012-04-16 16:47:20 +0000
+++ po/sk.po 2012-06-19 14:00:32 +0000
@@ -8,14 +8,14 @@
"Project-Id-Version: cairo-dock-plug-ins\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:37+0000\n"
-"Last-Translator: Fabounet <fabounet03@xxxxxxxxx>\n"
+"PO-Revision-Date: 2012-04-25 06:30+0000\n"
+"Last-Translator: milboy <Unknown>\n"
"Language-Team: Slovak <sk@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:34+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-04-26 04:55+0000\n"
+"X-Generator: Launchpad (build 15149)\n"
"Language: sk\n"
#: ../Animated-icons/src/applet-init.c:32
@@ -30,24 +30,24 @@
#: ../Animated-icons/data/messages:27 ../Animated-icons/data/messages:47
#: ../Animated-icons/data/messages:157
msgid "Bounce"
-msgstr "Odrážať"
+msgstr "Odrážanie"
#: ../Animated-icons/src/applet-init.c:81 ../Animated-icons/data/messages:11
#: ../Animated-icons/data/messages:29 ../Animated-icons/data/messages:49
msgid "Rotate"
-msgstr "Otočiť"
+msgstr "Otáčanie"
#: ../Animated-icons/src/applet-init.c:82 ../Animated-icons/data/messages:13
#: ../Animated-icons/data/messages:31 ../Animated-icons/data/messages:51
#: ../Animated-icons/data/messages:171
msgid "Blink"
-msgstr "Blikať"
+msgstr "Blikanie"
#: ../Animated-icons/src/applet-init.c:83 ../Animated-icons/data/messages:15
#: ../Animated-icons/data/messages:33 ../Animated-icons/data/messages:53
#: ../Animated-icons/data/messages:145
msgid "Pulse"
-msgstr "Pulz"
+msgstr "Pulzovanie"
#: ../Animated-icons/src/applet-init.c:84 ../Animated-icons/data/messages:17
#: ../Animated-icons/data/messages:35 ../Animated-icons/data/messages:55
@@ -189,19 +189,19 @@
#: ../Clipper/src/applet-init.c:72
msgid "Pop-up the items menu"
-msgstr ""
+msgstr "Vyskakovacie položky ponuky"
#: ../Clipper/src/applet-notifications.c:33
msgid "The clipboard history is empty."
-msgstr ""
+msgstr "Schránka histórie je prázdna."
#: ../Clipper/src/applet-notifications.c:89
msgid "Clear clipboard History"
-msgstr ""
+msgstr "Vyčistiť schránku histórie"
#: ../Clipper/src/applet-notifications.c:91
msgid "Paste all copied items"
-msgstr ""
+msgstr "Vložiť všetky skopírované položky"
#: ../Clipper/src/applet-notifications.c:99
msgid ""
@@ -218,7 +218,7 @@
#: ../Composite-Manager/src/applet-composite-manager.c:421
#: ../Composite-Manager/src/applet-composite-manager.c:436
msgid "No compositor is available."
-msgstr ""
+msgstr "Nie je dostupná kompozícia."
#: ../Composite-Manager/src/applet-composite-manager.c:444
#: ../Composite-Manager/src/applet-composite-manager.c:459
@@ -228,15 +228,15 @@
#: ../Composite-Manager/src/applet-composite-manager.c:499
#, c-format
msgid "You need to install '%s'"
-msgstr ""
+msgstr "Je potrebné nainštalovať '%s'"
#: ../Composite-Manager/src/applet-composite-manager.c:510
msgid "No configuration tool is available."
-msgstr ""
+msgstr "Konfiguračný nástroj nie je k dispozícii."
#: ../Composite-Manager/src/applet-init.c:27
msgid "Composite-Manager"
-msgstr ""
+msgstr "Kompozitný správca"
#: ../Composite-Manager/src/applet-init.c:30
msgid ""
@@ -253,16 +253,16 @@
#: ../Composite-Manager/src/applet-init.c:52
msgid "Toggle the composite ON/OFF"
-msgstr ""
+msgstr "Prepínač kompozície ZAP/VYP"
#: ../Composite-Manager/src/applet-notifications.c:43
msgid "Toggle composite?"
-msgstr ""
+msgstr "Prepnúť kompozíciu?"
#: ../Composite-Manager/src/applet-notifications.c:120
#: ../Composite-Manager/data/messages:129
msgid "Edit Window-Manager settings"
-msgstr ""
+msgstr "Upraviť nastavenia správcu okien"
#: ../Composite-Manager/src/applet-notifications.c:120
#: ../Composite-Manager/src/applet-notifications.c:127
@@ -299,7 +299,7 @@
#: ../Composite-Manager/src/applet-notifications.c:127
#: ../Composite-Manager/data/messages:131
msgid "Reload Window-Manager"
-msgstr ""
+msgstr "Obnoviť správcu okien"
#: ../Composite-Manager/src/applet-notifications.c:136
#: ../showDesktop/src/applet-notifications.c:165
@@ -316,13 +316,13 @@
#: ../Composite-Manager/data/messages:135 ../showDesktop/data/messages:111
#: ../showDesktop/data/messages:125 ../switcher/data/messages:115
msgid "Expose all the desktops"
-msgstr ""
+msgstr "Vystaviť všetky plochy"
#: ../Composite-Manager/src/applet-notifications.c:154
#: ../switcher/src/applet-notifications.c:323
#: ../Composite-Manager/data/messages:137 ../switcher/data/messages:117
msgid "Expose all the windows"
-msgstr ""
+msgstr "Vystaviť všetky okná"
#: ../Composite-Manager/src/applet-notifications.c:163
#: ../showDesktop/src/applet-notifications.c:189
@@ -470,7 +470,7 @@
#: ../Doncky/src/applet-notifications.c:215
msgid "It doesn't seem to be a valid XML file."
-msgstr ""
+msgstr "Zdá sa, že toto nie je správny XML súbor."
#: ../Folders/src/applet-init.c:29
msgid "Folders"
@@ -491,6 +491,7 @@
#: ../Folders/src/applet-notifications.c:42
msgid "Open the configuration of the applet to choose a folder to import."
msgstr ""
+"Otvorte konfiguráciu apletu a vyberte zložku, ktorú chcete importovať."
#: ../Folders/src/applet-notifications.c:54
msgid "Empty or unreadable folder."
@@ -498,7 +499,7 @@
#: ../Folders/src/applet-notifications.c:116
msgid "Properties:"
-msgstr ""
+msgstr "Vlastnosti:"
#: ../Folders/src/applet-notifications.c:136 ../Folders/data/messages:117
msgid "Size"
@@ -506,31 +507,31 @@
#: ../Folders/src/applet-notifications.c:136
msgid "bytes"
-msgstr ""
+msgstr "bajty"
#: ../Folders/src/applet-notifications.c:150
msgid "Last Modification"
-msgstr ""
+msgstr "Posledná úprava"
#: ../Folders/src/applet-notifications.c:159
msgid "Mime Type"
-msgstr ""
+msgstr "Mime typ"
#: ../Folders/src/applet-notifications.c:173
msgid "User ID"
-msgstr ""
+msgstr "ID používateľa"
#: ../Folders/src/applet-notifications.c:173
msgid "Group ID"
-msgstr ""
+msgstr "ID skupiny"
#: ../Folders/src/applet-notifications.c:183
msgid "Permissions"
-msgstr ""
+msgstr "Oprávnenia"
#: ../Folders/src/applet-notifications.c:183
msgid "Read"
-msgstr ""
+msgstr "Čítanie"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -538,7 +539,7 @@
#: ../System-Monitor/data/messages:115 ../alsaMixer/data/messages:147
#: ../netspeed/data/messages:115 ../slider/data/messages:169
msgid "Yes"
-msgstr ""
+msgstr "Áno"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -562,7 +563,7 @@
#: ../Folders/src/applet-notifications.c:184
msgid "Write"
-msgstr ""
+msgstr "Zápis"
#: ../Folders/src/applet-notifications.c:185
#: ../Scooby-Do/src/applet-backend-command.c:95
@@ -659,31 +660,31 @@
#: ../Folders/src/applet-notifications.c:422
msgid "Sort by"
-msgstr ""
+msgstr "Zoradiť podľa"
#: ../Folders/src/applet-notifications.c:423
msgid "By name"
-msgstr ""
+msgstr "podľa názvu"
#: ../Folders/src/applet-notifications.c:424
msgid "By date"
-msgstr ""
+msgstr "podľa dátumu"
#: ../Folders/src/applet-notifications.c:425
msgid "By size"
-msgstr ""
+msgstr "podľa veľkosti"
#: ../Folders/src/applet-notifications.c:426
msgid "By type"
-msgstr ""
+msgstr "podaľa typu"
#: ../Folders/src/applet-notifications.c:468
msgid "The folder has been imported."
-msgstr ""
+msgstr "Priečinok bol importovaný"
#: ../Folders/src/applet-notifications.c:529
msgid "Do you want to import the content of the folder too?"
-msgstr ""
+msgstr "Chcete importovať aj obsah zložky?"
#: ../GMenu/src/applet-init.c:33
msgid ""
@@ -705,19 +706,19 @@
#: ../GMenu/src/applet-init.c:66
msgid "Show/hide the Applications menu"
-msgstr ""
+msgstr "Zobraziť/Skryť Ponuku aplikácií"
#: ../GMenu/src/applet-init.c:71
msgid "Show/hide the quick-launch dialog"
-msgstr ""
+msgstr "Zobraziť/Skryť ponuku rýchle spustenie"
#: ../GMenu/src/applet-menu-callbacks.c:218 ../GMenu/data/messages:121
msgid "Logout"
-msgstr ""
+msgstr "Odhlásiť sa"
#: ../GMenu/src/applet-menu-callbacks.c:221 ../GMenu/data/messages:123
msgid "Shutdown"
-msgstr ""
+msgstr "Vypnúť"
#: ../GMenu/src/applet-notifications.c:81
msgid "Quick launch"
@@ -745,7 +746,7 @@
#: ../Global-Menu/src/applet-init.c:30
msgid "Global Menu"
-msgstr ""
+msgstr "Úplná ponuka"
#: ../Global-Menu/src/applet-init.c:33
msgid ""
@@ -758,7 +759,7 @@
#: ../Global-Menu/src/applet-init.c:108 ../Global-Menu/src/applet-init.c:210
msgid "Show/hide the current application menu"
-msgstr ""
+msgstr "Zobraziť/skryť aktuálnu ponuku aplikácií"
#: ../Global-Menu/src/applet-notifications.c:52
msgid "The application didn't send its menu to us."
@@ -770,6 +771,9 @@
"Can you check its status (installed? running? version?) and report this bug "
"(if any) to forum.glx-dock.org"
msgstr ""
+"Niečo nie je v poriadku s PulseAudio.\n"
+"Chcete pozrieť v akom je stave (nainštalované? spustené? verzia?) a poslať "
+"správu o chybe (ak je) na forum.glx-dock.org"
#: ../Impulse/src/applet-init.c:32
msgid ""
@@ -797,7 +801,7 @@
#: ../Messaging-Menu/src/applet-init.c:30
msgid "Messaging Menu"
-msgstr ""
+msgstr "Ponuka správ"
#: ../Messaging-Menu/src/applet-init.c:33
msgid ""
@@ -808,13 +812,15 @@
#: ../Messaging-Menu/src/applet-init.c:66
msgid "Show/hide the Messaging menu"
-msgstr ""
+msgstr "Zobraziť/Skryť ponuku správ"
#: ../Messaging-Menu/src/applet-notifications.c:31
msgid ""
"The Messaging service did not reply.\n"
"Please check that it is correctly installed."
msgstr ""
+"Služba Správy neodpovedá.\n"
+"Skontrolujte prosím, či je správne nainštalovaná."
#: ../Network-Monitor/src/applet-dbus-callbacks.c:69
msgid "Network connection state changed to inactive."
@@ -1075,59 +1081,59 @@
#: ../Recent-Events/src/applet-dialog.c:288
#: ../stack/src/applet-notifications.c:179
msgid "Open parent folder"
-msgstr ""
+msgstr "Otvoriť nadradený priečinok"
#: ../Recent-Events/src/applet-dialog.c:290
msgid "Copy the location"
-msgstr ""
+msgstr "Kopírovať umiestnenie"
#: ../Recent-Events/src/applet-dialog.c:292
msgid "Delete this event"
-msgstr ""
+msgstr "odstrániť túto udalosť"
#: ../Recent-Events/src/applet-dialog.c:365
msgid "All"
-msgstr ""
+msgstr "Všetko"
#: ../Recent-Events/src/applet-dialog.c:366
msgid "Document"
-msgstr ""
+msgstr "Dokument"
#: ../Recent-Events/src/applet-dialog.c:368 ../logout/data/messages:129
msgid "Image"
-msgstr ""
+msgstr "Obrázok"
#: ../Recent-Events/src/applet-dialog.c:369
msgid "Audio"
-msgstr ""
+msgstr "Zvuk"
#: ../Recent-Events/src/applet-dialog.c:370
msgid "Video"
-msgstr ""
+msgstr "Video"
#: ../Recent-Events/src/applet-dialog.c:371
msgid "Web"
-msgstr ""
+msgstr "Web"
#: ../Recent-Events/src/applet-dialog.c:372
msgid "Other"
-msgstr ""
+msgstr "Iné"
#: ../Recent-Events/src/applet-dialog.c:373
msgid "Top Results"
-msgstr ""
+msgstr "Najlepšie výsledky"
#: ../Recent-Events/src/applet-dialog.c:379
msgid "Look for events"
-msgstr ""
+msgstr "Pozrieť sa na udalosti"
#: ../Recent-Events/src/applet-dialog.c:430
msgid "File name"
-msgstr ""
+msgstr "Názov súboru"
#: ../Recent-Events/src/applet-dialog.c:437
msgid "Last access"
-msgstr ""
+msgstr "Posledný prístup"
#: ../Recent-Events/src/applet-dialog.c:481
msgid "You need to install the Zeitgeist data engine."
@@ -1135,20 +1141,20 @@
#: ../Recent-Events/src/applet-dialog.c:516
msgid "Browse and search in recent events"
-msgstr ""
+msgstr "Prehliadať a nájsť nedávne udalosti"
#: ../Recent-Events/src/applet-init.c:29
msgid "Recent-Events"
-msgstr ""
+msgstr "Nedávne udalosti"
#: ../Recent-Events/src/applet-init.c:58
msgid "Show/hide the Recent Events"
-msgstr ""
+msgstr "Zobraziť/Skryť nedávne udalosti"
#: ../Recent-Events/src/applet-notifications.c:74
#, c-format
msgid "%d event(s) deleted"
-msgstr ""
+msgstr "%d udalosť(i) odstránená"
#: ../Recent-Events/src/applet-notifications.c:113
#: ../Scooby-Do/src/applet-backend-recent.c:212 ../Scooby-Do/data/messages:105
@@ -1157,11 +1163,11 @@
#: ../Recent-Events/src/applet-notifications.c:161
msgid "Delete today's events"
-msgstr ""
+msgstr "Odstrániť dnešné udalosti"
#: ../Recent-Events/src/applet-notifications.c:163
msgid "Delete all events"
-msgstr ""
+msgstr "Odstrániť všetky udalosti"
#: ../Remote-Control/src/applet-init.c:32
msgid ""
@@ -1179,11 +1185,11 @@
#: ../Remote-Control/src/applet-init.c:42
msgid "Control from keyboard"
-msgstr ""
+msgstr "Ovládanie klávesnicou"
#: ../Remote-Control/src/applet-init.c:49
msgid "Enable/disable the keyboard control of the dock"
-msgstr ""
+msgstr "Povoliť/Zakázať ovládanie panela klávesnicou"
#: ../Scooby-Do/src/applet-backend-command.c:63
#, c-format
@@ -1270,7 +1276,7 @@
#: ../Scooby-Do/src/applet-init.c:73
msgid "Enable/disable the Finder"
-msgstr ""
+msgstr "Povoliť/Zakázať hľadáčik"
#: ../Scooby-Do/src/applet-listing.c:514
msgid "(F1) Match case"
@@ -1332,7 +1338,7 @@
#: ../Status-Notifier/src/applet-init.c:38
msgid "Notification Area"
-msgstr ""
+msgstr "Oblasť upozornení"
#: ../System-Monitor/src/applet-cpusage.c:57
msgid "Uptime"
@@ -1382,7 +1388,7 @@
#: ../System-Monitor/src/applet-notifications.c:104
#: ../netspeed/src/applet-notifications.c:98
msgid "Open the System-Monitor"
-msgstr ""
+msgstr "Otvoriť sledovanie systému"
#: ../System-Monitor/src/applet-notifications.c:106
msgid "Show info"
@@ -1437,7 +1443,7 @@
#: ../System-Monitor/src/applet-sensors.c:358
msgid "min"
-msgstr ""
+msgstr "min"
#: ../System-Monitor/src/applet-sensors.c:360
msgid "max"
@@ -1488,19 +1494,19 @@
#: ../Xgamma/src/applet-init.c:52
msgid "Screen Luminosity"
-msgstr ""
+msgstr "Jas obrazovky"
#: ../Xgamma/src/applet-init.c:64
msgid "Increase the brightness"
-msgstr ""
+msgstr "Zvýšiť jas"
#: ../Xgamma/src/applet-init.c:68
msgid "Decrease the brightness"
-msgstr ""
+msgstr "Znížiť jas"
#: ../Xgamma/src/applet-notifications.c:87
msgid "Set up gamma correction"
-msgstr ""
+msgstr "Nastaviť gamma korekciu"
#: ../Xgamma/src/applet-notifications.c:91
msgid "Apply current luminosity on startup"
@@ -1512,7 +1518,7 @@
#: ../Xgamma/src/applet-xgamma.c:293
msgid "Luminosity"
-msgstr ""
+msgstr "Svietivosť"
#: ../alsaMixer/src/applet-backend-alsamixer.c:46
#, c-format
@@ -1546,7 +1552,7 @@
#: ../alsaMixer/src/applet-draw.c:64
msgid "Volume"
-msgstr ""
+msgstr "Hlasitosť"
#: ../alsaMixer/src/applet-init.c:34
msgid ""
@@ -1565,7 +1571,7 @@
#: ../alsaMixer/src/applet-init.c:118
msgid "Show/hide the Sound menu"
-msgstr ""
+msgstr "Zobraziť/Skryť ponuku zvuk"
#: ../alsaMixer/src/applet-notifications.c:80
msgid "Adjust channels"
@@ -2223,11 +2229,11 @@
#: ../keyboard-indicator/src/applet-init.c:81
msgid "Switch keyboard language"
-msgstr ""
+msgstr "Prepnúť klávesnicu na iný jazyk"
#: ../keyboard-indicator/src/applet-notifications.c:77
msgid "Keyboard preferences"
-msgstr ""
+msgstr "Predvoľby klávesnice"
#: ../logout/src/applet-init.c:31
msgid ""
@@ -2246,11 +2252,11 @@
#: ../logout/src/applet-init.c:67
msgid "Lock the screen"
-msgstr ""
+msgstr "Uzamknúť obrazovku"
#: ../logout/src/applet-init.c:71
msgid "Show the log-out menu"
-msgstr ""
+msgstr "Zobraziť ponuku Odhlásiť"
#: ../logout/src/applet-logout.c:200 ../logout/data/messages:99
msgid "Shut down"
@@ -2258,7 +2264,7 @@
#: ../logout/src/applet-logout.c:206
msgid "Restart"
-msgstr ""
+msgstr "Reštartovať"
#: ../logout/src/applet-logout.c:212
#: ../powermanager/src/powermanager-menu-functions.c:97
@@ -2268,7 +2274,7 @@
#: ../logout/src/applet-logout.c:214
msgid "Your computer will not consume any energy."
-msgstr ""
+msgstr "Počítač nebude spotrebovávať žiadnu energiu."
#: ../logout/src/applet-logout.c:219
#: ../powermanager/src/powermanager-menu-functions.c:100
@@ -2278,19 +2284,19 @@
#: ../logout/src/applet-logout.c:221
msgid "Your computer will still consume a small amount of energy."
-msgstr ""
+msgstr "Váš počítač stále konzumuje malé množstvo energie."
#: ../logout/src/applet-logout.c:230
msgid "Close your session and allow to open a new one."
-msgstr ""
+msgstr "Zatvorte reláciu a umožnite otvorenie novej."
#: ../logout/src/applet-logout.c:241
msgid "Switch user"
-msgstr ""
+msgstr "Prepnúť používateľa"
#: ../logout/src/applet-logout.c:262
msgid "Guest session"
-msgstr ""
+msgstr "Relácia pre hosťa"
#: ../logout/src/applet-logout.c:269 ../logout/data/messages:101
msgid "Lock screen"
@@ -2311,23 +2317,23 @@
#: ../logout/src/applet-logout.c:523
#, c-format
msgid "It will automatically shut-down in %ds"
-msgstr ""
+msgstr "Automatické vypnutie o %ds"
#: ../logout/src/applet-logout.c:524
msgid "Shut down the computer?"
-msgstr ""
+msgstr "Vypnúť počítač?"
#: ../logout/src/applet-logout.c:584
msgid "Restart the computer?"
-msgstr ""
+msgstr "Reštartovať počítač?"
#: ../logout/src/applet-logout.c:621
msgid "Close the current session?"
-msgstr ""
+msgstr "Ukončiť aktuálne sedenie?"
#: ../logout/src/applet-notifications.c:103
msgid "Manage users"
-msgstr ""
+msgstr "Spravovať používateľov"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Server address:"
@@ -2336,7 +2342,7 @@
#: ../mail/src/cd-mail-applet-accounts.c:39
#: ../mail/src/cd-mail-applet-accounts.c:44
msgid "myLogin"
-msgstr ""
+msgstr "Moje prihlásenie"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "myHost"
@@ -2371,6 +2377,8 @@
"Enter 0 to use the default port. Default ports are 143 for IMAP4 and 993 for "
"IMAP4 over SSL."
msgstr ""
+"Vložte 0 pre použitie predvoleného portu. Predvolené porty sú 143 pre IMAP4 "
+"a 993 pre IMAP4 cez SSL."
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Use a secure connection (SSL)"
@@ -2413,13 +2421,15 @@
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Remove this account"
-msgstr ""
+msgstr "Odstrániť tento účet"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid ""
"Don't forget to enable IMAP (or POP) service from settings of your mail "
"account."
msgstr ""
+"Nezabudnite povoliť službu IMAP (alebo POP) v nastaveniach vášho poštového "
+"účtu."
#: ../mail/src/cd-mail-applet-config.c:230
msgid "Please choose an account type."
@@ -2503,6 +2513,8 @@
"No mail application is defined,\n"
"you can define it in the configuration panel of this module"
msgstr ""
+"Nie je definovana poštová aplikácia.\n"
+"Môžete ju definovať v konfiguračnom paneli tohto modulu."
#: ../mail/src/cd-mail-applet-notifications.c:147
msgid "Refresh a mail account"
@@ -2515,7 +2527,7 @@
#: ../mail/src/cd-mail-applet-notifications.c:161
#, c-format
msgid "Refresh %s"
-msgstr ""
+msgstr "Obnoviť %s"
#: ../mail/src/cd-mail-applet-notifications.c:167
msgid "Mark all emails as read"
@@ -2568,7 +2580,7 @@
#: ../musicPlayer/src/applet-draw.c:160
msgid "Song n°"
-msgstr ""
+msgstr "Skladba n°"
#: ../musicPlayer/src/applet-draw.c:176
msgid "Current song"
@@ -2607,7 +2619,7 @@
#: ../musicPlayer/src/applet-notifications.c:175
msgid "Choose a music player to control"
-msgstr ""
+msgstr "Vyberte prehrávač zvuku, ktorý chcete ovládať"
#: ../musicPlayer/src/applet-notifications.c:262
msgid "Find opened player"
@@ -2615,7 +2627,7 @@
#: ../musicPlayer/src/applet-notifications.c:266
msgid "Choose a player"
-msgstr ""
+msgstr "Vyberte prehrávač"
#: ../musicPlayer/src/applet-notifications.c:272
msgid "Previous"
@@ -2623,7 +2635,7 @@
#: ../musicPlayer/src/applet-notifications.c:272
msgid "scroll-up"
-msgstr ""
+msgstr "posunúť hore"
#: ../musicPlayer/src/applet-notifications.c:278
msgid "Play/Pause"
@@ -2639,7 +2651,7 @@
#: ../musicPlayer/src/applet-notifications.c:284
msgid "scroll-down"
-msgstr ""
+msgstr "posunúť dole"
#: ../musicPlayer/src/applet-notifications.c:289
msgid "Stop"
@@ -2718,44 +2730,44 @@
#: ../powermanager/src/powermanager-draw.c:130
msgid "Battery charged"
-msgstr ""
+msgstr "Batéria nabitá"
#: ../powermanager/src/powermanager-draw.c:152
msgid "Time before empty"
-msgstr ""
+msgstr "Čas do vybitia"
#: ../powermanager/src/powermanager-draw.c:152
msgid "Time before full"
-msgstr ""
+msgstr "Čas zostávajúci do úplného nabitia"
#: ../powermanager/src/powermanager-draw.c:209
msgid "Laptop on Battery."
-msgstr ""
+msgstr "Batéria prenosného počítača."
#: ../powermanager/src/powermanager-draw.c:210
#: ../powermanager/src/powermanager-draw.c:219
msgid "Battery charged at:"
-msgstr ""
+msgstr "Batéria nabitá na:"
#: ../powermanager/src/powermanager-draw.c:211
msgid "Estimated time before empty:"
-msgstr ""
+msgstr "Zostávajúci čas do vybitia:"
#: ../powermanager/src/powermanager-draw.c:218
msgid "Laptop on Charge."
-msgstr ""
+msgstr "Prenosný počítač sa nabíja."
#: ../powermanager/src/powermanager-draw.c:220
msgid "Estimated time before full:"
-msgstr ""
+msgstr "Zostávajúci čas do úplného nabitia:"
#: ../powermanager/src/powermanager-draw.c:227
msgid "Model"
-msgstr ""
+msgstr "Model"
#: ../powermanager/src/powermanager-draw.c:235
msgid "Maximum capacity"
-msgstr ""
+msgstr "Maximálna kapacita"
#: ../powermanager/src/powermanager-draw.c:240
msgid "No battery found."
@@ -2803,7 +2815,7 @@
#: ../powermanager/src/powermanager-menu-functions.c:88
msgid "Power statistics"
-msgstr ""
+msgstr "Štatistika napájania"
#: ../quick-browser/src/applet-init.c:29
msgid "Quick Browser"
@@ -2825,7 +2837,7 @@
#: ../quick-browser/src/applet-init.c:64
msgid "Show/hide the folder menu"
-msgstr ""
+msgstr "Zobraziť/Skryť ponuku priečinka"
#: ../quick-browser/src/applet-menu.c:107
#: ../quick-browser/src/applet-menu.c:116
@@ -2902,11 +2914,11 @@
#: ../shortcuts/src/applet-notifications.c:90
msgid "No disks or bookmarks were found."
-msgstr ""
+msgstr "Neboli nájdené žiadne disky alebo záložky."
#: ../shortcuts/src/applet-notifications.c:193
msgid "Enter a name for this bookmark:"
-msgstr ""
+msgstr "Vložte názov pre túto záložku:"
#: ../shortcuts/src/applet-notifications.c:249
msgid "Open Home directory"
@@ -3014,7 +3026,7 @@
#: ../slider/src/applet-notifications.c:270
msgid "Refresh images list"
-msgstr ""
+msgstr "Obnoviť zoznam obrázkov"
#: ../stack/src/applet-init.c:31
msgid "stack"
@@ -3086,11 +3098,11 @@
#: ../stack/src/applet-notifications.c:257
msgid "The file has been added to the stack."
-msgstr ""
+msgstr "Súbor bol pridaný do zásobníka."
#: ../stack/src/applet-notifications.c:258
msgid "The URL has been added to the stack."
-msgstr ""
+msgstr "URL bola pridaná do zásobníka."
#: ../switcher/src/applet-draw.c:597 ../switcher/src/applet-draw.c:604
#: ../switcher/src/applet-load-icons.c:53
@@ -3173,11 +3185,11 @@
#: ../systray/src/systray-init.c:41
msgid "Notification Area Old"
-msgstr ""
+msgstr "Stará oblasť upozornení"
#: ../systray/src/systray-init.c:65
msgid "Show/hide the systray"
-msgstr ""
+msgstr "Zobraziť/Skryť systray"
#: ../systray/src/systray-interface.c:70
msgid ""
@@ -3215,7 +3227,7 @@
#: ../terminal/src/terminal-init.c:59
msgid "Show/hide the terminal"
-msgstr ""
+msgstr "Zobraziť/Skryť terminál"
#: ../terminal/src/terminal-menu-functions.c:78
#: ../terminal/src/terminal-widget.c:420
@@ -3341,7 +3353,7 @@
#: ../weather/src/applet-config.c:126
msgid "Couldn't get the location code (is connection alive?)"
-msgstr ""
+msgstr "Nedá sa získať kód umiestnenia (máte funkčné pripojenie?)"
#: ../weather/src/applet-config.c:134
msgid "I couldn't find this location"
@@ -3349,7 +3361,7 @@
#: ../weather/src/applet-config.c:185
msgid "Searching the location code..."
-msgstr ""
+msgstr "Vyhľadávam kód umiestnenia..."
#: ../weather/src/applet-config.c:211
msgid ""
@@ -3432,7 +3444,7 @@
#: ../weather/src/applet-notifications.c:97
msgid "Show current conditions (middle-click)"
-msgstr ""
+msgstr "Zobraziť aktuálne počasie (stredné kliknutie)"
#: ../weather/src/applet-notifications.c:102
msgid "Open weather.com (double-click)"
@@ -3501,7 +3513,7 @@
#: ../weblets/src/applet-init.c:28
msgid "weblets"
-msgstr ""
+msgstr "weblety"
#: ../weblets/src/applet-init.c:31
msgid ""
@@ -4996,11 +5008,11 @@
#: ../Composite-Manager/data/messages:93
msgid "Image when composite is active:"
-msgstr ""
+msgstr "Obrázok pri aktivovanej kompozícii:"
#: ../Composite-Manager/data/messages:97
msgid "Image when composite is inactive:"
-msgstr ""
+msgstr "Obrázok pri neaktivovanej kompozícii:"
#: ../Composite-Manager/data/messages:99 ../Global-Menu/data/messages:89
#: ../RSSreader/data/messages:105 ../Status-Notifier/data/messages:117
@@ -5015,30 +5027,32 @@
"Let empty to use the default one. Alternatively, you can set any command you "
"want."
msgstr ""
+"Nechajte prázdne ak chcete použiť predvolené. Prípadne si môžete nastaviť "
+"ľubovoľný príkaz."
#: ../Composite-Manager/data/messages:103
msgid "Composite window-manager:"
-msgstr ""
+msgstr "Kompozitný správca okien:"
#: ../Composite-Manager/data/messages:105
#: ../Composite-Manager/data/messages:117
msgid "Compiz"
-msgstr ""
+msgstr "Compiz"
#: ../Composite-Manager/data/messages:107
#: ../Composite-Manager/data/messages:119
msgid "KWin"
-msgstr ""
+msgstr "KWin"
#: ../Composite-Manager/data/messages:109
#: ../Composite-Manager/data/messages:121
msgid "Xfwm"
-msgstr ""
+msgstr "Xfwm"
#: ../Composite-Manager/data/messages:111
#: ../Composite-Manager/data/messages:123
msgid "Metacity"
-msgstr ""
+msgstr "Metacity"
#: ../Composite-Manager/data/messages:115
msgid "Fallback window-manager:"
@@ -5046,7 +5060,7 @@
#: ../Composite-Manager/data/messages:125
msgid "Ask before switching:"
-msgstr ""
+msgstr "Spýtať sa pred prepnutím:"
#: ../Composite-Manager/data/messages:127 ../logout/data/messages:95
#: ../showDesktop/data/messages:115 ../slider/data/messages:123
@@ -5056,7 +5070,7 @@
#: ../Composite-Manager/data/messages:141
msgid "Shortkey to toggle the composite ON/OFF:"
-msgstr ""
+msgstr "Klávesová skratka na prepnutie kompozície ZAP/VYP:"
#: ../Dbus/data/messages:3
msgid "Let external applications pop up dialogs in the dock?"
@@ -5263,27 +5277,27 @@
#: ../Disks/data/messages:149
msgid "Fluidity of the transition between 2 values"
-msgstr ""
+msgstr ": Rýchlosť"
#: ../Disks/data/messages:151
msgid "Partitions monitored : Size"
-msgstr ""
+msgstr "Monitorovaná časť disku : Veľkosť"
#: ../Disks/data/messages:153
msgid "E.g. sda1, sdb5..."
-msgstr ""
+msgstr "napr. sda1, sdb5..."
#: ../Disks/data/messages:155
msgid "Disks monitored : Speed"
-msgstr ""
+msgstr "Monitorovanie disku : Rýchlosť"
#: ../Disks/data/messages:157
msgid "E.g. sda, sdb... Up to 5 values allowed"
-msgstr ""
+msgstr "Napr. sda, sdb... Povolená hodnota 5"
#: ../Disks/data/messages:159
msgid "Preferences"
-msgstr ""
+msgstr "Vlastnosti"
#: ../Disks/data/messages:161 ../Network-Monitor/data/messages:133
#: ../netspeed/data/messages:165
@@ -5292,7 +5306,7 @@
#: ../Disks/data/messages:163
msgid "System monitor command"
-msgstr ""
+msgstr "Príkaz sledovanie systému"
#: ../Doncky/data/messages:93
msgid "Specify the xml file to be used :"
@@ -5325,7 +5339,7 @@
#: ../Doncky/data/messages:109
msgid "Margin all around the desklet:"
-msgstr ""
+msgstr "Rozpätie celého deskletu:"
#: ../Doncky/data/messages:111
msgid "Use this to increase the space between the lines"
@@ -5333,7 +5347,7 @@
#: ../Doncky/data/messages:113
msgid "Space between lines:"
-msgstr ""
+msgstr "Priestor medzi linkami:"
#: ../Doncky/data/messages:115 ../RSSreader/data/messages:179
msgid "Background"
@@ -5390,7 +5404,7 @@
#: ../Folders/data/messages:7
msgid "Let empty to use the name of the folder."
-msgstr ""
+msgstr "Ponechajte prázdne ak chcete použiť názov priečinka."
#: ../Folders/data/messages:11
msgid "How to render the icon :"
@@ -5424,7 +5438,7 @@
#: ../Folders/data/messages:109
msgid "Show folder's content?"
-msgstr ""
+msgstr "Zobraziť obsah priečinka?"
#: ../Folders/data/messages:111
msgid "Sort files by :"
@@ -5493,11 +5507,11 @@
#: ../GMenu/data/messages:115
msgid "Session management buttons"
-msgstr ""
+msgstr "Tlačítka pre ovládanie sedenia"
#: ../GMenu/data/messages:117
msgid "Show Logout and/or Shutdown : "
-msgstr ""
+msgstr "Zobraziť tlačítko Odhlásiť a/alebo Vypnúť : "
#: ../Global-Menu/data/messages:87
msgid ""
@@ -5521,51 +5535,51 @@
#: ../Global-Menu/data/messages:97
msgid "Shortkey to pop up the menu"
-msgstr ""
+msgstr "Klávesová skratka na vyskovacie okno ponuky"
#: ../Global-Menu/data/messages:99
msgid "Pop up the menu at mouse position"
-msgstr ""
+msgstr "Vyskakovacia ponuka na ukazovateli myši"
#: ../Global-Menu/data/messages:101
msgid "Compact mode"
-msgstr ""
+msgstr "Kompaktný mód"
#: ../Global-Menu/data/messages:103
msgid "Order of the buttons: "
-msgstr ""
+msgstr "Poradie tlačítok: "
#: ../Global-Menu/data/messages:105
msgid "Auto"
-msgstr ""
+msgstr "Automaticky"
#: ../Global-Menu/data/messages:107
msgid "Close button at the end"
-msgstr ""
+msgstr "Vyberte posledné tlačítko"
#: ../Global-Menu/data/messages:109
msgid "Close button at first"
-msgstr ""
+msgstr "Vyberte prvé tlačítko"
#: ../Global-Menu/data/messages:111
msgid "Image for the 'minimize' button"
-msgstr ""
+msgstr "Obrázok pre tlačítko \"minimalizovanie\""
#: ../Global-Menu/data/messages:113
msgid "Image for the 'maximize' button"
-msgstr ""
+msgstr "Obrázok pre tlačítko \"maximalizovanie\""
#: ../Global-Menu/data/messages:115
msgid "Image for the 'restore' button"
-msgstr ""
+msgstr "Obrázok pre tlačítko \"obnoviť\""
#: ../Global-Menu/data/messages:117
msgid "Image for the 'close' button"
-msgstr ""
+msgstr "Obrázok pre tlačítko \"zavrieť\""
#: ../Impulse/data/messages:93
msgid "Animation of the icons:"
-msgstr ""
+msgstr "Animácia ikôn:"
#: ../Impulse/data/messages:95
msgid ""
@@ -5575,7 +5589,7 @@
#: ../Impulse/data/messages:97
msgid "Stop animations sooner?"
-msgstr ""
+msgstr "Zastaviť najskôr animácie?"
#: ../Impulse/data/messages:99 ../alsaMixer/data/messages:101
msgid "Control"
@@ -5584,19 +5598,19 @@
#: ../Impulse/data/messages:101
msgid ""
"It's the sensitivity in order to know if the animation is played or not."
-msgstr ""
+msgstr "Je to citlivosť, aby aby zistilo či sa animácia prehrá, alebo nie."
#: ../Impulse/data/messages:103
msgid "Sensitivity of the animation:"
-msgstr ""
+msgstr "Citlivosť animácie:"
#: ../Impulse/data/messages:105 ../Impulse/data/messages:115
msgid "More"
-msgstr ""
+msgstr "Viac"
#: ../Impulse/data/messages:107 ../Impulse/data/messages:113
msgid "Less"
-msgstr ""
+msgstr "Menej"
#: ../Impulse/data/messages:109
msgid "in ms."
@@ -5604,27 +5618,27 @@
#: ../Impulse/data/messages:111
msgid "Time between two animations:"
-msgstr ""
+msgstr "Čas medzi dvomi animáciami:"
#: ../Impulse/data/messages:117
msgid "Action at Startup"
-msgstr ""
+msgstr "Akcia pri spustení"
#: ../Impulse/data/messages:119
msgid "Launch automatically at startup?"
-msgstr ""
+msgstr "Spustiť automaticky pri spustení?"
#: ../Impulse/data/messages:121
msgid "Hide the icon?"
-msgstr ""
+msgstr "Skryť ikonu?"
#: ../Impulse/data/messages:127
msgid "Image when the applet is active:"
-msgstr ""
+msgstr "Obrázok pri aktívnom aplete:"
#: ../Impulse/data/messages:131
msgid "Image when the applet is inactive:"
-msgstr ""
+msgstr "Obrázok pri neaktívnom aplete:"
#: ../Impulse/data/messages:135 ../musicPlayer/data/messages:205
#: ../tomboy/data/messages:21
@@ -5633,15 +5647,15 @@
#: ../Impulse/data/messages:137
msgid "PulseAudio"
-msgstr ""
+msgstr "PulseAudio"
#: ../Impulse/data/messages:139
msgid "0 in most cases"
-msgstr ""
+msgstr "0 vo väčšine prípadov"
#: ../Impulse/data/messages:141
msgid "Index of the source:"
-msgstr ""
+msgstr "Zoznam zdrojov:"
#: ../Messaging-Menu/data/messages:13 ../Network-Monitor/data/messages:15
#: ../Status-Notifier/data/messages:17 ../System-Monitor/data/messages:13
@@ -5663,7 +5677,7 @@
#: ../slider/data/messages:17 ../weather/data/messages:19
#: ../wifi/data/messages:17
msgid "With default background"
-msgstr ""
+msgstr "S predvoleným pozadím"
#: ../Messaging-Menu/data/messages:19 ../Network-Monitor/data/messages:21
#: ../Status-Notifier/data/messages:23 ../System-Monitor/data/messages:19
@@ -5674,7 +5688,7 @@
#: ../slider/data/messages:19 ../weather/data/messages:21
#: ../wifi/data/messages:19
msgid "With custom background"
-msgstr ""
+msgstr "S vlastným pozadím"
#: ../Messaging-Menu/data/messages:21 ../Network-Monitor/data/messages:23
#: ../Status-Notifier/data/messages:25 ../System-Monitor/data/messages:21
@@ -5685,7 +5699,7 @@
#: ../slider/data/messages:21 ../weather/data/messages:23
#: ../wifi/data/messages:21
msgid "Background color to add in this case"
-msgstr ""
+msgstr "Farba pozadia pridaná v tomto prípade"
#: ../Messaging-Menu/data/messages:99
msgid ""
@@ -6018,15 +6032,15 @@
#: ../Recent-Events/data/messages:93
msgid "Shortkey to show/hide the search dialog"
-msgstr ""
+msgstr "Klávesová skratka na zobrazenie/skrytie vyhľadávania"
#: ../Recent-Events/data/messages:95
msgid "Max number of results to show"
-msgstr ""
+msgstr "Maximálny počet zobrazených výsledkov"
#: ../Remote-Control/data/messages:3
msgid "Shortkey to trigger the applet:"
-msgstr ""
+msgstr "Klávesová skratka na spustenie apletu:"
#: ../Remote-Control/data/messages:5
msgid "Dock to control initially"
@@ -6243,15 +6257,15 @@
#: ../Status-Notifier/data/messages:105
msgid "Hide inactive items"
-msgstr ""
+msgstr "Skryť neaktívne položky"
#: ../Status-Notifier/data/messages:107
msgid "How to display items:"
-msgstr ""
+msgstr "Ako zobraziť položky:"
#: ../Status-Notifier/data/messages:109
msgid "Compact"
-msgstr ""
+msgstr "Kompaktný"
#: ../Status-Notifier/data/messages:111
msgid "Sub-dock"
@@ -6259,7 +6273,7 @@
#: ../Status-Notifier/data/messages:113
msgid "Allow the icon to automatically resize itself?"
-msgstr ""
+msgstr "Umožniť automatickú zmenu veľkosti ikony?"
#: ../Status-Notifier/data/messages:115
msgid "Number of lines to pack items in:"
@@ -6299,11 +6313,11 @@
#: ../System-Monitor/data/messages:155
msgid "Show CPU temperature?"
-msgstr ""
+msgstr "Zobraziť teplotu procesora?"
#: ../System-Monitor/data/messages:157
msgid "Show fan speed?"
-msgstr ""
+msgstr "Zobraziť rýchlosť ventilátora?"
#: ../System-Monitor/data/messages:159
msgid "Show free memory instead of used memory?"
@@ -6323,11 +6337,11 @@
#: ../System-Monitor/data/messages:177
msgid "Alerts"
-msgstr ""
+msgstr "Upozornenia"
#: ../System-Monitor/data/messages:179
msgid "Show alerts?"
-msgstr ""
+msgstr "Zobraziť upozornenia?"
#: ../System-Monitor/data/messages:181
msgid "Play a sound when displaying warning?"
@@ -6339,7 +6353,7 @@
#: ../System-Monitor/data/messages:185
msgid "System-Monitor"
-msgstr ""
+msgstr "Sledovanie systému"
#: ../System-Monitor/data/messages:191
msgid ""
@@ -6447,7 +6461,7 @@
#: ../Xgamma/data/messages:7
msgid "Leave empty to display the current luminosity."
-msgstr ""
+msgstr "Ponechajte prázdne pre zobrazenie s aktuálnym jasom."
#: ../Xgamma/data/messages:95 ../alsaMixer/data/messages:105
msgid "Variation for 1 mouse scroll, in %:"
@@ -6463,11 +6477,11 @@
#: ../Xgamma/data/messages:101
msgid "Shortkey to increase the brightness:"
-msgstr ""
+msgstr "Klávesová skratka pre zvýšenie jasu:"
#: ../Xgamma/data/messages:103
msgid "Shortkey to decrease the brightness:"
-msgstr ""
+msgstr "Klávesová skratka pre zníženie jasu:"
#: ../alsaMixer/data/messages:7 ../alsaMixer/data/messages:155
msgid "Leave empty to use the default sound card."
@@ -6633,7 +6647,7 @@
#: ../clock/data/messages:151
msgid "Use a custom font"
-msgstr ""
+msgstr "Použiť vlastné písmo"
#: ../clock/data/messages:153 ../keyboard-indicator/data/messages:111
msgid "Font:"
@@ -6641,19 +6655,19 @@
#: ../clock/data/messages:157
msgid "Layout of the text:"
-msgstr ""
+msgstr "Rozloženie textu:"
#: ../clock/data/messages:159 ../switcher/data/messages:95
msgid "Automatic"
-msgstr ""
+msgstr "Automaticky"
#: ../clock/data/messages:161
msgid "On 1 line"
-msgstr ""
+msgstr "Na 1 riadok"
#: ../clock/data/messages:163
msgid "On 2 lines"
-msgstr ""
+msgstr "Na 2 riadok"
#: ../clock/data/messages:165
msgid "Ratio to apply on text :"
@@ -6762,15 +6776,15 @@
#: ../dnd2share/data/messages:113
msgid "Tiny-URL"
-msgstr ""
+msgstr "Tiny-URL"
#: ../dnd2share/data/messages:115
msgid "Shorter-Link"
-msgstr ""
+msgstr "Skrátený odkaz"
#: ../dnd2share/data/messages:117
msgid "Use the tiny URL by default?"
-msgstr ""
+msgstr "Použiť tiny URL ako predvolenú?"
#: ../dnd2share/data/messages:119
msgid "in KB/s - 0 means unlimited"
@@ -6799,19 +6813,19 @@
#: ../dnd2share/data/messages:131
msgid "Pastebin.com"
-msgstr ""
+msgstr "Pastebin.com"
#: ../dnd2share/data/messages:133
msgid "Paste-ubuntu.com"
-msgstr ""
+msgstr "Paste-ubuntu.com"
#: ../dnd2share/data/messages:135
msgid "Pastebin.mozilla.org"
-msgstr ""
+msgstr "Pastebin.mozilla.org"
#: ../dnd2share/data/messages:137
msgid "Codepad.org"
-msgstr ""
+msgstr "Codepad.org"
#: ../dnd2share/data/messages:139
msgid "Preferred site for images hosting :"
@@ -6851,7 +6865,7 @@
#: ../dnd2share/data/messages:163
msgid "UbuntuOne"
-msgstr ""
+msgstr "UbuntuOne"
#: ../dnd2share/data/messages:165 ../dnd2share/data/messages:169
#: ../dnd2share/data/messages:173 ../dnd2share/data/messages:177
@@ -6862,19 +6876,19 @@
#: ../dnd2share/data/messages:167
msgid "Custom script for text upload :"
-msgstr ""
+msgstr "Vlastný skript pre odoslanie textu:"
#: ../dnd2share/data/messages:171
msgid "Custom script for image upload :"
-msgstr ""
+msgstr "Vlastný skript pre odoslanie obrázku:"
#: ../dnd2share/data/messages:175
msgid "Custom script for video upload :"
-msgstr ""
+msgstr "Vlastný skript pre odoslanie videa:"
#: ../dnd2share/data/messages:179
msgid "Custom script for file upload :"
-msgstr ""
+msgstr "Vlastný skript pre odoslanie súboru:"
#: ../dnd2share/data/messages:181
msgid "Leave empty to upload files into '~/Dropbox/Public'."
@@ -6918,7 +6932,7 @@
#: ../dock-rendering/data/messages:19
msgid "Physically separate groups of icons"
-msgstr ""
+msgstr "Fyzicky oddelené skupiny ikôn"
#: ../dock-rendering/data/messages:21
msgid "At 1, the icons will have the same size as in other views."
@@ -6930,11 +6944,11 @@
#: ../dock-rendering/data/messages:25
msgid "smaller icons"
-msgstr ""
+msgstr "menšie ikony"
#: ../dock-rendering/data/messages:27
msgid "normal icons"
-msgstr ""
+msgstr "normálne ikony"
#: ../dock-rendering/data/messages:31
msgid "Grid"
@@ -6954,15 +6968,15 @@
#: ../dock-rendering/data/messages:39
msgid "Maximum size of the dock:"
-msgstr ""
+msgstr "Maximálna veľkosť panela:"
#: ../dock-rendering/data/messages:41
msgid "Small"
-msgstr ""
+msgstr "Malý"
#: ../dock-rendering/data/messages:43
msgid "Full screen"
-msgstr ""
+msgstr "Na celú obrazovku"
#: ../dock-rendering/data/messages:45
msgid "Zoom when mouse hovers an icon:"
@@ -7022,15 +7036,15 @@
#: ../dock-rendering/data/messages:79
msgid "Scroll bar"
-msgstr ""
+msgstr "Posuvník"
#: ../dock-rendering/data/messages:81
msgid "Color of the scroll bar's outline:"
-msgstr ""
+msgstr "Farba obrysu posuvníka:"
#: ../dock-rendering/data/messages:83
msgid "Color of the scroll bar's inside:"
-msgstr ""
+msgstr "Farba vo vnútri posuvníka:"
#: ../dock-rendering/data/messages:85
msgid "Color of the scroll grip:"
@@ -7189,7 +7203,7 @@
#: ../dustbin/data/messages:103
msgid "Number of files"
-msgstr ""
+msgstr "Počet súborov"
#: ../dustbin/data/messages:105
msgid "Total number of files"
@@ -7387,23 +7401,23 @@
#: ../logout/data/messages:93
msgid "Action"
-msgstr ""
+msgstr "Operácia"
#: ../logout/data/messages:103
msgid "Shortkey to lock the screen"
-msgstr ""
+msgstr "Klávesová skratka na uzamknutie obrazovky"
#: ../logout/data/messages:105
msgid "Shortkey to show the menu"
-msgstr ""
+msgstr "Klávessová skratka pre zobrazenie ponuky"
#: ../logout/data/messages:107
msgid "Demand confirmation before closing"
-msgstr ""
+msgstr "Vyžiadať potvrdenie pred ukončením"
#: ../logout/data/messages:109
msgid "Commands"
-msgstr ""
+msgstr "Príkazy"
#: ../logout/data/messages:113
msgid "User-defined command to execute for logout:"
@@ -7430,16 +7444,17 @@
#: ../logout/data/messages:123
msgid "Icon image name to use when the system has to be rebooted:"
-msgstr ""
+msgstr "Názov obrázku ikony použitej pri reštarte systému:"
#: ../logout/data/messages:125
msgid ""
"Display this image as an emblem or replace applet's icon with this image?"
msgstr ""
+"Zobraziť tento obrázok ako znak, alebo nahradiť ikonu apletu týmto obrázkom?"
#: ../logout/data/messages:127
msgid "Emblem"
-msgstr ""
+msgstr "Znak"
#: ../mail/data/messages:99
msgid ""
@@ -7486,11 +7501,11 @@
#: ../mail/data/messages:123
msgid "Action on new mail"
-msgstr ""
+msgstr "Akcia pri novej pošte"
#: ../mail/data/messages:125
msgid "Play sound when a new e-mail is received?"
-msgstr ""
+msgstr "Prehrať zvuk pri obdržaní novej správy?"
#: ../mail/data/messages:129
msgid "Name of the file for the \"new mail\" sound :"
@@ -7514,7 +7529,7 @@
#: ../mail/data/messages:141
msgid "Animation when new message arrives:"
-msgstr ""
+msgstr "Animácia pri novej správe:"
#: ../mail/data/messages:145
msgid "Mail application"
@@ -7522,7 +7537,7 @@
#: ../mail/data/messages:147
msgid "for instance \"thunderbird\" or \"firefox mail.google.com\""
-msgstr ""
+msgstr "napr \"Thunderbird\" alebo \"firefox mail.google.com\""
#: ../mail/data/messages:149
msgid "Preferred mail application to launch on left-click :"
@@ -7530,7 +7545,7 @@
#: ../mail/data/messages:151
msgid "Add a mail account (you've to launch the applet)"
-msgstr ""
+msgstr "Pridať poštový účet (môžete si spustiť applet)"
#: ../mail/data/messages:153
msgid "The new account will be created with the specified type and name."
@@ -7588,7 +7603,7 @@
#: ../musicPlayer/data/messages:117
msgid "GMusicBrowser"
-msgstr ""
+msgstr "GMusicBrowser"
#: ../musicPlayer/data/messages:119
msgid "Guayadeque"
@@ -7650,11 +7665,11 @@
#: ../musicPlayer/data/messages:145
msgid "Next/previous song"
-msgstr ""
+msgstr "Daľšia/Predchádzajúca skladba"
#: ../musicPlayer/data/messages:147
msgid "Control the volume"
-msgstr ""
+msgstr "Ovládanie hlasitosti"
#: ../musicPlayer/data/messages:149
msgid "Action on music change"
@@ -7752,7 +7767,7 @@
#: ../powermanager/data/messages:7
msgid "Leave empty to display the current status information."
-msgstr ""
+msgstr "Ponechajte prázdne pre zobrazenie informácie o aktuálnom stave."
#: ../powermanager/data/messages:141
msgid "'On-battery' icon filename:"
@@ -7776,7 +7791,7 @@
#: ../powermanager/data/messages:169
msgid "Timelength"
-msgstr ""
+msgstr "časová dĺžka"
#: ../powermanager/data/messages:173
msgid "Emblem icon's filename when on charge:"
@@ -7784,7 +7799,7 @@
#: ../powermanager/data/messages:175
msgid "Hide the icon when not on battery?"
-msgstr ""
+msgstr "Skryť ikonu, ak nie je používaná batéria?"
#: ../powermanager/data/messages:177
msgid "Notification"
@@ -8027,7 +8042,7 @@
#: ../slider/data/messages:113
msgid "Read all images properties on startup?"
-msgstr ""
+msgstr "Načítať všetky vlastnosti obrázkov pri spustení?"
#: ../slider/data/messages:119 ../slider/data/messages:125
msgid "play/pause"
@@ -8039,7 +8054,7 @@
#: ../slider/data/messages:129
msgid "open parent folder"
-msgstr ""
+msgstr "Otvoriť nadradený priečinok"
#: ../slider/data/messages:133
msgid "Sliding delay:"
@@ -8099,7 +8114,7 @@
#: ../slider/data/messages:165
msgid "Add a background to the image?"
-msgstr ""
+msgstr "Pridať pozadie do obrázku?"
#: ../slider/data/messages:173
msgid ""
@@ -8113,7 +8128,7 @@
#: ../slider/data/messages:177
msgid "Frame width:"
-msgstr ""
+msgstr "Šírka rámčeka:"
#: ../slider/data/messages:179
msgid "Gives better image rendering."
@@ -8157,7 +8172,7 @@
#: ../stack/data/messages:117
msgid "Separate the items by type (file/web page/text)"
-msgstr ""
+msgstr "Oddeliť položky podľa typu (súbory/webové stránky/text)"
#: ../stack/data/messages:119
msgid ""
@@ -8209,7 +8224,7 @@
#: ../switcher/data/messages:97
msgid "On a single line"
-msgstr ""
+msgstr "Na jednom riadku"
#: ../switcher/data/messages:99
msgid "Map wallpaper to icons?"
=== modified file 'po/sv.po'
--- po/sv.po 2012-04-16 16:47:20 +0000
+++ po/sv.po 2012-06-19 14:00:32 +0000
@@ -8,14 +8,14 @@
"Project-Id-Version: 1.0.0\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:08+0000\n"
-"Last-Translator: Matthieu Baerts <matttbe@xxxxxxxxx>\n"
+"PO-Revision-Date: 2012-04-17 18:09+0000\n"
+"Last-Translator: Tofe <Unknown>\n"
"Language-Team: Cairo-Dock\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:34+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-04-18 04:55+0000\n"
+"X-Generator: Launchpad (build 15108)\n"
"X-Poedit-Country: SWEDEN\n"
"Language: sv\n"
"X-Poedit-Language: Swedish\n"
@@ -558,31 +558,31 @@
#: ../Folders/src/applet-notifications.c:116
msgid "Properties:"
-msgstr ""
+msgstr "Egenskaper:"
#: ../Folders/src/applet-notifications.c:136 ../Folders/data/messages:117
msgid "Size"
-msgstr ""
+msgstr "Storlek"
#: ../Folders/src/applet-notifications.c:136
msgid "bytes"
-msgstr ""
+msgstr "bytes"
#: ../Folders/src/applet-notifications.c:150
msgid "Last Modification"
-msgstr ""
+msgstr "Senaste Förändring"
#: ../Folders/src/applet-notifications.c:159
msgid "Mime Type"
-msgstr ""
+msgstr "Mime typ"
#: ../Folders/src/applet-notifications.c:173
msgid "User ID"
-msgstr ""
+msgstr "Användar ID"
#: ../Folders/src/applet-notifications.c:173
msgid "Group ID"
-msgstr ""
+msgstr "Grupp ID"
#: ../Folders/src/applet-notifications.c:183
msgid "Permissions"
@@ -590,7 +590,7 @@
#: ../Folders/src/applet-notifications.c:183
msgid "Read"
-msgstr ""
+msgstr "Läsa"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -598,7 +598,7 @@
#: ../System-Monitor/data/messages:115 ../alsaMixer/data/messages:147
#: ../netspeed/data/messages:115 ../slider/data/messages:169
msgid "Yes"
-msgstr ""
+msgstr "Ja"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -622,7 +622,7 @@
#: ../Folders/src/applet-notifications.c:184
msgid "Write"
-msgstr ""
+msgstr "Skriva"
#: ../Folders/src/applet-notifications.c:185
#: ../Scooby-Do/src/applet-backend-command.c:95
@@ -1618,7 +1618,7 @@
#: ../alsaMixer/src/applet-draw.c:64
msgid "Volume"
-msgstr ""
+msgstr "Volym"
#: ../alsaMixer/src/applet-init.c:34
msgid ""
@@ -1753,7 +1753,7 @@
#: ../clock/src/applet-config.c:36
msgid "E.g.:"
-msgstr ""
+msgstr "T.ex.:"
#: ../clock/src/applet-config.c:505 ../weather/src/applet-config.c:207
msgid "Search for your location :"
@@ -1761,7 +1761,7 @@
#: ../clock/src/applet-init.c:35
msgid "clock"
-msgstr ""
+msgstr "klocka"
#: ../clock/src/applet-init.c:38
msgid ""
@@ -1806,31 +1806,31 @@
#: ../clock/src/applet-task-editor.c:156
msgid "Add a new task"
-msgstr ""
+msgstr "Lägg till en ny aktivitet"
#: ../clock/src/applet-task-editor.c:177
msgid "Delete this task"
-msgstr ""
+msgstr "Ta bort denna aktivitet"
#: ../clock/src/applet-task-editor.c:215
msgid "Don't repeat"
-msgstr ""
+msgstr "Upprepa inte"
#: ../clock/src/applet-task-editor.c:221
msgid "Each month"
-msgstr ""
+msgstr "Varje månad"
#: ../clock/src/applet-task-editor.c:227
msgid "Each year"
-msgstr ""
+msgstr "Varje år"
#: ../clock/src/applet-task-editor.c:350
msgid "each month"
-msgstr ""
+msgstr "varje månad"
#: ../clock/src/applet-task-editor.c:353
msgid "each year"
-msgstr ""
+msgstr "varje år"
#: ../clock/src/applet-task-editor.c:392
msgid "Right-click to add a new task."
@@ -1839,13 +1839,13 @@
#: ../clock/src/applet-task-editor.c:398 ../musicPlayer/src/applet-draw.c:153
#: ../RSSreader/data/messages:135
msgid "Title"
-msgstr ""
+msgstr "Titel"
#: ../clock/src/applet-task-editor.c:405
#: ../dnd2share/src/applet-notifications.c:387 ../Doncky/data/messages:97
#: ../RSSreader/data/messages:151
msgid "Text"
-msgstr ""
+msgstr "Text"
#: ../clock/src/applet-task-editor.c:412
msgid "Time"
@@ -1861,11 +1861,11 @@
#: ../clock/src/applet-timer.c:58
msgid "1mn"
-msgstr ""
+msgstr "1min"
#: ../clock/src/applet-timer.c:63
msgid "1h"
-msgstr ""
+msgstr "1 timme"
#: ../clock/src/applet-timer.c:86
msgid "The following task was scheduled at"
@@ -1914,7 +1914,7 @@
#: ../desklet-rendering/src/rendering-desklet-decorations.c:81
msgid "dark"
-msgstr ""
+msgstr "dunkel"
#: ../desklet-rendering/src/rendering-desklet-decorations.c:89
msgid "clear"
=== modified file 'po/uk.po'
--- po/uk.po 2012-04-16 16:47:20 +0000
+++ po/uk.po 2012-06-19 14:00:32 +0000
@@ -8,14 +8,14 @@
"Project-Id-Version: cairo-dock-plug-ins\n"
"Report-Msgid-Bugs-To: fabounet@xxxxxxxxxxxx\n"
"POT-Creation-Date: 2012-04-12 00:33+0000\n"
-"PO-Revision-Date: 2012-04-12 03:33+0000\n"
-"Last-Translator: Maks Mokriev <mcree@xxxxxxx>\n"
+"PO-Revision-Date: 2012-06-14 19:57+0000\n"
+"Last-Translator: ma$terok <Unknown>\n"
"Language-Team: Ukrainian <uk@xxxxxx>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2012-04-13 05:34+0000\n"
-"X-Generator: Launchpad (build 15070)\n"
+"X-Launchpad-Export-Date: 2012-06-15 04:45+0000\n"
+"X-Generator: Launchpad (build 15414)\n"
"Language: uk\n"
#: ../Animated-icons/src/applet-init.c:32
@@ -130,7 +130,7 @@
#: ../Cairo-Penguin/src/applet-notifications.c:39
msgid "I'm your father!"
-msgstr "Я твій тато!"
+msgstr "Я твій батько!"
#: ../Cairo-Penguin/src/applet-notifications.c:40
msgid ""
@@ -142,7 +142,7 @@
#: ../Cairo-Penguin/src/applet-notifications.c:41
msgid "For Aiur!"
-msgstr "За Аіура!"
+msgstr "За Азерот!"
#: ../Cairo-Penguin/src/applet-notifications.c:118
msgid "Wake up"
@@ -191,19 +191,19 @@
#: ../Clipper/src/applet-init.c:72
msgid "Pop-up the items menu"
-msgstr ""
+msgstr "Елементи спливаючого меню"
#: ../Clipper/src/applet-notifications.c:33
msgid "The clipboard history is empty."
-msgstr ""
+msgstr "Історія буфера обміну порожня"
#: ../Clipper/src/applet-notifications.c:89
msgid "Clear clipboard History"
-msgstr ""
+msgstr "Очистити історію буфера обміну"
#: ../Clipper/src/applet-notifications.c:91
msgid "Paste all copied items"
-msgstr ""
+msgstr "Вставити все скопійовані елементи"
#: ../Clipper/src/applet-notifications.c:99
msgid ""
@@ -220,7 +220,7 @@
#: ../Composite-Manager/src/applet-composite-manager.c:421
#: ../Composite-Manager/src/applet-composite-manager.c:436
msgid "No compositor is available."
-msgstr "Відсутній композитор."
+msgstr "Композитний менеджер не доступний."
#: ../Composite-Manager/src/applet-composite-manager.c:444
#: ../Composite-Manager/src/applet-composite-manager.c:459
@@ -264,16 +264,16 @@
#: ../Composite-Manager/src/applet-init.c:52
msgid "Toggle the composite ON/OFF"
-msgstr ""
+msgstr "Перемикач композитності ON/OFF"
#: ../Composite-Manager/src/applet-notifications.c:43
msgid "Toggle composite?"
-msgstr "Перемикати композитність"
+msgstr "Перемикнути композитність?"
#: ../Composite-Manager/src/applet-notifications.c:120
#: ../Composite-Manager/data/messages:129
msgid "Edit Window-Manager settings"
-msgstr "Редагувати налаштування Менеджера вікон"
+msgstr "Налаштувати віконний менеджер"
#: ../Composite-Manager/src/applet-notifications.c:120
#: ../Composite-Manager/src/applet-notifications.c:127
@@ -318,7 +318,7 @@
#: ../Composite-Manager/data/messages:133 ../showDesktop/data/messages:103
#: ../showDesktop/data/messages:117 ../switcher/data/messages:113
msgid "Show desktop"
-msgstr "Показувати стільницю"
+msgstr "Показати стільницю"
#: ../Composite-Manager/src/applet-notifications.c:145
#: ../showDesktop/src/applet-notifications.c:177
@@ -341,7 +341,7 @@
#: ../Composite-Manager/data/messages:139 ../showDesktop/data/messages:109
#: ../showDesktop/data/messages:123
msgid "Show the Widget Layer"
-msgstr "Показувати шар віджетів"
+msgstr "Показати шар віджетів"
#: ../Dbus/src/applet-init.c:36
msgid ""
@@ -454,6 +454,39 @@
" - Find actions : left, middle click, drop and wheel.\n"
" - Fill menu with actions.\n"
msgstr ""
+"<b><i>Монітор швидкості дисків і розділів</i></b>.\n"
+"\n"
+"Цей аплет показує інформацію про диски. Ви можете активувати обидві опції, "
+"але зручніше коли ви будете використовувати два чи більше примірника "
+"аплету.\n"
+"Використання обох опції в одному аплеті може викликати проблему з "
+"відображенням швидкості і вона не буде зменшуватися.\n"
+"\n"
+"<b>Швидкість розділів</b> : Показує швидкість передачі даних. До 10-ти "
+"розділів\n"
+" Для моніторингу, вам необхідно вказати точки монтування кожного розділу, "
+"наприклад \"/\" чи \"/home\"\n"
+" Для зручності спостереження використовуйте частоту оновлення 30 чи 60 "
+"секунд з короткою затримкою чи взагалі без затримки.\n"
+"\n"
+"<b>Швидкість диску</b> : Показує швидкість передачі даних. До 5-ти дисків\n"
+" Для моніторингу, вам необхідно пов'язати імена дисків з іменами пристроїв, "
+"наприклад sda чи sdb\n"
+" Для зручності побудови графіка використовуйте частоту оновлення 2 чи 3 "
+"секунди без затримки.\n"
+"\n"
+"В наступному релізі планується зробити :\n"
+" <u>Вільне місце :</u>\n"
+" - Спливаючі повідомлення з докладною інформацією.\n"
+" - Можливість редагувати мітки ?\n"
+" <u>Швидкість :</u>\n"
+" - Варіант для всіх дисків.\n"
+" - Спливаюча інформація про диски, щоб знати, що додати до списку.\n"
+" - Можливість редагувати мітки ?\n"
+" - Отримати реальний розмір блоку на дисках\n"
+" <u>Глобально</u>\n"
+" - Додати дії : клік лівою та середньою кнопкою, перетягування і обертання.\n"
+" - Заповнити меню дій.\n"
#: ../Disks/src/applet-notifications.c:69
#: ../System-Monitor/src/applet-init.c:35
@@ -473,8 +506,9 @@
" - NEED TO BE DETACHED FROM THE DOCK TO WORK !\n"
" - Middle-clic to reload values"
msgstr ""
-"Цей аплет дозволяє вам питати тексти та слідкувати за вашою системою\n"
-"з \"текстовим десклетом\".\n"
+"Цей аплет призначений для виведення текстів та слідкування за вашою "
+"системою\n"
+"з допомогою \"текстового десклета\".\n"
" - ДЛЯ РОБОТИ ПОВИНЕН БУТИ ВІДОКРЕМЛЕНИМ ВІД ПАНЕЛІ!\n"
" - Середнє клацання оновлює значення"
@@ -496,7 +530,7 @@
" - or just drop a folder into the dock\n"
"Middle-click on the main icon opens the folder.\n"
msgstr ""
-"Цей аплет імпортує теки всередині панелі\n"
+"Цей аплет імпортує вміст теки на панель\n"
"Можна мати кілька копій цього аплету, по одному для кожної теки.\n"
"Щоб додати теку на панель:\n"
" - активуйте аплет, відкрийте його панель налаштування та виберіть теку\n"
@@ -515,7 +549,7 @@
#: ../Folders/src/applet-notifications.c:116
msgid "Properties:"
-msgstr ""
+msgstr "Властивості:"
#: ../Folders/src/applet-notifications.c:136 ../Folders/data/messages:117
msgid "Size"
@@ -523,31 +557,31 @@
#: ../Folders/src/applet-notifications.c:136
msgid "bytes"
-msgstr ""
+msgstr "байт"
#: ../Folders/src/applet-notifications.c:150
msgid "Last Modification"
-msgstr ""
+msgstr "Остання модифікація"
#: ../Folders/src/applet-notifications.c:159
msgid "Mime Type"
-msgstr ""
+msgstr "Тип Mime"
#: ../Folders/src/applet-notifications.c:173
msgid "User ID"
-msgstr ""
+msgstr "ІД користувача"
#: ../Folders/src/applet-notifications.c:173
msgid "Group ID"
-msgstr ""
+msgstr "ID групи"
#: ../Folders/src/applet-notifications.c:183
msgid "Permissions"
-msgstr ""
+msgstr "Права"
#: ../Folders/src/applet-notifications.c:183
msgid "Read"
-msgstr ""
+msgstr "Читання"
#: ../Folders/src/applet-notifications.c:184
#: ../Folders/src/applet-notifications.c:185
@@ -579,12 +613,12 @@
#: ../Folders/src/applet-notifications.c:184
msgid "Write"
-msgstr ""
+msgstr "Запис"
#: ../Folders/src/applet-notifications.c:185
#: ../Scooby-Do/src/applet-backend-command.c:95
msgid "Execute"
-msgstr "Виконати"
+msgstr "Виконання"
#: ../Folders/src/applet-notifications.c:211
#, c-format
@@ -700,7 +734,7 @@
#: ../Folders/src/applet-notifications.c:529
msgid "Do you want to import the content of the folder too?"
-msgstr "Також імпортувати містиме каталогу?"
+msgstr "Також імпортувати вміст каталогу?"
#: ../GMenu/src/applet-init.c:33
msgid ""
@@ -722,15 +756,15 @@
#: ../GMenu/src/applet-init.c:66
msgid "Show/hide the Applications menu"
-msgstr ""
+msgstr "Показати/Приховати меню програм"
#: ../GMenu/src/applet-init.c:71
msgid "Show/hide the quick-launch dialog"
-msgstr ""
+msgstr "Показати/Приховати вікно швидкого запуску"
#: ../GMenu/src/applet-menu-callbacks.c:218 ../GMenu/data/messages:121
msgid "Logout"
-msgstr "Вийти"
+msgstr "Завершити сеанс"
#: ../GMenu/src/applet-menu-callbacks.c:221 ../GMenu/data/messages:123
msgid "Shutdown"
@@ -762,7 +796,7 @@
#: ../Global-Menu/src/applet-init.c:30
msgid "Global Menu"
-msgstr ""
+msgstr "Глобальне меню"
#: ../Global-Menu/src/applet-init.c:33
msgid ""
@@ -772,14 +806,18 @@
"by default.\n"
"You can bind a shortkey to this action."
msgstr ""
+"Цей аплет дозволяє керувати поточним активним вікном:\n"
+" закрити, згорнути, розгорнути і викликати меню програми. Щоб відобразити "
+"меню, програма повинна підтримувати цю функцію, як це є типово в Ubuntu.\n"
+"Можна прив'язати гарячі клавіші до цих дій."
#: ../Global-Menu/src/applet-init.c:108 ../Global-Menu/src/applet-init.c:210
msgid "Show/hide the current application menu"
-msgstr ""
+msgstr "Показати/Приховати поточне меню програми"
#: ../Global-Menu/src/applet-notifications.c:52
msgid "The application didn't send its menu to us."
-msgstr ""
+msgstr "Програма не відправляла нам своє меню."
#: ../Impulse/src/applet-impulse.c:170
msgid ""
@@ -801,7 +839,7 @@
"А чи ви знаєте, що ваша панель може танцювати? :)\n"
"Якщо ви клацнете на цей значок, панель затанцює!\n"
"Насправді, ви матимете тут графічний еквалайзер\n"
-"Який буде аналізувати сигнали отримані з PulseAudio."
+"який буде аналізувати сигнали отримані з PulseAudio."
#: ../MeMenu/src/applet-init.c:30
msgid "Me Menu"
@@ -817,7 +855,7 @@
#: ../MeMenu/src/applet-notifications.c:31
msgid "It seems that the Me-Menu is not installed on your system"
-msgstr "Здається, MоєМеню не встановлено у вашій системі"
+msgstr "Здається, Me-Menu не встановлено у вашій системі"
#: ../Messaging-Menu/src/applet-init.c:30
msgid "Messaging Menu"
@@ -829,16 +867,21 @@
"It handles Evolution, Pidgin, Empathy, etc\n"
"It requires the Messaging service, which is available on Ubuntu by default."
msgstr ""
+"Меню, яке повідомляє вас про нові повідомлення у пошті або чату.\n"
+"Взаємодіє з Evolution, Pidgin, Empathy і так далі\n"
+"Потребує службу обміну повідомленнями, яка типово доступна у Ubuntu."
#: ../Messaging-Menu/src/applet-init.c:66
msgid "Show/hide the Messaging menu"
-msgstr ""
+msgstr "Показати/Приховати меню повідомлень"
#: ../Messaging-Menu/src/applet-notifications.c:31
msgid ""
"The Messaging service did not reply.\n"
"Please check that it is correctly installed."
msgstr ""
+"Служба обміну повідомленнями не відповідає.\n"
+"Перевірте, будь-ласка, правильність її встановлення."
#: ../Network-Monitor/src/applet-dbus-callbacks.c:69
msgid "Network connection state changed to inactive."
@@ -871,7 +914,7 @@
#: ../dnd2share/data/messages:111 ../dustbin/data/messages:101
#: ../wifi/data/messages:139 ../wifi/data/messages:189
msgid "None"
-msgstr "Нічого"
+msgstr "Немає"
#: ../Network-Monitor/src/applet-draw.c:30 ../wifi/src/applet-draw.c:31
msgid "Very Low"
@@ -906,7 +949,7 @@
"Checking connection...\n"
"Please retry in a few seconds"
msgstr ""
-"Перевіряється під'єднання...\n"
+"Перевірка зв'язку...\n"
"Спробуйте знову через кілька секунд"
#: ../Network-Monitor/src/applet-draw.c:134
@@ -1055,7 +1098,7 @@
#: ../RSSreader/src/applet-rss.c:436
msgid "No URL is defined."
-msgstr "Не визначений URL."
+msgstr "Не вказаний URL."
#: ../RSSreader/src/applet-rss.c:437
msgid "No data (no connection?)"
@@ -1067,7 +1110,7 @@
#: ../RSSreader/src/applet-rss.c:551
msgid "No data"
-msgstr "Немає даних"
+msgstr "Дані відсутні"
#: ../RSSreader/src/applet-rss.c:589
msgid "No modification"
@@ -1105,7 +1148,7 @@
#: ../Recent-Events/src/applet-dialog.c:290
msgid "Copy the location"
-msgstr "Кпіювати місце знаходження"
+msgstr "Копіювати шлях"
#: ../Recent-Events/src/applet-dialog.c:292
msgid "Delete this event"
@@ -1121,7 +1164,7 @@
#: ../Recent-Events/src/applet-dialog.c:368 ../logout/data/messages:129
msgid "Image"
-msgstr "Значок"
+msgstr "Зображення"
#: ../Recent-Events/src/applet-dialog.c:369
msgid "Audio"
@@ -1157,7 +1200,7 @@
#: ../Recent-Events/src/applet-dialog.c:481
msgid "You need to install the Zeitgeist data engine."
-msgstr "Вам потрібно встановити двигун даних Zeitgeist."
+msgstr "Вам потрібно встановити рушій даних Zeitgeist."
#: ../Recent-Events/src/applet-dialog.c:516
msgid "Browse and search in recent events"
@@ -1169,7 +1212,7 @@
#: ../Recent-Events/src/applet-init.c:58
msgid "Show/hide the Recent Events"
-msgstr ""
+msgstr "Показати/Приховати останні події"
#: ../Recent-Events/src/applet-notifications.c:74
#, c-format
@@ -1179,7 +1222,7 @@
#: ../Recent-Events/src/applet-notifications.c:113
#: ../Scooby-Do/src/applet-backend-recent.c:212 ../Scooby-Do/data/messages:105
msgid "Recent files"
-msgstr "Недавні файли"
+msgstr "Нещодавні файли"
#: ../Recent-Events/src/applet-notifications.c:161
msgid "Delete today's events"
@@ -1202,14 +1245,24 @@
"middle click, and Ctrl+Enter for left click\n"
"Escape or the same shortkey will cancel."
msgstr ""
+"Цей плагін дозволяє керувати панеллю з клавіатури\n"
+"Натисніть комбінацію клавіш (типово це Super + Return) і:\n"
+" - натисніть номер іконки яку ви хочете активувати - або використовуйте "
+"стрілки для переміщення по панелям чи субпанелям (Ctrl + Page up/down щоб "
+"перейти на іншу панель)\n"
+" - або почніть вводити ім'я програми і натискайте Tab, щоб автоматично "
+"переходити до наступної підходящої\n"
+"Натисніть Enter для кліку по іконці, Shift+Enter для Shift+клік, Alt+Enter "
+"для клацання середньою клавішею, і Ctrl+Enter для кліка лівою\n"
+"Escape чи іншу комбінацію для скасування."
#: ../Remote-Control/src/applet-init.c:42
msgid "Control from keyboard"
-msgstr ""
+msgstr "Керування з клавіатури"
#: ../Remote-Control/src/applet-init.c:49
msgid "Enable/disable the keyboard control of the dock"
-msgstr ""
+msgstr "Ввімкнути/Вимкнути керування панеллю з клавіатури"
#: ../Scooby-Do/src/applet-backend-command.c:63
#, c-format
@@ -1296,7 +1349,7 @@
#: ../Scooby-Do/src/applet-init.c:73
msgid "Enable/disable the Finder"
-msgstr ""
+msgstr "Включити/Відключити пошук"
#: ../Scooby-Do/src/applet-listing.c:514
msgid "(F1) Match case"
@@ -1328,7 +1381,7 @@
#: ../Scooby-Do/src/applet-listing.c:675 ../Scooby-Do/src/applet-search.c:362
msgid "No result"
-msgstr "Немає результатів"
+msgstr "Жодного результату"
#: ../Scooby-Do/src/applet-listing.c:679 ../Scooby-Do/src/applet-search.c:358
#: ../tomboy/src/tomboy-draw.c:156 ../tomboy/src/tomboy-draw.c:169
@@ -1355,9 +1408,9 @@
"If a program doesn't appear inside when it should, it's probably because it "
"doesn't support this feature yet. Please fill a bug report to the devs."
msgstr ""
-"<b>Зона повідомлень</b> панелі\n"
+"<b>Область сповіщень</b> панелі\n"
"Програми використовують її для надання повідомлень.\n"
-"Якщо програма не з’являється там де потрібно, можливо вона поки що не "
+"Якщо програма не з'являється там де потрібно, можливо вона поки що не "
"підтримується. Повідомте розробникам, і вони спробують це виправити."
#: ../Status-Notifier/src/applet-init.c:38
@@ -1366,7 +1419,7 @@
#: ../System-Monitor/src/applet-cpusage.c:57
msgid "Uptime"
-msgstr "Час завантаження"
+msgstr "Час роботи"
#: ../System-Monitor/src/applet-cpusage.c:62
msgid "Activity time"
@@ -1476,7 +1529,7 @@
#: ../System-Monitor/src/applet-sensors.c:363
#: ../System-Monitor/src/applet-sensors.c:396
msgid "alarm"
-msgstr "сигнал"
+msgstr "тривога"
#: ../System-Monitor/src/applet-sensors.c:394
msgid "rpm"
@@ -1524,11 +1577,11 @@
#: ../Xgamma/src/applet-init.c:64
msgid "Increase the brightness"
-msgstr ""
+msgstr "Збільшення яскравості"
#: ../Xgamma/src/applet-init.c:68
msgid "Decrease the brightness"
-msgstr ""
+msgstr "Зменшення яскравості"
#: ../Xgamma/src/applet-notifications.c:87
msgid "Set up gamma correction"
@@ -1544,7 +1597,7 @@
#: ../Xgamma/src/applet-xgamma.c:293
msgid "Luminosity"
-msgstr "Освітленість"
+msgstr "Яскравість"
#: ../alsaMixer/src/applet-backend-alsamixer.c:46
#, c-format
@@ -1574,11 +1627,11 @@
#: ../alsaMixer/src/applet-backend-alsamixer.c:261
msgid "Set up volume:"
-msgstr "Встановлення гучності:"
+msgstr "Регулювання гучності:"
#: ../alsaMixer/src/applet-draw.c:64
msgid "Volume"
-msgstr ""
+msgstr "Гучність"
#: ../alsaMixer/src/applet-init.c:34
msgid ""
@@ -1590,6 +1643,13 @@
"mixer.\n"
"The applet can either use the Ubuntu Sound-menu or the Alsa driver."
msgstr ""
+"Цей додаток дозволяє керувати гучністю з панелі.\n"
+"Прокручування скролом вгору/вниз на іконці для збільшує/зменшує гучність.\n"
+"Лівий клік по іконці показує/приховує регулятор гучності (ви також можете "
+"вказати власну комбінацію для цього)\n"
+"Клік середньою клавішею для вимикає звук, подвійний лівий клік викликає "
+"вікно налаштування звуку.\n"
+"Цей додаток може використовувати звукове меню Убунту або драйвер Alsa."
#: ../alsaMixer/src/applet-init.c:42
msgid "Sound Control"
@@ -1597,7 +1657,7 @@
#: ../alsaMixer/src/applet-init.c:118
msgid "Show/hide the Sound menu"
-msgstr ""
+msgstr "Показати/Приховати меню звуку"
#: ../alsaMixer/src/applet-notifications.c:80
msgid "Adjust channels"
@@ -1739,7 +1799,7 @@
"Доступно два види:<b>цифровий</b> та <b>аналоговий</b>.\n"
"Аналоговий вид сумісний з темами від Cairo-Dock і ви можете від'єднати аплет "
"від панелі, отримуючи не гірше за Cairo-Clock.\n"
-"На ліве клацання відображається <b>календар</b>, де ви можете <b>управляти "
+"На ліве клацання відображається <b>календар</b>, де ви можете <b>керувати "
"подіями</b>.\n"
"Також підтримується нагадування та установка дати і часу.\n"
"Ліве клацання показує/приховує календар, середнє клацання зупиняє "
@@ -1752,7 +1812,7 @@
"You can add tasks by clicking on the applet to open the calendar, and then "
"double-clicking on a day."
msgstr ""
-"На сьогодні немає назначених завдань.\n"
+"На сьогодні немає запланованих завдань.\n"
"\n"
"Щоб додати завдання, натисніть на аплет, щоб відкрити календар, а потім "
"двічі натисніть на потрібний день."
@@ -1764,7 +1824,7 @@
"You can add tasks by clicking on the applet to open the calendar, and then "
"double-clicking on a day."
msgstr ""
-"На найближчі 7 днів немає назначених завдань.\n"
+"На найближчі 7 днів немає запланованих завдань.\n"
"\n"
"Щоб додати завдання, натисніть на аплет, щоб відкрити календар, а потім "
"двічі натисніть на потрібний день."
@@ -1895,7 +1955,7 @@
#: ../desklet-rendering/src/rendering-desklet-decorations.c:89
msgid "clear"
-msgstr "чистый"
+msgstr "чистий"
#: ../desklet-rendering/src/rendering-desklet-decorations.c:97
msgid "futuristic"
@@ -1920,7 +1980,7 @@
#: ../dialog-rendering/src/applet-decorator-curly.h:26
msgid "curly"
-msgstr "згиб"
+msgstr "згин"
#: ../dialog-rendering/src/applet-decorator-modern.h:26
msgid "modern"
@@ -2003,7 +2063,7 @@
#: ../dnd2share/src/applet-notifications.c:73
msgid "Sorry, couldn't find the original file nor a preview of it."
msgstr ""
-"Нажаль, оригінальний файл як і його передперегляд виявити не вдалося."
+"На жаль, оригінальний файл як і його попередній перегляд виявити не вдалося."
#: ../dnd2share/src/applet-notifications.c:98
msgid ""
@@ -2139,7 +2199,7 @@
#: ../dustbin/src/applet-notifications.c:91
msgid "The trash contains"
-msgstr "Смітник місить"
+msgstr "Смітник містить"
#: ../dustbin/src/applet-notifications.c:93
msgid "files"
@@ -2163,15 +2223,15 @@
#: ../dustbin/src/applet-notifications.c:135
msgid "Show Trash (click)"
-msgstr "Переглянути смітник (клацання)"
+msgstr "Показати смітник (лівий клік)"
#: ../dustbin/src/applet-notifications.c:136
msgid "Empty Trash"
-msgstr "Видалити смітник"
+msgstr "Спорожнити смітник"
#: ../dustbin/src/applet-notifications.c:140
msgid "Display dustbins information"
-msgstr "Показувати інформацію смітника"
+msgstr "Показати інформацію смітника"
#: ../dustbin/src/applet-notifications.c:150
#, c-format
@@ -2266,7 +2326,7 @@
"\tScroll up/down to select the previous/next layout\n"
"\tRight-click gives you access to the list of available layouts."
msgstr ""
-"За допомогою цього аплету ви можете контролюватирозкладку клавіатури.\n"
+"За допомогою цього додатку ви можете контролювати розкладку клавіатури.\n"
"\tВін також відображує стан режимів NUM та CAPS Lock.\n"
"\tЛіве клацання перемикає розкладку\n"
"\tКолесом миші можна перемикатися між розкладками\n"
@@ -2274,7 +2334,7 @@
#: ../keyboard-indicator/src/applet-init.c:81
msgid "Switch keyboard language"
-msgstr ""
+msgstr "Зміна мови вводу клавіатури"
#: ../keyboard-indicator/src/applet-notifications.c:77
msgid "Keyboard preferences"
@@ -2289,6 +2349,14 @@
"<b>Click</b> on the icon to pop the menu up.\n"
"You can bind a <b>shortcut</b> to it, and also to lock the screen."
msgstr ""
+"Цей додаток дозволяє керувати поточною сесією. Він може:\n"
+"вимикати, перезавантажувати, переводити у режими сну та очікування, виходити "
+"з системи, блокувати екран, змінювати користувача, чи програмувати "
+"автоматичне завершення роботи\n"
+"і повідомляти вам, якщо ваша система потребує перезавантаження.\n"
+"<b>Клікніть</b> по значку, щоб викликати спливаюче меню.\n"
+"Ви можете прив'язати до нього і до блокування екрану <b>комбінації "
+"клавіш</b>."
#: ../logout/src/applet-init.c:38 ../logout/src/applet-logout.c:228
#: ../logout/data/messages:97
@@ -2297,7 +2365,7 @@
#: ../logout/src/applet-init.c:67
msgid "Lock the screen"
-msgstr ""
+msgstr "Заблокувати екран"
#: ../logout/src/applet-init.c:71
msgid "Show the log-out menu"
@@ -2337,7 +2405,7 @@
#: ../logout/src/applet-logout.c:241
msgid "Switch user"
-msgstr ""
+msgstr "Змінити користувача"
#: ../logout/src/applet-logout.c:262
msgid "Guest session"
@@ -2362,23 +2430,23 @@
#: ../logout/src/applet-logout.c:523
#, c-format
msgid "It will automatically shut-down in %ds"
-msgstr ""
+msgstr "Він автоматично відключиться через %dс"
#: ../logout/src/applet-logout.c:524
msgid "Shut down the computer?"
-msgstr ""
+msgstr "Вимкнути компютер?"
#: ../logout/src/applet-logout.c:584
msgid "Restart the computer?"
-msgstr ""
+msgstr "Перезавантажити компютер?"
#: ../logout/src/applet-logout.c:621
msgid "Close the current session?"
-msgstr ""
+msgstr "Завершити поточну сесію?"
#: ../logout/src/applet-notifications.c:103
msgid "Manage users"
-msgstr ""
+msgstr "Керування користувачами"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Server address:"
@@ -2391,7 +2459,7 @@
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "myHost"
-msgstr "мій хост"
+msgstr "мійХост"
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Username:"
@@ -2403,7 +2471,7 @@
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "The password will be crypted."
-msgstr "Пароль буде зашифтовано."
+msgstr "Пароль буде зашифровано."
#: ../mail/src/cd-mail-applet-accounts.c:39
msgid "Port:"
@@ -3287,7 +3355,7 @@
#: ../terminal/src/terminal-init.c:59
msgid "Show/hide the terminal"
-msgstr ""
+msgstr "Показати/Приховати термінал"
#: ../terminal/src/terminal-menu-functions.c:78
#: ../terminal/src/terminal-widget.c:420
@@ -5608,7 +5676,7 @@
#: ../Global-Menu/data/messages:101
msgid "Compact mode"
-msgstr ""
+msgstr "Компактний режим"
#: ../Global-Menu/data/messages:103
msgid "Order of the buttons: "
@@ -6327,7 +6395,7 @@
#: ../Status-Notifier/data/messages:105
msgid "Hide inactive items"
-msgstr ""
+msgstr "Приховати неактивні елементи"
#: ../Status-Notifier/data/messages:107
msgid "How to display items:"
@@ -7747,11 +7815,11 @@
#: ../musicPlayer/data/messages:145
msgid "Next/previous song"
-msgstr ""
+msgstr "Наступна/Попередня пісня"
#: ../musicPlayer/data/messages:147
msgid "Control the volume"
-msgstr ""
+msgstr "Регулятор гучності"
#: ../musicPlayer/data/messages:149
msgid "Action on music change"
=== modified file 'quick-browser/src/applet-menu.c'
--- quick-browser/src/applet-menu.c 2012-03-21 11:26:14 +0000
+++ quick-browser/src/applet-menu.c 2012-06-19 14:00:32 +0000
@@ -106,10 +106,7 @@
{
pMenuItem = gtk_image_menu_item_new_with_label (D_("Open this folder"));
GtkWidget *image = gtk_image_new_from_stock (GTK_STOCK_OPEN, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (pMenuItem), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
}
else
{
=== modified file 'shortcuts/src/applet-bookmarks.c'
--- shortcuts/src/applet-bookmarks.c 2012-04-16 16:47:20 +0000
+++ shortcuts/src/applet-bookmarks.c 2012-06-19 14:00:32 +0000
@@ -223,6 +223,7 @@
gchar **cBookmarksList = g_strsplit (cContent, "\n", -1);
g_free (cContent);
gchar *cOneBookmark, *str;
+ gboolean bFound = FALSE;
int i = 0;
for (i = 0; cBookmarksList[i] != NULL; i ++)
{
@@ -233,13 +234,21 @@
str = strchr (cOneBookmark, ' ');
if ((str && strncmp (cOneBookmark, cURI, str - cOneBookmark) == 0) || (!str && strcmp (cOneBookmark, cURI) == 0))
{
- cBookmarksList[i] = g_strdup ("");
+ // remove this element from the array
+ int j;
+ for (j = i; cBookmarksList[j] != NULL; j ++)
+ {
+ cBookmarksList[j] = cBookmarksList[j+1];
+ }
+ // free the removed element.
g_free (cOneBookmark);
+ // quit the loop
+ bFound = TRUE;
break;
}
}
- if (cBookmarksList[i] == NULL)
+ if (! bFound)
{
cd_warning ("bookmark '%s' not found", cURI);
}
@@ -321,10 +330,22 @@
cd_message ("%s (%s)", __func__, cURI);
gchar *cBookmarkFilePath = g_strdup_printf ("%s/.gtk-bookmarks", g_getenv ("HOME"));
+
+ // see if we need to add a new line before the new URI.
+ gchar *cContent = NULL;
+ gsize length = 0;
+ g_file_get_contents (cBookmarkFilePath,
+ &cContent,
+ &length,
+ NULL);
+ gboolean bAddNewLine = (cContent && length > 0 && cContent[length-1] != '\n');
+ g_free (cContent);
+
+ // append the new URI to the file.
FILE *f = fopen (cBookmarkFilePath, "a");
if (f != NULL)
{
- gchar *cNewLine = g_strconcat ("\n", cURI, NULL);
+ gchar *cNewLine = g_strdup_printf ("%s%s\n", bAddNewLine ? "\n" : "", cURI);
fputs(cNewLine, f);
g_free (cNewLine);
fclose (f);
=== modified file 'switcher/src/applet-desktops.c'
--- switcher/src/applet-desktops.c 2012-02-16 01:45:57 +0000
+++ switcher/src/applet-desktops.c 2012-06-19 14:00:32 +0000
@@ -30,6 +30,8 @@
cairo_dock_get_current_desktop_and_viewport (&myData.switcher.iCurrentDesktop, &myData.switcher.iCurrentViewportX, &myData.switcher.iCurrentViewportY);
myData.switcher.iNbViewportTotal = g_desktopGeometry.iNbDesktops * g_desktopGeometry.iNbViewportX * g_desktopGeometry.iNbViewportY;
+ if (myData.switcher.iNbViewportTotal == 0) // obviously, having 0 desktop cannot be true, so we force to 1 to avoid any "division by 0" later.
+ myData.switcher.iNbViewportTotal = 1;
cd_switcher_compute_desktop_coordinates (myData.switcher.iCurrentDesktop, myData.switcher.iCurrentViewportX, myData.switcher.iCurrentViewportY, &myData.switcher.iCurrentLine, &myData.switcher.iCurrentColumn);
=== modified file 'switcher/src/applet-draw.c'
--- switcher/src/applet-draw.c 2012-04-16 23:35:08 +0000
+++ switcher/src/applet-draw.c 2012-06-19 14:00:32 +0000
@@ -561,10 +561,7 @@
if (pixbuf)
{
GtkWidget *image = gtk_image_new_from_pixbuf (pixbuf);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (pMenuItem), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (pMenuItem), image);
g_object_unref (pixbuf);
}
gtk_menu_shell_append (GTK_MENU_SHELL (pMenu), pMenuItem);
=== modified file 'systray/src/gtk2/na-tray.c'
--- systray/src/gtk2/na-tray.c 2012-02-16 01:45:57 +0000
+++ systray/src/gtk2/na-tray.c 2012-06-19 14:00:32 +0000
@@ -29,7 +29,7 @@
#include "na-tray.h"
-#define ICON_SPACING 1
+#define ICON_SPACING 3
#define MIN_BOX_SIZE 24
#if (GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION < 20)
=== modified file 'systray/src/gtk3/na-tray-child.c'
--- systray/src/gtk3/na-tray-child.c 2012-02-16 01:45:57 +0000
+++ systray/src/gtk3/na-tray-child.c 2012-06-19 14:00:32 +0000
@@ -221,6 +221,22 @@
{
}
+
+static void
+na_tray_child_get_preferred_width (GtkWidget* self,
+ gint* minimum_width,
+ gint* natural_width)
+{
+ *minimum_width = *natural_width = 24;
+}
+static void
+na_tray_child_get_preferred_height (GtkWidget* self,
+ gint* minimum_height,
+ gint* natural_height)
+{
+ *minimum_height = *natural_height = 24;
+}
+
static void
na_tray_child_class_init (NaTrayChildClass *klass)
{
@@ -235,6 +251,9 @@
widget_class->realize = na_tray_child_realize;
widget_class->size_allocate = na_tray_child_size_allocate;
widget_class->draw = na_tray_child_draw;
+ // we force the size of the icons, because some programs (like xchat) don't respect the _NET_SYSTEM_TRAY_ICON_SIZE property.
+ widget_class->get_preferred_width = na_tray_child_get_preferred_width;
+ widget_class->get_preferred_height = na_tray_child_get_preferred_height;
}
GtkWidget *
=== modified file 'systray/src/gtk3/na-tray.c'
--- systray/src/gtk3/na-tray.c 2012-02-16 01:45:57 +0000
+++ systray/src/gtk3/na-tray.c 2012-06-19 14:00:32 +0000
@@ -28,8 +28,8 @@
#include "na-tray.h"
-#define ICON_SPACING 1
-#define MIN_BOX_SIZE 3
+#define ICON_SPACING 3
+#define MIN_BOX_SIZE 24
typedef struct
{
=== modified file 'systray/src/systray-config.c'
--- systray/src/systray-config.c 2012-02-16 01:45:57 +0000
+++ systray/src/systray-config.c 2012-06-19 14:00:32 +0000
@@ -32,7 +32,6 @@
CD_CONFIG_RENAME_GROUP ("GUI", "Configuration");
myConfig.shortcut = CD_CONFIG_GET_STRING_WITH_DEFAULT ("Configuration", "shortkey", "<Ctrl>F2");
myConfig.iIconPacking = CD_CONFIG_GET_INTEGER_WITH_DEFAULT ("Configuration", "icon packing", 0);
- //myConfig.iIconSize = CD_CONFIG_GET_INTEGER_WITH_DEFAULT ("Configuration", "icon size", 24);
CD_APPLET_GET_CONFIG_END
=== modified file 'systray/src/systray-init.c'
--- systray/src/systray-init.c 2012-02-16 01:45:57 +0000
+++ systray/src/systray-init.c 2012-06-19 14:00:32 +0000
@@ -112,6 +112,9 @@
}
g_object_unref (G_OBJECT (myData.tray)); // le 'steal' a ajoute une reference, et l'insertion dans le container aussi.
}
+
+ if (myDock)
+ CD_APPLET_SET_DEFAULT_IMAGE_ON_MY_ICON_IF_NONE; // set the default icon if none is specified in conf.
}
cd_keybinder_rebind (myData.cKeyBinding, myConfig.shortcut, NULL);
=== modified file 'systray/src/systray-interface.c'
--- systray/src/systray-interface.c 2012-02-16 01:45:57 +0000
+++ systray/src/systray-interface.c 2012-06-19 14:00:32 +0000
@@ -49,6 +49,10 @@
myData.tray = na_tray_new_for_screen (gtk_widget_get_screen (GTK_WIDGET (myContainer->pWidget)),
myConfig.iIconPacking == 0 ? GTK_ORIENTATION_HORIZONTAL : GTK_ORIENTATION_VERTICAL);
+ #if (GTK_MAJOR_VERSION > 2)
+ na_tray_set_icon_size (myData.tray, 24);
+ na_tray_set_padding (myData.tray, 3);
+ #endif
if (myDock)
{
=== modified file 'terminal/src/terminal-widget.c'
--- terminal/src/terminal-widget.c 2012-02-16 01:45:57 +0000
+++ terminal/src/terminal-widget.c 2012-06-19 14:00:32 +0000
@@ -397,19 +397,13 @@
{
menu_item = gtk_image_menu_item_new_with_label (D_("Copy"));
image = gtk_image_new_from_stock (GTK_STOCK_COPY, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(_terminal_copy), vterm);
menu_item = gtk_image_menu_item_new_with_label (D_("Paste"));
image = gtk_image_new_from_stock (GTK_STOCK_PASTE, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(_terminal_paste), vterm);
@@ -419,37 +413,25 @@
menu_item = gtk_image_menu_item_new_with_label (D_("New Tab"));
image = gtk_image_new_from_stock (GTK_STOCK_NEW, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(on_new_tab), vterm);
menu_item = gtk_image_menu_item_new_with_label (D_("Rename this Tab"));
image = gtk_image_new_from_stock (GTK_STOCK_EDIT, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(on_rename_tab), vterm);
menu_item = gtk_image_menu_item_new_with_label (D_("Change this Tab's colour"));
image = gtk_image_new_from_stock (GTK_STOCK_COLOR_PICKER, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(on_change_tab_color), vterm);
menu_item = gtk_image_menu_item_new_with_label (D_("Close this Tab"));
image = gtk_image_new_from_stock (GTK_STOCK_CLOSE, GTK_ICON_SIZE_MENU);
-#if (GTK_MAJOR_VERSION > 2 || GTK_MINOR_VERSION >= 16)
- gtk_image_menu_item_set_always_show_image (GTK_IMAGE_MENU_ITEM (menu_item), TRUE);
-#endif
- gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
+ _gtk_image_menu_item_set_image (GTK_IMAGE_MENU_ITEM (menu_item), image);
gtk_menu_shell_append (GTK_MENU_SHELL (menu), menu_item);
g_signal_connect (G_OBJECT (menu_item), "activate", G_CALLBACK(on_close_tab), vterm);
Follow ups