diff options
| author | Gord Allott <gord.allott@canonical.com> | 2012-02-13 12:03:06 +0000 |
|---|---|---|
| committer | Gord Allott <gord.allott@canonical.com> | 2012-02-13 12:03:06 +0000 |
| commit | 5ec9ad007b762da3ea092c718d997fb56a389348 (patch) | |
| tree | 26681cb5f4dae03ffc875553d123de3db357f197 | |
| parent | 71c890a0db9f47bf401275b80810e70287840df1 (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.cpp | 187 | ||||
| -rw-r--r-- | plugins/unityshell/src/BGHash.h | 10 | ||||
| -rw-r--r-- | plugins/unityshell/src/unityshell.cpp | 1 | ||||
| -rw-r--r-- | po/ar.po | 195 | ||||
| -rw-r--r-- | po/bg.po | 195 | ||||
| -rw-r--r-- | po/cs.po | 195 | ||||
| -rw-r--r-- | po/da.po | 195 | ||||
| -rw-r--r-- | po/de.po | 195 | ||||
| -rw-r--r-- | po/el.po | 195 | ||||
| -rw-r--r-- | po/es.po | 195 | ||||
| -rw-r--r-- | po/fi.po | 195 | ||||
| -rw-r--r-- | po/fr.po | 195 | ||||
| -rw-r--r-- | po/he.po | 195 | ||||
| -rw-r--r-- | po/hi.po | 195 | ||||
| -rw-r--r-- | po/hr.po | 195 | ||||
| -rw-r--r-- | po/hu.po | 195 | ||||
| -rw-r--r-- | po/it.po | 195 | ||||
| -rw-r--r-- | po/ja.po | 195 | ||||
| -rw-r--r-- | po/ko.po | 195 | ||||
| -rw-r--r-- | po/nb.po | 195 | ||||
| -rw-r--r-- | po/nl.po | 195 | ||||
| -rw-r--r-- | po/pl.po | 195 | ||||
| -rw-r--r-- | po/pt.po | 195 | ||||
| -rw-r--r-- | po/pt_BR.po | 195 | ||||
| -rw-r--r-- | po/ro.po | 195 | ||||
| -rw-r--r-- | po/ru.po | 195 | ||||
| -rw-r--r-- | po/sk.po | 195 | ||||
| -rw-r--r-- | po/sl.po | 195 | ||||
| -rw-r--r-- | po/sr.po | 195 | ||||
| -rw-r--r-- | po/sv.po | 195 | ||||
| -rw-r--r-- | po/th.po | 195 | ||||
| -rw-r--r-- | po/tr.po | 195 | ||||
| -rw-r--r-- | po/unity.pot | 192 | ||||
| -rw-r--r-- | po/zh_CN.po | 195 | ||||
| -rw-r--r-- | po/zh_TW.po | 195 | ||||
| -rw-r--r-- | standalone-clients/TestBGHash.cpp | 18 |
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(); @@ -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" @@ -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 "Остави в програмата за стартиране" @@ -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" @@ -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" @@ -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" @@ -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 "Διατήρηση στο πρόγραμμα εκκίνησης" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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 "लॉन्चर में रखें" @@ -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" @@ -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" @@ -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" @@ -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 に残す" @@ -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 "시작 관리자에 유지" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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 "Оставить в модуле запуска" @@ -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" @@ -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" @@ -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" @@ -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" @@ -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 "อยู่ในโปรแกรมเรียกทำงาน" @@ -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; |
