diff --git a/UnityCore/ModelIterator-inl.h b/UnityCore/ModelIterator-inl.h index 7e6f7c213..b15fb05c9 100644 --- a/UnityCore/ModelIterator-inl.h +++ b/UnityCore/ModelIterator-inl.h @@ -136,14 +136,14 @@ Adaptor& ModelIterator::operator*() } template -bool const ModelIterator::IsLast() +bool ModelIterator::IsLast() { if (!model_) return true; return (dee_model_is_last(model_, iter_)); } template -bool const ModelIterator::IsFirst() +bool ModelIterator::IsFirst() { if (!model_) return true; return (dee_model_is_first(model_, iter_)); diff --git a/UnityCore/ModelIterator.h b/UnityCore/ModelIterator.h index 7170267c2..04d24a1c6 100644 --- a/UnityCore/ModelIterator.h +++ b/UnityCore/ModelIterator.h @@ -53,27 +53,27 @@ class ModelIterator : public std::iterator(const ModelIterator& lhs, const ModelIterator& rhs) + friend inline bool operator>(const ModelIterator& lhs, const ModelIterator& rhs) { return (dee_model_get_position(lhs.model_, lhs.iter_) > dee_model_get_position(rhs.model_, rhs.iter_)); } - friend inline bool const operator<=(const ModelIterator& lhs, const ModelIterator& rhs) + friend inline bool operator<=(const ModelIterator& lhs, const ModelIterator& rhs) { return (dee_model_get_position(lhs.model_, lhs.iter_) <= dee_model_get_position(rhs.model_, rhs.iter_)); } - friend inline bool const operator>=(const ModelIterator& lhs, const ModelIterator& rhs) + friend inline bool operator>=(const ModelIterator& lhs, const ModelIterator& rhs) { return (dee_model_get_position(lhs.model_, lhs.iter_) >= dee_model_get_position(rhs.model_, rhs.iter_)); } - friend inline bool const operator==(const ModelIterator& lhs, const ModelIterator& rhs) + friend inline bool operator==(const ModelIterator& lhs, const ModelIterator& rhs) { return (lhs.iter_ == rhs.iter_); } @@ -85,8 +85,8 @@ class ModelIterator : public std::iterator model_; diff --git a/dash/CoverflowResultView.cpp b/dash/CoverflowResultView.cpp index 9ca15174f..3c9180ef5 100755 --- a/dash/CoverflowResultView.cpp +++ b/dash/CoverflowResultView.cpp @@ -251,11 +251,10 @@ void CoverflowResultView::DrawContent(nux::GraphicsEngine& GfxContext, bool forc GfxContext.PushClippingRectangle(base); if (RedirectedAncestor()) - graphics::ClearGeometry(GetGeometry()); + graphics::ClearGeometry(base); if (GetCompositionLayout()) { - nux::Geometry geo = GetCompositionLayout()->GetGeometry(); GetCompositionLayout()->ProcessDraw(GfxContext, force_draw); } diff --git a/dash/DashController.cpp b/dash/DashController.cpp index 68ca20c3e..7c0635114 100644 --- a/dash/DashController.cpp +++ b/dash/DashController.cpp @@ -152,8 +152,6 @@ void Controller::SetupDashView() window_->SetLayout(layout); window_->UpdateInputWindowGeometry(); - - ubus_manager_.UnregisterInterest(place_entry_request_id_); } void Controller::RegisterUBusInterests() @@ -162,9 +160,6 @@ void Controller::RegisterUBusInterests() sigc::mem_fun(this, &Controller::OnExternalShowDash)); ubus_manager_.RegisterInterest(UBUS_OVERLAY_CLOSE_REQUEST, sigc::mem_fun(this, &Controller::OnExternalHideDash)); - place_entry_request_id_ = - ubus_manager_.RegisterInterest(UBUS_PLACE_ENTRY_ACTIVATE_REQUEST, - sigc::mem_fun(this, &Controller::OnActivateRequest)); ubus_manager_.RegisterInterest(UBUS_DASH_ABOUT_TO_SHOW, [&] (GVariant*) { EnsureDash(); }); ubus_manager_.RegisterInterest(UBUS_OVERLAY_SHOWN, [&] (GVariant *data) @@ -465,6 +460,11 @@ bool Controller::IsVisible() const return visible_; } +bool Controller::IsCommandLensOpen() const +{ + return visible_ && view_->IsCommandLensOpen(); +} + nux::Geometry Controller::GetInputWindowGeometry() { EnsureDash(); diff --git a/dash/DashController.h b/dash/DashController.h index 28fabc5c4..4dd2a709e 100644 --- a/dash/DashController.h +++ b/dash/DashController.h @@ -65,6 +65,7 @@ class Controller : public unity::debug::Introspectable void ReFocusKeyInput(); bool IsVisible() const; + bool IsCommandLensOpen() const; nux::Geometry GetInputWindowGeometry(); protected: @@ -104,7 +105,6 @@ class Controller : public unity::debug::Introspectable DashView* view_; sigc::connection screen_ungrabbed_slot_; - unsigned place_entry_request_id_; glib::DBusServer dbus_server_; glib::TimeoutSeconds ensure_timeout_; nux::animation::AnimateValue timeline_animator_; diff --git a/dash/DashView.cpp b/dash/DashView.cpp index 9c3cdc856..9ca70f867 100644 --- a/dash/DashView.cpp +++ b/dash/DashView.cpp @@ -180,6 +180,12 @@ void DashView::SetMonitorOffset(int x, int y) renderer_.y_offset = y; } +bool DashView::IsCommandLensOpen() const +{ + return (scope_bar_->GetActiveScopeId() == "commands.scope"); +} + + void DashView::OnResultActivated(ResultView::ActivateType type, LocalResult const& local_result, GVariant* data, std::string const& unique_id) { last_activated_result_ = local_result; @@ -653,7 +659,7 @@ void DashView::Draw(nux::GraphicsEngine& graphics_engine, bool force_draw) renderer_geo.y += panel_style.panel_height; renderer_geo.height += panel_style.panel_height; - renderer_.DrawFull(graphics_engine, content_geo_, renderer_geo_abs, renderer_geo, true); + renderer_.DrawFull(graphics_engine, content_geo_, renderer_geo_abs, renderer_geo, false); } void DashView::DrawContent(nux::GraphicsEngine& graphics_engine, bool force_draw) diff --git a/dash/DashView.h b/dash/DashView.h index cce109ceb..28105e2fe 100644 --- a/dash/DashView.h +++ b/dash/DashView.h @@ -68,6 +68,8 @@ class DashView : public nux::View, public unity::debug::Introspectable void OnActivateRequest(GVariant* args); void SetMonitorOffset(int x, int y); + bool IsCommandLensOpen() const; + std::string const GetIdForShortcutActivation(std::string const& shortcut) const; std::vector GetAllShortcuts(); diff --git a/dash/FilterMultiRangeWidget.cpp b/dash/FilterMultiRangeWidget.cpp index afe95ac34..8a95217f5 100644 --- a/dash/FilterMultiRangeWidget.cpp +++ b/dash/FilterMultiRangeWidget.cpp @@ -279,11 +279,6 @@ void FilterMultiRangeWidget::RecvMouseDrag(int x, int y, int dx, int dy, unsigne return; dragging_ = true; - nux::Geometry mouse_down_button_geometry = mouse_down_button_->GetAbsoluteGeometry(); - - nux::Geometry left_active_button_geometry = mouse_down_left_active_button_->GetAbsoluteGeometry(); - nux::Geometry right_active_button_geometry = mouse_down_right_active_button_->GetAbsoluteGeometry(); - auto end = buttons_.end(); int found_buttons = 0; for (auto iter = buttons_.begin(); iter != end; ++iter) diff --git a/dash/ResultViewGrid.cpp b/dash/ResultViewGrid.cpp index 87f37734d..cfeb7aacb 100644 --- a/dash/ResultViewGrid.cpp +++ b/dash/ResultViewGrid.cpp @@ -764,7 +764,6 @@ void ResultViewGrid::DrawContent(nux::GraphicsEngine& GfxContext, bool force_dra if (GetCompositionLayout()) { - nux::Geometry geo = GetCompositionLayout()->GetGeometry(); GetCompositionLayout()->ProcessDraw(GfxContext, force_draw); } diff --git a/dash/ScopeBar.cpp b/dash/ScopeBar.cpp index d146d3857..ce9f87690 100644 --- a/dash/ScopeBar.cpp +++ b/dash/ScopeBar.cpp @@ -364,5 +364,15 @@ void ScopeBar::AddProperties(GVariantBuilder* builder) } } +std::string ScopeBar::GetActiveScopeId() const +{ + for (auto icon : icons_) + { + if (icon->active) + return icon->id; + } + return ""; +} + } } diff --git a/dash/ScopeBar.h b/dash/ScopeBar.h index b381428ef..fa87eea88 100644 --- a/dash/ScopeBar.h +++ b/dash/ScopeBar.h @@ -62,6 +62,8 @@ class ScopeBar : public nux::View, public unity::debug::Introspectable void ActivateNext(); void ActivatePrevious(); + std::string GetActiveScopeId() const; + sigc::signal scope_activated; private: diff --git a/dash/ScopeView.cpp b/dash/ScopeView.cpp index ef571e2c8..6739638f7 100755 --- a/dash/ScopeView.cpp +++ b/dash/ScopeView.cpp @@ -256,11 +256,6 @@ void ScopeView::SetupViews(nux::Area* show_filters) scroll_view_->EnableHorizontalScrollBar(false); layout_->AddView(scroll_view_); - scroll_view_->geometry_changed.connect([this] (nux::Area *area, nux::Geometry& geo) - { - CheckScrollBarState(); - }); - scroll_layout_ = new nux::VLayout(NUX_TRACKER_LOCATION); scroll_view_->SetLayout(scroll_layout_); scroll_view_->SetRightArea(show_filters); @@ -827,13 +822,13 @@ void ScopeView::OnGroupExpanded(PlacesGroup* group) void ScopeView::CheckScrollBarState() { - if (scroll_layout_->GetGeometry().height > scroll_view_->GetGeometry().height) + if (scroll_layout_->GetHeight() > scroll_view_->GetHeight()) { - scroll_view_->EnableVerticalScrollBar(true); + scroll_view_->EnableVerticalScrollBar(true); } else { - scroll_view_->EnableVerticalScrollBar(false); + scroll_view_->EnableVerticalScrollBar(false); } } @@ -880,6 +875,7 @@ void ScopeView::DrawContent(nux::GraphicsEngine& graphics_engine, bool force_dra { nux::Geometry const& geo(GetGeometry()); graphics_engine.PushClippingRectangle(geo); + CheckScrollBarState(); if (!IsFullRedraw() && RedirectedAncestor()) { diff --git a/debian/changelog b/debian/changelog index d223c0b9c..3b5dca8b4 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,67 @@ unity (7.0.0daily13.04.10ubuntu.unity.experimental.certified-0ubuntu1) raring; u -- Ubuntu daily release Wed, 10 Apr 2013 07:16:02 +0000 +unity (7.0.0daily13.04.15-0ubuntu1) raring; urgency=low + + [ Brandon Schaefer ] + * Command lens does not close when pressing Alt+F2 (LP: #1167466) + + [ Andrea Azzarone ] + * dash preview animation is slow on high resolution screens (also + fullscreen mode) (LP: #1055126) + + [ Marco Trevisan (Treviño) ] + * Unity makes unneeded copies of Nux DrawList (LP: #1167605) + * Unityshell uses much of his CPU time only to get tray XIDs from + PanelController (LP: #1167894) + * Adding Lens results is more expensive than needed (LP: #1168569) + * Opening new-window from quicklist static action does not focus the + newly opened window (LP: #1164483) + * Launcher pre-processes icons also when the icons have not been + changed since last draw cycle (LP: #1168556) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 3300 + + -- Ubuntu daily release Mon, 15 Apr 2013 04:17:42 +0000 + +unity (7.0.0daily13.04.10-0ubuntu1) raring; urgency=low + + [ Andrea Azzarone ] + * Launcher icons automatically placed in the launcher by USC (or apps + lens) fail to have running 'pips'. (LP: #1165097) + + [ Marco Trevisan (Treviño) ] + * Unity wastes some memory by allocating multiple times the same + texture (LP: #1166532) + * Unity is creating multiple instances of DBusIndicators per each + monitor (LP: #1166550) + + [ Michi Henning ] + * ResultIterator.h defines functions that return const values (LP: + #1163705) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 3290 + + -- Ubuntu daily release Wed, 10 Apr 2013 04:03:19 +0000 + +unity (7.0.0daily13.04.08-0ubuntu1) raring; urgency=low + + [ Tigran Gabrielyan ] + * [UIFe] Window list in right click context menu should indicate the + focused window (LP: #1152477) + + [ Andrea Azzarone ] + * Launcher - When a app is automatically placed in the Launcher after + being installed from the Software Center, it should be in the 'non- + running' state (LP: #987727) + + [ Ubuntu daily release ] + * Automatic snapshot from revision 3283 + + -- Ubuntu daily release Mon, 08 Apr 2013 04:02:51 +0000 + unity (7.0.0daily13.04.05.2-0ubuntu1) raring; urgency=low * Revert r3266 "Don't close the dash when switching from the command lens diff --git a/debian/control b/debian/control index 748b46907..df05de639 100644 --- a/debian/control +++ b/debian/control @@ -28,7 +28,7 @@ Build-Depends: cmake, libunity-misc-dev (>= 4.0.4), libgrail-dev (>= 1.0.20), libxcb-icccm4-dev, - libnux-4.0-dev (>= 4.0.0daily13.01.18bzr752), + libnux-4.0-dev (>= 4.0.1), compiz-dev (>= 1:0.9.9~daily13.01.25bzr3586), libcompizconfig0-dev (>= 1:0.9.9~daily12.12.05-0ubuntu2), xsltproc, diff --git a/launcher/ApplicationLauncherIcon.cpp b/launcher/ApplicationLauncherIcon.cpp index ad8f11e84..b38629760 100644 --- a/launcher/ApplicationLauncherIcon.cpp +++ b/launcher/ApplicationLauncherIcon.cpp @@ -59,7 +59,6 @@ NUX_IMPLEMENT_OBJECT_TYPE(ApplicationLauncherIcon); ApplicationLauncherIcon::ApplicationLauncherIcon(ApplicationPtr const& app) : SimpleLauncherIcon(IconType::APPLICATION) - , app_(app) , _startup_notification_timestamp(0) , _last_scroll_timestamp(0) , _last_scroll_direction(ScrollDirection::DOWN) @@ -88,25 +87,68 @@ ApplicationLauncherIcon::ApplicationLauncherIcon(ApplicationPtr const& app) << ", active: " << (app->active() ? "yes" : "no") << ", running: " << (app->running() ? "yes" : "no"); + SetApplication(app); + + WindowManager& wm = WindowManager::Default(); + wm.window_minimized.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::OnWindowMinimized)); + wm.window_moved.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::OnWindowMoved)); + wm.screen_viewport_switch_ended.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); + wm.terminate_expo.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); + + EnsureWindowState(); + UpdateMenus(); + UpdateDesktopFile(); + UpdateBackgroundColor(); + + // hack + SetProgress(0.0f); +} + +ApplicationLauncherIcon::~ApplicationLauncherIcon() +{ + if (app_) + { + app_->sticky = false; + app_->seen = false; + } + + DisconnectApplicationSignalsConnections(); +} + +void ApplicationLauncherIcon::SetApplication(ApplicationPtr const& app) +{ + if (app_ == app) + return; + + app_ = app; + DisconnectApplicationSignalsConnections(); + SetupApplicationSignalsConnections(); +} + +void ApplicationLauncherIcon::SetupApplicationSignalsConnections() +{ // Lambda functions should be fine here because when the application the icon // is only ever removed when the application is closed. - app->window_opened.connect([this](ApplicationWindow const&) { + window_opened_connection_ = app_->window_opened.connect([this](ApplicationWindow const&) { EnsureWindowState(); UpdateMenus(); UpdateIconGeometries(GetCenters()); }); - app->window_closed.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); - app->window_moved.connect(sigc::hide(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState))); - app->urgent.changed.connect([this](bool const& urgent) { + window_closed_connection_ = app_->window_closed.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); + window_moved_connection_ = app_->window_moved.connect(sigc::hide(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState))); + + urgent_changed_connection_ = app_->urgent.changed.connect([this](bool const& urgent) { LOG_DEBUG(logger) << tooltip_text() << " urgent now " << (urgent ? "true" : "false"); SetQuirk(Quirk::URGENT, urgent); }); - app->active.changed.connect([this](bool const& active) { + + active_changed_connection_ = app_->active.changed.connect([this](bool const& active) { LOG_DEBUG(logger) << tooltip_text() << " active now " << (active ? "true" : "false"); SetQuirk(Quirk::ACTIVE, active); }); - app->running.changed.connect([this](bool const& running) { + + running_changed_connection_ = app_->running.changed.connect([this](bool const& running) { LOG_DEBUG(logger) << tooltip_text() << " running now " << (running ? "true" : "false"); SetQuirk(Quirk::RUNNING, running); @@ -131,12 +173,13 @@ ApplicationLauncherIcon::ApplicationLauncherIcon(ApplicationPtr const& app) UpdateIconGeometries(GetCenters()); } }); - app->visible.changed.connect([this](bool const& visible) { + + visible_changed_connection_ = app_->visible.changed.connect([this](bool const& visible) { if (!IsSticky()) SetQuirk(Quirk::VISIBLE, visible); }); - app->closed.connect([this]() { + closed_changed_connection_ = app_->closed.connect([this]() { if (!IsSticky()) { SetQuirk(Quirk::VISIBLE, false); @@ -153,29 +196,18 @@ ApplicationLauncherIcon::ApplicationLauncherIcon(ApplicationPtr const& app) }, ICON_REMOVE_TIMEOUT); } }); - - WindowManager& wm = WindowManager::Default(); - wm.window_minimized.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::OnWindowMinimized)); - wm.window_moved.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::OnWindowMoved)); - wm.screen_viewport_switch_ended.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); - wm.terminate_expo.connect(sigc::mem_fun(this, &ApplicationLauncherIcon::EnsureWindowState)); - - EnsureWindowState(); - UpdateMenus(); - UpdateDesktopFile(); - UpdateBackgroundColor(); - - // hack - SetProgress(0.0f); } -ApplicationLauncherIcon::~ApplicationLauncherIcon() +void ApplicationLauncherIcon::DisconnectApplicationSignalsConnections() { - if (app_) - { - app_->sticky = false; - app_->seen = false; - } + window_opened_connection_.disconnect(); + window_closed_connection_.disconnect(); + window_moved_connection_.disconnect(); + urgent_changed_connection_.disconnect(); + active_changed_connection_.disconnect(); + running_changed_connection_.disconnect(); + visible_changed_connection_.disconnect(); + closed_changed_connection_.disconnect(); } bool ApplicationLauncherIcon::GetQuirk(AbstractLauncherIcon::Quirk quirk) const @@ -699,8 +731,12 @@ void ApplicationLauncherIcon::UpdateDesktopQuickList() std::string nick(nicks[index]); _gsignals.Add(item, DBUSMENU_MENUITEM_SIGNAL_ITEM_ACTIVATED, - [this, nick] (DbusmenuMenuitem* item, unsigned) { - indicator_desktop_shortcuts_nick_exec(_desktop_shortcuts, nick.c_str()); + [this, nick] (DbusmenuMenuitem* item, unsigned timestamp) { + GdkDisplay* display = gdk_display_get_default(); + glib::Object context(gdk_display_get_app_launch_context(display)); + gdk_app_launch_context_set_timestamp(context, timestamp); + auto gcontext = glib::object_cast(context); + indicator_desktop_shortcuts_nick_exec_with_context(_desktop_shortcuts, nick.c_str(), gcontext); }); dbusmenu_menuitem_child_append(_menu_desktop_shortcuts, item); diff --git a/launcher/ApplicationLauncherIcon.h b/launcher/ApplicationLauncherIcon.h index 589fb3e95..83978114f 100644 --- a/launcher/ApplicationLauncherIcon.h +++ b/launcher/ApplicationLauncherIcon.h @@ -71,6 +71,7 @@ class ApplicationLauncherIcon : public SimpleLauncherIcon void PerformScroll(ScrollDirection direction, Time timestamp) override; protected: + void SetApplication(ApplicationPtr const& app); void Remove(); void UpdateIconGeometries(std::vector center); void OnCenterStabilized(std::vector center); @@ -97,7 +98,6 @@ class ApplicationLauncherIcon : public SimpleLauncherIcon void UpdateDesktopFile(); void UpdateRemoteUri(); std::string _desktop_file; - ApplicationPtr app_; private: typedef unsigned long int WindowFilterMask; @@ -109,6 +109,8 @@ class ApplicationLauncherIcon : public SimpleLauncherIcon ON_ALL_MONITORS = (1 << 3), }; + void SetupApplicationSignalsConnections(); + void DisconnectApplicationSignalsConnections(); void EnsureWindowState(); void EnsureMenuItemsWindowsReady(); void EnsureMenuItemsReady(); @@ -128,6 +130,7 @@ class ApplicationLauncherIcon : public SimpleLauncherIcon std::string GetDesktopID(); WindowList GetWindowsOnCurrentDesktopInStackingOrder(); + ApplicationPtr app_; std::string _remote_uri; Time _startup_notification_timestamp; Time _last_scroll_timestamp; @@ -145,6 +148,15 @@ class ApplicationLauncherIcon : public SimpleLauncherIcon bool use_custom_bg_color_; nux::Color bg_color_; + + sigc::connection window_opened_connection_; + sigc::connection window_closed_connection_; + sigc::connection window_moved_connection_; + sigc::connection urgent_changed_connection_; + sigc::connection active_changed_connection_; + sigc::connection running_changed_connection_; + sigc::connection visible_changed_connection_; + sigc::connection closed_changed_connection_; }; } diff --git a/launcher/Launcher.cpp b/launcher/Launcher.cpp index 3a6689c8e..959186eab 100644 --- a/launcher/Launcher.cpp +++ b/launcher/Launcher.cpp @@ -150,6 +150,7 @@ Launcher::Launcher(MockableBaseWindow* parent, , icon_renderer(std::make_shared()) { m_Layout = new nux::HLayout(NUX_TRACKER_LOCATION); + icon_renderer->monitor = monitor(); bg_effect_helper_.owner = this; bg_effect_helper_.enabled = false; @@ -198,12 +199,8 @@ Launcher::Launcher(MockableBaseWindow* parent, icon_renderer->SetTargetSize(_icon_size, _icon_image_size, _space_between_icons); TextureCache& cache = TextureCache::GetDefault(); - TextureCache::CreateTextureCallback cb = [&](std::string const& name, int width, int height) { - return nux::CreateTexture2DFromFile((PKGDATADIR"/" + name + ".png").c_str(), -1, true); - }; - - launcher_sheen_ = cache.FindTexture("dash_sheen", 0, 0, cb); - launcher_pressure_effect_ = cache.FindTexture("launcher_pressure_effect", 0, 0, cb); + launcher_sheen_ = cache.FindTexture("dash_sheen.png"); + launcher_pressure_effect_ = cache.FindTexture("launcher_pressure_effect.png"); options.changed.connect(sigc::mem_fun(this, &Launcher::OnOptionsChanged)); monitor.changed.connect(sigc::mem_fun(this, &Launcher::OnMonitorChanged)); @@ -787,9 +784,6 @@ void Launcher::SetupRenderArg(AbstractLauncherIcon::Ptr const& icon, struct time arg.running_colored = icon->GetQuirk(AbstractLauncherIcon::Quirk::URGENT); arg.draw_edge_only = IconDrawEdgeOnly(icon); arg.active_colored = false; - arg.x_rotation = 0.0f; - arg.y_rotation = 0.0f; - arg.z_rotation = 0.0f; arg.skip = false; arg.stick_thingy = false; arg.keyboard_nav_hl = false; @@ -867,7 +861,7 @@ void Launcher::SetupRenderArg(AbstractLauncherIcon::Ptr const& icon, struct time if (icon->GetQuirk(AbstractLauncherIcon::Quirk::URGENT) && options()->urgent_animation() == URGENT_ANIMATION_WIGGLE) { - arg.z_rotation = IconUrgentWiggleValue(icon, current); + arg.rotation.z = IconUrgentWiggleValue(icon, current); } if (IsInKeyNavMode()) @@ -945,7 +939,7 @@ void Launcher::FillRenderArg(AbstractLauncherIcon::Ptr const& icon, // icon is crossing threshold, start folding center.z += folded_z_distance * folding_progress; - arg.x_rotation = animation_neg_rads * folding_progress; + arg.rotation.x = animation_neg_rads * folding_progress; float spacing_overlap = CLAMP((float)(center.y + (2.0f * half_size * size_modifier) + (_space_between_icons * size_modifier) - folding_threshold) / (float) _icon_size, 0.0f, 1.0f); float spacing = (_space_between_icons * (1.0f - spacing_overlap) + folded_spacing * spacing_overlap) * size_modifier; @@ -1403,6 +1397,7 @@ void Launcher::OnMonitorChanged(int new_monitor) unity::panel::Style &panel_style = panel::Style::Instance(); Resize(nux::Point(monitor_geo.x, monitor_geo.y + panel_style.panel_height), monitor_geo.height - panel_style.panel_height); + icon_renderer->monitor = new_monitor; } void Launcher::UpdateOptions(Options::Ptr options) @@ -1416,8 +1411,6 @@ void Launcher::UpdateOptions(Options::Ptr options) void Launcher::ConfigureBarrier() { - nux::Geometry geo = GetAbsoluteGeometry(); - float decay_responsiveness_mult = ((options()->edge_responsiveness() - 1) * .3f) + 1; float reveal_responsiveness_mult = ((options()->edge_responsiveness() - 1) * .025f) + 1; @@ -1694,8 +1687,6 @@ void Launcher::Draw(nux::GraphicsEngine& GfxContext, bool force_draw) void Launcher::DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw) { - icon_renderer->monitor = monitor(); - nux::Geometry const& base = GetGeometry(); nux::Geometry bkg_box; std::list args; @@ -2464,7 +2455,7 @@ void Launcher::RenderIconToTexture(nux::GraphicsEngine& GfxContext, AbstractLaun SetupRenderArg(icon, current, arg); arg.render_center = nux::Point3(roundf(texture->GetWidth() / 2.0f), roundf(texture->GetHeight() / 2.0f), 0.0f); arg.logical_center = arg.render_center; - arg.x_rotation = 0.0f; + arg.rotation.x = 0.0f; arg.running_arrow = false; arg.active_arrow = false; arg.skip = false; diff --git a/launcher/QuicklistMenuItem.cpp b/launcher/QuicklistMenuItem.cpp index 9d3d9bac0..c003b42f0 100644 --- a/launcher/QuicklistMenuItem.cpp +++ b/launcher/QuicklistMenuItem.cpp @@ -39,6 +39,7 @@ QuicklistMenuItem::QuicklistMenuItem(QuicklistMenuItemType type, glib::ObjectGetCurrentEvent().x11_timestamp; - dbusmenu_menuitem_handle_event(_menu_item, "clicked", nullptr, event_time); + _activate_timestamp = nux::GetGraphicsDisplay()->GetCurrentEvent().x11_timestamp; + dbusmenu_menuitem_handle_event(_menu_item, "clicked", nullptr, _activate_timestamp); if (!IsOverlayQuicklist()) { @@ -434,7 +435,8 @@ void QuicklistMenuItem::AddProperties(GVariantBuilder* builder) .add("active", GetActive()) .add("visible", GetVisible()) .add("selectable", GetSelectable()) - .add("selected", _prelight); + .add("selected", _prelight) + .add("activate_timestamp", _activate_timestamp); } } //NAMESPACE diff --git a/launcher/QuicklistMenuItem.h b/launcher/QuicklistMenuItem.h index 59331b6b1..f0af32f74 100644 --- a/launcher/QuicklistMenuItem.h +++ b/launcher/QuicklistMenuItem.h @@ -123,6 +123,7 @@ class QuicklistMenuItem : public nux::View, public debug::Introspectable nux::ObjectPtr _prelightTexture[2]; QuicklistMenuItemType _item_type; glib::Object _menu_item; + mutable Time _activate_timestamp; bool _prelight; int _pre_layout_width; int _pre_layout_height; diff --git a/launcher/SoftwareCenterLauncherIcon.cpp b/launcher/SoftwareCenterLauncherIcon.cpp index fd7c377a8..417af8659 100644 --- a/launcher/SoftwareCenterLauncherIcon.cpp +++ b/launcher/SoftwareCenterLauncherIcon.cpp @@ -205,7 +205,7 @@ void SoftwareCenterLauncherIcon::OnFinished(GVariant *params) std::string new_desktop_path = GetActualDesktopFileAfterInstall(); // exchange the temp Application with the real one - app_ = ApplicationManager::Default().GetApplicationForDesktopFile(new_desktop_path); + SetApplication(ApplicationManager::Default().GetApplicationForDesktopFile(new_desktop_path)); UpdateDesktopFile(); UpdateRemoteUri(); diff --git a/launcher/SwitcherView.cpp b/launcher/SwitcherView.cpp index b75063899..777751f76 100644 --- a/launcher/SwitcherView.cpp +++ b/launcher/SwitcherView.cpp @@ -17,6 +17,7 @@ */ #include "config.h" +#include "MultiMonitor.h" #include "SwitcherView.h" #include "unity-shared/IconRenderer.h" #include "unity-shared/TimeUtil.h" @@ -57,6 +58,7 @@ SwitcherView::SwitcherView() , target_sizes_set_(false) { icon_renderer_->pip_style = OVER_TILE; + icon_renderer_->monitor = max_num_monitors; text_view_->SetMaximumWidth(tile_size * spread_size); text_view_->SetLines(1); @@ -224,9 +226,9 @@ RenderArg SwitcherView::InterpolateRenderArgs(RenderArg const& start, RenderArg RenderArg result = end; - result.x_rotation = start.x_rotation + (end.x_rotation - start.x_rotation) * progress; - result.y_rotation = start.y_rotation + (end.y_rotation - start.y_rotation) * progress; - result.z_rotation = start.z_rotation + (end.z_rotation - start.z_rotation) * progress; + result.rotation.x = start.rotation.x + (end.rotation.x - start.rotation.x) * progress; + result.rotation.y = start.rotation.y + (end.rotation.y - start.rotation.y) * progress; + result.rotation.z = start.rotation.z + (end.rotation.z - start.rotation.z) * progress; result.render_center.x = start.render_center.x + (end.render_center.x - start.render_center.x) * progress; result.render_center.y = start.render_center.y + (end.render_center.y - start.render_center.y) * progress; @@ -489,7 +491,7 @@ std::list SwitcherView::RenderArgsFlat(nux::Geometry& background_geo, x += (half_size + flat_spacing) * scalar; - arg.y_rotation = (1.0f - MIN (1.0f, scalar)); + arg.rotation.y = (1.0f - std::min(1.0f, scalar)); if (!should_flat && overflow > 0 && i != selection) { @@ -500,11 +502,11 @@ std::list SwitcherView::RenderArgsFlat(nux::Geometry& background_geo, else { arg.render_center.x += 20; - arg.y_rotation = -arg.y_rotation; + arg.rotation.y = -arg.rotation.y; } } - arg.render_center.z = abs(80.0f * arg.y_rotation); + arg.render_center.z = abs(80.0f * arg.rotation.y); arg.logical_center = arg.render_center; if (i == selection && detail_selection) @@ -588,13 +590,13 @@ void SwitcherView::DrawOverlay(nux::GraphicsEngine& GfxContext, bool force_draw, text_view_->SetBaseX(start_x); } - if (arg.y_rotation < 0) + if (arg.rotation.y < 0) icon_renderer_->RenderIcon(GfxContext, arg, base, base); } for (auto rit = last_args_.rbegin(); rit != last_args_.rend(); ++rit) { - if (rit->y_rotation >= 0) + if (rit->rotation.y >= 0) icon_renderer_->RenderIcon(GfxContext, *rit, base, base); } diff --git a/launcher/XdndCollectionWindowImp.cpp b/launcher/XdndCollectionWindowImp.cpp index b98075187..a7ca834ad 100644 --- a/launcher/XdndCollectionWindowImp.cpp +++ b/launcher/XdndCollectionWindowImp.cpp @@ -14,7 +14,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . * -* Authored by: Andrea Azzarone +* Authored by: Andrea Azzarone */ #include "XdndCollectionWindowImp.h" @@ -38,9 +38,6 @@ class PrivateWindow : public nux::BaseWindow auto uscreen = UScreen::GetDefault(); SetGeometry(uscreen->GetScreenGeometry()); - ShowWindow(true); - PushToBack(); - if (nux::GetWindowThread()->IsEmbeddedWindow()) { // Hack to create the X Window as soon as possible. @@ -104,6 +101,7 @@ void XdndCollectionWindowImp::Collect() // Using PushToFront we're sure that the window is shown over the panel window, // the launcher window and the dash window. Don't forget to call PushToBack as // soon as possible. + window_->ShowWindow(true); window_->PushToFront(); if (nux::GetWindowThread()->IsEmbeddedWindow()) @@ -112,6 +110,7 @@ void XdndCollectionWindowImp::Collect() void XdndCollectionWindowImp::Deactivate() { + window_->ShowWindow(false); window_->PushToBack(); if (nux::GetWindowThread()->IsEmbeddedWindow()) diff --git a/panel/PanelController.cpp b/panel/PanelController.cpp index 865743aff..631e7509a 100644 --- a/panel/PanelController.cpp +++ b/panel/PanelController.cpp @@ -44,7 +44,6 @@ class Controller::Impl void FirstMenuShow(); void QueueRedraw(); - std::vector GetTrayXids() const; std::vector GetPanelViews() const; std::vector GetGeometries() const; @@ -60,7 +59,6 @@ class Controller::Impl void OnScreenChanged(unsigned int primary_monitor, std::vector& monitors, Introspectable *iobj); -private: typedef nux::ObjectPtr BaseWindowPtr; unity::PanelView* ViewForWindow(BaseWindowPtr const& window) const; @@ -70,8 +68,8 @@ class Controller::Impl nux::Geometry& geo, void* user_data); -private: std::vector windows_; + std::vector tray_xids_; float opacity_; bool opacity_maximized_toggle_; int menus_fadein_; @@ -79,6 +77,7 @@ class Controller::Impl int menus_discovery_; int menus_discovery_fadein_; int menus_discovery_fadeout_; + indicator::DBusIndicators::Ptr dbus_indicators_; }; @@ -90,26 +89,14 @@ Controller::Impl::Impl() , menus_discovery_(0) , menus_discovery_fadein_(0) , menus_discovery_fadeout_(0) -{ -} - -std::vector Controller::Impl::GetTrayXids() const -{ - std::vector xids; - - for (auto window: windows_) - { - xids.push_back(ViewForWindow(window)->GetTrayXid()); - } - - return xids; -} + , dbus_indicators_(std::make_shared()) +{} std::vector Controller::Impl::GetPanelViews() const { std::vector views; views.reserve(windows_.size()); - for (auto window: windows_) + for (auto const& window: windows_) views.push_back(ViewForWindow(window)); return views; } @@ -118,7 +105,7 @@ std::vector Controller::Impl::GetGeometries() const { std::vector geometries; - for (auto window : windows_) + for (auto const& window : windows_) { geometries.push_back(window->GetAbsoluteGeometry()); } @@ -128,7 +115,7 @@ std::vector Controller::Impl::GetGeometries() const void Controller::Impl::FirstMenuShow() { - for (auto window: windows_) + for (auto const& window: windows_) { if (ViewForWindow(window)->FirstMenuShow()) break; @@ -139,7 +126,7 @@ void Controller::Impl::SetOpacity(float opacity) { opacity_ = opacity; - for (auto window: windows_) + for (auto const& window: windows_) { ViewForWindow(window)->SetOpacity(opacity_); } @@ -157,7 +144,7 @@ void Controller::Impl::SetOpacityMaximizedToggle(bool enabled) { opacity_maximized_toggle_ = enabled; - for (auto window: windows_) + for (auto const& window: windows_) { ViewForWindow(window)->SetOpacityMaximizedToggle(opacity_maximized_toggle_); } @@ -172,7 +159,7 @@ void Controller::Impl::SetMenuShowTimings(int fadein, int fadeout, int discovery menus_discovery_fadein_ = discovery_fadein; menus_discovery_fadeout_ = discovery_fadeout; - for (auto window: windows_) + for (auto const& window: windows_) { ViewForWindow(window)->SetMenuShowTimings(fadein, fadeout, discovery, discovery_fadein, discovery_fadeout); @@ -181,7 +168,7 @@ void Controller::Impl::SetMenuShowTimings(int fadein, int fadeout, int discovery void Controller::Impl::QueueRedraw() { - for (auto window: windows_) + for (auto const& window: windows_) { window->QueueDraw(); } @@ -204,6 +191,8 @@ void Controller::Impl::OnScreenChanged(unsigned int primary_monitor, unsigned n_monitors = monitors.size(); unsigned int i = 0; + tray_xids_.resize(n_monitors); + for (it = windows_.begin(); it != windows_.end(); ++it) { if (i < n_monitors) @@ -221,6 +210,7 @@ void Controller::Impl::OnScreenChanged(unsigned int primary_monitor, view = ViewForWindow(*it); view->SetPrimary(i == primary_monitor); view->SetMonitor(i); + tray_xids_[i] = view->GetTrayXid(); if (nux::GetWindowThread()->IsEmbeddedWindow()) { @@ -243,7 +233,7 @@ void Controller::Impl::OnScreenChanged(unsigned int primary_monitor, { nux::HLayout* layout = new nux::HLayout(NUX_TRACKER_LOCATION); - PanelView* view = new PanelView(); + PanelView* view = new PanelView(dbus_indicators_); view->SetMaximumHeight(panel::Style::Instance().panel_height); view->SetOpacity(opacity_); view->SetOpacityMaximizedToggle(opacity_maximized_toggle_); @@ -251,6 +241,7 @@ void Controller::Impl::OnScreenChanged(unsigned int primary_monitor, menus_discovery_fadein_, menus_discovery_fadeout_); view->SetPrimary(i == primary_monitor); view->SetMonitor(i); + tray_xids_[i] = view->GetTrayXid(); layout->AddView(view, 1); layout->SetContentDistribution(nux::MAJOR_POSITION_START); @@ -361,9 +352,9 @@ void Controller::QueueRedraw() pimpl->QueueRedraw(); } -std::vector Controller::GetTrayXids() const +std::vector const& Controller::GetTrayXids() const { - return pimpl->GetTrayXids(); + return pimpl->tray_xids_; } std::vector Controller::GetPanelViews() const diff --git a/panel/PanelController.h b/panel/PanelController.h index afd84d262..f238c7efb 100644 --- a/panel/PanelController.h +++ b/panel/PanelController.h @@ -40,7 +40,7 @@ class Controller : public sigc::trackable, public unity::debug::Introspectable void FirstMenuShow(); void QueueRedraw(); - std::vector GetTrayXids() const; + std::vector const& GetTrayXids() const; std::vector GetPanelViews() const; std::vector GetGeometries() const; diff --git a/panel/PanelIndicatorsView.cpp b/panel/PanelIndicatorsView.cpp index 5081bd866..6cfcc5ca2 100644 --- a/panel/PanelIndicatorsView.cpp +++ b/panel/PanelIndicatorsView.cpp @@ -65,6 +65,9 @@ void PanelIndicatorsView::AddIndicator(Indicator::Ptr const& indicator) std::vector connections; + for (auto const& entry : indicator->GetEntries()) + AddEntry(entry); + auto entry_added_conn = indicator->on_entry_added.connect(sigc::mem_fun(this, &PanelIndicatorsView::OnEntryAdded)); connections.push_back(entry_added_conn); diff --git a/panel/PanelTray.cpp b/panel/PanelTray.cpp index 4af85cae5..29bdefe0d 100644 --- a/panel/PanelTray.cpp +++ b/panel/PanelTray.cpp @@ -89,7 +89,7 @@ PanelTray::~PanelTray() Window PanelTray::xid() { - if (!window_) + if (!window_ || !gtk_widget_get_realized(window_)) return 0; return gdk_x11_window_get_xid(gtk_widget_get_window(window_)); diff --git a/panel/PanelView.cpp b/panel/PanelView.cpp index 25c053807..fc2dd6f04 100644 --- a/panel/PanelView.cpp +++ b/panel/PanelView.cpp @@ -25,7 +25,6 @@ #include #include -#include #include #include @@ -35,6 +34,7 @@ #include #include "unity-shared/PanelStyle.h" +#include "unity-shared/TextureCache.h" #include "unity-shared/WindowManager.h" #include "unity-shared/UBusMessages.h" #include @@ -55,8 +55,9 @@ namespace unity NUX_IMPLEMENT_OBJECT_TYPE(PanelView); -PanelView::PanelView(NUX_FILE_LINE_DECL) +PanelView::PanelView(indicator::DBusIndicators::Ptr const& remote, NUX_FILE_LINE_DECL) : View(NUX_FILE_LINE_PARAM) + , remote_(remote) , is_dirty_(true) , opacity_maximized_toggle_(false) , needs_geo_sync_(false) @@ -105,7 +106,9 @@ PanelView::PanelView(NUX_FILE_LINE_DECL) indicators_ = new PanelIndicatorsView(); AddPanelView(indicators_, 0); - remote_ = indicator::DBusIndicators::Ptr(new indicator::DBusIndicators()); + for (auto const& object : remote_->GetIndicators()) + OnObjectAdded(object); + remote_->on_object_added.connect(sigc::mem_fun(this, &PanelView::OnObjectAdded)); remote_->on_object_removed.connect(sigc::mem_fun(this, &PanelView::OnObjectRemoved)); remote_->on_entry_activate_request.connect(sigc::mem_fun(this, &PanelView::OnEntryActivateRequest)); @@ -128,9 +131,10 @@ PanelView::PanelView(NUX_FILE_LINE_DECL) bg_effect_helper_.owner = this; //FIXME (gord)- replace with async loading - panel_sheen_.Adopt(nux::CreateTexture2DFromFile(PKGDATADIR"/dash_sheen.png", -1, true)); - bg_refine_tex_.Adopt(nux::CreateTexture2DFromFile(PKGDATADIR"/refine_gradient_panel.png", -1, true)); - bg_refine_single_column_tex_.Adopt(nux::CreateTexture2DFromFile(PKGDATADIR"/refine_gradient_panel_single_column.png", -1, true)); + TextureCache& cache = TextureCache::GetDefault(); + panel_sheen_ = cache.FindTexture("dash_sheen.png"); + bg_refine_tex_ = cache.FindTexture("refine_gradient_panel.png"); + bg_refine_single_column_tex_ = cache.FindTexture("refine_gradient_panel_single_column.png"); rop.Blend = true; rop.SrcBlend = GL_ONE; @@ -188,7 +192,8 @@ void PanelView::OnBackgroundUpdate(GVariant *data) bg_color_.blue = blue; bg_color_.alpha = alpha; - ForceUpdateBackground(); + if (overlay_is_open_) + ForceUpdateBackground(); } void PanelView::OnOverlayHidden(GVariant* data) @@ -267,7 +272,7 @@ PanelView::Draw(nux::GraphicsEngine& GfxContext, bool force_draw) GfxContext.PushClippingRectangle(geo); - if ((overlay_is_open_ || (opacity_ != 1.0f && opacity_ != 0.0f))) + if (IsTransparent()) { nux::Geometry const& geo_absolute = GetAbsoluteGeometry(); nux::Geometry blur_geo(geo_absolute.x, geo_absolute.y, geo.width, geo.height); @@ -281,7 +286,7 @@ PanelView::Draw(nux::GraphicsEngine& GfxContext, bool force_draw) bg_blur_texture_ = bg_effect_helper_.GetRegion(blur_geo); } - if (bg_blur_texture_.IsValid() && (overlay_is_open_ || opacity_ != 1.0f)) + if (bg_blur_texture_.IsValid()) { nux::TexCoordXForm texxform_blur_bg; texxform_blur_bg.flip_v_coord = true; @@ -371,8 +376,7 @@ PanelView::DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw) GfxContext.GetRenderStates().SetBlend(true); GfxContext.GetRenderStates().SetPremultipliedBlend(nux::SRC_OVER); - if (bg_blur_texture_.IsValid() && - (overlay_is_open_ || (opacity_ != 1.0f && opacity_ != 0.0f))) + if (bg_blur_texture_.IsValid() && IsTransparent()) { nux::Geometry const& geo_absolute = GetAbsoluteGeometry(); nux::TexCoordXForm texxform_blur_bg; @@ -482,12 +486,9 @@ PanelView::DrawContent(nux::GraphicsEngine& GfxContext, bool force_draw) void PanelView::UpdateBackground() { - nux::Geometry const& geo = GetGeometry(); - - if (!is_dirty_ && geo == last_geo_) + if (!is_dirty_) return; - last_geo_ = geo; is_dirty_ = false; nux::ROPConfig rop; @@ -512,13 +513,13 @@ PanelView::UpdateBackground() opacity = 1.0f; } - auto tex = panel::Style::Instance().GetBackground(geo.width, geo.height, opacity); + auto const& tex = panel::Style::Instance().GetBackground(); nux::TexCoordXForm texxform; texxform.SetTexCoordType(nux::TexCoordXForm::OFFSET_COORD); - texxform.SetWrap(nux::TEXWRAP_REPEAT, nux::TEXWRAP_REPEAT); + texxform.SetWrap(nux::TEXWRAP_REPEAT, nux::TEXWRAP_CLAMP); bg_layer_.reset(new nux::TextureLayer(tex->GetDeviceTexture(), texxform, - nux::color::White, true, rop)); + nux::color::White * opacity, true, rop)); } } @@ -527,12 +528,6 @@ void PanelView::ForceUpdateBackground() is_dirty_ = true; UpdateBackground(); - indicators_->QueueDraw(); - tray_->QueueDraw(); - - if (!overlay_is_open_) - menu_view_->QueueDraw(); - QueueDraw(); } @@ -703,12 +698,17 @@ void PanelView::SetOpacity(float opacity) if (opacity_ == opacity) return; - opacity_ = opacity; - bg_effect_helper_.enabled = (opacity_ < 1.0f || overlay_is_open_); + opacity_ = (opacity <= 0.0f ? 0.0001f : opacity); // Not to get a black menu area + bg_effect_helper_.enabled = IsTransparent(); ForceUpdateBackground(); } +bool PanelView::IsTransparent() +{ + return (opacity_ < 1.0f || overlay_is_open_); +} + void PanelView::SetMenuShowTimings(int fadein, int fadeout, int discovery, int discovery_fadein, int discovery_fadeout) { diff --git a/panel/PanelView.h b/panel/PanelView.h index d0f2f3d2c..6392b55c0 100644 --- a/panel/PanelView.h +++ b/panel/PanelView.h @@ -46,7 +46,7 @@ class PanelView : public unity::debug::Introspectable, public nux::View { NUX_DECLARE_OBJECT_TYPE(PanelView, nux::View); public: - PanelView(NUX_FILE_LINE_PROTO); + PanelView(indicator::DBusIndicators::Ptr const&, NUX_FILE_LINE_PROTO); ~PanelView(); void SetPrimary(bool primary); @@ -91,6 +91,7 @@ class PanelView : public unity::debug::Introspectable, public nux::View void OnOverlayShown(GVariant *data); void OnOverlayHidden(GVariant *data); + bool IsTransparent(); void UpdateBackground(); void ForceUpdateBackground(); bool TrackMenuPointer(); @@ -116,7 +117,6 @@ class PanelView : public unity::debug::Introspectable, public nux::View BaseTexturePtr bg_refine_single_column_tex_; std::unique_ptr bg_refine_single_column_layer_; - nux::Geometry last_geo_; nux::Color bg_color_; std::string active_overlay_; nux::Point tracked_pointer_pos_; diff --git a/panel/StandalonePanel.cpp b/panel/StandalonePanel.cpp index ddea5172d..94db9db20 100644 --- a/panel/StandalonePanel.cpp +++ b/panel/StandalonePanel.cpp @@ -47,9 +47,13 @@ struct PanelWindow } private: - class StandalonePanelView : public PanelView + struct StandalonePanelView : public PanelView { // Used to sync menu geometries + StandalonePanelView() + : PanelView(std::make_shared()) + {} + std::string GetName() const { return "StandalonePanel"; } }; diff --git a/plugins/unityshell/src/unityshell.cpp b/plugins/unityshell/src/unityshell.cpp index ae39b6571..a5875333f 100644 --- a/plugins/unityshell/src/unityshell.cpp +++ b/plugins/unityshell/src/unityshell.cpp @@ -133,7 +133,6 @@ UnityScreen::UnityScreen(CompScreen* screen) , gScreen(GLScreen::get(screen)) , debugger_(this) , needsRelayout(false) - , _in_paint(false) , super_keypressed_(false) , newFocusedWindow(nullptr) , doShellRepaint(false) @@ -146,8 +145,7 @@ UnityScreen::UnityScreen(CompScreen* screen) , last_scroll_event_(0) , hud_keypress_time_(0) , first_menu_keypress_time_(0) - , panel_texture_has_changed_(true) - , paint_panel_(false) + , paint_panel_under_dash_(false) , scale_just_activated_(false) , big_tick_(0) , screen_introspection_(screen) @@ -282,7 +280,6 @@ UnityScreen::UnityScreen(CompScreen* screen) wt->Run(NULL); uScreen = this; - _in_paint = false; optionSetShowHudInitiate(boost::bind(&UnityScreen::ShowHudInitiate, this, _1, _2, _3)); optionSetShowHudTerminate(boost::bind(&UnityScreen::ShowHudTerminate, this, _1, _2, _3)); @@ -624,8 +621,6 @@ void UnityScreen::paintPanelShadow(CompRegion const& clip) panelShadowPainted |= redraw; - nuxPrologue(); - for (auto const& r : redraw.rects()) { for (GLTexture* tex : _shadow_texture) @@ -688,7 +683,6 @@ void UnityScreen::paintPanelShadow(CompRegion const& clip) glDisable(GL_BLEND); } } - nuxEpilogue(); } void @@ -705,8 +699,6 @@ UnityWindow::updateIconPos (int &wx, void UnityScreen::OnPanelStyleChanged() { - panel_texture_has_changed_ = true; - // Reload the windows themed textures UnityWindow::CleanupSharedTextures(); @@ -723,13 +715,13 @@ void UnityScreen::paintDisplay() { CompOutput *output = _last_output; - DrawTopPanelBackground(); - - auto gpu_device = nux::GetGraphicsDisplay()->GetGpuDevice(); + DrawPanelUnderDash(); if (BackgroundEffectHelper::HasDirtyHelpers()) { + auto gpu_device = nux::GetGraphicsDisplay()->GetGpuDevice(); auto graphics_engine = nux::GetGraphicsDisplay()->GetGraphicsEngine(); + nux::ObjectPtr bg_texture = graphics_engine->CreateTextureFromBackBuffer(0, 0, screen->width(), @@ -737,9 +729,8 @@ void UnityScreen::paintDisplay() gpu_device->backup_texture0_ = bg_texture; } - nux::Geometry geo(0, 0, screen->width (), screen->height ()); nux::Geometry outputGeo(output->x (), output->y (), output->width (), output->height ()); - BackgroundEffectHelper::monitor_rect_ = geo; + BackgroundEffectHelper::monitor_rect_.Set(0, 0, screen->width(), screen->height()); GLint fboID; // Nux renders to the referenceFramebuffer when it's embedded. @@ -747,9 +738,7 @@ void UnityScreen::paintDisplay() wt->GetWindowCompositor().SetReferenceFramebuffer(fboID, outputGeo); nuxPrologue(); - _in_paint = true; wt->RenderInterfaceFromForeignCmd (&outputGeo); - _in_paint = false; nuxEpilogue(); for (Window tray_xid : panel_controller_->GetTrayXids()) @@ -809,45 +798,29 @@ void UnityScreen::paintDisplay() didShellRepaint = true; } -void UnityScreen::DrawTopPanelBackground() +void UnityScreen::DrawPanelUnderDash() { - auto graphics_engine = nux::GetGraphicsDisplay()->GetGraphicsEngine(); - - if (!graphics_engine->UsingGLSLCodePath() || !launcher_controller_->IsOverlayOpen() || !paint_panel_) - return; - - if (TopPanelBackgroundTextureNeedsUpdate()) - UpdateTopPanelBackgroundTexture(); - - if (panel_texture_.IsValid()) - { - graphics_engine->ResetModelViewMatrixStack(); - graphics_engine->Push2DTranslationModelViewMatrix(0.0f, 0.0f, 0.0f); - graphics_engine->ResetProjectionMatrix(); - graphics_engine->SetOrthographicProjectionMatrix(screen->width (), screen->height()); - - nux::TexCoordXForm texxform; - int panel_height = panel_style_.panel_height; - graphics_engine->QRP_GLSL_1Tex(0, 0, screen->width (), panel_height, panel_texture_, texxform, nux::color::White); - } -} + if (!paint_panel_under_dash_ || !launcher_controller_->IsOverlayOpen()) + return; -bool UnityScreen::TopPanelBackgroundTextureNeedsUpdate() const -{ - return panel_texture_has_changed_ || !panel_texture_.IsValid(); -} + if (_last_output->id() != screen->currentOutputDev().id()) + return; -void UnityScreen::UpdateTopPanelBackgroundTexture() -{ - auto &panel_style = panel::Style::Instance(); + auto graphics_engine = nux::GetGraphicsDisplay()->GetGraphicsEngine(); - panel_texture_.Release(); - auto texture = panel_style.GetBackground(screen->width(), screen->height(), 1.0f); + if (!graphics_engine->UsingGLSLCodePath()) + return; - if (texture) - panel_texture_ = texture->GetDeviceTexture(); + graphics_engine->ResetModelViewMatrixStack(); + graphics_engine->Push2DTranslationModelViewMatrix(0.0f, 0.0f, 0.0f); + graphics_engine->ResetProjectionMatrix(); + graphics_engine->SetOrthographicProjectionMatrix(screen->width(), screen->height()); - panel_texture_has_changed_ = false; + nux::TexCoordXForm texxform; + texxform.SetWrap(nux::TEXWRAP_REPEAT, nux::TEXWRAP_CLAMP); + int panel_height = panel_style_.panel_height; + auto const& texture = panel_style_.GetBackground()->GetDeviceTexture(); + graphics_engine->QRP_GLSL_1Tex(0, 0, screen->width(), panel_height, texture, texxform, nux::color::White); } bool UnityScreen::forcePaintOnTop () @@ -1256,7 +1229,7 @@ bool UnityScreen::glPaintOutput(const GLScreenPaintAttrib& attrib, allowWindowPaint = true; _last_output = output; - paint_panel_ = false; + paint_panel_under_dash_ = false; // CompRegion has no clear() method. So this is the fastest alternative. fullscreenRegion = CompRegion(); @@ -1357,7 +1330,7 @@ void UnityScreen::compizDamageNux(CompRegion const& damage) * current one?) to get some damage. This GetDrawList().empty() check avoids * that feedback loop and allows us to idle correctly. */ - if (wt->GetDrawList().empty()) + if (wt->GetDrawList().empty() && BackgroundEffectHelper::HasDamageableHelpers()) { CompRect::vector const& rects(damage.rects()); for (CompRect const& r : rects) @@ -1458,8 +1431,7 @@ void UnityScreen::nuxDamageCompiz() * redraw even though the launcher's geometry is not in DrawList, and * stop it. Then maybe we can revert back to the old code below #else. */ - std::vector const& dirty = wt->GetDrawList(); - if (!dirty.empty() || animation_controller_->HasRunningAnimations()) + if (!wt->GetDrawList().empty() || animation_controller_->HasRunningAnimations()) { cScreen->damageRegionSetEnabled(this, false); cScreen->damageScreen(); @@ -1858,11 +1830,18 @@ void UnityScreen::SendExecuteCommand() adapter.TerminateScale(); } - ubus_manager_.SendMessage(UBUS_DASH_ABOUT_TO_SHOW, NULL, glib::Source::Priority::HIGH); + if (dash_controller_->IsCommandLensOpen()) + { + ubus_manager_.SendMessage(UBUS_OVERLAY_CLOSE_REQUEST); + } + else + { + ubus_manager_.SendMessage(UBUS_DASH_ABOUT_TO_SHOW, NULL, glib::Source::Priority::HIGH); - ubus_manager_.SendMessage(UBUS_PLACE_ENTRY_ACTIVATE_REQUEST, - g_variant_new("(sus)", "commands.scope", dash::ScopeHandledType::GOTO_DASH_URI, ""), - glib::Source::Priority::LOW); + ubus_manager_.SendMessage(UBUS_PLACE_ENTRY_ACTIVATE_REQUEST, + g_variant_new("(sus)", "commands.scope", dash::ScopeHandledType::GOTO_DASH_URI, ""), + glib::Source::Priority::LOW); + } } bool UnityScreen::executeCommand(CompAction* action, @@ -2597,19 +2576,17 @@ bool UnityWindow::glDraw(const GLMatrix& matrix, const CompRegion& region, unsigned int mask) { - if (uScreen->doShellRepaint && !uScreen->paint_panel_ && window->type() == CompWindowTypeNormalMask) + if (uScreen->doShellRepaint && !uScreen->paint_panel_under_dash_ && window->type() == CompWindowTypeNormalMask) { - guint32 id = window->id(); - bool maximized = WindowManager::Default().IsWindowMaximized(id); - bool on_current = window->onCurrentDesktop(); - bool override_redirect = window->overrideRedirect(); - bool managed = window->managed(); - CompPoint viewport = window->defaultViewport(); - int output = window->outputDevice(); - - if (maximized && on_current && !override_redirect && managed && viewport == uScreen->screen->vp() && output == (int)uScreen->screen->currentOutputDev().id()) + if ((window->state() & MAXIMIZE_STATE) && window->onCurrentDesktop() && !window->overrideRedirect() && window->managed()) { - uScreen->paint_panel_ = true; + CompPoint const& viewport = window->defaultViewport(); + unsigned output = window->outputDevice(); + + if (viewport == uScreen->screen->vp() && output == uScreen->screen->currentOutputDev().id()) + { + uScreen->paint_panel_under_dash_ = true; + } } } @@ -2621,28 +2598,52 @@ bool UnityWindow::glDraw(const GLMatrix& matrix, uScreen->paintDisplay(); } - bool screen_transformed = (mask & PAINT_WINDOW_ON_TRANSFORMED_SCREEN_MASK); - - if (window->type() == CompWindowTypeDesktopMask && !screen_transformed) - uScreen->setPanelShadowMatrix(matrix); + enum class DrawPanelShadow + { + NO, + BELOW_WINDOW, + OVER_WINDOW, + }; - Window active_window = screen->activeWindow(); + auto draw_panel_shadow = DrawPanelShadow::NO; - if (!screen_transformed && - window->id() == active_window && - window->type() != CompWindowTypeDesktopMask) + if (!(mask & PAINT_WINDOW_ON_TRANSFORMED_SCREEN_MASK)) { - uScreen->paintPanelShadow(region); + Window active_window = screen->activeWindow(); + + if (G_UNLIKELY(window->type() == CompWindowTypeDesktopMask)) + { + uScreen->setPanelShadowMatrix(matrix); + + if (active_window == 0 || active_window == window->id()) + draw_panel_shadow = DrawPanelShadow::OVER_WINDOW; + } + else + { + if (window->id() == active_window) + { + draw_panel_shadow = DrawPanelShadow::BELOW_WINDOW; + + if (!(window->state() & MAXIMIZE_STATE)) + { + auto const& output = uScreen->screen->currentOutputDev(); + + if (window->y() - window->border().top < output.y() + uScreen->panel_style_.panel_height) + { + draw_panel_shadow = DrawPanelShadow::OVER_WINDOW; + } + } + } + } } + if (draw_panel_shadow == DrawPanelShadow::BELOW_WINDOW) + uScreen->paintPanelShadow(region); + bool ret = gWindow->glDraw(matrix, attrib, region, mask); - if (!screen_transformed && - (active_window == 0 || active_window == window->id()) && - (window->type() == CompWindowTypeDesktopMask)) - { + if (draw_panel_shadow == DrawPanelShadow::OVER_WINDOW) uScreen->paintPanelShadow(region); - } return ret; } diff --git a/plugins/unityshell/src/unityshell.h b/plugins/unityshell/src/unityshell.h index 2d01142b0..78d4874f6 100644 --- a/plugins/unityshell/src/unityshell.h +++ b/plugins/unityshell/src/unityshell.h @@ -243,9 +243,7 @@ class UnityScreen : void InitGesturesSupport(); - void DrawTopPanelBackground(); - bool TopPanelBackgroundTextureNeedsUpdate() const; - void UpdateTopPanelBackgroundTexture(); + void DrawPanelUnderDash(); unsigned CompizModifiersToNux(unsigned input) const; unsigned XModifiersToNux(unsigned input) const; @@ -286,7 +284,6 @@ class UnityScreen : std::unique_ptr gestures_sub_windows_; bool needsRelayout; - bool _in_paint; bool super_keypressed_; typedef std::shared_ptr CompActionPtr; typedef std::vector ShortcutActions; @@ -331,9 +328,7 @@ class UnityScreen : GLMatrix panel_shadow_matrix_; - bool panel_texture_has_changed_; - bool paint_panel_; - nux::ObjectPtr panel_texture_; + bool paint_panel_under_dash_; std::set fake_decorated_windows_; bool scale_just_activated_; diff --git a/po/ar.po b/po/ar.po index 59e7694ae..2742c775e 100644 --- a/po/ar.po +++ b/po/ar.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Arabic\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "حذف من برنامج Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "حذف من برنامج Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "حذف من برنامج Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "إنهاء" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "حذف من برنامج Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "حذف من برنامج Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "إبقاء في برنامج Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "حذف من برنامج Launcher" diff --git a/po/bg.po b/po/bg.po index 8e03095c9..5908ec47d 100644 --- a/po/bg.po +++ b/po/bg.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Bulgarian\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Премахни от програмата за стартиране" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Премахни от програмата за стартиране" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Премахни от програмата за стартиране" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Излез" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Премахни от програмата за стартиране" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Премахни от програмата за стартиране" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Остави в програмата за стартиране" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Премахни от програмата за стартиране" diff --git a/po/cs.po b/po/cs.po index 3aa0fe339..f9df53f39 100644 --- a/po/cs.po +++ b/po/cs.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Czech\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,704 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Odebrat ze Spouštěče" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Odebrat ze Spouštěče" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Odebrat ze Spouštěče" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Konec" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Odebrat ze Spouštěče" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Odebrat ze Spouštěče" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Ponechat ve Spouštěči" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Odebrat ze Spouštěče" diff --git a/po/da.po b/po/da.po index 38d7a1272..979ad5b5d 100644 --- a/po/da.po +++ b/po/da.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Danish\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Fjern fra Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Fjern fra Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Fjern fra Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Afslut" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Fjern fra Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Fjern fra Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Behold i Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Fjern fra Launcher" diff --git a/po/de.po b/po/de.po index 7c33742fe..9ec69a51c 100644 --- a/po/de.po +++ b/po/de.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: German\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Aus Startprogramm entfernen" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Aus Startprogramm entfernen" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Aus Startprogramm entfernen" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Beenden" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Aus Startprogramm entfernen" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Aus Startprogramm entfernen" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Im Startprogramm behalten" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Aus Startprogramm entfernen" diff --git a/po/el.po b/po/el.po index 2a4209b9f..8f82bcd11 100644 --- a/po/el.po +++ b/po/el.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Greek\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Κλείσιμο" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Διατήρηση στο πρόγραμμα εκκίνησης" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Κατάργηση από το πρόγραμμα εκκίνησης" diff --git a/po/es.po b/po/es.po index 0c4860d79..8e2abef1b 100644 --- a/po/es.po +++ b/po/es.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Spanish\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Quitar del iniciador" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Quitar del iniciador" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Quitar del iniciador" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Salir" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Quitar del iniciador" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Quitar del iniciador" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Conservar en el iniciador" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Quitar del iniciador" diff --git a/po/fi.po b/po/fi.po index de0ec8767..73c7426a8 100644 --- a/po/fi.po +++ b/po/fi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Finnish\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Poista Launcherista" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Poista Launcherista" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Poista Launcherista" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Lopeta" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Poista Launcherista" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Poista Launcherista" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Pidä Launcherissa" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Poista Launcherista" diff --git a/po/fr.po b/po/fr.po index c6d46a17e..e5b9bbe16 100644 --- a/po/fr.po +++ b/po/fr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: French\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Supprimer du lanceur" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Supprimer du lanceur" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Supprimer du lanceur" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Quitter" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Supprimer du lanceur" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Supprimer du lanceur" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Conserver dans le lanceur" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Supprimer du lanceur" diff --git a/po/he.po b/po/he.po index 6735cc961..1e7d2a0fb 100644 --- a/po/he.po +++ b/po/he.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Hebrew\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "מהסר מ- Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "מהסר מ- Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "מהסר מ- Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "יציאה" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "מהסר מ- Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "מהסר מ- Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "שמור ב- Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "מהסר מ- Launcher" diff --git a/po/hi.po b/po/hi.po index e41fa60eb..7fbc8d152 100644 --- a/po/hi.po +++ b/po/hi.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Hindi\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "लॉन्चर से निकालें" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "लॉन्चर से निकालें" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "लॉन्चर से निकालें" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "छोड़ें" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "लॉन्चर से निकालें" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "लॉन्चर से निकालें" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "लॉन्चर में रखें" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "लॉन्चर से निकालें" diff --git a/po/hr.po b/po/hr.po index a407ee86b..b9dd7690f 100644 --- a/po/hr.po +++ b/po/hr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Croatian\n" @@ -18,389 +18,106 @@ 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" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,704 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Ukloni iz programa za pokretanje" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Ukloni iz programa za pokretanje" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Ukloni iz programa za pokretanje" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Izlaz" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Ukloni iz programa za pokretanje" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Ukloni iz programa za pokretanje" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Zadrži u programu za pokretanje" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Ukloni iz programa za pokretanje" diff --git a/po/hu.po b/po/hu.po index 063df8ccd..b79c07290 100644 --- a/po/hu.po +++ b/po/hu.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Hungarian\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Eltávolítás a Launcherből" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Eltávolítás a Launcherből" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Eltávolítás a Launcherből" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Kilépés" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Eltávolítás a Launcherből" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Eltávolítás a Launcherből" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Megtartás a Launcherben" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Eltávolítás a Launcherből" diff --git a/po/it.po b/po/it.po index 9adcd04ae..f7e0e76b0 100644 --- a/po/it.po +++ b/po/it.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Italian\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Rimuovi da Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Rimuovi da Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Rimuovi da Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Esci" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Rimuovi da Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Rimuovi da Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Mantieni in Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Rimuovi da Launcher" diff --git a/po/ja.po b/po/ja.po index a45e18f42..add7481e0 100644 --- a/po/ja.po +++ b/po/ja.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Japanese\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,702 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Launcher から削除" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Launcher から削除" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Launcher から削除" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "中止" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Launcher から削除" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Launcher から削除" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Launcher に残す" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Launcher から削除" diff --git a/po/ko.po b/po/ko.po index f6052bfcb..7c22d1a29 100644 --- a/po/ko.po +++ b/po/ko.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Korean\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,702 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "시작 관리자에서 제거" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "시작 관리자에서 제거" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "시작 관리자에서 제거" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "끝내기" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "시작 관리자에서 제거" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "시작 관리자에서 제거" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "시작 관리자에 유지" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "시작 관리자에서 제거" diff --git a/po/nb.po b/po/nb.po index 6bd7d167b..ab514e018 100644 --- a/po/nb.po +++ b/po/nb.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Norwegian Bokmal\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Fjern fra oppstartsprogram" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Fjern fra oppstartsprogram" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Fjern fra oppstartsprogram" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Avslutt" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Fjern fra oppstartsprogram" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Fjern fra oppstartsprogram" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Behold i oppstartsprogram" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Fjern fra oppstartsprogram" diff --git a/po/nl.po b/po/nl.po index 4cc5a281f..b70b7aaea 100644 --- a/po/nl.po +++ b/po/nl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Dutch\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Verwijderen uit starter" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Verwijderen uit starter" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Verwijderen uit starter" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Afsluiten" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Verwijderen uit starter" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Verwijderen uit starter" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Bewaren in starter" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Verwijderen uit starter" diff --git a/po/pl.po b/po/pl.po index 6a9beeac5..2163f74bc 100644 --- a/po/pl.po +++ b/po/pl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Polish\n" @@ -18,389 +18,106 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,704 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Usuń z obszaru uruchamiania" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Usuń z obszaru uruchamiania" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Usuń z obszaru uruchamiania" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Zamknij" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Usuń z obszaru uruchamiania" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Usuń z obszaru uruchamiania" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Pozostaw w obszarze uruchamiania" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Usuń z obszaru uruchamiania" diff --git a/po/pt.po b/po/pt.po index b69a9cfb9..06e97a42d 100644 --- a/po/pt.po +++ b/po/pt.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Portuguese\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Remover do Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Remover do Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Remover do Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Abandonar" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Remover do Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Remover do Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Manter no Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Remover do Launcher" diff --git a/po/pt_BR.po b/po/pt_BR.po index 339f807c2..f62de594f 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Brazilian Portuguese\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Remover do Inicializador" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Remover do Inicializador" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Remover do Inicializador" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Sair" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Remover do Inicializador" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Remover do Inicializador" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Manter no Inicializador" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Remover do Inicializador" diff --git a/po/ro.po b/po/ro.po index deb1623dd..d314d7ab1 100644 --- a/po/ro.po +++ b/po/ro.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Romanian\n" @@ -18,389 +18,106 @@ msgstr "" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,704 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Îndepărtează din programul de lansare" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Îndepărtează din programul de lansare" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Îndepărtează din programul de lansare" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Ieşire" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Îndepărtează din programul de lansare" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Îndepărtează din programul de lansare" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Păstrează în programul de lansare" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Îndepărtează din programul de lansare" diff --git a/po/ru.po b/po/ru.po index a71ee46eb..9e71c26c3 100644 --- a/po/ru.po +++ b/po/ru.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Russian\n" @@ -18,389 +18,106 @@ 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" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,704 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Удалить из модуля запуска" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Удалить из модуля запуска" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Удалить из модуля запуска" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Выход" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Удалить из модуля запуска" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Удалить из модуля запуска" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Оставить в модуле запуска" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Удалить из модуля запуска" diff --git a/po/sk.po b/po/sk.po index c9f5be9f5..1c3efc743 100644 --- a/po/sk.po +++ b/po/sk.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Slovak\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,704 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Odstrániť z aplikácie Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Odstrániť z aplikácie Launcher" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Odstrániť z aplikácie Launcher" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Ukončiť" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Odstrániť z aplikácie Launcher" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Odstrániť z aplikácie Launcher" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Ponechať v aplikácii Launcher" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Odstrániť z aplikácie Launcher" diff --git a/po/sl.po b/po/sl.po index 9615d6e5e..d9f162f76 100644 --- a/po/sl.po +++ b/po/sl.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Slovenian\n" @@ -18,389 +18,106 @@ msgstr "" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n" "%100==4 ? 2 : 3);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,705 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Odstrani iz zaganjalnika" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Odstrani iz zaganjalnika" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Odstrani iz zaganjalnika" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Končaj" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Odstrani iz zaganjalnika" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Odstrani iz zaganjalnika" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Obdrži v zaganjalniku" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Odstrani iz zaganjalnika" diff --git a/po/sr.po b/po/sr.po index 122ab3778..b80c379f1 100644 --- a/po/sr.po +++ b/po/sr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Serbian\n" @@ -18,389 +18,106 @@ 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" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -408,704 +125,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Ukloni iz pokretača" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Ukloni iz pokretača" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Ukloni iz pokretača" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Napusti" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Ukloni iz pokretača" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Ukloni iz pokretača" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Zadrži u pokretaču" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Ukloni iz pokretača" diff --git a/po/sv.po b/po/sv.po index 4f8450ed4..2b9c175d3 100644 --- a/po/sv.po +++ b/po/sv.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:36-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Swedish\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,703 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Ta bort från startprogram" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Ta bort från startprogram" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Ta bort från startprogram" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Avsluta" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Ta bort från startprogram" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Ta bort från startprogram" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Behåll i startprogram" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Ta bort från startprogram" diff --git a/po/th.po b/po/th.po index 5e1ffa042..5beb47354 100644 --- a/po/th.po +++ b/po/th.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:37-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Thai\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "ออกจากโปรแกรมเรียกทำงาน" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "ออกจากโปรแกรมเรียกทำงาน" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "ออกจากโปรแกรมเรียกทำงาน" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "จบการทำงาน" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "ออกจากโปรแกรมเรียกทำงาน" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "ออกจากโปรแกรมเรียกทำงาน" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "อยู่ในโปรแกรมเรียกทำงาน" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "ออกจากโปรแกรมเรียกทำงาน" diff --git a/po/tr.po b/po/tr.po index 0358cec13..a85aeb220 100644 --- a/po/tr.po +++ b/po/tr.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:37-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Turkish\n" @@ -17,389 +17,106 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -407,702 +124,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "Başlatıcıdan Kaldır" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "Başlatıcıdan Kaldır" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "Başlatıcıdan Kaldır" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "Çık" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "Başlatıcıdan Kaldır" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "Başlatıcıdan Kaldır" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "Başlatıcıda Tut" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "Başlatıcıdan Kaldır" diff --git a/po/unity.pot b/po/unity.pot index 1632f174a..6b58865e1 100644 --- a/po/unity.pot +++ b/po/unity.pot @@ -1,5 +1,5 @@ # SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# Copyright (C) YEAR Canonical\ Ltd # This file is distributed under the same license as the PACKAGE package. # FIRST AUTHOR , YEAR. # @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,1087 +16,314 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 -msgid "Search your computer and online sources" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" +msgid "See fewer results" msgstr "" -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../dash/PlacesGroup.cpp:341 -msgid "See fewer results" -msgstr "" - -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 msgid "Lock to Launcher" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 msgid "Unlock from Launcher" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "" -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" +msgid "Search your computer and online sources" msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" +msgid "Empty Trash..." msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -msgid "Hide Launcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format -msgid "" -"Hi %s, you have open files that you might want to save before shutting down. " -"Are you sure you want to continue?" +msgid "Hi %s, you have open files that you might want to save before shutting down. Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format -msgid "" -"Goodbye, %s. Are you sure you want to close all programs and shut down the " -"computer?" +msgid "Goodbye, %s. Are you sure you want to close all programs and shut down the computer?" msgstr "" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../shutdown/SessionView.cpp:135 #, c-format -msgid "" -"Hi %s, you have open files that you might want to save before logging out. " -"Are you sure you want to continue?" +msgid "Hi %s, you have open files that you might want to save before logging out. Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:140 #, c-format -msgid "" -"Goodbye, %s. Are you sure you want to close all programs and log out from " -"your account?" +msgid "Goodbye, %s. Are you sure you want to close all programs and log out from your account?" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" "Would you like to…" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -msgid "Launchers" -msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 61632e903..501d21af8 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:37-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Chinese (simplified)\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "从启动程序中删除" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "从启动程序中删除" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "从启动程序中删除" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "退出" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "从启动程序中删除" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "从启动程序中删除" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "保留在启动程序中" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "从启动程序中删除" diff --git a/po/zh_TW.po b/po/zh_TW.po index 30a71b278..8f10984f0 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -6,8 +6,8 @@ msgid "" msgstr "" "Project-Id-Version: l 10n\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-03-22 13:44+0100\n" +"Report-Msgid-Bugs-To: ayatana-dev@lists.launchpad.net\n" +"POT-Creation-Date: 2013-04-17 16:00+0100\n" "PO-Revision-Date: 2010-03-02 12:37-0500\n" "Last-Translator: Canonical OEM\n" "Language-Team: Chinese (traditional)\n" @@ -16,389 +16,106 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: ../shortcuts/CompizShortcutModeller.cpp:122 -#: ../shortcuts/CompizShortcutModeller.cpp:219 msgid " (Hold)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:163 -#: ../shortcuts/CompizShortcutModeller.cpp:213 msgid " (Tap)" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:140 msgid " + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:268 -#: ../shortcuts/CompizShortcutModeller.cpp:274 msgid " + Arrow Keys" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:146 msgid " + Shift + 1 to 9" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:332 -#: ../shortcuts/CompizShortcutModeller.cpp:338 msgid " Drag" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:309 msgid " or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:58 -msgid "" -"A conglomerate setting that modifies the overall responsiveness of the " -"Launcher reveal." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:5 -msgid "A tap on this key summons the HUD." -msgstr "" - -#: ../services/panel-service.c:1731 msgid "Activate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:20 -msgid "Active Blur" -msgstr "" - -#: ../dash/FilterAllButton.cpp:38 msgid "All" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:53 -msgid "All Displays" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:3 -msgid "Alpha" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:62 -msgid "" -"Amount of mouse pressure required to push the mousepointer into the next " -"monitor." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:60 -msgid "Amount of mouse pressure required to reveal the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:43 -msgid "Animation played when the Launcher is showing or hiding." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:201 msgid "Arrow Keys" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:41 -msgid "Autohide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:122 -msgid "" -"Automatically spreads multiple windows of the same application out into a " -"grid after a short time." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:21 -msgid "Automaximize Value" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:14 -msgid "Background Color" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:15 -msgid "Background color override for the Dash, Launcher and Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:75 -msgid "Backlight Always Off" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:73 -msgid "Backlight Always On" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:74 -msgid "Backlight Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:77 -msgid "Backlight and Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:123 -msgid "Bias alt-tab to prefer windows on the current viewport" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:124 -msgid "" -"Bias the Switcher to prefer windows which are placed on the current viewport." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:7 -msgid "Blacklist" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:82 -msgid "Blink" -msgstr "" - -#: ../dash/FilterGenreWidget.cpp:42 msgid "Categories" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:72 -msgid "Change how the icons in the Launcher are backlit." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:316 msgid "Closes the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:114 -msgid "Closes the live previews and returns to icons in the Switcher." -msgstr "" - -#: ../dash/previews/SocialPreview.cpp:219 -msgid "Comments" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:330 msgid "Ctrl + Alt + Num" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:196 msgid "Ctrl + Tab" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:233 -#: ../shortcuts/CompizShortcutModeller.cpp:255 msgid "Cursor Left or Right" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:33 -msgid "" -"Cycles through icons present in the Launcher, in reverse order. Activates " -"the highlighted icon on release." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:31 -msgid "" -"Cycles through icons present in the Launcher. Activates the highlighted icon " -"on release." -msgstr "" - -#: ../plugins/unityshell/src/unity-dash-view-accessible.cpp:100 -#: ../shortcuts/CompizShortcutModeller.cpp:161 msgid "Dash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:16 -msgid "Dash Blur" -msgstr "" - -#: ../launcher/BFBLauncherIcon.cpp:117 -msgid "Dash Home" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:34 -msgid "Dash tap duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:56 -msgid "Determines if the Launcher's edges will capture the mousepointer." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:1 -msgid "Dialog Handler" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:125 -msgid "Disable Show Desktop in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:126 -msgid "Disables the Show Desktop icon in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:112 -msgid "" -"Displays a live preview of the selected window; a grid if multiple windows " -"of the selected application are open." -msgstr "" - -#: ../launcher/SpacerLauncherIcon.cpp:36 msgid "Drop To Add Application" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:95 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:89 -msgid "" -"Duration (in milliseconds) of the menus fade-in animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:97 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"menus of a new launched application have been shown." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:91 -msgid "" -"Duration (in milliseconds) of the menus fade-out animation, used when the " -"mouse goes over the top-panel." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:35 -msgid "" -"Duration (in millseconds) that will count as a tap for opening the Dash." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:67 -msgid "Duration of Sticky Edge Release after Break" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:76 -msgid "Edge Illumination Toggles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:65 -msgid "Edge Stop Velocity" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:226 msgid "Eject parent drive" msgstr "" -#: ../launcher/TrashLauncherIcon.cpp:85 -msgid "Empty Trash…" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:23 -msgid "Enable Shortcut Hints Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:120 -msgid "Enables miniature live window previews in the Switcher." +msgid "Empty Trash..." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:24 -msgid "" -"Enables possibility to display an overlay showing available mouse and " -"keyboard shortcuts." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:206 msgid "Enter" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:9 -msgid "Fade Duration" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:5 -msgid "Fade Time" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:47 -msgid "Fade and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:44 -msgid "Fade on bfb and Slide" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:46 -msgid "Fade only" -msgstr "" - -#: ../unity-shared/SearchBar.cpp:184 msgid "Filter results" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:118 -msgid "" -"Flips through all the windows present in the Switcher, in reverse order." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:116 -msgid "Flips through all the windows present in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:3 -msgid "General" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:29 -msgid "" -"Gives keyboard-focus to the Launcher so it can be navigated with the cursor-" -"keys." -msgstr "" - -#: ../shutdown/SessionView.cpp:140 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and log out from " "your account?" msgstr "" -#: ../shutdown/SessionView.cpp:124 #, c-format msgid "" "Goodbye, %s. Are you sure you want to close all programs and shut down the " "computer?" msgstr "" -#: ../shutdown/SessionView.cpp:164 #, c-format msgid "Goodbye, %s. Would you like to…" msgstr "" -#: ../launcher/HudLauncherIcon.cpp:40 msgid "HUD" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:211 msgid "HUD & Menu Bar" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:2 -msgid "Handles the modal dialog experience in unity" -msgstr "" - -#: ../shutdown/SessionView.cpp:135 #, c-format msgid "" "Hi %s, you have open files that you might want to save before logging out. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:119 #, c-format msgid "" "Hi %s, you have open files that you might want to save before shutting down. " "Are you sure you want to continue?" msgstr "" -#: ../shutdown/SessionView.cpp:158 #, c-format msgid "" "Hi %s, you have open files you might want to save.\n" @@ -406,703 +123,228 @@ msgid "" msgstr "" #. We have enough buttons to show the message without a new line. -#: ../shutdown/SessionView.cpp:153 #, c-format msgid "Hi %s, you have open files you might want to save. Would you like to…" msgstr "" -#: ../shutdown/SessionButton.cpp:70 msgid "Hibernate" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:42 -msgid "Hide Animation" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:7 -msgid "Hide Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:38 -#, fuzzy -msgid "Hide Launcher" -msgstr "從啟動程式中刪除" - -#: ../plugins/unityshell/unityshell.xml.in.h:27 -msgid "" -"Holding this key makes the Launcher and Help Overlay appear. Tapping it " -"opens the Dash." -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home" -msgstr "" - -#: ../dash/DashView.cpp:115 -msgid "Home screen" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:10 -msgid "How long the fade should last" -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:6 -msgid "How long the fade should take (ms)" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:93 -msgid "" -"How many seconds the menus should be shown when a new application has been " -"launched." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:113 -msgid "Key to collapse windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:6 -msgid "Key to execute a command" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:111 -msgid "Key to expose windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:115 -msgid "Key to flip through windows in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:117 -msgid "Key to flip through windows in the Switcher backwards" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:28 -msgid "Key to give keyboard-focus to the Launcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:8 -msgid "Key to hide the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:109 -msgid "Key to move to the left in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:107 -msgid "Key to move to the right in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:8 -msgid "Key to open the first panel menu" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:26 -msgid "Key to show the Dash, Launcher and Help Overlay" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:4 -#: ../gnome/50-unity-launchers.xml.in.h:2 -msgid "Key to show the HUD" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:6 -msgid "Key to show the handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:30 -msgid "Key to start the Launcher Application Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:32 -msgid "Key to start the Launcher Application Switcher in reverse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:99 -msgid "Key to start the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:103 -msgid "Key to start the Switcher for all viewports" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:101 -msgid "Key to switch to the previous window in the Switcher" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:105 -msgid "Key to switch to the previous window in the Switcher for all viewports" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:4 -msgid "Key to toggle the handles" -msgstr "" - -#: ../shortcuts/ShortcutView.cpp:80 msgid "Keyboard Shortcuts" msgstr "" -#: ../dash/previews/ApplicationPreview.cpp:209 msgid "Last Updated" msgstr "" -#: ../plugins/unityshell/src/unity-launcher-accessible.cpp:137 -#: ../plugins/unityshell/unityshell.xml.in.h:25 -#: ../shortcuts/CompizShortcutModeller.cpp:120 msgid "Launcher" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:55 -msgid "Launcher Capture Mouse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:61 -msgid "Launcher Edge Stop Overcome Pressure" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:71 -msgid "Launcher Icon Backlight Mode" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:78 -msgid "Launcher Icon Launch Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:69 -msgid "Launcher Icon Size" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:83 -msgid "Launcher Icon Urgent Animation" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:51 -msgid "Launcher Monitors" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:36 -msgid "Launcher Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:57 -msgid "Launcher Reveal Edge Responsiveness" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:59 -msgid "Launcher Reveal Pressure" -msgstr "" - -#. Namespace -#: ../gnome/50-unity-launchers.xml.in.h:1 -#, fuzzy -msgid "Launchers" -msgstr "從啟動程式中刪除" - -#: ../plugins/unityshell/unityshell.xml.in.h:49 -msgid "Left Edge" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:84 msgid "Left Mouse" msgstr "" -#: ../dash/LensBar.cpp:74 -msgid "Legal notice" -msgstr "" - -#: ../shutdown/SessionButton.cpp:58 msgid "Lock" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:830 #, fuzzy msgid "Lock to Launcher" msgstr "從啟動程式中刪除" -#: ../shutdown/SessionView.cpp:130 ../shutdown/SessionButton.cpp:62 msgid "Log Out" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:39 -msgid "Make the Launcher hide automatically after some time of inactivity." -msgstr "" - -#: ../plugins/unitydialog/unitydialog.xml.in.h:8 -msgid "Match for dialogs that shouldn't be accepted as transient modal dialogs" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:298 msgid "Maximises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:87 -msgid "Menus" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:92 -msgid "Menus Discovery Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:94 -msgid "Menus Discovery Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:96 -msgid "Menus Discovery Fade-out Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:88 -msgid "Menus Fade-in Duration" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:90 -msgid "Menus Fade-out Duration" -msgstr "" - -#: ../shortcuts/ShortcutHintPrivate.cpp:85 msgid "Middle Mouse" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:292 msgid "Minimises all windows." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:231 msgid "Moves focus between indicators." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:275 msgid "Moves focused window to another workspace." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:199 -#: ../shortcuts/CompizShortcutModeller.cpp:253 msgid "Moves the focus." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:333 msgid "Moves the window." msgstr "" -#: ../dash/FilterMultiRangeWidget.cpp:43 msgid "Multi-range" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:110 -msgid "Navigates one window to the left in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:108 -msgid "Navigates one window to the right in the Switcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:40 -msgid "Never" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:18 -msgid "No Blur" -msgstr "" - -#: ../unity-shared/CoverArt.cpp:452 msgid "No Image Available" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:80 -msgid "None" -msgstr "" - -#: ../launcher/VolumeLauncherIcon.cpp:208 msgid "Open" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:129 msgid "Opens Launcher keyboard navigation mode." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:7 -msgid "Opens a folder or executes a command." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:147 msgid "Opens a new window in the app." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:170 msgid "Opens the Dash App Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:176 msgid "Opens the Dash Files Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:164 msgid "Opens the Dash Home." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:182 msgid "Opens the Dash Music Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:188 msgid "Opens the Dash Video Lens." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:214 msgid "Opens the HUD." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:123 msgid "Opens the Launcher, displays shortcuts." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:153 msgid "Opens the Trash." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:204 msgid "Opens the currently focused item." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:9 -msgid "" -"Opens the first indicator menu of the Panel, allowing keyboard navigation " -"thereafter." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:225 msgid "Opens the indicator menu." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:322 msgid "Opens the window accessibility menu." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:10 -msgid "Panel Opacity" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:12 -msgid "Panel Opacity for Maximized Windows Toggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:328 msgid "Places the window in corresponding position." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:2 -msgid "Plugin to draw the Unity Shell" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:63 -msgid "Pressure Decay Rate" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:54 -msgid "Primary Display" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:85 -msgid "Pulse" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:81 -msgid "Pulse Until Running" -msgstr "" - -#: ../plugins/unityshell/src/unity-quicklist-menu-accessible.cpp:179 msgid "Quicklist" msgstr "" -#: ../launcher/ApplicationLauncherIcon.cpp:839 msgid "Quit" msgstr "結束" -#: ../dash/FilterRatingsWidget.cpp:49 msgid "Rating" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:339 msgid "Resizes the window." msgstr "" -#: ../shutdown/SessionButton.cpp:78 msgid "Restart" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:304 msgid "Restores or minimises the current window." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:48 -msgid "Reveal Trigger" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:220 msgid "Reveals the application menu." msgstr "" -#: ../shortcuts/ShortcutHintPrivate.cpp:86 msgid "Right Mouse" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove" msgstr "" -#: ../launcher/VolumeLauncherIcon.cpp:244 msgid "Safely remove parent drive" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:141 msgid "Same as clicking on a Launcher icon." msgstr "" -#: ../dash/DashView.cpp:115 ../launcher/BFBLauncherIcon.cpp:38 msgid "Search your computer and online sources" msgstr "" -#: ../dash/PlacesGroup.cpp:341 msgid "See fewer results" msgstr "" -#: ../dash/PlacesGroup.cpp:347 -#, c-format -msgid "See one more result" -msgid_plural "See %d more results" -msgstr[0] "" -msgstr[1] "" - -#: ../plugins/unityshell/unityshell.xml.in.h:52 -msgid "Selects on which display the Launcher will be present." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:310 msgid "Semi-maximise the current window." msgstr "" -#: ../launcher/DesktopLauncherIcon.cpp:36 msgid "Show Desktop" msgstr "" -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:5 -msgid "Show Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:119 -msgid "Show live previews of windows in the Switcher" -msgstr "" - -#: ../shutdown/SessionView.cpp:114 ../shutdown/SessionButton.cpp:74 msgid "Shut Down" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:45 -msgid "Slide only" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:2 -msgid "Small touch-based grab handles to move and resize a window" -msgstr "" - -#: ../dash/LensView.cpp:582 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:286 msgid "Spreads all windows in the current workspace." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:19 -msgid "Static Blur" -msgstr "" - -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:2 -msgid "Support _UNITY_NET_WORKAREA_REGION" -msgstr "" - -#: ../shutdown/SessionButton.cpp:66 msgid "Suspend" msgstr "" -#: ../plugins/unityshell/src/unity-switcher-accessible.cpp:147 -#: ../plugins/unityshell/unityshell.xml.in.h:98 msgid "Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:135 msgid "Switches applications via the Launcher." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:194 msgid "Switches between Lenses." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:241 msgid "Switches between applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:263 msgid "Switches between workspaces." msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:100 -msgid "Switches to the next open window on the actual viewport." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:104 -msgid "Switches to the next open window, including windows of all viewports." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:102 -msgid "" -"Switches to the previous open window on the actual viewport, once the " -"Switcher has been revealed." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:106 -msgid "" -"Switches to the previous open window, once the Switcher has been revealed, " -"including windows of all viewports." -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:247 msgid "Switches windows of current applications." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:269 msgid "Switches workspaces." msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:238 msgid "Switching" msgstr "" -#: ../launcher/DeviceNotificationDisplayImp.cpp:55 msgid "The drive has been successfully ejected" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:79 -msgid "The icon animation playing during the launch of a process." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:84 -msgid "The icon animation playing when a Launcher Icon is in the urgent state." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:66 -msgid "The maximum velocity at which the mouse will still be stopped." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:22 -msgid "The minimum value to trigger automaximize." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:68 -msgid "" -"The number of milliseconds Sticky Edges are deactivated for after the " -"barrier has been broken." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:37 -msgid "The opacity of the Launcher background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:11 -msgid "The opacity of the Panel background." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:64 -msgid "The rate at which mouse pressure decays." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:70 -msgid "The size of the icons in the Launcher." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:121 -msgid "Timed automatic to show live previews in the Switcher" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:3 -msgid "Toggle Handles" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:50 -msgid "Top Left Corner" -msgstr "" - -#: ../launcher/TrashLauncherIcon.cpp:51 msgid "Trash" msgstr "" -#: ../plugins/unityshell/unityshell.xml.in.h:17 -msgid "Type of blur in the Dash." -msgstr "" - -#: ../hud/HudView.cpp:198 ../hud/HudView.cpp:382 msgid "Type your command" msgstr "" -#: ../panel/PanelMenuView.cpp:76 msgid "Ubuntu Desktop" msgstr "" -#. anonymous namespace -#. namespace unity -#: ../plugins/unityshell/unityshell.xml.in.h:1 -msgid "Ubuntu Unity Plugin" -msgstr "" - -#: ../plugins/unity-mt-grab-handles/unitymtgrabhandles.xml.in.h:1 -msgid "Unity MT Grab Handles" -msgstr "" - -#. namespace unity -#: ../plugins/networkarearegion/networkarearegion.xml.in.h:1 -msgid "Unity Scrollbars Support" -msgstr "" - -#: ../launcher/ApplicationLauncherIcon.cpp:830 -#: ../launcher/VolumeLauncherIcon.cpp:165 #, fuzzy msgid "Unlock from Launcher" msgstr "從啟動程式中刪除" -#: ../launcher/VolumeLauncherIcon.cpp:262 msgid "Unmount" msgstr "" #. Application is being installed, or hasn't been installed yet -#: ../launcher/SoftwareCenterLauncherIcon.cpp:69 msgid "Waiting to install" msgstr "" -#: ../plugins/unitydialog/unitydialog.xml.in.h:4 -msgid "What dimming alpha to use" -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:13 -msgid "" -"When a window is maximized and visible in the current viewport, the panel " -"opacity is disabled." -msgstr "" - -#: ../plugins/unityshell/unityshell.xml.in.h:86 -msgid "Wiggle" -msgstr "" - -#: ../shortcuts/CompizShortcutModeller.cpp:283 msgid "Windows" msgstr "" -#: ../launcher/ExpoLauncherIcon.cpp:35 msgid "Workspace Switcher" msgstr "" -#: ../shortcuts/CompizShortcutModeller.cpp:260 msgid "Workspaces" msgstr "" +#, fuzzy +#~ msgid "Hide Launcher" +#~ msgstr "從啟動程式中刪除" + #, fuzzy #~ msgid "Keep in launcher" #~ msgstr "保留在啟動程式中" + +#, fuzzy +#~ msgid "Launchers" +#~ msgstr "從啟動程式中刪除" diff --git a/resources/launcher_bfb.png b/resources/launcher_bfb.png index df442fde7..28768e3f2 100644 Binary files a/resources/launcher_bfb.png and b/resources/launcher_bfb.png differ diff --git a/tests/autopilot/unity/tests/__init__.py b/tests/autopilot/unity/tests/__init__.py index fd56c78ac..fb4a72c81 100644 --- a/tests/autopilot/unity/tests/__init__.py +++ b/tests/autopilot/unity/tests/__init__.py @@ -40,6 +40,10 @@ Unity ) +from Xlib import display +from Xlib import Xutil + +from gi.repository import Gio log = getLogger(__name__) @@ -63,6 +67,12 @@ def setUp(self): # ropey. Once it's been proven to work reliably we can remove this line: self.set_unity_log_level("unity.wm.compiz", "DEBUG") + # For the length of the test, disable screen locking + self._desktop_settings = Gio.Settings.new("org.gnome.desktop.lockdown") + lock_state = self._desktop_settings.get_boolean("disable-lock-screen") + self._desktop_settings.set_boolean("disable-lock-screen", True) + self.addCleanup(self._desktop_settings.set_boolean, "disable-lock-screen", lock_state) + def check_test_behavior(self): """Fail the test if it did something naughty. @@ -92,7 +102,7 @@ def check_test_behavior(self): well_behaved = False reasons.append("The test left the hud open.") log.warning("Test left the hud open, closing it...") - self.hud.ensure_hidden() + self.unity.hud.ensure_hidden() # Are we in show desktop mode? if not self.well_behaved(self.unity.window_manager, showdesktop_active=False): well_behaved = False @@ -228,3 +238,8 @@ def close_all_windows(self, application_name): def register_nautilus(self): self.addCleanup(self.unregister_known_application, "Nautilus") self.register_known_application("Nautilus", "nautilus.desktop", "nautilus") + + def get_startup_notification_timestamp(self, bamf_window): + atom = display.Display().intern_atom('_NET_WM_USER_TIME') + atom_type = display.Display().intern_atom('CARDINAL') + return bamf_window.x_win.get_property(atom, atom_type, 0, 1024).value[0] diff --git a/tests/autopilot/unity/tests/launcher/test_icon_behavior.py b/tests/autopilot/unity/tests/launcher/test_icon_behavior.py index f52fa8a30..bf827b45a 100644 --- a/tests/autopilot/unity/tests/launcher/test_icon_behavior.py +++ b/tests/autopilot/unity/tests/launcher/test_icon_behavior.py @@ -19,7 +19,6 @@ from unity.emulators.launcher import IconDragType from unity.tests.launcher import LauncherTestCase, _make_scenarios -from Xlib import display from Xlib import Xutil logger = logging.getLogger(__name__) @@ -60,11 +59,6 @@ def ensure_calculator_in_launcher_and_not_running(self): self.assertThat(lambda: self.app_is_running("Calculator"), Eventually(Equals(False))) return calc_icon - def get_startup_notification_timestamp(self, bamf_window): - atom = display.Display().intern_atom('_NET_WM_USER_TIME') - atom_type = display.Display().intern_atom('CARDINAL') - return bamf_window.x_win.get_property(atom, atom_type, 0, 1024).value[0] - def test_bfb_tooltip_disappear_when_dash_is_opened(self): """Tests that the bfb tooltip disappear when the dash is opened.""" bfb = self.unity.launcher.model.get_bfb_icon() diff --git a/tests/autopilot/unity/tests/test_dash.py b/tests/autopilot/unity/tests/test_dash.py index f9a589be4..50cb1bde0 100644 --- a/tests/autopilot/unity/tests/test_dash.py +++ b/tests/autopilot/unity/tests/test_dash.py @@ -93,6 +93,14 @@ def test_can_go_from_dash_to_command_scope(self): self.unity.dash.reveal_command_scope() self.assertThat(self.unity.dash.active_scope, Eventually(Equals('commands.scope'))) + def test_command_lens_can_close_itself(self): + """We must be able to close the Command lens with Alt+F2""" + self.unity.dash.reveal_command_lens() + self.assertThat(self.unity.dash.visible, Eventually(Equals(True))) + + self.keybinding("lens_reveal/command") + self.assertThat(self.unity.dash.visible, Eventually(Equals(False))) + def test_alt_f4_close_dash(self): """Dash must close on alt+F4.""" self.unity.dash.ensure_visible() diff --git a/tests/autopilot/unity/tests/test_panel.py b/tests/autopilot/unity/tests/test_panel.py index 6cf1fa374..063b7bdf6 100644 --- a/tests/autopilot/unity/tests/test_panel.py +++ b/tests/autopilot/unity/tests/test_panel.py @@ -626,6 +626,7 @@ def test_window_buttons_show_when_holding_show_menu_key(self): maximized=True, move_to_monitor=True) + self.sleep_menu_settle_period() self.assertThat(self.panel.window_buttons_shown, Eventually(Equals(False))) self.keybinding_hold("panel/show_menus") diff --git a/tests/autopilot/unity/tests/test_quicklist.py b/tests/autopilot/unity/tests/test_quicklist.py index bf6224a76..cf4a6dfc6 100644 --- a/tests/autopilot/unity/tests/test_quicklist.py +++ b/tests/autopilot/unity/tests/test_quicklist.py @@ -38,32 +38,60 @@ def open_quicklist_for_icon(self, launcher_icon): self.assertThat(launcher_icon.get_quicklist, Eventually(NotEquals(None))) return launcher_icon.get_quicklist() + def get_desktop_entry(self, application): + # load the desktop file from disk: + desktop_id = self.KNOWN_APPS[application]['desktop-file'] + desktop_file = os.path.join('/usr/share/applications', desktop_id) + return DesktopEntry(desktop_file) + def test_quicklist_actions(self): """Test that all actions present in the destop file are shown in the quicklist.""" - self.start_app(self.app_name) + app = self.start_app(self.app_name) - # load the desktop file from disk: - desktop_id = self.KNOWN_APPS[self.app_name]['desktop-file'] - desktop_file = os.path.join('/usr/share/applications', desktop_id) - de = DesktopEntry(desktop_file) # get the launcher icon from the launcher: - launcher_icon = self.unity.launcher.model.get_icon(desktop_id=desktop_id) + launcher_icon = self.unity.launcher.model.get_icon(desktop_id=app.desktop_file) self.assertThat(launcher_icon, NotEquals(None)) # open the icon quicklist, and get all the text labels: + de = self.get_desktop_entry(self.app_name) ql = self.open_quicklist_for_icon(launcher_icon) ql_item_texts = [i.text for i in ql.items if type(i) is QuicklistMenuItemLabel] # iterate over all the actions from the desktop file, make sure they're # present in the quicklist texts. - # FIXME, this doesn't work using a locale other than English. - actions = de.getActions() - for action in actions: + for action in de.getActions(): key = 'Desktop Action ' + action self.assertThat(de.content, Contains(key)) - name = de.content[key]['Name'] + name = de.get('Name', group=key, locale=True) self.assertThat(ql_item_texts, Contains(name)) + def test_quicklist_action_uses_startup_notification(self): + """Tests that quicklist uses startup notification protocol.""" + self.register_nautilus() + self.addCleanup(self.close_all_windows, "Nautilus") + + self.start_app_window("Calculator") + self.start_app(self.app_name) + + nautilus_icon = self.unity.launcher.model.get_icon(desktop_id="nautilus.desktop") + ql = self.open_quicklist_for_icon(nautilus_icon) + de = self.get_desktop_entry("Nautilus") + + new_window_action_name = de.get("Name", group="Desktop Action Window", locale=True) + self.assertThat(new_window_action_name, NotEquals(None)) + new_win_ql_item_fn = lambda : ql.get_quicklist_item_by_text(new_window_action_name) + self.assertThat(new_win_ql_item_fn, Eventually(NotEquals(None))) + new_win_ql_item = new_win_ql_item_fn() + + ql.click_item(new_win_ql_item) + + nautilus_windows_fn = lambda: self.get_open_windows_by_application("Nautilus") + self.assertThat(lambda: len(nautilus_windows_fn()), Eventually(Equals(1))) + [nautilus_window] = nautilus_windows_fn() + + self.assertThat(lambda: self.get_startup_notification_timestamp(nautilus_window), + Eventually(Equals(new_win_ql_item.activate_timestamp))) + def test_quicklist_application_item_focus_last_active_window(self): """This tests shows that when you activate a quicklist application item only the last focused instance of that application is rasied. diff --git a/tests/test_application_launcher_icon.cpp b/tests/test_application_launcher_icon.cpp index 702706477..9c5821727 100644 --- a/tests/test_application_launcher_icon.cpp +++ b/tests/test_application_launcher_icon.cpp @@ -14,7 +14,7 @@ * version 3 along with this program. If not, see * * - * Authored by: Andrea Azzarone + * Authored by: Andrea Azzarone * Brandon Schaefer * Marco Trevisan */ @@ -102,6 +102,17 @@ struct TestApplicationLauncherIcon : Test nux::ObjectPtr mock_icon; }; +TEST_F(TestApplicationLauncherIcon, ApplicationSignalDisconnection) +{ + std::shared_ptr app = std::make_shared(USC_DESKTOP); + { + nux::ObjectPtr icon(new NiceMock(app)); + EXPECT_FALSE(app->closed.empty()); + } + + EXPECT_TRUE(app->closed.empty()); +} + TEST_F(TestApplicationLauncherIcon, Position) { EXPECT_EQ(usc_icon->position(), AbstractLauncherIcon::Position::FLOATING); diff --git a/tests/test_panel_view.cpp b/tests/test_panel_view.cpp index 625b72343..095513905 100644 --- a/tests/test_panel_view.cpp +++ b/tests/test_panel_view.cpp @@ -39,7 +39,7 @@ class TestPanelView : public testing::Test nux::ObjectPtr panel_view_; TestPanelView() - : panel_view_(new unity::PanelView()) + : panel_view_(new unity::PanelView(std::make_shared())) {} }; diff --git a/tests/test_software_center_launcher_icon.cpp b/tests/test_software_center_launcher_icon.cpp index 5ace17902..f866b2185 100644 --- a/tests/test_software_center_launcher_icon.cpp +++ b/tests/test_software_center_launcher_icon.cpp @@ -24,13 +24,14 @@ #include #include -#include "ApplicationManager.h" +#include "mock-application.h" #include "SoftwareCenterLauncherIcon.h" #include "Launcher.h" #include "PanelStyle.h" #include "UnitySettings.h" #include "test_utils.h" +using namespace testmocks; using namespace unity; using namespace unity::launcher; @@ -40,6 +41,7 @@ namespace launcher { const std::string LOCAL_DATA_DIR = BUILDDIR"/tests/data"; const std::string USC_DESKTOP = LOCAL_DATA_DIR+"/applications/ubuntu-software-center.desktop"; +const std::string USC_APP_INSTALL_DESKTOP = "/usr/share/app-install/desktop/software-center:ubuntu-software-center.desktop"; class MockSoftwareCenterLauncherIcon : public SoftwareCenterLauncherIcon { @@ -54,14 +56,13 @@ class MockSoftwareCenterLauncherIcon : public SoftwareCenterLauncherIcon using SoftwareCenterLauncherIcon::_desktop_file; using SoftwareCenterLauncherIcon::GetRemoteUri; using SoftwareCenterLauncherIcon::OnFinished; - }; struct TestSoftwareCenterLauncherIcon : testing::Test { public: TestSoftwareCenterLauncherIcon() - : usc(ApplicationManager::Default().GetApplicationForDesktopFile(USC_DESKTOP)) + : usc(std::make_shared(USC_APP_INSTALL_DESKTOP, "softwarecenter")) , icon(usc, "/com/canonical/unity/test/object/path", "") {} @@ -79,7 +80,8 @@ TEST_F(TestSoftwareCenterLauncherIcon, Construction) TEST_F(TestSoftwareCenterLauncherIcon, DesktopFileTransformTrivial) { // no transformation needed - EXPECT_EQ(icon.GetActualDesktopFileAfterInstall(), USC_DESKTOP); + icon._desktop_file = USC_DESKTOP; + EXPECT_EQ(icon.GetActualDesktopFileAfterInstall(), USC_DESKTOP); } TEST_F(TestSoftwareCenterLauncherIcon, DesktopFileTransformAppInstall) @@ -101,19 +103,16 @@ TEST_F(TestSoftwareCenterLauncherIcon, DesktopFileTransformSCAgent) // and ensure that the remote uri is updated from temp location to // the real location TEST_F(TestSoftwareCenterLauncherIcon, OnFinished) -{ - - // simulate desktop file from app-install-data - icon._desktop_file = "/usr/share/app-install/desktop/software-center:ubuntu-software-center.desktop"; - +{ // now simulate that the install was successful GVariant *params = g_variant_new("(s)", "exit-success"); icon.OnFinished(params); // and verify that both the desktop file and the remote uri gets updated + EXPECT_EQ(icon._desktop_file, USC_DESKTOP); - EXPECT_EQ(icon.GetRemoteUri(), - "application://ubuntu-software-center.desktop"); + EXPECT_EQ(icon.GetRemoteUri(), "application://ubuntu-software-center.desktop"); + EXPECT_TRUE(usc->closed.empty()); g_variant_unref(params); } diff --git a/tests/test_texture_cache.cpp b/tests/test_texture_cache.cpp index 6910b94a6..c4a028fa3 100644 --- a/tests/test_texture_cache.cpp +++ b/tests/test_texture_cache.cpp @@ -50,7 +50,7 @@ struct TextureCallbackValues } }; -TEST(TestTextureCache, DISABLED_TestCallsCreateTextureCallback) +TEST(TestTextureCache, TestCallsCreateTextureCallback) { // Another lambda issue. If the lambda takes a reference to any other // variables, it seems incapable of assigning the function to the @@ -80,7 +80,7 @@ struct TextureCallbackCounter } }; -TEST(TestTextureCache, DISABLED_TestCallbackOnlyCalledOnce) +TEST(TestTextureCache, TestCallbackOnlyCalledOnce) { TextureCallbackCounter counter; TextureCache::CreateTextureCallback callback(sigc::mem_fun(counter, &TextureCallbackCounter::callback)); @@ -95,7 +95,7 @@ TEST(TestTextureCache, DISABLED_TestCallbackOnlyCalledOnce) EXPECT_TRUE(t1 == t2); } -TEST(TestTextureCache, DISABLED_TestCacheRemovesDeletedObject) +TEST(TestTextureCache, TestCacheRemovesDeletedObject) { // Note for others, if just using the lambda function, the return value is // lost in the type deduction that sigc uses. So we have the typedef diff --git a/unity-shared/AbstractIconRenderer.h b/unity-shared/AbstractIconRenderer.h index 784345385..abb9def0b 100644 --- a/unity-shared/AbstractIconRenderer.h +++ b/unity-shared/AbstractIconRenderer.h @@ -41,9 +41,6 @@ class RenderArg RenderArg() : icon(0) , colorify(nux::color::White) - , x_rotation(0) - , y_rotation(0) - , z_rotation(0) , alpha(1.0f) , saturation(1.0f) , backlight_intensity(0.0f) @@ -71,10 +68,8 @@ class RenderArg IconTextureSource* icon; nux::Point3 render_center; nux::Point3 logical_center; + nux::Vector3 rotation; nux::Color colorify; - float x_rotation; - float y_rotation; - float z_rotation; float alpha; float saturation; float backlight_intensity; diff --git a/unity-shared/BackgroundEffectHelper.cpp b/unity-shared/BackgroundEffectHelper.cpp index 6a1ea94d2..d48aad978 100644 --- a/unity-shared/BackgroundEffectHelper.cpp +++ b/unity-shared/BackgroundEffectHelper.cpp @@ -18,18 +18,8 @@ */ #include "BackgroundEffectHelper.h" -#include "TimeUtil.h" -#include -#ifdef TRUE -#undef TRUE -#endif - -#ifdef FALSE -#undef FALSE -#endif - -#include +#include "TextureCache.h" #include "UnitySettings.h" @@ -47,51 +37,68 @@ nux::Property BackgroundEffectHelper::updates_enabled (true); nux::Property BackgroundEffectHelper::detecting_occlusions (false); BackgroundEffectHelper::BackgroundEffectHelper() + : enabled(false) + , cache_dirty(true) { - enabled = false; - cache_dirty = true; - enabled.changed.connect (sigc::mem_fun(this, &BackgroundEffectHelper::OnEnabledChanged)); - noise_texture_ = nux::CreateTextureFromFile(PKGDATADIR"/dash_noise.png"); - + enabled.changed.connect(sigc::mem_fun(this, &BackgroundEffectHelper::OnEnabledChanged)); + noise_texture_ = TextureCache::GetDefault().FindTexture("dash_noise.png"); + if (Settings::Instance().GetLowGfxMode()) { blur_type(BLUR_NONE); } - - Register(this); } BackgroundEffectHelper::~BackgroundEffectHelper() { - noise_texture_->UnReference(); Unregister(this); } -void BackgroundEffectHelper::OnEnabledChanged(bool value) +void BackgroundEffectHelper::OnEnabledChanged(bool enabled) { - if (value) + if (enabled) + { + Register(this); DirtyCache(); + } + else + { + Unregister(this); + } } -void BackgroundEffectHelper::ProcessDamage(nux::Geometry geo) +void BackgroundEffectHelper::ProcessDamage(nux::Geometry const& geo) { for (BackgroundEffectHelper * bg_effect_helper : registered_list_) { if (bg_effect_helper->cache_dirty || !bg_effect_helper->owner || !bg_effect_helper->enabled) continue; - if (!geo.Intersect (bg_effect_helper->blur_geometry_).IsNull()) + if (!geo.Intersect(bg_effect_helper->blur_geometry_).IsNull()) { bg_effect_helper->DirtyCache(); } } } +bool BackgroundEffectHelper::HasDamageableHelpers() +{ + for (BackgroundEffectHelper * bg_effect_helper : registered_list_) + { + if (bg_effect_helper->owner && bg_effect_helper->enabled && !bg_effect_helper->cache_dirty) + { + return true; + } + } + + return false; +} + bool BackgroundEffectHelper::HasEnabledHelpers() { for (BackgroundEffectHelper * bg_effect_helper : registered_list_) { - if (bg_effect_helper->enabled) + if (bg_effect_helper->owner && bg_effect_helper->enabled) { return true; } @@ -205,7 +212,7 @@ nux::ObjectPtr BackgroundEffectHelper::GetBlurRegion(nu float gaussian_sigma = opengl_version >= 3 ? sigma_high : sigma_med; nux::ObjectPtr device_texture = gpu_device->backup_texture0_; - nux::ObjectPtr noise_device_texture = graphics_engine->CacheResource(noise_texture_); + nux::ObjectPtr noise_device_texture = graphics_engine->CacheResource(noise_texture_.GetPointer()); unsigned int buffer_width = larger_blur_geometry.width; unsigned int buffer_height = larger_blur_geometry.height; @@ -249,7 +256,7 @@ nux::ObjectPtr BackgroundEffectHelper::GetBlurRegion(nu int blur_passes = 1; nux::ObjectPtr device_texture = gpu_device->backup_texture0_; - nux::ObjectPtr noise_device_texture = graphics_engine->CacheResource(noise_texture_); + nux::ObjectPtr noise_device_texture = graphics_engine->CacheResource(noise_texture_.GetPointer()); unsigned int offset = 0; int quad_width = larger_blur_geometry.width; diff --git a/unity-shared/BackgroundEffectHelper.h b/unity-shared/BackgroundEffectHelper.h index 996928f26..ccabe40cd 100644 --- a/unity-shared/BackgroundEffectHelper.h +++ b/unity-shared/BackgroundEffectHelper.h @@ -54,9 +54,10 @@ class BackgroundEffectHelper void DirtyCache(); - static void ProcessDamage(nux::Geometry geo); + static void ProcessDamage(nux::Geometry const& geo); static bool HasDirtyHelpers(); static bool HasEnabledHelpers(); + static bool HasDamageableHelpers(); static nux::Property blur_type; static nux::Property sigma_high; @@ -77,7 +78,7 @@ class BackgroundEffectHelper private: void OnEnabledChanged (bool value); - nux::BaseTexture* noise_texture_; + nux::ObjectPtr noise_texture_; nux::ObjectPtr blur_texture_; nux::ObjectPtr resize_tmp_; nux::ObjectPtr noisy_tmp_; diff --git a/unity-shared/DashStyle.cpp b/unity-shared/DashStyle.cpp index 828a317b4..67b4a3a93 100755 --- a/unity-shared/DashStyle.cpp +++ b/unity-shared/DashStyle.cpp @@ -42,6 +42,7 @@ #include "CairoTexture.h" #include "JSONParser.h" +#include "TextureCache.h" #include "UnitySettings.h" #include "config.h" @@ -2547,19 +2548,8 @@ nux::BaseTexture* LazyLoadTexture::texture() void LazyLoadTexture::LoadTexture() { - std::string full_path = PKGDATADIR + filename_; - glib::Object pixbuf; - glib::Error error; - - pixbuf = ::gdk_pixbuf_new_from_file_at_size(full_path.c_str(), size_, size_, &error); - if (error) - { - LOG_WARN(logger) << "Unable to texture " << full_path << ": " << error; - } - else - { - texture_.Adopt(nux::CreateTexture2DFromPixbuf(pixbuf, true)); - } + TextureCache& cache = TextureCache::GetDefault(); + texture_ = cache.FindTexture(filename_, size_, size_); } } // anon namespace diff --git a/unity-shared/FileManager.h b/unity-shared/FileManager.h index 84b20dfc5..c98c2c9f9 100644 --- a/unity-shared/FileManager.h +++ b/unity-shared/FileManager.h @@ -22,6 +22,7 @@ #define UNITYSHELL_FILEMANAGER_H #include +#include #include #include #include diff --git a/unity-shared/GraphicsUtils.cpp b/unity-shared/GraphicsUtils.cpp index ab4c7823c..8a5cfdace 100644 --- a/unity-shared/GraphicsUtils.cpp +++ b/unity-shared/GraphicsUtils.cpp @@ -27,7 +27,7 @@ namespace graphics std::stack> rendering_stack; -void PushOffscreenRenderTarget_(nux::ObjectPtr texture) +void PushOffscreenRenderTarget_(nux::ObjectPtr const& texture) { int width = texture->GetWidth(); int height = texture->GetHeight(); @@ -45,7 +45,7 @@ void PushOffscreenRenderTarget_(nux::ObjectPtr texture) graphics_engine->EmptyClippingRegion(); } -void PushOffscreenRenderTarget(nux::ObjectPtr texture) +void PushOffscreenRenderTarget(nux::ObjectPtr const& texture) { PushOffscreenRenderTarget_(texture); rendering_stack.push(texture); diff --git a/unity-shared/GraphicsUtils.h b/unity-shared/GraphicsUtils.h index d4064b021..520828729 100644 --- a/unity-shared/GraphicsUtils.h +++ b/unity-shared/GraphicsUtils.h @@ -27,7 +27,7 @@ namespace unity namespace graphics { -void PushOffscreenRenderTarget(nux::ObjectPtr texture); +void PushOffscreenRenderTarget(nux::ObjectPtr const& texture); void PopOffscreenRenderTarget(); void ClearGeometry(nux::Geometry const& geo, nux::Color const& color = nux::Color(0.0f, 0.0f, 0.0f, 0.0f)); diff --git a/unity-shared/IconRenderer.cpp b/unity-shared/IconRenderer.cpp index acc6d3a8f..40345ef23 100644 --- a/unity-shared/IconRenderer.cpp +++ b/unity-shared/IconRenderer.cpp @@ -235,6 +235,13 @@ struct IconRenderer::TexturesPool nux::ObjectPtr asm_shader; #endif + int VertexLocation; + int VPMatrixLocation; + int TextureCoord0Location; + int FragmentColor; + int ColorifyColor; + int DesatFactor; + std::map labels; private: @@ -264,9 +271,6 @@ IconRenderer::IconRenderer() pip_style = OUTSIDE_TILE; } -IconRenderer::~IconRenderer() -{} - void IconRenderer::SetTargetSize(int tile_size, int image_size_, int spacing_) { icon_size = tile_size; @@ -291,9 +295,20 @@ void IconRenderer::PreprocessIcons(std::list& args, nux::Geometry con int i; for (it = args.begin(), i = 0; it != args.end(); ++it, ++i) { - IconTextureSource* launcher_icon = it->icon; + if (it->render_center == launcher_icon->LastRenderCenter(monitor) && + it->logical_center == launcher_icon->LastLogicalCenter(monitor) && + it->rotation == launcher_icon->LastRotation(monitor) && + it->skip == launcher_icon->WasSkipping(monitor)) + { + continue; + } + + launcher_icon->RememberCenters(monitor, it->render_center, it->logical_center); + launcher_icon->RememberRotation(monitor, it->rotation); + launcher_icon->RememberSkip(monitor, it->skip); + float w = icon_size; float h = icon_size; float x = it->render_center.x - w / 2.0f; // x: top left corner @@ -309,9 +324,9 @@ void IconRenderer::PreprocessIcons(std::list& args, nux::Geometry con } ObjectMatrix = nux::Matrix4::TRANSLATE(geo.width / 2.0f, geo.height / 2.0f, z) * // Translate the icon to the center of the viewport - nux::Matrix4::ROTATEX(it->x_rotation) * // rotate the icon - nux::Matrix4::ROTATEY(it->y_rotation) * - nux::Matrix4::ROTATEZ(it->z_rotation) * + nux::Matrix4::ROTATEX(it->rotation.x) * // rotate the icon + nux::Matrix4::ROTATEY(it->rotation.y) * + nux::Matrix4::ROTATEZ(it->rotation.z) * nux::Matrix4::TRANSLATE(-x - w / 2.0f, -y - h / 2.0f, -z); // Put the center the icon to (0, 0) ViewProjectionMatrix = PremultMatrix * ObjectMatrix; @@ -369,9 +384,9 @@ void IconRenderer::PreprocessIcons(std::list& args, nux::Geometry con z = it->render_center.z; ObjectMatrix = nux::Matrix4::TRANSLATE(geo.width / 2.0f, geo.height / 2.0f, z) * // Translate the icon to the center of the viewport - nux::Matrix4::ROTATEX(it->x_rotation) * // rotate the icon - nux::Matrix4::ROTATEY(it->y_rotation) * - nux::Matrix4::ROTATEZ(it->z_rotation) * + nux::Matrix4::ROTATEX(it->rotation.x) * // rotate the icon + nux::Matrix4::ROTATEY(it->rotation.y) * + nux::Matrix4::ROTATEZ(it->rotation.z) * nux::Matrix4::TRANSLATE(-(it->render_center.x - w / 2.0f) - w / 2.0f, -(it->render_center.y - h / 2.0f) - h / 2.0f, -z); // Put the center the icon to (0, 0) ViewProjectionMatrix = PremultMatrix * ObjectMatrix; @@ -485,7 +500,7 @@ void IconRenderer::RenderIcon(nux::GraphicsEngine& GfxContext, RenderArg const& colorify = nux::color::White; background_tile_colorify = nux::color::White; backlight_intensity = 0.95f; - glow_intensity = 1.3f; + glow_intensity = 1.0f; shadow_intensity = 0.0f; background = textures_->icon_selected_background[size]; @@ -754,9 +769,9 @@ void IconRenderer::RenderElement(nux::GraphicsEngine& GfxContext, if (icon.IsNull()) return; - if (std::abs(arg.x_rotation) < 0.01f && - std::abs(arg.y_rotation) < 0.01f && - std::abs(arg.z_rotation) < 0.01f && + if (std::abs(arg.rotation.x) < 0.01f && + std::abs(arg.rotation.y) < 0.01f && + std::abs(arg.rotation.z) < 0.01f && !force_filter) { icon->SetFiltering(GL_NEAREST, GL_NEAREST); @@ -823,20 +838,15 @@ void IconRenderer::RenderElement(nux::GraphicsEngine& GfxContext, { textures_->shader_program_uv_persp_correction->Begin(); - int TextureObjectLocation = textures_->shader_program_uv_persp_correction->GetUniformLocationARB("TextureObject0"); - VertexLocation = textures_->shader_program_uv_persp_correction->GetAttributeLocation("iVertex"); - TextureCoord0Location = textures_->shader_program_uv_persp_correction->GetAttributeLocation("iTexCoord0"); - FragmentColor = textures_->shader_program_uv_persp_correction->GetUniformLocationARB("color0"); - ColorifyColor = textures_->shader_program_uv_persp_correction->GetUniformLocationARB("colorify_color"); - DesatFactor = textures_->shader_program_uv_persp_correction->GetUniformLocationARB("desat_factor"); + VertexLocation = textures_->VertexLocation; + TextureCoord0Location = textures_->TextureCoord0Location; + FragmentColor = textures_->FragmentColor; + ColorifyColor = textures_->ColorifyColor; + DesatFactor = textures_->DesatFactor; - if (TextureObjectLocation != -1) - CHECKGL(glUniform1iARB(TextureObjectLocation, 0)); - - int VPMatrixLocation = textures_->shader_program_uv_persp_correction->GetUniformLocationARB("ViewProjectionMatrix"); - if (VPMatrixLocation != -1) + if (textures_->VPMatrixLocation != -1) { - textures_->shader_program_uv_persp_correction->SetUniformLocMatrix4fv((GLint)VPMatrixLocation, 1, false, (GLfloat*) & (stored_projection_matrix_.m)); + textures_->shader_program_uv_persp_correction->SetUniformLocMatrix4fv((GLint)textures_->VPMatrixLocation, 1, false, (GLfloat*) & (stored_projection_matrix_.m)); } } #ifndef USE_GLES @@ -922,7 +932,7 @@ void IconRenderer::RenderIndicators(nux::GraphicsEngine& GfxContext, nux::Geometry const& geo) { int markerCenter = (int) arg.render_center.y; - markerCenter -= (int)(arg.x_rotation / (2 * M_PI) * icon_size); + markerCenter -= (int)(arg.rotation.x / (2 * M_PI) * icon_size); if (running > 0) @@ -1194,6 +1204,12 @@ void IconRenderer::GetInverseScreenPerspectiveMatrix(nux::Matrix4& ViewMatrix, n IconRenderer::TexturesPool::TexturesPool() : offscreen_progress_texture(nux::GetGraphicsDisplay()->GetGpuDevice()->CreateSystemCapableDeviceTexture(2, 2, 1, nux::BITFMT_R8G8B8A8)) + , VertexLocation(-1) + , VPMatrixLocation(0) + , TextureCoord0Location(-1) + , FragmentColor(0) + , ColorifyColor(0) + , DesatFactor(0) { LoadTexture(progress_bar_trough, PKGDATADIR"/progress_bar_trough.png"); LoadTexture(progress_bar_fill, PKGDATADIR"/progress_bar_fill.png"); @@ -1249,6 +1265,22 @@ void IconRenderer::TexturesPool::SetupShaders() shader_program_uv_persp_correction = nux::GetGraphicsDisplay()->GetGpuDevice()->CreateShaderProgram(); shader_program_uv_persp_correction->LoadIShader(gPerspectiveCorrectShader.c_str()); shader_program_uv_persp_correction->Link(); + + shader_program_uv_persp_correction->Begin(); + + int TextureObjectLocation = shader_program_uv_persp_correction->GetUniformLocationARB("TextureObject0"); + VertexLocation = shader_program_uv_persp_correction->GetAttributeLocation("iVertex"); + TextureCoord0Location = shader_program_uv_persp_correction->GetAttributeLocation("iTexCoord0"); + FragmentColor = shader_program_uv_persp_correction->GetUniformLocationARB("color0"); + ColorifyColor = shader_program_uv_persp_correction->GetUniformLocationARB("colorify_color"); + DesatFactor = shader_program_uv_persp_correction->GetUniformLocationARB("desat_factor"); + + if (TextureObjectLocation != -1) + CHECKGL(glUniform1iARB(TextureObjectLocation, 0)); + + VPMatrixLocation = shader_program_uv_persp_correction->GetUniformLocationARB("ViewProjectionMatrix"); + + shader_program_uv_persp_correction->End(); } else { diff --git a/unity-shared/IconRenderer.h b/unity-shared/IconRenderer.h index 00b5985d8..dce7886d5 100644 --- a/unity-shared/IconRenderer.h +++ b/unity-shared/IconRenderer.h @@ -37,7 +37,6 @@ class IconRenderer : public AbstractIconRenderer { public: IconRenderer(); - virtual ~IconRenderer(); void PreprocessIcons(std::list& args, nux::Geometry const& target_window); diff --git a/unity-shared/IconTextureSource.cpp b/unity-shared/IconTextureSource.cpp index 8ee725287..6feb9d618 100644 --- a/unity-shared/IconTextureSource.cpp +++ b/unity-shared/IconTextureSource.cpp @@ -26,21 +26,58 @@ namespace ui { NUX_IMPLEMENT_OBJECT_TYPE(IconTextureSource); -IconTextureSource::IconTextureSource() +namespace { - transform_map.resize(max_num_monitors); + const unsigned RENDERERS_SIZE = max_num_monitors + 1; // +1 for the switcher } +IconTextureSource::IconTextureSource() + : skip_(RENDERERS_SIZE, false) + , last_render_center_(RENDERERS_SIZE) + , last_logical_center_(RENDERERS_SIZE) + , last_rotation_(RENDERERS_SIZE) + , transformations_(RENDERERS_SIZE, decltype(transformations_)::value_type(TRANSFORM_SIZE, std::vector(4))) +{} + std::vector & IconTextureSource::GetTransform(TransformIndex index, int monitor) { - auto iter = transform_map[monitor].find(index); - if (iter == transform_map[monitor].end()) - { - auto iter2 = transform_map[monitor].insert(std::map >::value_type(index, std::vector(4))); - return iter2.first->second; - } + return transformations_[monitor][index]; +} + +void IconTextureSource::RememberCenters(int monitor, nux::Point3 const& render, nux::Point3 const& logical) +{ + last_render_center_[monitor] = render; + last_logical_center_[monitor] = logical; +} + +void IconTextureSource::RememberRotation(int monitor, nux::Vector3 const& rotation) +{ + last_rotation_[monitor] = rotation; +} - return iter->second; +nux::Point3 const& IconTextureSource::LastRenderCenter(int monitor) const +{ + return last_render_center_[monitor]; +} + +nux::Point3 const& IconTextureSource::LastLogicalCenter(int monitor) const +{ + return last_logical_center_[monitor]; +} + +nux::Vector3 const& IconTextureSource::LastRotation(int monitor) const +{ + return last_rotation_[monitor]; +} + +void IconTextureSource::RememberSkip(int monitor, bool skip) +{ + skip_[monitor] = skip; +} + +bool IconTextureSource::WasSkipping(int monitor) const +{ + return skip_[monitor]; } } diff --git a/unity-shared/IconTextureSource.h b/unity-shared/IconTextureSource.h index bae754658..8dd36b199 100644 --- a/unity-shared/IconTextureSource.h +++ b/unity-shared/IconTextureSource.h @@ -22,7 +22,6 @@ #define ICONTEXTURESOURCE_H #include -#include #include namespace unity @@ -38,17 +37,27 @@ class IconTextureSource : public nux::InitiallyUnownedObject enum TransformIndex { - TRANSFORM_TILE, + TRANSFORM_TILE = 0, TRANSFORM_IMAGE, TRANSFORM_HIT_AREA, TRANSFORM_GLOW, TRANSFORM_EMBLEM, + TRANSFORM_SIZE }; IconTextureSource(); std::vector & GetTransform(TransformIndex index, int monitor); + nux::Point3 const& LastRenderCenter(int monitor) const; + nux::Point3 const& LastLogicalCenter(int monitor) const; + nux::Vector3 const& LastRotation(int monitor) const; + void RememberCenters(int monitor, nux::Point3 const& render, nux::Point3 const& logical); + void RememberRotation(int monitor, nux::Vector3 const& rotation); + + void RememberSkip(int monitor, bool skip); + bool WasSkipping(int monitor) const; + virtual nux::Color BackgroundColor() const = 0; virtual nux::Color GlowColor() = 0; @@ -58,7 +67,11 @@ class IconTextureSource : public nux::InitiallyUnownedObject virtual nux::BaseTexture* Emblem() = 0; private: - std::vector > > transform_map; + std::vector skip_; + std::vector last_render_center_; + std::vector last_logical_center_; + std::vector last_rotation_; + std::vector>> transformations_; }; } diff --git a/unity-shared/OverlayRenderer.cpp b/unity-shared/OverlayRenderer.cpp index ef8120c68..114fe97aa 100644 --- a/unity-shared/OverlayRenderer.cpp +++ b/unity-shared/OverlayRenderer.cpp @@ -800,18 +800,19 @@ void OverlayRendererImpl::Draw(nux::GraphicsEngine& gfx_context, nux::Geometry c texxform, nux::color::White); } - - gfx_context.GetRenderStates().SetBlend(false); } gfx_context.PopClippingRectangle(); } + gfx_context.GetRenderStates().SetPremultipliedBlend(nux::SRC_OVER); + gfx_context.GetRenderStates().SetColorMask(true, true, true, true); + gfx_context.GetRenderStates().SetBlend(false); + } void OverlayRendererImpl::DrawContent(nux::GraphicsEngine& gfx_context, nux::Geometry const& content_geo, nux::Geometry const& absolute_geo, nux::Geometry const& geometry) { - nux::Geometry geo = geometry; bgs = 0; int excess_border = (Settings::Instance().form_factor() != FormFactor::NETBOOK) ? EXCESS_BORDER : 0; diff --git a/unity-shared/PanelStyle.cpp b/unity-shared/PanelStyle.cpp index 95c53d17f..ba0768224 100644 --- a/unity-shared/PanelStyle.cpp +++ b/unity-shared/PanelStyle.cpp @@ -34,6 +34,7 @@ #include "PanelStyle.h" #include +#include "unity-shared/TextureCache.h" #include "unity-shared/UnitySettings.h" namespace unity @@ -138,7 +139,7 @@ void Style::Refresh() GdkRGBA rgba_text_color; glib::String theme_name; bool updated = false; - + GtkSettings* settings = gtk_settings_get_default(); g_object_get(settings, "gtk-theme-name", &theme_name, nullptr); @@ -159,7 +160,10 @@ void Style::Refresh() } if (updated) + { + _bg_texture.Release(); changed.emit(); + } } GtkStyleContext* Style::GetStyleContext() @@ -167,8 +171,14 @@ GtkStyleContext* Style::GetStyleContext() return _style_context; } -BaseTexturePtr Style::GetBackground(int width, int height, float opacity) +BaseTexturePtr Style::GetBackground() { + if (_bg_texture) + return _bg_texture; + + int width = 1; + int height = panel_height(); + nux::CairoGraphics context(CAIRO_FORMAT_ARGB32, width, height); // Use the internal context as we know it is good and shiny new. @@ -177,9 +187,11 @@ BaseTexturePtr Style::GetBackground(int width, int height, float opacity) gtk_render_background(_style_context, cr, 0, 0, width, height); gtk_render_frame(_style_context, cr, 0, 0, width, height); cairo_pop_group_to_source(cr); - cairo_paint_with_alpha(cr, opacity); + cairo_paint(cr); + + _bg_texture = texture_ptr_from_cairo_graphics(context); - return texture_ptr_from_cairo_graphics(context); + return _bg_texture; } /*! @@ -222,20 +234,30 @@ std::vector Style::GetWindowButtonFileNames(WindowButtonType type, BaseTexturePtr Style::GetWindowButton(WindowButtonType type, WindowState state) { - BaseTexturePtr texture; + auto texture_factory = [this, type, state] (std::string const&, int, int) { + nux::BaseTexture* texture = nullptr; - for (auto const& file : GetWindowButtonFileNames(type, state)) - { - texture.Adopt(nux::CreateTexture2DFromFile(file.c_str(), -1, true)); + for (auto const& file : GetWindowButtonFileNames(type, state)) + { + texture = nux::CreateTexture2DFromFile(file.c_str(), -1, true); - if (texture) - break; - } + if (texture) + return texture; + } + + auto const& fallback = GetFallbackWindowButton(type, state); + texture = fallback.GetPointer(); + texture->Reference(); + + return texture; + }; - if (!texture) - texture = GetFallbackWindowButton(type, state); + auto& cache = TextureCache::GetDefault(); + std::string texture_id = "window-button-"; + texture_id += std::to_string(static_cast(type)); + texture_id += std::to_string(static_cast(state)); - return texture; + return cache.FindTexture(texture_id, 0, 0, texture_factory); } BaseTexturePtr Style::GetFallbackWindowButton(WindowButtonType type, diff --git a/unity-shared/PanelStyle.h b/unity-shared/PanelStyle.h index 681c54b2b..9118aaf86 100644 --- a/unity-shared/PanelStyle.h +++ b/unity-shared/PanelStyle.h @@ -71,7 +71,7 @@ class Style typedef nux::ObjectPtr BaseTexturePtr; GtkStyleContext* GetStyleContext(); - BaseTexturePtr GetBackground(int width, int height, float opacity); + BaseTexturePtr GetBackground(); BaseTexturePtr GetWindowButton(WindowButtonType type, WindowState state); BaseTexturePtr GetFallbackWindowButton(WindowButtonType type, WindowState state); std::vector GetWindowButtonFileNames(WindowButtonType type, WindowState state); @@ -88,6 +88,7 @@ class Style glib::Object _style_context; glib::Object _gsettings; + BaseTexturePtr _bg_texture; std::string _theme_name; nux::Color _text_color; diff --git a/unity-shared/TextureCache.cpp b/unity-shared/TextureCache.cpp index e5e9ebc28..83a945b5e 100644 --- a/unity-shared/TextureCache.cpp +++ b/unity-shared/TextureCache.cpp @@ -22,25 +22,23 @@ #include #include +#include "config.h" namespace unity { DECLARE_LOGGER(logger, "unity.internal.texturecache"); -TextureCache::TextureCache() -{ -} - -TextureCache::~TextureCache() -{ -} - TextureCache& TextureCache::GetDefault() { static TextureCache instance; return instance; } +nux::BaseTexture* TextureCache::DefaultTexturesLoader(std::string const& name, int w, int h) +{ + return nux::CreateTexture2DFromFile((PKGDATADIR"/" + name).c_str(), -1, true); +} + std::string TextureCache::Hash(std::string const& id, int width, int height) { std::ostringstream sout; @@ -50,17 +48,22 @@ std::string TextureCache::Hash(std::string const& id, int width, int height) TextureCache::BaseTexturePtr TextureCache::FindTexture(std::string const& texture_id, int width, int height, - CreateTextureCallback slot) + CreateTextureCallback factory) { - if (!slot) + if (!factory) return BaseTexturePtr(); - std::string key = Hash(texture_id, width, height); - BaseTexturePtr texture(cache_[key]); + std::string const& key = Hash(texture_id, width, height); + auto texture_it = cache_.find(key); + + BaseTexturePtr texture(texture_it != cache_.end() ? texture_it->second : nullptr); if (!texture) { - texture = slot(texture_id, width, height); + texture.Adopt(factory(texture_id, width, height)); + + if (!texture) + return texture; // Now here is the magic. // @@ -79,10 +82,6 @@ TextureCache::BaseTexturePtr TextureCache::FindTexture(std::string const& textur // are destroyed first, then the sigc::trackable disconnects all methods // created using mem_fun. - // Reduce the internal reference count of the texture, so the smart - // pointer is the sole owner of the object. - texture->UnReference(); - cache_[key] = texture.GetPointer(); auto on_destroy = sigc::mem_fun(this, &TextureCache::OnDestroyNotify); @@ -92,7 +91,7 @@ TextureCache::BaseTexturePtr TextureCache::FindTexture(std::string const& textur return texture; } -void TextureCache::OnDestroyNotify(nux::Trackable* Object, std::string key) +void TextureCache::OnDestroyNotify(nux::Trackable* Object, std::string const& key) { cache_.erase(key); } diff --git a/unity-shared/TextureCache.h b/unity-shared/TextureCache.h index 5cc569abb..e3d05b058 100644 --- a/unity-shared/TextureCache.h +++ b/unity-shared/TextureCache.h @@ -40,24 +40,26 @@ class TextureCache : public sigc::trackable public: typedef nux::ObjectPtr BaseTexturePtr; + ~TextureCache() = default; + // id, width, height -> texture typedef std::function CreateTextureCallback; static TextureCache& GetDefault(); + static nux::BaseTexture* DefaultTexturesLoader(std::string const&, int, int); - BaseTexturePtr FindTexture(std::string const& texture_id, int width, int height, CreateTextureCallback callback); + BaseTexturePtr FindTexture(std::string const& texture_id, int width = 0, int height = 0, CreateTextureCallback callback = DefaultTexturesLoader); // Return the current size of the cache. std::size_t Size() const; private: - TextureCache(); - ~TextureCache(); + TextureCache() = default; std::string Hash(std::string const& , int width, int height); // Have the key passed by value not referece, as the key will be a bound // parameter in the slot passed to the texture on_destroy signal. - void OnDestroyNotify(nux::Trackable* Object, std::string key); + void OnDestroyNotify(nux::Trackable* Object, std::string const& key); std::map cache_; }; diff --git a/unity-shared/WindowButtons.cpp b/unity-shared/WindowButtons.cpp index f01450d17..d771b4e20 100644 --- a/unity-shared/WindowButtons.cpp +++ b/unity-shared/WindowButtons.cpp @@ -29,6 +29,7 @@ #include "WindowButtons.h" #include "WindowButtonPriv.h" +#include "unity-shared/TextureCache.h" #include "unity-shared/UBusMessages.h" #include "unity-shared/WindowManager.h" @@ -176,8 +177,8 @@ nux::ObjectPtr WindowButton::GetDashWindowButton(panel::Window std::string subpath = names[static_cast(type)] + states[static_cast(state)] + ".png"; - glib::String filename(g_build_filename(PKGDATADIR, subpath.c_str(), NULL)); - texture.Adopt(nux::CreateTexture2DFromFile(filename, -1, true)); + auto& cache = TextureCache::GetDefault(); + texture = cache.FindTexture(subpath); if (!texture) texture = panel::Style::Instance().GetFallbackWindowButton(type, state);