summaryrefslogtreecommitdiff
diff options
-rw-r--r--CMakeLists.txt8
-rw-r--r--UnityCore/CMakeLists.txt4
-rw-r--r--UnityCore/unity-core.pc.cmake2
-rw-r--r--po/POTFILES.in1
-rw-r--r--po/ar.po46
-rw-r--r--po/bg.po46
-rw-r--r--po/cs.po46
-rw-r--r--po/da.po46
-rw-r--r--po/de.po46
-rw-r--r--po/el.po46
-rw-r--r--po/es.po46
-rw-r--r--po/fi.po46
-rw-r--r--po/fr.po46
-rw-r--r--po/he.po46
-rw-r--r--po/hi.po46
-rw-r--r--po/hr.po46
-rw-r--r--po/hu.po46
-rw-r--r--po/it.po46
-rw-r--r--po/ja.po46
-rw-r--r--po/ko.po46
-rw-r--r--po/nb.po46
-rw-r--r--po/nl.po46
-rw-r--r--po/pl.po46
-rw-r--r--po/pt.po46
-rw-r--r--po/pt_BR.po46
-rw-r--r--po/ro.po46
-rw-r--r--po/ru.po46
-rw-r--r--po/sk.po46
-rw-r--r--po/sl.po46
-rw-r--r--po/sr.po46
-rw-r--r--po/sv.po46
-rw-r--r--po/th.po46
-rw-r--r--po/tr.po46
-rw-r--r--po/unity.pot50
-rw-r--r--po/zh_CN.po46
-rw-r--r--po/zh_TW.po46
-rw-r--r--tests/test-get-transients/CMakeLists.txt2
-rw-r--r--tests/test-input-remover/CMakeLists.txt2
-rw-r--r--tests/test-minimize-window-handler/CMakeLists.txt2
39 files changed, 1100 insertions, 397 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 8a51e7342..801bbe236 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -10,11 +10,11 @@ subdirs (doc services tests tools UnityCore guides)
# Base bits
#
set (PROJECT_NAME "unity")
-set (UNITY_MAJOR 4)
-set (UNITY_MINOR 22)
+set (UNITY_MAJOR 5)
+set (UNITY_MINOR 0)
set (UNITY_MICRO 0)
set (UNITY_VERSION "${UNITY_MAJOR}.${UNITY_MINOR}.${UNITY_MICRO}")
-set (UNITY_API_VERSION "4.0")
+set (UNITY_API_VERSION "5.0")
set (CMAKE_CXX_FLAGS "-DGNOME_DESKTOP_USE_UNSTABLE_API -std=c++0x -fno-permissive")
set (CMAKE_CXX_FLAGS_DEBUG "-g3")
@@ -121,7 +121,7 @@ endif (DISABLE_MAINTAINER_CFLAGS)
#
# Compiz Plugins
#
-set (UNITY_PLUGIN_DEPS "compiz;nux-1.0 >= 1.2.2;libbamf3;dee-1.0;gio-2.0;gio-unix-2.0;dbusmenu-glib-0.4;x11;libstartup-notification-1.0;gthread-2.0;indicator3-0.4;atk;unity-misc >= 0.4.0;gconf-2.0;libutouch-geis;gtk+-3.0 >= 3.1;sigc++-2.0;json-glib-1.0;libnotify;gnome-desktop-3.0;gdu")
+set (UNITY_PLUGIN_DEPS "compiz;nux-2.0 >= 2.0.0;libbamf3;dee-1.0;gio-2.0;gio-unix-2.0;dbusmenu-glib-0.4;x11;libstartup-notification-1.0;gthread-2.0;indicator3-0.4;atk;unity-misc >= 0.4.0;gconf-2.0;libutouch-geis;gtk+-3.0 >= 3.1;sigc++-2.0;json-glib-1.0;libnotify;gnome-desktop-3.0;gdu")
find_package (Compiz REQUIRED)
diff --git a/UnityCore/CMakeLists.txt b/UnityCore/CMakeLists.txt
index e312baf0a..b8e259c48 100644
--- a/UnityCore/CMakeLists.txt
+++ b/UnityCore/CMakeLists.txt
@@ -1,5 +1,5 @@
find_package (PkgConfig)
-pkg_check_modules (CORE_DEPS REQUIRED glib-2.0 gio-2.0 dee-1.0 sigc++-2.0 nux-core-1.0 gdk-pixbuf-2.0 unity)
+pkg_check_modules (CORE_DEPS REQUIRED glib-2.0 gio-2.0 dee-1.0 sigc++-2.0 nux-core-2.0 gdk-pixbuf-2.0 unity)
execute_process (COMMAND ${PKG_CONFIG_EXECUTABLE} unity --variable lensesdir OUTPUT_VARIABLE _lensesdir OUTPUT_STRIP_TRAILING_WHITESPACE)
@@ -98,7 +98,7 @@ link_directories(${LIB_PATHS})
# - If binary compatibility has been broken (eg removed or changed interfaces)
# change to C+1:0:0
# - If the interface is the same as the previous version, change to C:R+1:A
-set (CORE_LIB_LT_CURRENT 4)
+set (CORE_LIB_LT_CURRENT 5)
set (CORE_LIB_LT_REV 0)
set (CORE_LIB_LT_AGE 0)
set (CORE_LIB_LT_VERSION "${CORE_LIB_LT_CURRENT}:${CORE_LIB_LT_REV}:${CORE_LIB_LT_AGE}")
diff --git a/UnityCore/unity-core.pc.cmake b/UnityCore/unity-core.pc.cmake
index b16fa177a..66e389236 100644
--- a/UnityCore/unity-core.pc.cmake
+++ b/UnityCore/unity-core.pc.cmake
@@ -9,4 +9,4 @@ Description: Core objects and utilities for Unity implementations
Version: @VERSION@
Libs: -L${libdir} -lunity-core-@UNITY_API_VERSION@
Cflags: -I${includedir}/Unity-@UNITY_API_VERSION@
-Requires: glib-2.0 gio-2.0 sigc++-2.0 nux-core-1.0 dee-1.0
+Requires: glib-2.0 gio-2.0 sigc++-2.0 nux-core-2.0 dee-1.0
diff --git a/po/POTFILES.in b/po/POTFILES.in
index c080137e4..a82a55f71 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -20,4 +20,3 @@ plugins/unityshell/src/unity-places-view-accessible.cpp
plugins/unityshell/src/unity-search-bar-accessible.cpp
plugins/unityshell/src/unityshell.cpp
plugins/unityshell/unityshell.xml.in
-tools/unity-preferences.c
diff --git a/po/ar.po b/po/ar.po
index 305d450c9..1d5f36ff7 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Arabic\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "إبقاء في برنامج Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "إنهاء"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "حذف من برنامج Launcher"
diff --git a/po/bg.po b/po/bg.po
index ab760aa2b..46b9b8268 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Bulgarian\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Остави в програмата за стартиране"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Излез"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Премахни от програмата за стартиране"
diff --git a/po/cs.po b/po/cs.po
index 30453bf0a..780b95a70 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Czech\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Ponechat ve Spouštěči"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Konec"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Odebrat ze Spouštěče"
diff --git a/po/da.po b/po/da.po
index 7782e5899..cdd158c64 100644
--- a/po/da.po
+++ b/po/da.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Danish\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Behold i Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Afslut"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Fjern fra Launcher"
diff --git a/po/de.po b/po/de.po
index 189e526d0..26c8f3465 100644
--- a/po/de.po
+++ b/po/de.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: German\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Im Startprogramm behalten"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Beenden"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Aus Startprogramm entfernen"
diff --git a/po/el.po b/po/el.po
index 36eb7402e..4a65da82b 100644
--- a/po/el.po
+++ b/po/el.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Greek\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Διατήρηση στο πρόγραμμα εκκίνησης"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Κλείσιμο"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Κατάργηση από το πρόγραμμα εκκίνησης"
diff --git a/po/es.po b/po/es.po
index ad179d230..b6e805293 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Spanish\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Conservar en el iniciador"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Salir"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Quitar del iniciador"
diff --git a/po/fi.po b/po/fi.po
index 14af97f08..22c7885c9 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Finnish\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Pidä Launcherissa"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Lopeta"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Poista Launcherista"
diff --git a/po/fr.po b/po/fr.po
index ebd6e612b..1f00ceb20 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: French\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Conserver dans le lanceur"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Quitter"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Supprimer du lanceur"
diff --git a/po/he.po b/po/he.po
index 043e292aa..fb48c30a4 100644
--- a/po/he.po
+++ b/po/he.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hebrew\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "שמור ב- Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "יציאה"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "מהסר מ- Launcher"
diff --git a/po/hi.po b/po/hi.po
index 9679a94e0..db6cf1a92 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hindi\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "लॉन्चर में रखें"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "छोड़ें"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "लॉन्चर से निकालें"
diff --git a/po/hr.po b/po/hr.po
index e678f1afe..8d98e70f1 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Croatian\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Zadrži u programu za pokretanje"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Izlaz"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Ukloni iz programa za pokretanje"
diff --git a/po/hu.po b/po/hu.po
index ca11be78d..b6d003f12 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hungarian\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Megtartás a Launcherben"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Kilépés"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Eltávolítás a Launcherből"
diff --git a/po/it.po b/po/it.po
index 6f74cf3c2..7fd41d725 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Italian\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Mantieni in Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Esci"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Rimuovi da Launcher"
diff --git a/po/ja.po b/po/ja.po
index 71a861151..c4933baa8 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Japanese\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Launcher に残す"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "中止"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Launcher から削除"
diff --git a/po/ko.po b/po/ko.po
index 31f7e7267..81f3b735d 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Korean\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "시작 관리자에 유지"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "끝내기"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "시작 관리자에서 제거"
diff --git a/po/nb.po b/po/nb.po
index 40a8eba06..bed5088cd 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Norwegian Bokmal\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Behold i oppstartsprogram"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Avslutt"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Fjern fra oppstartsprogram"
diff --git a/po/nl.po b/po/nl.po
index f178c5f6e..e8413bd79 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Dutch\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Bewaren in starter"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Afsluiten"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Verwijderen uit starter"
diff --git a/po/pl.po b/po/pl.po
index b8b0f79eb..f5a126ccc 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Polish\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Pozostaw w obszarze uruchamiania"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Zamknij"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Usuń z obszaru uruchamiania"
diff --git a/po/pt.po b/po/pt.po
index a4850294f..8ce2c2960 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Portuguese\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Manter no Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Abandonar"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Remover do Launcher"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a9b6f472c..1fa786adb 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Brazilian Portuguese\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Manter no Inicializador"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Sair"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Remover do Inicializador"
diff --git a/po/ro.po b/po/ro.po
index 9f70e5add..e25217c4b 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Romanian\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Păstrează în programul de lansare"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Ieşire"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Îndepărtează din programul de lansare"
diff --git a/po/ru.po b/po/ru.po
index 2cc38bf3a..5c0210c70 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Russian\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Оставить в модуле запуска"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Выход"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Удалить из модуля запуска"
diff --git a/po/sk.po b/po/sk.po
index 4daeb9e38..6934068b6 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Slovak\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Ponechať v aplikácii Launcher"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Ukončiť"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Odstrániť z aplikácie Launcher"
diff --git a/po/sl.po b/po/sl.po
index 6e7eee374..66015e4b1 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Slovenian\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Obdrži v zaganjalniku"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Končaj"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Odstrani iz zaganjalnika"
diff --git a/po/sr.po b/po/sr.po
index 9525bd68d..99f952c53 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Serbian\n"
@@ -18,18 +18,22 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -39,19 +43,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -60,7 +64,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Zadrži u pokretaču"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -74,15 +78,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Napusti"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -92,7 +108,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -101,10 +117,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -121,6 +140,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Ukloni iz pokretača"
diff --git a/po/sv.po b/po/sv.po
index cae7b9773..e157f99da 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Swedish\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Behåll i startprogram"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Avsluta"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Ta bort från startprogram"
diff --git a/po/th.po b/po/th.po
index ff2ae937d..2de02bcaa 100644
--- a/po/th.po
+++ b/po/th.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Thai\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "อยู่ในโปรแกรมเรียกทำงาน"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "จบการทำงาน"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "ออกจากโปรแกรมเรียกทำงาน"
diff --git a/po/tr.po b/po/tr.po
index 4cdc58558..ac83d8dfa 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Turkish\n"
@@ -17,18 +17,22 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -38,19 +42,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -59,7 +63,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "Başlatıcıda Tut"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -73,15 +77,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "Çık"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -91,7 +107,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -100,10 +116,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -120,6 +139,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "Başlatıcıdan Kaldır"
diff --git a/po/unity.pot b/po/unity.pot
index 7e01916a1..18da86b7e 100644
--- a/po/unity.pot
+++ b/po/unity.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-08-23 20:58-0400\n"
+"POT-Creation-Date: 2011-10-26 12:08-0400\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -26,6 +26,9 @@ msgstr ""
msgid "Open"
msgstr ""
+msgid "Format..."
+msgstr ""
+
msgid "Eject"
msgstr ""
@@ -47,12 +50,6 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
-msgid "Search"
-msgstr ""
-
-msgid "Search across all places"
-msgstr ""
-
msgid "See fewer results"
msgstr ""
@@ -75,6 +72,7 @@ msgstr ""
msgid "Find Files"
msgstr ""
+#. Browser
msgid "Browse the Web"
msgstr ""
@@ -98,23 +96,47 @@ msgstr ""
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Dash home"
+msgstr ""
+
+msgid "Filter results"
+msgstr ""
+
+msgid "Search"
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "All"
+msgstr ""
+
+msgid "Multi-range"
+msgstr ""
+
+msgid "Rating"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid "Tracks"
msgstr ""
-msgid "Empty Trash"
+msgid "min"
msgstr ""
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "Places"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Search Bar"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 09400dee9..06ec28a4e 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Chinese (simplified)\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "保留在启动程序中"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "退出"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "从启动程序中删除"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 6bc172a3f..2e0e4516b 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: l 10n\n"
"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n"
-"POT-Creation-Date: 2011-07-29 16:39+0200\n"
+"POT-Creation-Date: 2011-10-26 11:59-0400\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Chinese (traditional)\n"
@@ -16,18 +16,22 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "All"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+#. Browser
+msgid "Browse the Web"
msgstr ""
-msgid "Browse the Web"
+msgid "Categories"
msgstr ""
msgid "Check Email"
msgstr ""
+msgid "Dash home"
+msgstr ""
+
msgid "Drop To Add Application"
msgstr ""
@@ -37,19 +41,19 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
-msgstr ""
-
msgid "Empty Trash..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Filter results"
msgstr ""
#. Find Files
msgid "Find Files"
msgstr ""
+msgid "Format..."
+msgstr ""
+
#. Internet Apps
msgid "Internet Apps"
msgstr ""
@@ -58,7 +62,7 @@ msgstr ""
msgid "Keep in launcher"
msgstr "保留在啟動程式中"
-msgid "Launcher & Menus"
+msgid "Launcher"
msgstr ""
msgid "Listen to Music"
@@ -72,15 +76,27 @@ msgstr ""
msgid "More Apps"
msgstr ""
+msgid "Multi-range"
+msgstr ""
+
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Places"
msgstr ""
msgid "Quit"
msgstr "結束"
+msgid "Rating"
+msgstr ""
+
+#. FIXME: this is the general search bar, but right now it is
+#. only supported the Run Command dialog. When a full Places
+#. support is finished, this would change
+msgid "Run Command Search Entry"
+msgstr ""
+
msgid "Safely remove"
msgstr ""
@@ -90,7 +106,7 @@ msgstr ""
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Search Bar"
msgstr ""
msgid "See fewer results"
@@ -99,10 +115,13 @@ msgstr ""
msgid "Shortcuts"
msgstr ""
+msgid "Show Desktop"
+msgstr ""
+
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Tracks"
msgstr ""
msgid "Trash"
@@ -119,6 +138,9 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "min"
+msgstr ""
+
#, fuzzy
#~ msgid "Remove from launcher"
#~ msgstr "從啟動程式中刪除"
diff --git a/tests/test-get-transients/CMakeLists.txt b/tests/test-get-transients/CMakeLists.txt
index e5f358726..fc040e5e2 100644
--- a/tests/test-get-transients/CMakeLists.txt
+++ b/tests/test-get-transients/CMakeLists.txt
@@ -17,7 +17,7 @@ if (COMPIZ_TEST_GET_TRANSIENTS_FOUND)
../../plugins/unityshell/src/inputremover.cpp
../x11-window.cpp
../x11-window-read-transients.cpp)
-
+ add_dependencies (test-get-transients unity-core-${UNITY_API_VERSION})
target_link_libraries (test-get-transients
${COMPIZ_TEST_GET_TRANSIENTS_LIBRARIES})
diff --git a/tests/test-input-remover/CMakeLists.txt b/tests/test-input-remover/CMakeLists.txt
index e799a7d77..eac8026a0 100644
--- a/tests/test-input-remover/CMakeLists.txt
+++ b/tests/test-input-remover/CMakeLists.txt
@@ -13,7 +13,7 @@ if (COMPIZ_TEST_INPUT_REMOVER_FOUND)
add_executable (test-input-remover
test-input-remover.cpp
../../plugins/unityshell/src/inputremover.cpp)
-
+ add_dependencies (test-input-remover unity-core-${UNITY_API_VERSION})
target_link_libraries (test-input-remover
${COMPIZ_TEST_INPUT_REMOVER_LIBRARIES})
diff --git a/tests/test-minimize-window-handler/CMakeLists.txt b/tests/test-minimize-window-handler/CMakeLists.txt
index e063e542c..99e7c0170 100644
--- a/tests/test-minimize-window-handler/CMakeLists.txt
+++ b/tests/test-minimize-window-handler/CMakeLists.txt
@@ -18,7 +18,7 @@ if (COMPIZ_TEST_MINIMIZED_HANDER_FOUND)
../x11-window-read-transients.cpp
../../plugins/unityshell/src/transientfor.cpp
../../plugins/unityshell/src/inputremover.cpp)
-
+ add_dependencies (test-minimize-handler unity-core-${UNITY_API_VERSION})
target_link_libraries (test-minimize-handler
${COMPIZ_TEST_MINIMIZED_HANDER_LIBRARIES})