summaryrefslogtreecommitdiff
diff options
authorGord Allott <gord.allott@canonical.com>2012-02-13 12:03:06 +0000
committerGord Allott <gord.allott@canonical.com>2012-02-13 12:03:06 +0000
commit5ec9ad007b762da3ea092c718d997fb56a389348 (patch)
tree26681cb5f4dae03ffc875553d123de3db357f197
parent71c890a0db9f47bf401275b80810e70287840df1 (diff)
modifes BGHash to cache its background colours, stores cache in a cache file, should speed up startup time somewhat
(bzr r1948.7.1)
-rw-r--r--plugins/unityshell/src/BGHash.cpp187
-rw-r--r--plugins/unityshell/src/BGHash.h10
-rw-r--r--plugins/unityshell/src/unityshell.cpp1
-rw-r--r--po/ar.po195
-rw-r--r--po/bg.po195
-rw-r--r--po/cs.po195
-rw-r--r--po/da.po195
-rw-r--r--po/de.po195
-rw-r--r--po/el.po195
-rw-r--r--po/es.po195
-rw-r--r--po/fi.po195
-rw-r--r--po/fr.po195
-rw-r--r--po/he.po195
-rw-r--r--po/hi.po195
-rw-r--r--po/hr.po195
-rw-r--r--po/hu.po195
-rw-r--r--po/it.po195
-rw-r--r--po/ja.po195
-rw-r--r--po/ko.po195
-rw-r--r--po/nb.po195
-rw-r--r--po/nl.po195
-rw-r--r--po/pl.po195
-rw-r--r--po/pt.po195
-rw-r--r--po/pt_BR.po195
-rw-r--r--po/ro.po195
-rw-r--r--po/ru.po195
-rw-r--r--po/sk.po195
-rw-r--r--po/sl.po195
-rw-r--r--po/sr.po195
-rw-r--r--po/sv.po195
-rw-r--r--po/th.po195
-rw-r--r--po/tr.po195
-rw-r--r--po/unity.pot192
-rw-r--r--po/zh_CN.po195
-rw-r--r--po/zh_TW.po195
-rw-r--r--standalone-clients/TestBGHash.cpp18
36 files changed, 5472 insertions, 981 deletions
diff --git a/plugins/unityshell/src/BGHash.cpp b/plugins/unityshell/src/BGHash.cpp
index c791687a4..d995dd804 100644
--- a/plugins/unityshell/src/BGHash.cpp
+++ b/plugins/unityshell/src/BGHash.cpp
@@ -19,6 +19,8 @@
#include "BGHash.h"
#include <Nux/Nux.h>
#include <NuxCore/Logger.h>
+#include <boost/tokenizer.hpp>
+#include <boost/foreach.hpp>
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <libgnome-desktop/gnome-bg.h>
#include <unity-misc/gnome-bg-slideshow.h>
@@ -53,7 +55,8 @@ namespace unity {
_ubus_handle_request_colour(0)
{
_override_color.alpha= 0.0f;
-
+ UnSerializeCache();
+
background_monitor = gnome_bg_new ();
client = g_settings_new ("org.gnome.desktop.background");
@@ -70,11 +73,20 @@ namespace unity {
UBusServer *ubus = ubus_server_get_default ();
gnome_bg_load_from_preferences (background_monitor, client);
+
+ std::string filepath_hash = CreateFilepathHash(glib::String(g_strdup(gnome_bg_get_filename(background_monitor))));
+ if (G_LIKELY(cache_map_.count(filepath_hash)))
+ {
+ nux::Color color(cache_map_[filepath_hash]);
+ LOG_DEBUG(logger) << "cache hit: " << color.red << ", " << color.green << ", " << color.blue;
+ TransitionToNewColor(cache_map_[filepath_hash]);
+ }
+ else
+ {
+ LOG_DEBUG(logger) << "cache miss: " << filepath_hash;
+ g_idle_add_full (G_PRIORITY_DEFAULT, (GSourceFunc)ForceUpdate, (gpointer)this, NULL);
+ }
- glib::Object<GdkPixbuf> pixbuf(GetPixbufFromBG());
- LoadPixbufToHash(pixbuf);
-
- g_idle_add_full (G_PRIORITY_DEFAULT, (GSourceFunc)ForceUpdate, (gpointer)this, NULL);
// avoids making a new object method when all we are doing is
// calling a method with no logic
@@ -84,13 +96,12 @@ namespace unity {
_ubus_handle_request_colour = ubus_server_register_interest (ubus, UBUS_BACKGROUND_REQUEST_COLOUR_EMIT,
(UBusCallback)request_lambda,
this);
-
-
-
}
BGHash::~BGHash ()
{
+ // serialize our cache
+ SerializeCache();
g_object_unref (client);
g_object_unref (background_monitor);
UBusServer *ubus = ubus_server_get_default ();
@@ -428,20 +439,162 @@ namespace unity {
void BGHash::LoadFileToHash(const std::string path)
{
+ std::string filepath_hash = CreateFilepathHash(path);
+ if (G_LIKELY(cache_map_.count(filepath_hash)))
+ {
+ TransitionToNewColor(cache_map_[filepath_hash]);
+ }
+ else
+ {
+ glib::Error error;
+ glib::Object<GdkPixbuf> pixbuf(gdk_pixbuf_new_from_file (path.c_str (), &error));
+
+ if (error)
+ {
+ LOG_WARNING(logger) << "Could not load filename \"" << path << "\": " << error.Message();
+ _current_color = unity::colors::Aubergine;
+
+ // try and get a colour from gnome-bg, for various reasons, gnome bg might not
+ // return a correct image which sucks =\ but this is a fallback
+ pixbuf = GetPixbufFromBG();
+ }
+
+ LoadPixbufToHash (pixbuf);
+
+ cache_map_[filepath_hash] = _new_color;
+ }
+ }
+
+ std::string BGHash::CreateFilepathHash(std::string path)
+ {
glib::Error error;
- glib::Object<GdkPixbuf> pixbuf(gdk_pixbuf_new_from_file (path.c_str (), &error));
+ glib::Object<GFile> file(g_file_new_for_path(path.c_str()));
+ glib::Object<GFileInfo> file_info(g_file_query_info(file,
+ G_FILE_ATTRIBUTE_TIME_MODIFIED,
+ G_FILE_QUERY_INFO_NONE,
+ NULL, &error));
+ if (G_UNLIKELY(error))
+ {
+ LOG_ERROR(logger) << "could not hash path (" << path << ")"
+ << ": " << error.Message();
+ return std::string("");
+ }
+ else
+ {
+ glib::String modified_time(g_file_info_get_attribute_as_string(file_info, G_FILE_ATTRIBUTE_TIME_MODIFIED));
+ return path + modified_time.Str();
+ }
+ }
+
+ namespace
+ {
+ const std::string cachefilename = "/unity/bgcachefile";
+ }
- if (error)
+ void BGHash::SerializeCache()
+ {
+ glib::Error error;
+ glib::String cachedir(g_strdup(g_get_user_cache_dir()));
+ std::string fullpath(cachedir.Str() + cachefilename);
+ glib::Object<GFile> cachefile(g_file_new_for_path(fullpath.c_str()));
+ glib::Object<GOutputStream> output_stream(G_OUTPUT_STREAM(g_file_replace(cachefile,
+ NULL, FALSE, G_FILE_CREATE_NONE,
+ NULL, &error)));
+ LOG_DEBUG(logger) << "serializing cache: " << fullpath;
+ if (G_UNLIKELY(error))
{
- LOG_WARNING(logger) << "Could not load filename \"" << path << "\": " << error.Message();
- _current_color = unity::colors::Aubergine;
+ LOG_ERROR(logger) << "could not open file (" << fullpath << ")"
+ << ": " << error.Message();
+ }
+ else
+ {
+ glib::Error write_error;
+ std::ostringstream buffer;
+ for (auto ittr=cache_map_.begin(); ittr != cache_map_.end(); ittr++)
+ {
+ std::string key = (*ittr).first;
+ nux::Color value((*ittr).second);
+
+ buffer << key << ":"
+ << int(value.red * 255) << ":"
+ << int(value.green * 255) << ":"
+ << int(value.blue * 255);
+ if (ittr != --cache_map_.end())
+ {
+ buffer << ",";
+ }
+ }
+
+ const char* base_buffer = buffer.str().c_str();
+ gsize bytes_written = 0;
+ LOG_DEBUG(logger) << "writing to buffer (" << buffer.str() << ")";
+ g_output_stream_write_all(output_stream, base_buffer, strlen(base_buffer), &bytes_written, NULL, &write_error);
+ if (write_error)
+ {
+ LOG_ERROR(logger) << "could not write to file (" << fullpath << ")"
+ << ": " << error.Message();
+ }
+
+ g_output_stream_close(output_stream, NULL, NULL);
+ }
+ }
+
+ void BGHash::UnSerializeCache()
+ {
+ glib::Error error;
+ glib::String cachedir(g_strdup(g_get_user_cache_dir()));
+ std::string fullpath(cachedir.Str() + cachefilename);
+ glib::String contents;
+ gsize length;
+ g_file_get_contents(fullpath.c_str(), &contents, &length, &error);
- // try and get a colour from gnome-bg, for various reasons, gnome bg might not
- // return a correct image which sucks =\ but this is a fallback
- pixbuf = GetPixbufFromBG();
+ if (G_UNLIKELY(error))
+ {
+ LOG_ERROR(logger) << "could not open file (" << fullpath << ")"
+ << ": " << error.Message();
}
+ else
+ {
+ LOG_DEBUG(logger) << "Loading from hash file (" << fullpath << " - " << length << "): " << contents;
+ // data is filenamehash:red:green:blue,
+ // using glib instead of C++ stuff like boost because boost just corrupted everything, very weird.
+ gchar** super_tokens = NULL;
+ super_tokens = g_strsplit(contents, ",", -1);
+ if (super_tokens != NULL)
+ {
+ for (int superi = 0; super_tokens[superi]; superi++)
+ {
+ glib::String super_token(super_tokens[superi]);
+ char** sub_tokens = g_strsplit(super_token, ":", 4);
+ if (sub_tokens != NULL)
+ {
+ std::string name, red, green, blue;
+ for (int i = 0; sub_tokens[i]; i++)
+ {
+ glib::String token(sub_tokens[i]);
+ switch(i)
+ {
+ case 0: name = token.Str(); break;
+ case 1: red = token.Str(); break;
+ case 2: green = token.Str(); break;
+ case 3: blue = token.Str(); break;
+ default: break;
+ }
+ }
+ if (!name.empty())
+ {
+ LOG_DEBUG(logger) << "Unserialized cache value " << name;
+ cache_map_[name] = nux::Color(atof(red.c_str()) / 255.0f,
+ atof(green.c_str()) / 255.0f,
+ atof(blue.c_str()) / 255.0f, 1);
+ }
+ g_free(sub_tokens); // only g_free because glib:String will free the strings for us
+ }
+ }
+ g_free(super_tokens); // only g_free because glib::String will free the strings for us
+ }
- LoadPixbufToHash (pixbuf);
+ }
}
inline nux::Color GetPixbufSample (GdkPixbuf *pixbuf, int x, int y)
@@ -558,7 +711,7 @@ namespace unity {
}
else
{
- LOG_DEBUG (logger) << "got a colour image";
+ LOG_DEBUG (logger) << "got a colour image wut";
// full colour image
for (int i = 0; i < 11; i++)
{
diff --git a/plugins/unityshell/src/BGHash.h b/plugins/unityshell/src/BGHash.h
index e18ead70c..9d4ae0c4c 100644
--- a/plugins/unityshell/src/BGHash.h
+++ b/plugins/unityshell/src/BGHash.h
@@ -36,8 +36,6 @@ namespace unity
class BGHash
{
public:
-
-
BGHash ();
~BGHash ();
@@ -49,7 +47,7 @@ namespace unity
void OnBackgroundChanged (GnomeBG *bg);
void OnGSettingsChanged (GSettings *settings, gchar *key);
void OverrideColor (nux::Color color);
-
+
private:
static gboolean OnSlideshowTransition (BGHash *self);
static gboolean OnTransitionCallback (BGHash *self);
@@ -59,6 +57,10 @@ namespace unity
nux::Color InterpolateColor (nux::Color colora, nux::Color colorb, float value);
nux::Color HashColor(GdkPixbuf *pixbuf);
nux::Color MatchColor (nux::Color base_color);
+ std::string CreateFilepathHash(std::string path);
+
+ void SerializeCache();
+ void UnSerializeCache();
private:
GnomeBG *background_monitor;
@@ -80,6 +82,8 @@ namespace unity
guint64 _hires_time_end;
glib::SignalManager signal_manager_;
uint _ubus_handle_request_colour;
+
+ std::map<std::string, nux::Color> cache_map_;
};
};
diff --git a/plugins/unityshell/src/unityshell.cpp b/plugins/unityshell/src/unityshell.cpp
index 977a587f7..e183e7731 100644
--- a/plugins/unityshell/src/unityshell.cpp
+++ b/plugins/unityshell/src/unityshell.cpp
@@ -348,6 +348,7 @@ UnityScreen::UnityScreen(CompScreen* screen)
UnityScreen::~UnityScreen()
{
+ LOG_DEBUG(logger) << "UnityScreen Destructor";
notify_uninit();
unity_a11y_finalize();
diff --git a/po/ar.po b/po/ar.po
index 305d450c9..06a5f6965 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Arabic\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "إبقاء في برنامج Launcher"
+msgid "Lock to launcher"
+msgstr "حذف من برنامج Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "إنهاء"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "حذف من برنامج Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "حذف من برنامج Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "إبقاء في برنامج Launcher"
diff --git a/po/bg.po b/po/bg.po
index ab760aa2b..928569882 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Bulgarian\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Остави в програмата за стартиране"
+msgid "Lock to launcher"
+msgstr "Премахни от програмата за стартиране"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Излез"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Премахни от програмата за стартиране"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Премахни от програмата за стартиране"
+#~ msgid "Keep in launcher"
+#~ msgstr "Остави в програмата за стартиране"
diff --git a/po/cs.po b/po/cs.po
index 30453bf0a..edc9eb832 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Czech\n"
@@ -17,16 +17,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Ponechat ve Spouštěči"
+msgid "Lock to launcher"
+msgstr "Odebrat ze Spouštěče"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Konec"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Odebrat ze Spouštěče"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Odebrat ze Spouštěče"
+#~ msgid "Keep in launcher"
+#~ msgstr "Ponechat ve Spouštěči"
diff --git a/po/da.po b/po/da.po
index 7782e5899..b907fe392 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Danish\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Behold i Launcher"
+msgid "Lock to launcher"
+msgstr "Fjern fra Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Afslut"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Fjern fra Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Fjern fra Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "Behold i Launcher"
diff --git a/po/de.po b/po/de.po
index 189e526d0..735b9f069 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: German\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Im Startprogramm behalten"
+msgid "Lock to launcher"
+msgstr "Aus Startprogramm entfernen"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Beenden"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Aus Startprogramm entfernen"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Aus Startprogramm entfernen"
+#~ msgid "Keep in launcher"
+#~ msgstr "Im Startprogramm behalten"
diff --git a/po/el.po b/po/el.po
index 36eb7402e..a2772e664 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Greek\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Διατήρηση στο πρόγραμμα εκκίνησης"
+msgid "Lock to launcher"
+msgstr "Κατάργηση από το πρόγραμμα εκκίνησης"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Κλείσιμο"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Κατάργηση από το πρόγραμμα εκκίνησης"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Κατάργηση από το πρόγραμμα εκκίνησης"
+#~ msgid "Keep in launcher"
+#~ msgstr "Διατήρηση στο πρόγραμμα εκκίνησης"
diff --git a/po/es.po b/po/es.po
index ad179d230..07c2451a1 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Spanish\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Conservar en el iniciador"
+msgid "Lock to launcher"
+msgstr "Quitar del iniciador"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Salir"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Quitar del iniciador"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Quitar del iniciador"
+#~ msgid "Keep in launcher"
+#~ msgstr "Conservar en el iniciador"
diff --git a/po/fi.po b/po/fi.po
index 14af97f08..290c1b1af 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Finnish\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Pidä Launcherissa"
+msgid "Lock to launcher"
+msgstr "Poista Launcherista"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Lopeta"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Poista Launcherista"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Poista Launcherista"
+#~ msgid "Keep in launcher"
+#~ msgstr "Pidä Launcherissa"
diff --git a/po/fr.po b/po/fr.po
index ebd6e612b..24a8904da 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: French\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Conserver dans le lanceur"
+msgid "Lock to launcher"
+msgstr "Supprimer du lanceur"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Quitter"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Supprimer du lanceur"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Supprimer du lanceur"
+#~ msgid "Keep in launcher"
+#~ msgstr "Conserver dans le lanceur"
diff --git a/po/he.po b/po/he.po
index 043e292aa..2bb4b60fc 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hebrew\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "שמור ב- Launcher"
+msgid "Lock to launcher"
+msgstr "מהסר מ- Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "יציאה"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "מהסר מ- Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "מהסר מ- Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "שמור ב- Launcher"
diff --git a/po/hi.po b/po/hi.po
index 9679a94e0..949f662ea 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hindi\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "लॉन्चर में रखें"
+msgid "Lock to launcher"
+msgstr "लॉन्चर से निकालें"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "छोड़ें"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "लॉन्चर से निकालें"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "लॉन्चर से निकालें"
+#~ msgid "Keep in launcher"
+#~ msgstr "लॉन्चर में रखें"
diff --git a/po/hr.po b/po/hr.po
index e678f1afe..b176416b4 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Croatian\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Zadrži u programu za pokretanje"
+msgid "Lock to launcher"
+msgstr "Ukloni iz programa za pokretanje"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Izlaz"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Ukloni iz programa za pokretanje"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Ukloni iz programa za pokretanje"
+#~ msgid "Keep in launcher"
+#~ msgstr "Zadrži u programu za pokretanje"
diff --git a/po/hu.po b/po/hu.po
index ca11be78d..e581770cc 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Hungarian\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Megtartás a Launcherben"
+msgid "Lock to launcher"
+msgstr "Eltávolítás a Launcherből"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Kilépés"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Eltávolítás a Launcherből"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Eltávolítás a Launcherből"
+#~ msgid "Keep in launcher"
+#~ msgstr "Megtartás a Launcherben"
diff --git a/po/it.po b/po/it.po
index 6f74cf3c2..8e77ed0f1 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Italian\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Mantieni in Launcher"
+msgid "Lock to launcher"
+msgstr "Rimuovi da Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Esci"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Rimuovi da Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Rimuovi da Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "Mantieni in Launcher"
diff --git a/po/ja.po b/po/ja.po
index 71a861151..45f20a2b5 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Japanese\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Launcher に残す"
+msgid "Lock to launcher"
+msgstr "Launcher から削除"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "中止"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Launcher から削除"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Launcher から削除"
+#~ msgid "Keep in launcher"
+#~ msgstr "Launcher に残す"
diff --git a/po/ko.po b/po/ko.po
index 31f7e7267..e5e92e434 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Korean\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "시작 관리자에 유지"
+msgid "Lock to launcher"
+msgstr "시작 관리자에서 제거"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "끝내기"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "시작 관리자에서 제거"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "시작 관리자에서 제거"
+#~ msgid "Keep in launcher"
+#~ msgstr "시작 관리자에 유지"
diff --git a/po/nb.po b/po/nb.po
index 40a8eba06..ac0e630ef 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Norwegian Bokmal\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Behold i oppstartsprogram"
+msgid "Lock to launcher"
+msgstr "Fjern fra oppstartsprogram"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Avslutt"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Fjern fra oppstartsprogram"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Fjern fra oppstartsprogram"
+#~ msgid "Keep in launcher"
+#~ msgstr "Behold i oppstartsprogram"
diff --git a/po/nl.po b/po/nl.po
index f178c5f6e..09e6d1734 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Dutch\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Bewaren in starter"
+msgid "Lock to launcher"
+msgstr "Verwijderen uit starter"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Afsluiten"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Verwijderen uit starter"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Verwijderen uit starter"
+#~ msgid "Keep in launcher"
+#~ msgstr "Bewaren in starter"
diff --git a/po/pl.po b/po/pl.po
index b8b0f79eb..c9568a755 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Polish\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Pozostaw w obszarze uruchamiania"
+msgid "Lock to launcher"
+msgstr "Usuń z obszaru uruchamiania"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Zamknij"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Usuń z obszaru uruchamiania"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Usuń z obszaru uruchamiania"
+#~ msgid "Keep in launcher"
+#~ msgstr "Pozostaw w obszarze uruchamiania"
diff --git a/po/pt.po b/po/pt.po
index a4850294f..ac4c18642 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Portuguese\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Manter no Launcher"
+msgid "Lock to launcher"
+msgstr "Remover do Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Abandonar"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Remover do Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Remover do Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "Manter no Launcher"
diff --git a/po/pt_BR.po b/po/pt_BR.po
index a9b6f472c..771911c8d 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Brazilian Portuguese\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Manter no Inicializador"
+msgid "Lock to launcher"
+msgstr "Remover do Inicializador"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Sair"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Remover do Inicializador"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Remover do Inicializador"
+#~ msgid "Keep in launcher"
+#~ msgstr "Manter no Inicializador"
diff --git a/po/ro.po b/po/ro.po
index 9f70e5add..a7fc48415 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Romanian\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Păstrează în programul de lansare"
+msgid "Lock to launcher"
+msgstr "Îndepărtează din programul de lansare"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Ieşire"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Îndepărtează din programul de lansare"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Îndepărtează din programul de lansare"
+#~ msgid "Keep in launcher"
+#~ msgstr "Păstrează în programul de lansare"
diff --git a/po/ru.po b/po/ru.po
index 2cc38bf3a..184fccdad 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Russian\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Оставить в модуле запуска"
+msgid "Lock to launcher"
+msgstr "Удалить из модуля запуска"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Выход"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Удалить из модуля запуска"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Удалить из модуля запуска"
+#~ msgid "Keep in launcher"
+#~ msgstr "Оставить в модуле запуска"
diff --git a/po/sk.po b/po/sk.po
index 4daeb9e38..0d6b01ca2 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Slovak\n"
@@ -17,16 +17,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Ponechať v aplikácii Launcher"
+msgid "Lock to launcher"
+msgstr "Odstrániť z aplikácie Launcher"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Ukončiť"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Odstrániť z aplikácie Launcher"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Odstrániť z aplikácie Launcher"
+#~ msgid "Keep in launcher"
+#~ msgstr "Ponechať v aplikácii Launcher"
diff --git a/po/sl.po b/po/sl.po
index 6e7eee374..f15bbb38d 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Slovenian\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Obdrži v zaganjalniku"
+msgid "Lock to launcher"
+msgstr "Odstrani iz zaganjalnika"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Končaj"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Odstrani iz zaganjalnika"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Odstrani iz zaganjalnika"
+#~ msgid "Keep in launcher"
+#~ msgstr "Obdrži v zaganjalniku"
diff --git a/po/sr.po b/po/sr.po
index 9525bd68d..bb5c4ec47 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Serbian\n"
@@ -18,16 +18,50 @@ 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 " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -39,88 +73,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Zadrži u pokretaču"
+msgid "Lock to launcher"
+msgstr "Ukloni iz pokretača"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Napusti"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Ukloni iz pokretača"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Ukloni iz pokretača"
+#~ msgid "Keep in launcher"
+#~ msgstr "Zadrži u pokretaču"
diff --git a/po/sv.po b/po/sv.po
index cae7b9773..7bdf2c506 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:36-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Swedish\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Behåll i startprogram"
+msgid "Lock to launcher"
+msgstr "Ta bort från startprogram"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Avsluta"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Ta bort från startprogram"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Ta bort från startprogram"
+#~ msgid "Keep in launcher"
+#~ msgstr "Behåll i startprogram"
diff --git a/po/th.po b/po/th.po
index ff2ae937d..117e56377 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Thai\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "อยู่ในโปรแกรมเรียกทำงาน"
+msgid "Lock to launcher"
+msgstr "ออกจากโปรแกรมเรียกทำงาน"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "จบการทำงาน"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "ออกจากโปรแกรมเรียกทำงาน"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "ออกจากโปรแกรมเรียกทำงาน"
+#~ msgid "Keep in launcher"
+#~ msgstr "อยู่ในโปรแกรมเรียกทำงาน"
diff --git a/po/tr.po b/po/tr.po
index 4cdc58558..56c0544a8 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Turkish\n"
@@ -17,16 +17,50 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -38,88 +72,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "Başlatıcıda Tut"
+msgid "Lock to launcher"
+msgstr "Başlatıcıdan Kaldır"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "Çık"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "Başlatıcıdan Kaldır"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "Başlatıcıdan Kaldır"
+#~ msgid "Keep in launcher"
+#~ msgstr "Başlatıcıda Tut"
diff --git a/po/unity.pot b/po/unity.pot
index 7e01916a1..03e8a26de 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: 2012-02-12 23:05+0000\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"
@@ -17,7 +17,10 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "Keep in launcher"
+msgid "Lock to launcher"
+msgstr ""
+
+msgid "Unlock from launcher"
msgstr ""
msgid "Quit"
@@ -26,6 +29,10 @@ msgstr ""
msgid "Open"
msgstr ""
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
+msgstr ""
+
msgid "Eject"
msgstr ""
@@ -47,74 +54,201 @@ msgstr ""
msgid "Workspace Switcher"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+msgid "See fewer results"
+msgstr ""
+
+msgid "Drop To Add Application"
+msgstr ""
+
+msgid "Trash"
+msgstr ""
+
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Dash home"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
msgid "Search"
msgstr ""
-msgid "Search across all places"
+msgid "Home"
msgstr ""
-msgid "See fewer results"
+msgid "Home screen"
msgstr ""
-msgid "Shortcuts"
+msgid "Show Desktop"
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Categories"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+msgid "Multi-range"
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Rating"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Tracks"
msgstr ""
-msgid "Browse the Web"
+msgid "min"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
-msgid "Check Email"
+msgid " (Press)"
msgstr ""
-msgid "Listen to Music"
+msgid "Open Launcher, displays shortcuts."
msgstr ""
-msgid "Drop To Add Application"
+msgid "Open Launcher keyboard navigation mode."
msgstr ""
-msgid "Trash"
+msgid "Switch applications via Launcher."
msgstr ""
-msgid "Empty Trash..."
+msgid " + 1 to 9"
+msgstr ""
+
+msgid "Same as clicking on a Launcher icon."
+msgstr ""
+
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid " (Tap)"
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+msgid "Moves the focus."
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Enter & Return"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Moves focus between indicators."
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Switching
+msgid "Switching"
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+#. Windows
+msgid "Windows"
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Maximises the current window."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Restores or minimises current window."
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid "Semi-maximises current window."
msgstr ""
-msgid "Empty Trash"
+msgid "Closes current window."
msgstr ""
-msgid "Launcher & Menus"
+msgid "Opens window accessibility menu."
msgstr ""
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid "Places window in corresponding positions."
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Move window."
msgstr ""
-msgid "Touches the top left corner of the screen"
+msgid "Resize window."
msgstr ""
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 09400dee9..b414f50c1 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Chinese (simplified)\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "保留在启动程序中"
+msgid "Lock to launcher"
+msgstr "从启动程序中删除"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "退出"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "从启动程序中删除"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "从启动程序中删除"
+#~ msgid "Keep in launcher"
+#~ msgstr "保留在启动程序中"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index 6bc172a3f..133d3e8c5 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: 2012-02-12 23:05+0000\n"
"PO-Revision-Date: 2010-03-02 12:37-0500\n"
"Last-Translator: Canonical OEM\n"
"Language-Team: Chinese (traditional)\n"
@@ -16,16 +16,50 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-msgid "<b>Show the launcher when the pointer:</b>"
+msgid " (Press)"
msgstr ""
-msgid "All items in the Trash will be permanently deleted."
+msgid " (Tap)"
msgstr ""
-msgid "Browse the Web"
+msgid " + 1 to 9"
msgstr ""
-msgid "Check Email"
+msgid " + Shift + 1 to 9"
+msgstr ""
+
+msgid "'Run Command' mode."
+msgstr ""
+
+msgid "<small><b>Filter results</b></small>"
+msgstr ""
+
+msgid "Categories"
+msgstr ""
+
+msgid "Closes current window."
+msgstr ""
+
+msgid "Control + Alt + Cursor Keys"
+msgstr ""
+
+msgid "Control + Alt + Shift + Cursor Keys"
+msgstr ""
+
+msgid "Cursor Keys"
+msgstr ""
+
+msgid "Cursor Left or Right"
+msgstr ""
+
+#. Dash...
+msgid "Dash"
+msgstr ""
+
+msgid "Dash Home"
+msgstr ""
+
+msgid "Dash home"
msgstr ""
msgid "Drop To Add Application"
@@ -37,88 +71,189 @@ msgstr ""
msgid "Eject parent drive"
msgstr ""
-msgid "Empty Trash"
+msgid "Empty Trash..."
+msgstr ""
+
+msgid "Enter & Return"
msgstr ""
-msgid "Empty Trash..."
+#. TRANSLATORS: This refers to the action of formatting a device
+msgid "Format..."
msgstr ""
-msgid "Empty all items from Trash?"
+msgid "Home"
msgstr ""
-#. Find Files
-msgid "Find Files"
+msgid "Home screen"
msgstr ""
-#. Internet Apps
-msgid "Internet Apps"
+#. TODO move category text into a vector...
+#. Launcher...
+msgid "Launcher"
msgstr ""
#, fuzzy
-msgid "Keep in launcher"
-msgstr "保留在啟動程式中"
+msgid "Lock to launcher"
+msgstr "從啟動程式中刪除"
+
+msgid "Maximises the current window."
+msgstr ""
+
+msgid "Minimises all windows."
+msgstr ""
+
+msgid "Move focused window to different workspace."
+msgstr ""
-msgid "Launcher & Menus"
+msgid "Move window."
msgstr ""
-msgid "Listen to Music"
+msgid "Moves focus between indicators."
msgstr ""
-#. Media Apps
-msgid "Media Apps"
+msgid "Moves the focus."
msgstr ""
-#. More Apps
-msgid "More Apps"
+msgid "Multi-range"
msgstr ""
msgid "Open"
msgstr ""
-msgid "Pushes the left edge of the screen"
+msgid "Open Launcher keyboard navigation mode."
+msgstr ""
+
+msgid "Open Launcher, displays shortcuts."
+msgstr ""
+
+msgid "Open currently focused item."
+msgstr ""
+
+msgid "Open new window of the app."
+msgstr ""
+
+msgid "Open the Dash App Lens."
+msgstr ""
+
+msgid "Open the Dash Files Lens."
+msgstr ""
+
+msgid "Open the Dash Home."
+msgstr ""
+
+msgid "Open the Dash Music Lens."
+msgstr ""
+
+msgid "Open the Trash."
+msgstr ""
+
+msgid "Opens the indicator menu."
+msgstr ""
+
+msgid "Opens window accessibility menu."
+msgstr ""
+
+msgid "Places window in corresponding positions."
msgstr ""
msgid "Quit"
msgstr "結束"
+msgid "Rating"
+msgstr ""
+
+msgid "Resize window."
+msgstr ""
+
+msgid "Restores or minimises current window."
+msgstr ""
+
+msgid "Reveals application menu."
+msgstr ""
+
msgid "Safely remove"
msgstr ""
msgid "Safely remove parent drive"
msgstr ""
-msgid "Search"
+msgid "Same as clicking on a Launcher icon."
msgstr ""
-msgid "Search across all places"
+msgid "Search"
msgstr ""
msgid "See fewer results"
msgstr ""
-msgid "Shortcuts"
+msgid "Semi-maximises current window."
+msgstr ""
+
+msgid "Show Desktop"
+msgstr ""
+
+msgid "Spread workspaces."
+msgstr ""
+
+msgid "Spreads all windows in the current workspace."
+msgstr ""
+
+msgid "Switch applications via Launcher."
+msgstr ""
+
+msgid "Switch between applications."
+msgstr ""
+
+msgid "Switch windows of current application."
+msgstr ""
+
+msgid "Switch workspaces."
+msgstr ""
+
+msgid "Switches between Lenses."
+msgstr ""
+
+#. Switching
+msgid "Switching"
msgstr ""
msgid "The drive has been successfully ejected"
msgstr ""
-msgid "Touches the top left corner of the screen"
+#. Top Bar
+msgid "Top Bar"
+msgstr ""
+
+msgid "Tracks"
msgstr ""
msgid "Trash"
msgstr ""
+msgid "Ubuntu Desktop"
+msgstr ""
+
+#, fuzzy
+msgid "Unlock from launcher"
+msgstr "從啟動程式中刪除"
+
msgid "Unmount"
msgstr ""
-#. Photos
-#. FIXME: Need to figure out the default
-msgid "View Photos"
+#. Windows
+msgid "Windows"
msgstr ""
msgid "Workspace Switcher"
msgstr ""
+#. Workspaces
+msgid "Workspaces"
+msgstr ""
+
+msgid "min"
+msgstr ""
+
#, fuzzy
-#~ msgid "Remove from launcher"
-#~ msgstr "從啟動程式中刪除"
+#~ msgid "Keep in launcher"
+#~ msgstr "保留在啟動程式中"
diff --git a/standalone-clients/TestBGHash.cpp b/standalone-clients/TestBGHash.cpp
index 9c9fc1771..5548c2031 100644
--- a/standalone-clients/TestBGHash.cpp
+++ b/standalone-clients/TestBGHash.cpp
@@ -26,6 +26,11 @@
#include "ubus-server.h"
#include "UBusMessages.h"
+namespace
+{
+ nux::logging::Logger logger("unity.BGHash");
+}
+
class TestRunner
{
public:
@@ -52,7 +57,10 @@ void TestRunner::Init ()
{
nux::Color hash = bghash.CurrentColor ();
- g_debug ("hashed color: %f - %f - %f", hash.red, hash.green, hash.blue);
+ LOG_DEBUG(logger) << "hashed color: "
+ << hash.red << ", "
+ << hash.green << ", "
+ << hash.blue;
}
@@ -79,7 +87,10 @@ test_handler_color_change (GVariant *data, gpointer val)
gdouble red, green, blue, alpha;
g_variant_get (data, "(dddd)", &red, &green, &blue, &alpha);
- //g_debug ("new color: %f, %f, %f", red, green, blue);
+ LOG_TRACE(logger) << "hashed color: "
+ << red << ", "
+ << green << ", "
+ << blue;
}
int main(int argc, char **argv)
@@ -98,6 +109,9 @@ int main(int argc, char **argv)
gtk_init (&argc, &argv);
nux::NuxInitialize(0);
+ // Slightly higher as we're more likely to test things we know will fail
+ nux::logging::configure_logging("unity.BGHash=debug");
+
nux::logging::configure_logging(::getenv("UNITY_LOG_SEVERITY"));
unity::BGHash bg_hash;