diff -Nru unity-2d-5.12.0/debian/changelog unity-2d-5.14.0/debian/changelog --- unity-2d-5.12.0/debian/changelog 2012-10-30 13:14:03.000000000 +0000 +++ unity-2d-5.14.0/debian/changelog 2012-10-30 13:14:03.000000000 +0000 @@ -1,4 +1,28 @@ -unity-2d (5.12.0-0ubuntu1.2) precise-proposed; urgency=low +unity-2d (5.14.0-0ubuntu1) precise-proposed; urgency=low + + * New upstream release: + - Unity 2D doesn't load 24 bit icons (LP: #977262) + - [Launcher] [Multi-monitor] Removing a non running app tile from a + launcher should remove it from all (LP: #988739) + - Panel Titlebar double click is emitted for any mouse button (LP: #736491) + - Launcher does not hide if shown while dragging a file (LP: #1002308) + - icon isn't reset when clearing the search query (LP: #973225) + - Issue when ejecting busy device from the Unity 2D Shell (LP: #997786) + - Sticky edges don't work in RTL (LP: #984092) + - pips are not correctly updated when plugin in a second monitor + (LP: #1003943) + - [dash] Unable to maximize (LP: #918648) + - all panels have same window focus on multiple monitors unity2d + (LP: #930147) + - Dash will not open files under Greek folders (LP: #1002710) + - Launcher does not respond to changes in icon theme (LP: #605475) + - [panel] Invisible items in systray (LP: #703389) + - [panel] Ignores "enabled" property on top-level menus (LP: #850017) + * Reverted some quantal-specific commits which are no longer relevant + + -- Łukasz 'sil2100' Zemczak Tue, 30 Oct 2012 09:59:49 +0100 + +unity-2d (5.12.0-0ubuntu1.2) precise-updates; urgency=low [ Łukasz 'sil2100' Zemczak ] * Cherry-picked from upstream: diff -Nru unity-2d-5.12.0/debian/control unity-2d-5.14.0/debian/control --- unity-2d-5.12.0/debian/control 2012-10-30 13:14:03.000000000 +0000 +++ unity-2d-5.14.0/debian/control 2012-10-30 13:14:03.000000000 +0000 @@ -22,8 +22,8 @@ libgtk-3-dev, libgeis-dev, libstartup-notification0-dev, - libunity-core-5.0-dev (>= 5.16.0), - libnux-2.0-dev (>= 2.14.1), + libunity-core-5.0-dev (>= 5.8.0), + libnux-2.0-dev (>= 2.10), libxi-dev, libxtst-dev, libxfixes-dev (>= 1:5.0-4ubuntu4~), diff -Nru unity-2d-5.12.0/libunity-2d-private/src/applicationslist.cpp unity-2d-5.14.0/libunity-2d-private/src/applicationslist.cpp --- unity-2d-5.12.0/libunity-2d-private/src/applicationslist.cpp 2012-03-15 10:39:14.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/applicationslist.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -201,6 +201,17 @@ } void +ApplicationsList::removeApplication(const QString& desktop_file) +{ + Q_FOREACH(Application *app, m_applications) { + if (app->desktop_file() == desktop_file) { + removeApplication(app); + break; + } + } +} + +void ApplicationsList::onApplicationUserVisibleChanged(bool user_visible) { BamfApplication* bamf_application = qobject_cast(sender()); @@ -225,6 +236,9 @@ if (!bamf_application->user_visible()) { return; } + if (bamf_application->desktop_file().endsWith("/unity-2d-shell.desktop")) { + return; + } Application* matchingApplication = NULL; Application* newApplication = new Application; @@ -399,6 +413,11 @@ if (!sticky && !application->running()) { removeApplication(application); + Q_FOREACH(ApplicationsList *other, ApplicationsListManager::instance()->m_lists) { + if (other != this) { + other->removeApplication(application->desktop_file()); + } + } } } diff -Nru unity-2d-5.12.0/libunity-2d-private/src/applicationslist.h unity-2d-5.14.0/libunity-2d-private/src/applicationslist.h --- unity-2d-5.12.0/libunity-2d-private/src/applicationslist.h 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/applicationslist.h 2012-05-30 09:13:41.000000000 +0000 @@ -70,6 +70,7 @@ void insertApplication(Application* application); void removeApplication(Application* application); + void removeApplication(const QString& desktop_file); QString favoriteFromDesktopFilePath(const QString& desktop_file) const; diff -Nru unity-2d-5.12.0/libunity-2d-private/src/gimageutils.cpp unity-2d-5.14.0/libunity-2d-private/src/gimageutils.cpp --- unity-2d-5.12.0/libunity-2d-private/src/gimageutils.cpp 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/gimageutils.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -71,45 +71,45 @@ QImage imageForPixbuf(const GdkPixbuf* pixbuf, const QString &name) { - QImage image; + QImage result; if (gdk_pixbuf_get_n_channels(pixbuf) == 3 && gdk_pixbuf_get_bits_per_sample(pixbuf) == 8 && !gdk_pixbuf_get_has_alpha(pixbuf)) { - image = QImage(gdk_pixbuf_get_pixels(pixbuf), - gdk_pixbuf_get_width(pixbuf), - gdk_pixbuf_get_height(pixbuf), - gdk_pixbuf_get_rowstride(pixbuf), - QImage::QImage::Format_RGB888); - image = image.convertToFormat(QImage::Format_ARGB32); + const QImage image = QImage(gdk_pixbuf_get_pixels(pixbuf), + gdk_pixbuf_get_width(pixbuf), + gdk_pixbuf_get_height(pixbuf), + gdk_pixbuf_get_rowstride(pixbuf), + QImage::QImage::Format_RGB888); + result = image.convertToFormat(QImage::Format_ARGB32); } else { if (gdk_pixbuf_get_n_channels(pixbuf) != 4 || gdk_pixbuf_get_bits_per_sample(pixbuf) != 8 || !gdk_pixbuf_get_has_alpha(pixbuf)) { UQ_WARNING << "Pixbuf is not in the expected format. Trying to load it anyway, will most likely fail" << name; } - image = QImage(gdk_pixbuf_get_pixels(pixbuf), - gdk_pixbuf_get_width(pixbuf), - gdk_pixbuf_get_height(pixbuf), - gdk_pixbuf_get_rowstride(pixbuf), - QImage::Format_ARGB32); - } + const QImage image = QImage(gdk_pixbuf_get_pixels(pixbuf), + gdk_pixbuf_get_width(pixbuf), + gdk_pixbuf_get_height(pixbuf), + gdk_pixbuf_get_rowstride(pixbuf), + QImage::Format_ARGB32); #if Q_BYTE_ORDER == Q_LITTLE_ENDIAN - /* ABGR → ARGB */ - QImage swappedImage = image.rgbSwapped(); + /* ABGR → ARGB */ + result = image.rgbSwapped(); #else - /* ABGR → BGRA */ - /* Reference: https://bugs.launchpad.net/unity-2d/+bug/758782 */ - QImage swappedImage(image.size(), image.format()); - for (int i = 0; i < swappedImage.height(); ++i) { - QRgb* p = (QRgb*) image.constScanLine(i); - QRgb* q = (QRgb*) swappedImage.scanLine(i); - QRgb* end = p + image.width(); - while (p < end) { - *q = qRgba(qAlpha(*p), qRed(*p), qGreen(*p), qBlue(*p)); - p++; - q++; + /* ABGR → BGRA */ + /* Reference: https://bugs.launchpad.net/unity-2d/+bug/758782 */ + result = QImage(image.size(), image.format()); + for (int i = 0; i < swappedImage.height(); ++i) { + QRgb* p = (QRgb*) image.constScanLine(i); + QRgb* q = (QRgb*) swappedImage.scanLine(i); + QRgb* end = p + image.width(); + while (p < end) { + *q = qRgba(qAlpha(*p), qRed(*p), qGreen(*p), qBlue(*p)); + p++; + q++; + } } - } #endif + } - return swappedImage; + return result; } } // namespace diff -Nru unity-2d-5.12.0/libunity-2d-private/src/indicatorentrywidget.cpp unity-2d-5.14.0/libunity-2d-private/src/indicatorentrywidget.cpp --- unity-2d-5.12.0/libunity-2d-private/src/indicatorentrywidget.cpp 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/indicatorentrywidget.cpp 2012-10-30 12:59:17.000000000 +0000 @@ -321,7 +321,7 @@ void IndicatorEntryWidget::mousePressEvent(QMouseEvent* event) { UQ_RETURN_IF_FAIL(m_hasIcon || m_hasLabel); - if (event->button() != Qt::MiddleButton) + if (event->button() != Qt::MiddleButton && isSensitive()) showMenu(Qt::LeftButton); } @@ -358,6 +358,11 @@ return m_activatedByThisEntry; } +bool IndicatorEntryWidget::isSensitive() const +{ + return m_entry->image_sensitive() || m_entry->label_sensitive(); +} + void IndicatorEntryWidget::setPadding(int padding) { if (m_padding != padding) { diff -Nru unity-2d-5.12.0/libunity-2d-private/src/indicatorentrywidget.h unity-2d-5.14.0/libunity-2d-private/src/indicatorentrywidget.h --- unity-2d-5.12.0/libunity-2d-private/src/indicatorentrywidget.h 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/indicatorentrywidget.h 2012-10-30 12:59:17.000000000 +0000 @@ -63,6 +63,8 @@ bool activatedByThisEntry() const; + bool isSensitive() const; + Q_SIGNALS: void isEmptyChanged(); diff -Nru unity-2d-5.12.0/libunity-2d-private/src/indicatorsmanager.cpp unity-2d-5.14.0/libunity-2d-private/src/indicatorsmanager.cpp --- unity-2d-5.12.0/libunity-2d-private/src/indicatorsmanager.cpp 2012-03-23 14:31:29.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/indicatorsmanager.cpp 2012-10-30 12:59:17.000000000 +0000 @@ -164,7 +164,7 @@ qApp->x11ProcessEvent(reinterpret_cast(&event)); IndicatorEntryWidget* entryWidget = qobject_cast(widget); - if (!entryWidget) { + if (!entryWidget || !entryWidget->isSensitive()) { return; } entryWidget->showMenu(Qt::NoButton); @@ -185,6 +185,9 @@ UQ_WARNING << "Could not find a widget for IndicatorEntry with id" << QString::fromStdString(entryId); return; } + if (!widget->isSensitive()) { + return; + } widget->showMenu(Qt::NoButton); } diff -Nru unity-2d-5.12.0/libunity-2d-private/src/lens.cpp unity-2d-5.14.0/libunity-2d-private/src/lens.cpp --- unity-2d-5.12.0/libunity-2d-private/src/lens.cpp 2012-04-03 09:12:30.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/lens.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -175,7 +175,7 @@ void Lens::activate(const QString& uri) { - m_unityLens->Activate(uri.toStdString()); + m_unityLens->Activate(QByteArray::fromPercentEncoding(uri.toUtf8()).constData()); } void Lens::onActivated(std::string const& uri, unity::dash::HandledType type, unity::dash::Lens::Hints const&) diff -Nru unity-2d-5.12.0/libunity-2d-private/src/unity2ddebug.cpp unity-2d-5.14.0/libunity-2d-private/src/unity2ddebug.cpp --- unity-2d-5.12.0/libunity-2d-private/src/unity2ddebug.cpp 2012-03-12 12:38:26.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/src/unity2ddebug.cpp 2012-10-30 12:59:17.000000000 +0000 @@ -33,6 +33,7 @@ // libc #include #include +#include namespace Unity2dDebug { diff -Nru unity-2d-5.12.0/libunity-2d-private/tests/CMakeLists.txt unity-2d-5.14.0/libunity-2d-private/tests/CMakeLists.txt --- unity-2d-5.12.0/libunity-2d-private/tests/CMakeLists.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/tests/CMakeLists.txt 2012-05-30 09:13:41.000000000 +0000 @@ -9,6 +9,7 @@ ${GLIB_INCLUDE_DIRS} ${QT_QTTEST_INCLUDE_DIR} ${X11_XTest_INCLUDE_PATH} + ${GDK_INCLUDE_DIRS} ) set(LIBUNITY_2D_TEST_DIR ${libunity-2d-private_BINARY_DIR}/tests) @@ -42,6 +43,7 @@ pointerbarriertest hotkeytest gkeysequenceparser + gimageutilstest ) target_link_libraries(pointerbarriertest ${X11_XTest_LIB}) diff -Nru unity-2d-5.12.0/libunity-2d-private/tests/gimageutilstest.cpp unity-2d-5.14.0/libunity-2d-private/tests/gimageutilstest.cpp --- unity-2d-5.12.0/libunity-2d-private/tests/gimageutilstest.cpp 1970-01-01 00:00:00.000000000 +0000 +++ unity-2d-5.14.0/libunity-2d-private/tests/gimageutilstest.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -0,0 +1,68 @@ + /* + * This file is part of unity-2d + * + * Copyright 2012 Canonical Ltd. + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; version 3. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include +#include + +#include + +#include "gimageutils.h" +#include + +class GImageUtilsTest : public QObject +{ + Q_OBJECT +private Q_SLOTS: + void init() + { + //before using any GObject functions, need to initialize the type system + g_type_init(); + } + + void test24bit() + { + GError *err = NULL; + const QString path = unity2dDirectory() + "/libunity-2d-private/tests/verification/24bit.png"; + const GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path.toLocal8Bit().constData(), &err); + QVERIFY(!err); + const QImage image = GImageUtils::imageForPixbuf(pixbuf, path); + QCOMPARE(image.width(), 32); + QCOMPARE(image.height(), 32); + QVERIFY(!image.isNull()); + QCOMPARE(image.pixel(0, 0), qRgb(255, 0, 0)); + QCOMPARE(image.pixel(1, 0), qRgb(0, 255, 0)); + QCOMPARE(image.pixel(2, 0), qRgb(0, 0, 255)); + } + + void test24bit_2() + { + GError *err = NULL; + const QString path = unity2dDirectory() + "/libunity-2d-private/tests/verification/24bit_2.png"; + const GdkPixbuf *pixbuf = gdk_pixbuf_new_from_file(path.toLocal8Bit().constData(), &err); + QVERIFY(!err); + const QImage image = GImageUtils::imageForPixbuf(pixbuf, path); + QCOMPARE(image.width(), 100); + QCOMPARE(image.height(), 100); + QVERIFY(!image.isNull()); + QCOMPARE(image.pixel(3, 3), qRgb(250, 244, 216)); + } +}; + +QAPP_TEST_MAIN(GImageUtilsTest) + +#include "gimageutilstest.moc" Binary files /tmp/UbViK0EZR7/unity-2d-5.12.0/libunity-2d-private/tests/verification/24bit.png and /tmp/CRcy6tprld/unity-2d-5.14.0/libunity-2d-private/tests/verification/24bit.png differ Binary files /tmp/UbViK0EZR7/unity-2d-5.12.0/libunity-2d-private/tests/verification/24bit_2.png and /tmp/CRcy6tprld/unity-2d-5.14.0/libunity-2d-private/tests/verification/24bit_2.png differ diff -Nru unity-2d-5.12.0/panel/applets/appname/appnameapplet.cpp unity-2d-5.14.0/panel/applets/appname/appnameapplet.cpp --- unity-2d-5.12.0/panel/applets/appname/appnameapplet.cpp 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/appname/appnameapplet.cpp 2012-10-30 12:59:17.000000000 +0000 @@ -253,7 +253,7 @@ void setupWindowHelper() { - m_windowHelper = new WindowHelper(q->panel()->screen(), q); + m_windowHelper = new WindowHelper(q->panel(), q); QObject::connect(m_windowHelper, SIGNAL(stateChanged()), q, SLOT(updateWidgets())); QObject::connect(m_windowHelper, SIGNAL(nameChanged()), @@ -392,8 +392,10 @@ updateWidgets(); } -void AppNameApplet::mouseDoubleClickEvent(QMouseEvent*) { - d->m_windowHelper->unmaximize(); +void AppNameApplet::mouseDoubleClickEvent(QMouseEvent* event) { + if (event->button() == Qt::LeftButton) { + d->m_windowHelper->unmaximize(); + } } void AppNameApplet::mousePressEvent(QMouseEvent* event) { diff -Nru unity-2d-5.12.0/panel/applets/appname/appnameapplet.h unity-2d-5.14.0/panel/applets/appname/appnameapplet.h --- unity-2d-5.12.0/panel/applets/appname/appnameapplet.h 2012-03-12 12:38:26.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/appname/appnameapplet.h 2012-05-30 09:13:41.000000000 +0000 @@ -49,9 +49,6 @@ private Q_SLOTS: void updateWidgets(); -Q_SIGNALS: - void titleBarDblClicked(); - private: Q_DISABLE_COPY(AppNameApplet) AppNameAppletPrivate* const d; diff -Nru unity-2d-5.12.0/panel/applets/appname/menubarwidget.cpp unity-2d-5.14.0/panel/applets/appname/menubarwidget.cpp --- unity-2d-5.12.0/panel/applets/appname/menubarwidget.cpp 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/appname/menubarwidget.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -76,7 +76,7 @@ { if (m_isOpened != opened) { m_isOpened = opened; - isOpenedChanged(); + Q_EMIT isOpenedChanged(); } } @@ -155,7 +155,7 @@ } if (m_isEmpty != empty) { m_isEmpty = empty; - isEmptyChanged(); + Q_EMIT isEmptyChanged(); } } diff -Nru unity-2d-5.12.0/panel/applets/appname/windowhelper.cpp unity-2d-5.14.0/panel/applets/appname/windowhelper.cpp --- unity-2d-5.12.0/panel/applets/appname/windowhelper.cpp 2012-10-30 13:14:03.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/appname/windowhelper.cpp 2012-10-30 12:59:17.000000000 +0000 @@ -30,6 +30,7 @@ #include #include #include +#include // Bamf #include @@ -57,15 +58,20 @@ { WnckWindow* m_window; GConnector m_connector; - int m_screen; + Unity2dPanel *m_panel; + + int screen() const + { + return m_panel->screen(); + } }; -WindowHelper::WindowHelper(int screen, QObject* parent) +WindowHelper::WindowHelper(Unity2dPanel *panel, QObject* parent) : QObject(parent) , d(new WindowHelperPrivate) { d->m_window = 0; - d->m_screen = screen; + d->m_panel = panel; wnck_screen_force_update(wnck_screen_get_default()); @@ -132,13 +138,13 @@ d->m_connector.connect(G_OBJECT(d->m_window), "name-changed", G_CALLBACK(nameChangedCB), this); d->m_connector.connect(G_OBJECT(d->m_window), "state-changed", G_CALLBACK(stateChangedCB), this); } - stateChanged(); - nameChanged(); + Q_EMIT stateChanged(); + Q_EMIT nameChanged(); } bool WindowHelper::isMaximized() const { - if (DashClient::instance()->activeInScreen(d->m_screen)) { + if (DashClient::instance()->activeInScreen(d->screen())) { return dash2dConfiguration().property("fullScreen").toBool(); } else { if (d->m_window) { @@ -174,9 +180,9 @@ void WindowHelper::close() { - if (DashClient::instance()->activeInScreen(d->m_screen)) { + if (DashClient::instance()->activeInScreen(d->screen())) { DashClient::instance()->setActive(false); - } else if (HUDClient::instance()->activeInScreen(d->m_screen)) { + } else if (HUDClient::instance()->activeInScreen(d->screen())) { HUDClient::instance()->setActive(false); } else { wnck_window_close(d->m_window, QX11Info::appTime()); @@ -185,14 +191,14 @@ void WindowHelper::minimize() { - if (!DashClient::instance()->activeInScreen(d->m_screen)) { + if (!DashClient::instance()->activeInScreen(d->screen())) { wnck_window_minimize(d->m_window); } } void WindowHelper::maximize() { - if (DashClient::instance()->activeInScreen(d->m_screen)) { + if (DashClient::instance()->activeInScreen(d->screen())) { dash2dConfiguration().setProperty("fullScreen", QVariant(true)); } else { /* This currently cannot happen, because the window buttons are not @@ -204,9 +210,9 @@ void WindowHelper::unmaximize() { - if (DashClient::instance()->activeInScreen(d->m_screen)) { + if (DashClient::instance()->activeInScreen(d->screen())) { dash2dConfiguration().setProperty("fullScreen", QVariant(false)); - } else { + } else if (isMostlyOnScreen(d->screen())) { wnck_window_unmaximize(d->m_window); } } @@ -222,24 +228,26 @@ void WindowHelper::drag(const QPoint& pos) { - // this code IMO should ultimately belong to wnck - if (wnck_window_is_maximized(d->m_window)) { - XEvent xev; - QX11Info info; - Atom netMoveResize = XInternAtom(QX11Info::display(), "_NET_WM_MOVERESIZE", false); - xev.xclient.type = ClientMessage; - xev.xclient.message_type = netMoveResize; - xev.xclient.display = QX11Info::display(); - xev.xclient.window = wnck_window_get_xid(d->m_window); - xev.xclient.format = 32; - xev.xclient.data.l[0] = pos.x(); - xev.xclient.data.l[1] = pos.y(); - xev.xclient.data.l[2] = 8; // _NET_WM_MOVERESIZE_MOVE - xev.xclient.data.l[3] = Button1; - xev.xclient.data.l[4] = 0; - XUngrabPointer(QX11Info::display(), QX11Info::appTime()); - XSendEvent(QX11Info::display(), QX11Info::appRootWindow(info.screen()), false, - SubstructureRedirectMask | SubstructureNotifyMask, &xev); + if (isMostlyOnScreen(d->screen())) { + // this code IMO should ultimately belong to wnck + if (wnck_window_is_maximized(d->m_window)) { + XEvent xev; + QX11Info info; + Atom netMoveResize = XInternAtom(QX11Info::display(), "_NET_WM_MOVERESIZE", false); + xev.xclient.type = ClientMessage; + xev.xclient.message_type = netMoveResize; + xev.xclient.display = QX11Info::display(); + xev.xclient.window = wnck_window_get_xid(d->m_window); + xev.xclient.format = 32; + xev.xclient.data.l[0] = pos.x(); + xev.xclient.data.l[1] = pos.y(); + xev.xclient.data.l[2] = 8; // _NET_WM_MOVERESIZE_MOVE + xev.xclient.data.l[3] = Button1; + xev.xclient.data.l[4] = 0; + XUngrabPointer(QX11Info::display(), QX11Info::appTime()); + XSendEvent(QX11Info::display(), QX11Info::appRootWindow(info.screen()), false, + SubstructureRedirectMask | SubstructureNotifyMask, &xev); + } } } diff -Nru unity-2d-5.12.0/panel/applets/appname/windowhelper.h unity-2d-5.14.0/panel/applets/appname/windowhelper.h --- unity-2d-5.12.0/panel/applets/appname/windowhelper.h 2012-03-15 10:39:14.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/appname/windowhelper.h 2012-10-30 12:59:17.000000000 +0000 @@ -29,12 +29,14 @@ class QPoint; +class Unity2dPanel; + struct WindowHelperPrivate; class WindowHelper : public QObject { Q_OBJECT public: - WindowHelper(int screen, QObject* parent); + WindowHelper(Unity2dPanel *panel, QObject* parent); ~WindowHelper(); void setXid(uint); diff -Nru unity-2d-5.12.0/panel/applets/legacytray/x11embedcontainer.cpp unity-2d-5.14.0/panel/applets/legacytray/x11embedcontainer.cpp --- unity-2d-5.12.0/panel/applets/legacytray/x11embedcontainer.cpp 2012-03-12 12:38:26.000000000 +0000 +++ unity-2d-5.14.0/panel/applets/legacytray/x11embedcontainer.cpp 2012-05-30 16:01:54.000000000 +0000 @@ -225,6 +225,12 @@ // size #2. XImage *ximage = XGetImage(dpy, pixmap, 0, 0, width(), height(), AllPlanes, ZPixmap); if (!ximage) { + // Make sure the attr are updated, Pidgin changes its widthxheight late in the game + if (!XGetWindowAttributes(QX11Info::display(), clientWinId(), &d->attr)) { + error(QX11EmbedContainer::Unknown); + return; + } + int ximageWidth = qMin(d->attr.width, width()); int ximageHeight = qMin(d->attr.height, height()); ximage = XGetImage(dpy, pixmap, 0, 0, ximageWidth, ximageHeight, AllPlanes, ZPixmap); diff -Nru unity-2d-5.12.0/po/af.po unity-2d-5.14.0/po/af.po --- unity-2d-5.12.0/po/af.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/af.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,134 +15,132 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 venster oopgemaak" +msgstr[1] "%1 vensters oopgemaak" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "hardloop nie" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Tik u Opdrag" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Fout: Nie gekoppel aan HUD-diens nie" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Filtreer resultate" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Filter %1 aktief" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Filter %1 onaktief" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Alle" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Soek" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "Nie uitgebrei nie" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "uitgebrei" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Sien %1 meer resultaat" +msgstr[1] "Sien %1 meer resultate" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "Sien minder resultate" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "Kortpaaie" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "Skiet uit" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Verwyder veilig" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Sluit vas aan Lanseerder" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Maak los van Lanseerder" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "" +msgstr "Verlaat" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Dash-tuiste" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "LNR of RNL" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "Tuis" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "Tuis-skerm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "" +msgstr "Asblik" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n item in asblik" +msgstr[1] "%n items in asblik" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "" +msgstr "Maak Asblik Leeg" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Ongelukkig is daar niks wat aan jou soektog voldoen nie" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "" +msgstr "Werksruimtes" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Ubuntu Werkskerm" diff -Nru unity-2d-5.12.0/po/am.po unity-2d-5.14.0/po/am.po --- unity-2d-5.12.0/po/am.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/am.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ጥቂት ውጤቶች መመልከቻ" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "አቋራጮች" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "ማውጫ" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "ማጥፊያ" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ቆሻሻ" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n እቃ በቆሻሻ ውስጥ" msgstr[1] "%n እቃዎች በቆሻሻ ውስጥ" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ቆሻሻውን ባዶ ማድረጊያ" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "የስራ ቦታዎች" diff -Nru unity-2d-5.12.0/po/an.po unity-2d-5.14.0/po/an.po --- unity-2d-5.12.0/po/an.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/an.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Error: Servicio de HUD no enchegau" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Amostrar menos resultaus" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Alcorces" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Expulsar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "No mantener n'o lanzador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Salir" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Pantalla de prencipio" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Vasuera" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elemento en a vasuera" msgstr[1] "%n elementos en a vasuera" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Vaciar a vasuera" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Lo sentimos, cosa coincide con a suya busca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Areas de treballo" diff -Nru unity-2d-5.12.0/po/ar.po unity-2d-5.14.0/po/ar.po --- unity-2d-5.12.0/po/ar.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ar.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,18 +8,18 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 15:55+0000\n" -"Last-Translator: Nawfel \n" +"PO-Revision-Date: 2012-07-30 00:07+0000\n" +"Last-Translator: Jonathan N. Hindi \n" "Language-Team: Arabic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n % 100 >= " "3 && n % 100 <= 10 ? 3 : n % 100 >= 11 && n % 100 <= 99 ? 4 : 5;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" @@ -30,9 +30,9 @@ msgstr[4] "%1 نافذة مفتوحة" msgstr[5] "%1 نافذة مفتوحة" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "لا يعمل" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -42,37 +42,37 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "ترشيح النتائج" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "الكل" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "ابحث" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "غير موسّعة" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "موسّعة" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" @@ -83,21 +83,21 @@ msgstr[4] "اعرض %1 نتيجة إضافية" msgstr[5] "اعرض %1 نتيجة إضافية" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "اعرض نتائج أقل" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "اختصارات" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "أخرِج" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "أزل بأمان" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -107,19 +107,17 @@ msgid "Unlock from Launcher" msgstr "فُك التثبيت من الشريط" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "أغلق" +msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "اللوحة الرئيسية" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "RTL" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" @@ -129,26 +127,30 @@ msgid "Home screen" msgstr "الشاشة الرئيسية" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "المُهملات" +msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "لا عناصر في المُهملات" +msgstr[1] "عنصر واحد في المُهملات" +msgstr[2] "عنصران في المُهملات" +msgstr[3] "%n عناصر في المُهملات" +msgstr[4] "%n عنصرًا في المُهملات" +msgstr[5] "%n عنصر في المُهملات" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "أفرغ المُهملات" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "عذرًا، لا يوجد شيء يطابق بحثك." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "مساحات العمل" @@ -173,6 +175,3 @@ #~ msgid "Find Files" #~ msgstr "ابحث عن ملفات" - -#~ msgid "View Photos" -#~ msgstr "اعرض صور" diff -Nru unity-2d-5.12.0/po/ast.po unity-2d-5.14.0/po/ast.po --- unity-2d-5.12.0/po/ast.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ast.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Fallu: Serviciu de HUD non coneutáu" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ver menos resultados" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Atayos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Espulsar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Nun caltener nel llanzador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Quitar" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Pantalla d'aniciu" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papelera" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elementu na papelera" msgstr[1] "%n elementos na papelera" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Vaciar Papelera" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Sentímoslo, nun hai res que concase cola gueta" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Árees de trabayu" diff -Nru unity-2d-5.12.0/po/az.po unity-2d-5.14.0/po/az.po --- unity-2d-5.12.0/po/az.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/az.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Az nəticə göstər" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Qısa yollar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Çıxar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Çıx" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Zibil Qutusu" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "Zibil Qutusunda %n fayl var" msgstr[1] "Zibil Qutusunda %n fayl var" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Zibil qutusunu təmizlə" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "İş Sahələri" diff -Nru unity-2d-5.12.0/po/be.po unity-2d-5.14.0/po/be.po --- unity-2d-5.12.0/po/be.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/be.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "не выконваецца" @@ -38,58 +38,59 @@ msgid "Error: HUD service not connected" msgstr "Памылка: паслуга HUD не далучана" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Фільтраваць вынікі" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Пошук" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Паказаць яшчэ %1 вынік" +msgstr[1] "Паказаць яшчэ %1 вынікі" +msgstr[2] "Паказаць яшчэ %1 вынікаў" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "Менш вынікаў" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "Хуткі выклік" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "Выняць" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Бяспечна выняць" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -99,17 +100,15 @@ msgid "Unlock from Launcher" msgstr "Прыбраць з панэлі" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "Выхад" +msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +120,11 @@ msgid "Home screen" msgstr "Хатні экран" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "Сметніца" +msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,17 +132,17 @@ msgstr[1] "%n элементы ў сметніцы" msgstr[2] "%n элементаў у сметніцы" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "Ачысціць сметніцу" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "Прабачце, але па вашаму запыту нічога ня знойдзена." +msgstr "Даруйце, але па вашаму запыту нічога не знайшлося." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "Прасторы працы" +msgstr "" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" @@ -163,18 +162,3 @@ #~ msgid "Remove from launcher" #~ msgstr "Выдаліць з панэлі запуску" - -#~ msgid "Listen to Music" -#~ msgstr "Слухаць музыку" - -#~ msgid "Find Files" -#~ msgstr "Пошук файлаў" - -#~ msgid "View Photos" -#~ msgstr "Глядзець фота" - -#~ msgid "Browse the Web" -#~ msgstr "Увайсці ў Інтэрнэт" - -#~ msgid "Check Email" -#~ msgstr "Чытаць пошту" diff -Nru unity-2d-5.12.0/po/bem.po unity-2d-5.14.0/po/bem.po --- unity-2d-5.12.0/po/bem.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/bem.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,107 +8,105 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 15:58+0000\n" +"PO-Revision-Date: 2012-06-06 15:55+0000\n" "Last-Translator: goof \n" "Language-Team: Bemba \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 window nayisuka" +msgstr[1] "Ama%1 window nayesuka" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "Tacilebomba" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Ukutaipa ifyakuti computer icite" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Kwati pali ifilubene apa: HUD taicitile connect iyo" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Ukusalamo bwino bwino mu fisangilwe" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Imisalile %1 eilebomba" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Imisalile %1 tailebomba" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Fyonse" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Ukufwaya" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "Kuli ififiseme" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "fyose filemoneka" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Ukumwenapo nacimbi cimo (%1) pafisangilwe" +msgstr[1] "Ukumwenapo nafimbi %1 pafisangilwe" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "Ukucefyako ifilemoneka pafisangilwe" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "Mu kwipifya" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "Ukufumya" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Ukufumya bwino bwino" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Ukukakatika pali Launcher" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Ukufumya pali Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "" +msgstr "Ukuleka" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,26 +118,26 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "" +msgstr "Ifisoso" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Muli icuntu (%n) mu fisoso" +msgstr[1] "Muli ifuntu (%n) mu fisoso" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "" +msgstr "Ukuposa ifiko" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/bg.po unity-2d-5.14.0/po/bg.po --- unity-2d-5.12.0/po/bg.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/bg.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Показване на по-малко резултати" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Препратки" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Изваждане" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Изход" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Кошче" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n обект в кошчето" msgstr[1] "%n обекта в кошчето" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Изпразване на кошчето" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Работни плотове" diff -Nru unity-2d-5.12.0/po/bn.po unity-2d-5.14.0/po/bn.po --- unity-2d-5.12.0/po/bn.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/bn.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "ত্রুটি: HUD সার্ভিস সংযুক্ত নয়" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "খুব কম ফলাফল দেখা" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "শর্টকাট" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "বের করা" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "লঞ্চার থেকে অনবরুদ্ধ করুন" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "প্রস্থান" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "হোম স্ক্রীন" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "আবর্জনা" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "আবর্জনায় %n আইটেম" msgstr[1] "আবর্জনায় %n টি আইটেম" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "শূন্য আবর্জনা" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "দুঃখিত, আপনার অনুসন্ধানের সাথে মিল পাওয়া যায়নি।" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "ওয়ার্কস্পেস" diff -Nru unity-2d-5.12.0/po/bo.po unity-2d-5.14.0/po/bo.po --- unity-2d-5.12.0/po/bo.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/bo.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/br.po unity-2d-5.14.0/po/br.po --- unity-2d-5.12.0/po/br.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/br.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/bs.po unity-2d-5.14.0/po/bs.po --- unity-2d-5.12.0/po/bs.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/bs.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Greška: HUD servis nije povezan" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Vidi manje rezultata" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Prečice" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Izbaci" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Bezbijedno ukloni" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Oključaj s pokretača" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Izlaz" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "Početni ekran" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Smeće" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +131,7 @@ msgstr[1] "%n datoteke u smeću" msgstr[2] "%n datoteka u smeću" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Isprazni kantu" @@ -141,7 +139,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Nažalost, ništa ne odgovara vašoj pretrazi." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Radni prostori" diff -Nru unity-2d-5.12.0/po/ca.po unity-2d-5.14.0/po/ca.po --- unity-2d-5.12.0/po/ca.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ca.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "S'ha produït un error: el servei del HUD no està connectat" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Mostra menys resultats" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Dreceres" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Expulsa" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "No la mantinguis al llançador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Surt" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Pantalla d'inici" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Paperera" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n element a la paperera" msgstr[1] "%n elements a la paperera" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Buida la paperera" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "No hi ha res que coincideixi amb la cerca" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espais de treball" diff -Nru unity-2d-5.12.0/po/ca@valencia.po unity-2d-5.14.0/po/ca@valencia.po --- unity-2d-5.12.0/po/ca@valencia.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ca@valencia.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Mostra menys resultats" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Dreceres" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Expulsa" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ix" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Paperera" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n element a la paperera" msgstr[1] "%n elements a la paperera" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Buida la paperera" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espais de treball" diff -Nru unity-2d-5.12.0/po/crh.po unity-2d-5.14.0/po/crh.po --- unity-2d-5.12.0/po/crh.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/crh.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,16 +16,16 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 pencere açıldı" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "çapmay" @@ -37,55 +37,55 @@ msgid "Error: HUD service not connected" msgstr "Hata: Baş-Üstü Kösterim (BÜK; HUD) hizmeti bağlanğan degil" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Neticelerni süzgüçle" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "%1 süzgüçi faal" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "%1 süzgüçi ğayrıfaal" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Hepsi" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Qıdır" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "kenişletilmegen" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "kenişletilgen" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "%1 netice daha kör" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "Daha az netice kör" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Qısqayollar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Çıqart" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Emin olaraq çetleştir" @@ -97,18 +97,16 @@ msgid "Unlock from Launcher" msgstr "Fırlatıcıdan Kilitsizle" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Terk Et" # tüklü -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Hızlı menü" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "Ev ekranı" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Çöp" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "Çöpte %n unsur" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Çöpni Boşat" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Afu etiñiz, qıdırmañız ile eşleşken hiç bir şey yoq." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Çalışma-Fezaları" @@ -166,12 +164,3 @@ #~ msgid "Listen to Music" #~ msgstr "Musıqi Diñle" - -#~ msgid "More Apps" -#~ msgstr "Daha Çoq Uyğulama" - -#~ msgid "Keep in launcher" -#~ msgstr "Başlatıcıda Tut" - -#~ msgid "Remove from launcher" -#~ msgstr "Başlatıcıdan Kaldır" diff -Nru unity-2d-5.12.0/po/cs.po unity-2d-5.14.0/po/cs.po --- unity-2d-5.12.0/po/cs.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/cs.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,10 +15,10 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" @@ -26,7 +26,7 @@ msgstr[1] "%1 otevřená okna" msgstr[2] "%1 otevřených oken" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "není spuštěno" @@ -38,37 +38,37 @@ msgid "Error: HUD service not connected" msgstr "Chyba: služba HUD není připojena" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filtrovat výsledky" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filtr %1 aktivní" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filtr %1 neaktivní" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Vše" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Hledat" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "nerozbaleno" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "rozbaleno" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" @@ -76,19 +76,19 @@ msgstr[1] "Zobrazit %1 další výsledky" msgstr[2] "Zobrazit %1 dalších výsledků" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Zobrazit méně výsledků" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Rychlý přístup" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Vysunout" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Bezpečně odebrat" @@ -100,17 +100,15 @@ msgid "Unlock from Launcher" msgstr "Odebrat z Launcheru" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ukončit" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Hlavní nabídka Dash" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" @@ -122,11 +120,11 @@ msgid "Home screen" msgstr "Domovská obrazovka" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Koš" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -134,7 +132,7 @@ msgstr[1] "%n položky v koši" msgstr[2] "%n položek v koši" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Vyprázdnit koš" @@ -142,7 +140,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Omlouváme se, ale není zde nic, co by odpovídalo vyhledávání" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Pracovní plochy" diff -Nru unity-2d-5.12.0/po/cy.po unity-2d-5.14.0/po/cy.po --- unity-2d-5.12.0/po/cy.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/cy.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=n==1 ? 0 : n==2 ? 1 : (n != 8 && n != 11) ? " "2 : 3;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Allfwrw" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Gadael" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,18 +119,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Sbwriel" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -140,7 +138,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/da.po unity-2d-5.14.0/po/da.po --- unity-2d-5.12.0/po/da.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/da.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 åbent vindue" msgstr[1] "%1 åbne vinduer" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "kører ikke" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Fejl: HUD-tjeneste er ikke tilsluttet" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filtrér resultater" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filter %1 aktiv" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filter %1 inaktiv" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Alle" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Søg" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "ikke udvidet" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "udvidet" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Vis %1 resultat mere" msgstr[1] "Vis %1 resultater mere" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Se færre resultater" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Genveje" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Skub ud" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Fjern sikkert" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Frigør fra opstarter" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Afslut" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Panelhjem" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Startskærm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papirkurv" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n emne i parpirkurven" msgstr[1] "%n emner i parpirkurven" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tøm papirkurv" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Desværre var der intet der matchede din søgning." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Arbejdsområder" diff -Nru unity-2d-5.12.0/po/de.po unity-2d-5.14.0/po/de.po --- unity-2d-5.12.0/po/de.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/de.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,26 +8,26 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 16:24+0000\n" -"Last-Translator: Moritz Baumann \n" +"PO-Revision-Date: 2012-10-06 16:47+0000\n" +"Last-Translator: Daniel Schury \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-07 04:51+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 Fenster geöffnet" +msgstr[1] "%1 Fenster geöffnet" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "wird nicht ausgeführt" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,58 +37,58 @@ msgid "Error: HUD service not connected" msgstr "Fehler: HUD-Dienst ist nicht verbunden" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Suchergebnisse filtern" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Filter %1 aktiv" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Filter %1 inaktiv" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Alle" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Suchen" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "nicht ausgeklappt" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "ausgeklappt" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 weiteres Ergebnis anzeigen" +msgstr[1] "%1 weitere Ergebnisse anzeigen" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Weniger Ergebnisse anzeigen" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Verknüpfungen" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Auswerfen" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Sicher entfernen" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,19 +98,17 @@ msgid "Unlock from Launcher" msgstr "Aus Starter entfernen" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Schließen" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Dash-Startseite" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "QT_LAYOUT_DIRECTION" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Startseite" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Mülleimer" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n Objekt im Mülleimer" msgstr[1] "%n Objekte im Mülleimer" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Mülleimer leeren" @@ -140,7 +138,7 @@ msgstr "" "Entschuldigung, es wurde nichts gefunden, das Ihren Suchkriterien entspricht." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Arbeitsflächen" diff -Nru unity-2d-5.12.0/po/el.po unity-2d-5.14.0/po/el.po --- unity-2d-5.12.0/po/el.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/el.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 ανοικτό παράθυρο" msgstr[1] "%1 ανοικτά παράθυρα" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "δεν εκτελείται" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Σφάλμα: η υπηρεσία HUD δεν είναι συνδεδεμένη" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Φιλτράρισμα αποτελεσμάτων" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Ενεργό φίλτρο %1" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Μη ενεργό φίλτρο %1" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Όλα" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Αναζήτηση" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "μη ανεπτυγμένο" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "ανεπτυγμένο" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Δείτε %1 παραπάνω αποτέλεσμα" msgstr[1] "Δείτε %1 παραπάνω αποτελέσματα" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Δείτε λιγότερα αποτελέσματα" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Συντομεύσεις" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Εξαγωγή" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Ασφαλή αφαίρεση" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Ξεκλείδωμα από τον εκκινητή" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Έξοδος" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Κεντρικό μενού Dash" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -121,26 +119,26 @@ msgid "Home screen" msgstr "Αρχική οθόνη" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Απορρίμματα" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n αντικείμενο στον κάδο" msgstr[1] "%n αντικείμενα στον κάδο" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "Άδειασμα κάδου απορριμμάτων" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "Συγνώμη, δεν υπάρχει κάτι που να ταιριάζει στην αναζήτησή σας." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Χώροι εργασίας" @@ -171,9 +169,3 @@ #~ msgid "Remove from launcher" #~ msgstr "Αφαίρεση από τον εκκινητή" - -#~ msgid "Find Files" -#~ msgstr "Εύρεση αρχείων" - -#~ msgid "Listen to Music" -#~ msgstr "Ακούστε μουσική" diff -Nru unity-2d-5.12.0/po/en_AU.po unity-2d-5.14.0/po/en_AU.po --- unity-2d-5.12.0/po/en_AU.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/en_AU.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Error: HUD service not connected" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "See fewer results" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Shortcuts" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Eject" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Unlock from Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Quit" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Home screen" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Rubbish Bin" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item in rubbish bin" msgstr[1] "%n items in rubbish bin" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Empty Rubbish Bin" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Sorry, there is nothing that matches your search." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Workspaces" diff -Nru unity-2d-5.12.0/po/en_CA.po unity-2d-5.14.0/po/en_CA.po --- unity-2d-5.12.0/po/en_CA.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/en_CA.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -35,58 +35,58 @@ #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Error: HUD service not connected" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Unlock from Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,26 +118,26 @@ msgid "Home screen" msgstr "Home screen" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Sorry, there is nothing that matches your search." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/en_GB.po unity-2d-5.14.0/po/en_GB.po --- unity-2d-5.12.0/po/en_GB.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/en_GB.po 2012-10-30 12:59:17.000000000 +0000 @@ -9,23 +9,23 @@ "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" "PO-Revision-Date: 2012-03-13 17:18+0000\n" -"Last-Translator: Anthony Harrington \n" +"Last-Translator: Anthony Harrington \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 window opened" msgstr[1] "%1 windows opened" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "not running" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Error: HUD service not connected" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filter results" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filter %1 active" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filter %1 inactive" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "All" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Search" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "not expanded" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "expanded" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "See %1 more result" msgstr[1] "See %1 more results" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "See fewer results" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Shortcuts" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Eject" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Safely remove" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Unlock from Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Quit" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Dash home" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Home screen" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Rubbish Bin" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item in the Rubbish Bin" msgstr[1] "%n items in the Rubbish Bin" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Empty the Rubbish Bin" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Sorry, there is nothing that matches your search." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Workspaces" diff -Nru unity-2d-5.12.0/po/eo.po unity-2d-5.14.0/po/eo.po --- unity-2d-5.12.0/po/eo.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/eo.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Eraro: HUD-servo ne konektita" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Vidu %1 plian rezulton" msgstr[1] "Vidu %1 pliajn rezultojn" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "Vidu malpliajn rezultojn" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Klavkombinoj" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Elĵeti" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Malŝlosi al lanĉilo" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Eliri" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Hejmujo" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Rubujo" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n ero en rubujo" msgstr[1] "%n eroj en rubujo" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Malplenigi rubujon" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Pardonu, neniu kongruas kun via serĉo." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Laborspacoj" diff -Nru unity-2d-5.12.0/po/es.po unity-2d-5.14.0/po/es.po --- unity-2d-5.12.0/po/es.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/es.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,24 +8,24 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-04-10 12:59+0000\n" -"Last-Translator: Fitoschido \n" +"PO-Revision-Date: 2012-10-07 04:27+0000\n" +"Last-Translator: Adolfo Jayme Barrientos \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-08 05:31+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 ventana abierta" msgstr[1] "%1 ventanas abiertas" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "no en ejecución" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Error: Servicio de HUD no conectado" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filtrar resultados" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filtrar %1 activos" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filtrar %1 inactivos" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Todo" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Buscar" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "sin expandir" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "expandido" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Ver %1 resultado más" msgstr[1] "Ver %1 resultados más" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ver menos resultados" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Atajos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Expulsar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Quitar de forma segura" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "No mantener en el lanzador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Salir" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Inicio" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Pantalla de inicio" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papelera" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elemento en la papelera" msgstr[1] "%n elementos en la papelera" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Vaciar la papelera" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Lo sentimos, nada coincide con su búsqueda." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Áreas de trabajo" diff -Nru unity-2d-5.12.0/po/et.po unity-2d-5.14.0/po/et.po --- unity-2d-5.12.0/po/et.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/et.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 aken avatud" msgstr[1] "%1 akent avatud" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Tõrge: HUD teenus pole ühendatud" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "Vaata vähem tulemusi" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Otseteed" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Väljasta" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Vabasta käivituspaneelilt" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Välju" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Kodukuva" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Prügikast" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "%n asi prügikastis" -msgstr[1] "%n asja prügikastis" +msgstr[0] "" +msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tühjenda prügikast" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Vabandust, sobivusi ei leitud." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Tööalad" diff -Nru unity-2d-5.12.0/po/eu.po unity-2d-5.14.0/po/eu.po --- unity-2d-5.12.0/po/eu.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/eu.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Errorea: HUD zerbitzua ez dago konektatuta" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ikusi emaitza gutxiago" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Lasterbideak" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Egotzi" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Askatu abiarazletik" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Irten" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Hasierako pantaila" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Zakarrontzia" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elementu zakarrontzian" msgstr[1] "%n elementu zakarrontzian" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Hustu zakarrontzia" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Ez dago bilaketarekin bat datorren emaitzarik." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Laneko areak" diff -Nru unity-2d-5.12.0/po/fa.po unity-2d-5.14.0/po/fa.po --- unity-2d-5.12.0/po/fa.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fa.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,143 +8,139 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 16:48+0000\n" -"Last-Translator: Novid \n" +"PO-Revision-Date: 2012-08-12 09:40+0000\n" +"Last-Translator: Danial Behzadi \n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 پنجره باز شد" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "اجرا نمی‌شود" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "دستور خود را وارد کنید" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "خطا: خدمت HUD متصل نیست" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "پالایش نتایج" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "%1 فعال را پالایش کن" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "%1 غیر را پالایش کن" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "همه" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "جست‌وجو‌" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "گسترش نیافته" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "گسترش یافته" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "دیدن %1 نتیجه‌ی بیش‌تر" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "مشاهده نتایج کمتر" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "میان‌برها" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "خارج کردن" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "برداشتن امن" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "قفل به اجراگر" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "بازکردن قفل از اجراگر" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "خروج" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "خانه‌ی دش" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "RTL" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "خانه" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "صفحه‌ی خانه" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "زباله‌دان" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n مورد در زباله دان" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "خالی کردن زباله‌دان" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "متأسفیم، چیزی نیست که با جست‌وجوی شما مطابق باشد." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "فضاهای کاری" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "میزکار اوبونتو" #~ msgid "Listen to Music" #~ msgstr "گوش دادن به موسیقی" diff -Nru unity-2d-5.12.0/po/fi.po unity-2d-5.14.0/po/fi.po --- unity-2d-5.12.0/po/fi.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fi.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,24 +8,24 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-09 08:24+0000\n" -"Last-Translator: Timo Jyrinki \n" +"PO-Revision-Date: 2012-10-12 08:31+0000\n" +"Last-Translator: Heikki Mattila \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-13 04:57+0000\n" +"X-Generator: Launchpad (build 16137)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 ikkuna avattu" msgstr[1] "%1 ikkunaa avattu" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "ei käynnissä" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Virhe: ei yhteyttä HUD-palveluun" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "Suodata tuloksia" +msgstr "Rajaa hakutuloksia" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Suodatin %1 aktiivisena" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Suodatin %1 ei aktiivisena" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Kaikki" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Etsi" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "ei laajennettu" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "laajennettu" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Näytä %1 tulos lisää" msgstr[1] "Näytä %1 tulosta lisää" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Näytä vähemmän tuloksia" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Pikavalinnat" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Irrota" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Poista turvallisesti" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Poista käynnistimestä" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Sulje" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Unity-valikko" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Kotinäyttö" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Roskakori" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n kohde roskakorissa" msgstr[1] "%n kohdetta roskakorissa" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tyhjennä roskakori" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Hakuun täsmääviä tuloksia ei löydy." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Työtilat" diff -Nru unity-2d-5.12.0/po/fil.po unity-2d-5.14.0/po/fil.po --- unity-2d-5.12.0/po/fil.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fil.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/fo.po unity-2d-5.14.0/po/fo.po --- unity-2d-5.12.0/po/fo.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fo.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -35,58 +35,58 @@ #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Brek: HUD tænastan er ikki sambundin" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Loys frá Útskjótingartólinum" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,26 +118,26 @@ msgid "Home screen" msgstr "Heimaskíggi" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Tíanverri er tað einki sum hóskar til tína leiting." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/fr.po unity-2d-5.14.0/po/fr.po --- unity-2d-5.12.0/po/fr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fr.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,18 +15,18 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" "Language: \n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 fenêtre ouverte" msgstr[1] "%1 fenêtres ouvertes" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "n'est pas lancé" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Erreur : service affichage tête haute (HUD) non connecté" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filtrer les résultats" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filtre %1 actif" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filtre %1 inactif" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Tout" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Rechercher" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "non étendu" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "étendu" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Voir %1 résultat de plus" msgstr[1] "Voir %1 résultats de plus" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Voir moins de résultats" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Raccourcis" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Éjecter" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Retirer en toute sécurité" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Retirer du lanceur" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Quitter" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Tableau de bord" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -121,18 +119,18 @@ msgid "Home screen" msgstr "Écran d’accueil" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Corbeille" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n élément dans la corbeille" msgstr[1] "%n éléments dans la corbeille" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Vider la corbeille" @@ -140,7 +138,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Désolé, aucun résultat ne correspond à votre recherche." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espaces de travail" diff -Nru unity-2d-5.12.0/po/fy.po unity-2d-5.14.0/po/fy.po --- unity-2d-5.12.0/po/fy.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/fy.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 finster iepene" msgstr[1] "%1 finsters iepene" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "net aktyf" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Fertuten filterje" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filter %1 aktyf" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filter %1 net aktyf" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Alles" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Sykje" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "net úttine" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "úttine" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "%1 fertut mear sjen" msgstr[1] "%1 fertuten mear sjen" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Minder fertuten sjen" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Fluchtoetsen" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Útsmite" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Feilich fuortsmite" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Fan starter ûntskoattelje" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ôfslute" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Slyp oersjoch" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Thús skerm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Jiskefet" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item yn jiskefet" msgstr[1] "%n items yn jiskefet" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Jiskefet leegje" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Wurkromten" diff -Nru unity-2d-5.12.0/po/ga.po unity-2d-5.14.0/po/ga.po --- unity-2d-5.12.0/po/ga.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ga.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n==2 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "nach bhfuil á rith" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Scag na torthaí" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Gach Uile" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Cuardach" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "gan fairsingiú" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "fairsingithe" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Féach níos lú torthaí" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Cuir amach" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Bain amach go slán" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Scor" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Bruscar" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Folmhaigh Bruscar" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Spásanna Oibre" diff -Nru unity-2d-5.12.0/po/gd.po unity-2d-5.14.0/po/gd.po --- unity-2d-5.12.0/po/gd.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/gd.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n < 2 ? 0 : n == 2 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Mearachd: Chan eil seirbhis HUD ceangailte" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Faic nas lugha thoraidhean" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Athghoirid" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Tilg-a-mach" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Thoir a' ghlais bhon Lòinsear" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Fàg" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,11 +118,11 @@ msgid "Home screen" msgstr "Sgrìn dachaigh" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Sgudal" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -132,7 +130,7 @@ msgstr[1] "%n rud anns a sgudal" msgstr[2] "%n rudan anns a sgudal" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Taom a sgudal" @@ -140,7 +138,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Duillich, chan eil càil tha co-ionnan le do shireadh." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Rùmannan-obrach" diff -Nru unity-2d-5.12.0/po/gl.po unity-2d-5.14.0/po/gl.po --- unity-2d-5.12.0/po/gl.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/gl.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Erro: O servizo HUD non está conectado" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ver menos resultados" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Atallos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Expulsar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Non manter no iniciador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Saír" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Pantalla de inicio" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Lixo" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elemento no lixo" msgstr[1] "%n elementos no lixo" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Baleirar o lixo" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Sentímolo, nada coincide coa súa busca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espazos de traballo" diff -Nru unity-2d-5.12.0/po/gv.po unity-2d-5.14.0/po/gv.po --- unity-2d-5.12.0/po/gv.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/gv.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n == 1 ? 0 : (n == 2 ? 1 : 2);\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Jeeagh er ny sloo eieyrtysyn" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Cassanyn giare" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Tilgey magh" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Faagail" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,11 +118,11 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Trustyr" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -132,7 +130,7 @@ msgstr[1] "%n nheeghyn ayns y trustyr" msgstr[2] "%n nheeghyn ayns y trustyr" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Follamaghey Trustyr" @@ -140,7 +138,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Boaylyn obbree" diff -Nru unity-2d-5.12.0/po/he.po unity-2d-5.14.0/po/he.po --- unity-2d-5.12.0/po/he.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/he.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "שגיאה: שירות ה־HUD לא מחובר עדיין" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "הצגת פחות תוצאות" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "קיצורי דרך" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "שליפה" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "הפרדה מהמשגר" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "יציאה" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "מסך הבית" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "אשפה" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "פריט אחד באשפה" msgstr[1] "%n פריטים באשפה" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "פינוי האשפה" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "שום דבר אינו תואם לחיפוש שלך, עמך הסליחה." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "סביבות עבודה" diff -Nru unity-2d-5.12.0/po/hi.po unity-2d-5.14.0/po/hi.po --- unity-2d-5.12.0/po/hi.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/hi.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "त्रुटि: हुड सेवा नहीं जुड़े" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "देखे कुछ कम परिणाम" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "बाहर निकालें" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "लॉन्चर से अनलॉक" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "बाहर जाएँ" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "घर स्क्रीन" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "रद्दी" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "रद्दी खाली करें" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "क्षमा करें, वहाँ कुछ भी नहीं है कि आपकी खोज से मेल खाता है." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "कार्यस्थान" diff -Nru unity-2d-5.12.0/po/hr.po unity-2d-5.14.0/po/hr.po --- unity-2d-5.12.0/po/hr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/hr.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Greška: HUD servis nije spojen" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Prikaži manje rezultata" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Prečaci" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Izbaci" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Otključaj iz pokretača" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Izlaz" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "Početni zaslon" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Smeće" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +131,7 @@ msgstr[1] "%n stavke u smeću" msgstr[2] "%n stavaka u smeću" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Isprazni smeće" @@ -141,7 +139,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Žao mi je, ne postoji ništa što odgovara vašoj pretrazi." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Radne površine" diff -Nru unity-2d-5.12.0/po/hu.po unity-2d-5.14.0/po/hu.po --- unity-2d-5.12.0/po/hu.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/hu.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Hiba: a HUD szolgáltatás nincs csatlakoztatva" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Kevesebb találat megjelenítése" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Parancsikonok" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Kiadás" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Eltávolítás az Indítóból" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Kilépés" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Kezdőoldal képernyő" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Kuka" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elem a Kukában" msgstr[1] "%n elem a Kukában" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Kuka ürítése" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Elnézést, nincs találat a keresésre." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Munkaterületek" diff -Nru unity-2d-5.12.0/po/hy.po unity-2d-5.14.0/po/hy.po --- unity-2d-5.12.0/po/hy.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/hy.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Տեսնել ավելի պակաս արդյունքներ" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Դյուրանցումներ" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Հանել" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ելք" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Աղբարկղ" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "Աղբարկղում գտնվում է %n տարր" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Դատարկել աղբարկղը" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Աշխատատարածքներ" diff -Nru unity-2d-5.12.0/po/id.po unity-2d-5.14.0/po/id.po --- unity-2d-5.12.0/po/id.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/id.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,143 +8,139 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 16:53+0000\n" -"Last-Translator: Dirgita \n" +"PO-Revision-Date: 2012-08-10 09:08+0000\n" +"Last-Translator: Andika Triwidada \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 jendela dibuka" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "tak berjalan" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Ketikkan Perintah Anda" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Kesalahan: Layanan HUD tidak terhubung" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Hasil penyaringan" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Tapis %1 aktif" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Tapis %1 tak aktif" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Semua" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Cari" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "tidak dikembangkan" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "dikembangkan" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Lihat %1 hasil lain" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "Lihat hasil lebih sedikit" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "Pintasan" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Keluarkan Media" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Lepaskan dengan aman" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Kunci ke Launcher" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Lepaskan dari Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "Keluar" +msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Beranda" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "QT_LAYOUT_DIRECTION" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "Beranda" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "Layar Beranda" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "Tempat Sampah" +msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item pada tempat sampah" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Kosongkan Tempat Sampah" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Maaf, tidak ada pilihan yang cocok." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "Area Kerja" +msgstr "" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Desktop Ubuntu" #~ msgid "Media Apps" #~ msgstr "Aplikasi Media" diff -Nru unity-2d-5.12.0/po/is.po unity-2d-5.14.0/po/is.po --- unity-2d-5.12.0/po/is.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/is.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,137 +15,135 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Sláðu inn skipunina þína" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Villa: HUD þjónusta fannst ekki" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Skoða %1 niðurstöðu í viðbót" +msgstr[1] "Skoða %1 niðurstöður í viðbót" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Birta færri niðurstöður" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Flýtilyklar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Henda út" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Læsa í ræsara" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Aflæsa úr ræsara" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Hætta" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Flýtival" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "LTR" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "Heimamappa" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "Heimaskjár" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Rusl" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n hlutur í ruslinu" msgstr[1] "%n hlutir í ruslinu" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tæma rusl" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Því miður finnst ekkert sem passar við það sem þú leitar að." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Vinnusvæði" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Ubuntu skjáborð" #~ msgid "Media Apps" #~ msgstr "Margmiðlunarforrit" diff -Nru unity-2d-5.12.0/po/it.po unity-2d-5.14.0/po/it.po --- unity-2d-5.12.0/po/it.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/it.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,18 +15,18 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" "Language: \n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Errore: servizio HUD non connesso" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Mostra meno risultati" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Scorciatoie" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Espelli" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Sblocca dal Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Esci" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,18 +119,18 @@ msgid "Home screen" msgstr "Schermata home" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Cestino" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n elemento nel cestino" msgstr[1] "%n elementi nel cestino" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Svuota cestino" @@ -140,7 +138,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Nessun risultato corrispondente alla ricerca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Spazi di lavoro" diff -Nru unity-2d-5.12.0/po/ja.po unity-2d-5.14.0/po/ja.po --- unity-2d-5.12.0/po/ja.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ja.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "エラー: HUDサービスに接続できません" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "結果の絞り込み" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "一部の結果のみ表示" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "ショートカット" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "取り出し" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "ランチャーの固定を解除" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "終了" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "ホームスクリーン" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ゴミ箱" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n 個のアイテムがゴミ箱にあります" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ゴミ箱を空にする" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "残念ながら、入力された語句に一致するものは見つかりませんでした。" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "ワークスペースの切り替え" diff -Nru unity-2d-5.12.0/po/jv.po unity-2d-5.14.0/po/jv.po --- unity-2d-5.12.0/po/jv.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-2d-5.14.0/po/jv.po 2012-10-30 12:59:17.000000000 +0000 @@ -0,0 +1,146 @@ +# Javanese translation for unity-2d +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-2d package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-2d\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-04-10 10:59+0100\n" +"PO-Revision-Date: 2012-10-12 17:38+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Javanese \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 0;\n" +"X-Launchpad-Export-Date: 2012-10-13 04:57+0000\n" +"X-Generator: Launchpad (build 16137)\n" + +#: launcher/LauncherList.qml:82 +#, qt-format +msgid "%1 window opened" +msgid_plural "%1 windows opened" +msgstr[0] "" +msgstr[1] "" + +#: launcher/LauncherList.qml:85 +msgid "not running" +msgstr "" + +#: shell/hud/Hud.qml:211 +msgid "Type your Command" +msgstr "" + +#: shell/hud/Hud.qml:212 +msgid "Error: HUD service not connected" +msgstr "" + +#: places/FilterPane.qml:69 +msgid "Filter results" +msgstr "" + +#: places/FilterLoader.qml:36 +#, qt-format +msgid "Filter %1 active" +msgstr "" + +#: places/FilterLoader.qml:38 +#, qt-format +msgid "Filter %1 inactive" +msgstr "" + +#: places/FilterLoader.qml:90 +msgid "All" +msgstr "" + +#: places/SearchEntry.qml:176 +msgid "Search" +msgstr "" + +#: places/CategoryHeader.qml:36 +msgid "not expanded" +msgstr "" + +#: places/CategoryHeader.qml:36 +msgid "expanded" +msgstr "" + +#: places/CategoryHeader.qml:97 +#, qt-format +msgid "See %1 more result" +msgid_plural "See %1 more results" +msgstr[0] "" +msgstr[1] "" + +#: places/CategoryHeader.qml:99 +msgid "See fewer results" +msgstr "" + +#: places/Home.qml:80 +msgid "Shortcuts" +msgstr "" + +#: libunity-2d-private/src/launcherdevice.cpp:273 +msgid "Eject" +msgstr "" + +#: libunity-2d-private/src/launcherdevice.cpp:281 +msgid "Safely remove" +msgstr "" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Lock to Launcher" +msgstr "" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Unlock from Launcher" +msgstr "" + +#: libunity-2d-private/src/launcherapplication.cpp:910 +msgid "Quit" +msgstr "" + +#: libunity-2d-private/src/bfb.cpp:71 +msgid "Dash home" +msgstr "" + +#: libunity-2d-private/src/unity2dapplication.cpp:151 +msgid "QT_LAYOUT_DIRECTION" +msgstr "" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home" +msgstr "" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home screen" +msgstr "" + +#: libunity-2d-private/src/trash.cpp:128 +msgid "Trash" +msgstr "" + +#: libunity-2d-private/src/trash.cpp:208 +#, c-format, qt-plural-format +msgid "%n item in trash" +msgid_plural "%n items in trash" +msgstr[0] "" +msgstr[1] "" + +#: libunity-2d-private/src/trash.cpp:215 +msgid "Empty Trash" +msgstr "" + +#: libunity-2d-private/src/lens.cpp:348 +msgid "Sorry, there is nothing that matches your search." +msgstr "" + +#: libunity-2d-private/src/workspaces.cpp:73 +msgid "Workspaces" +msgstr "" + +#: panel/applets/appname/appnameapplet.cpp:368 +msgid "Ubuntu Desktop" +msgstr "" diff -Nru unity-2d-5.12.0/po/ka.po unity-2d-5.14.0/po/ka.po --- unity-2d-5.12.0/po/ka.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ka.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ნაკლების ჩვენება" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "მალსახმობები" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "ამოღება" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "გასვლა" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "სანაგვე ყუთი" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "სანაგვეში %n ელემენტია" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "სანაგვე ყუთის დაცარიელება" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "სამუშაო არეები" diff -Nru unity-2d-5.12.0/po/kk.po unity-2d-5.14.0/po/kk.po --- unity-2d-5.12.0/po/kk.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/kk.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,100 +15,98 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Команданы енгізіңіз" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Қате: қосымша панел қызметі (HUD) қосылмаған" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Нәтиже санын азайту" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Пернелердің үйлесімі" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Алып шығару" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Бағдарламаларды ашу панеліне түйреу" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Бағдарламаларды ашу панелінен алып тастау" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Шығу" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Қоқыс шелегі" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "Қоқыс шелегінде %n элемент бар" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Қоқыс шелегін тазарту" @@ -138,13 +136,13 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Жұмыс орындары" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Ubuntu жұмыс үстелі" #~ msgid "Listen to Music" #~ msgstr "Өлеңдерді тыңдау" diff -Nru unity-2d-5.12.0/po/km.po unity-2d-5.14.0/po/km.po --- unity-2d-5.12.0/po/km.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/km.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "កំហុស ៖ សេវាកម្ម HUD មិន​បាន​តភ្ជាប់​ទេ" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "ដោះសោ​ពី​កម្មវិធី​ចាប់ផ្ដើម" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "អេក្រង់​ដើម" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "សូម​ទោស មិនមាន​ពាក្យ​ដែល​អ្នក​ស្វែងរក​ទេ ។" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/kn.po unity-2d-5.14.0/po/kn.po --- unity-2d-5.12.0/po/kn.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/kn.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/ko.po unity-2d-5.14.0/po/ko.po --- unity-2d-5.12.0/po/ko.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ko.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "보다 적은 결과 보기" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "바로 가기" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "꺼내기" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "런처에서 고정 해제" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "종료" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "홈 화면" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "휴지통" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "휴지통에 %n개의 항목이 있습니다." -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "휴지통 비우기" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "작업 공간" diff -Nru unity-2d-5.12.0/po/ku.po unity-2d-5.14.0/po/ku.po --- unity-2d-5.12.0/po/ku.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ku.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Kêmtir encam bibîne" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Kurterê" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Avêtin" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Derketin" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Çop" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "hêmanek di çopê de" msgstr[1] "%n hêmanên di çopê de" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Çopê vala bike" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Kargeh" diff -Nru unity-2d-5.12.0/po/ky.po unity-2d-5.14.0/po/ky.po --- unity-2d-5.12.0/po/ky.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ky.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/lb.po unity-2d-5.14.0/po/lb.po --- unity-2d-5.12.0/po/lb.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/lb.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Manner Resultater gesinn" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Kierzelen" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Auswerfen" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Zoumaachen" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Poubelle" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n Objet an der Poubelle" msgstr[1] "%n Objeten an der Poubelle" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Poubelle eidel maachen" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Aarbechtsflächen" diff -Nru unity-2d-5.12.0/po/lt.po unity-2d-5.14.0/po/lt.po --- unity-2d-5.12.0/po/lt.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/lt.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && " "(n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,78 +38,76 @@ msgid "Error: HUD service not connected" msgstr "Klaida: HUD paslauga neprijungta" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Rodyti mažiau rezultatų" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Nuorodos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Išimti" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "Fiksuoti mygtukų juostoje" +msgstr "Palikti mygtukų juostoje" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "Atfiksuoti mygtukų juostoje" +msgstr "Nelaikyti mygtukų juostoje" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Baigti" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Programų paleidimas, failų atvėrimas" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "Pradžios ekranas" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Šiukšlinė" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +131,7 @@ msgstr[1] "%n elementai šiukšlinėje" msgstr[2] "%n elementų šiukšlinėje" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Ištuštinti šiukšlinę" @@ -141,7 +139,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Atsiprašome, nėra nieko, kas atitiktų paiešką." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Darbalaukiai" diff -Nru unity-2d-5.12.0/po/lv.po unity-2d-5.14.0/po/lv.po --- unity-2d-5.12.0/po/lv.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/lv.po 2012-10-30 12:59:17.000000000 +0000 @@ -17,17 +17,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -39,56 +39,56 @@ msgid "Error: HUD service not connected" msgstr "Kļūda: HUD serviss nav savienots" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Skatīt mazāk rezultātu" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Saīsnes" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Izgrūst" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -100,17 +100,15 @@ msgid "Unlock from Launcher" msgstr "Atslēgt no palaidēja" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Iziet" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -122,11 +120,11 @@ msgid "Home screen" msgstr "Mājas ekrāns" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Miskaste" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -134,7 +132,7 @@ msgstr[1] "%n vienības miskastē" msgstr[2] "%n vienību miskastē" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Iztukšot miskasti" @@ -142,7 +140,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Diemžēl neatradās nekas, kas atbilstu meklētajam." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Darbvirsmas" diff -Nru unity-2d-5.12.0/po/mg.po unity-2d-5.14.0/po/mg.po --- unity-2d-5.12.0/po/mg.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/mg.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "tsy mandeha" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Hanivana ny valiny" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Izy rehetra" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Karoka" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Hijery valiny vitsy kokoa" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Lala-manapaka" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Tsoahy" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Hiala" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Hiverina an-trano" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" @@ -120,25 +118,26 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Daba" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "Misy zavatra %n anaty daba" +msgstr[0] "" +msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "Handio ny daba" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Toeram-piasana" diff -Nru unity-2d-5.12.0/po/mhr.po unity-2d-5.14.0/po/mhr.po --- unity-2d-5.12.0/po/mhr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/mhr.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/mi.po unity-2d-5.14.0/po/mi.po --- unity-2d-5.12.0/po/mi.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-2d-5.14.0/po/mi.po 2012-10-30 12:59:17.000000000 +0000 @@ -0,0 +1,146 @@ +# Maori translation for unity-2d +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-2d package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-2d\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-04-10 10:59+0100\n" +"PO-Revision-Date: 2012-07-23 04:35+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Maori \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" + +#: launcher/LauncherList.qml:82 +#, qt-format +msgid "%1 window opened" +msgid_plural "%1 windows opened" +msgstr[0] "I huanga %1 matapihi" +msgstr[1] "I huanga %1 matapihi" + +#: launcher/LauncherList.qml:85 +msgid "not running" +msgstr "kāore e whakaterea ana" + +#: shell/hud/Hud.qml:211 +msgid "Type your Command" +msgstr "Pato tōu tono" + +#: shell/hud/Hud.qml:212 +msgid "Error: HUD service not connected" +msgstr "" + +#: places/FilterPane.qml:69 +msgid "Filter results" +msgstr "Tātari hua" + +#: places/FilterLoader.qml:36 +#, qt-format +msgid "Filter %1 active" +msgstr "Kakama te tātari %1" + +#: places/FilterLoader.qml:38 +#, qt-format +msgid "Filter %1 inactive" +msgstr "Makuku te tātari %1" + +#: places/FilterLoader.qml:90 +msgid "All" +msgstr "Katoa" + +#: places/SearchEntry.qml:176 +msgid "Search" +msgstr "Rapu" + +#: places/CategoryHeader.qml:36 +msgid "not expanded" +msgstr "ngahoro" + +#: places/CategoryHeader.qml:36 +msgid "expanded" +msgstr "roha" + +#: places/CategoryHeader.qml:97 +#, qt-format +msgid "See %1 more result" +msgid_plural "See %1 more results" +msgstr[0] "Titiro %1 hua nuku atu" +msgstr[1] "Titiro %1 hua nuku atu" + +#: places/CategoryHeader.qml:99 +msgid "See fewer results" +msgstr "Titiro hua iti iho" + +#: places/Home.qml:80 +msgid "Shortcuts" +msgstr "Pokatata" + +#: libunity-2d-private/src/launcherdevice.cpp:273 +msgid "Eject" +msgstr "Tuwha" + +#: libunity-2d-private/src/launcherdevice.cpp:281 +msgid "Safely remove" +msgstr "Tango ora" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Lock to Launcher" +msgstr "Rakaina ki Kaiwhakarewa" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Unlock from Launcher" +msgstr "Huakina ki Kaiwhakarewa" + +#: libunity-2d-private/src/launcherapplication.cpp:910 +msgid "Quit" +msgstr "Whakamutu" + +#: libunity-2d-private/src/bfb.cpp:71 +msgid "Dash home" +msgstr "Papatohu kāinga" + +#: libunity-2d-private/src/unity2dapplication.cpp:151 +msgid "QT_LAYOUT_DIRECTION" +msgstr "LTR" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home" +msgstr "Kāinga" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home screen" +msgstr "Mata kāinga" + +#: libunity-2d-private/src/trash.cpp:128 +msgid "Trash" +msgstr "Te Para" + +#: libunity-2d-private/src/trash.cpp:208 +#, c-format, qt-plural-format +msgid "%n item in trash" +msgid_plural "%n items in trash" +msgstr[0] "%n mea i roto i te para" +msgstr[1] "%n mea i roto i te para" + +#: libunity-2d-private/src/trash.cpp:215 +msgid "Empty Trash" +msgstr "Whakangita te para" + +#: libunity-2d-private/src/lens.cpp:348 +msgid "Sorry, there is nothing that matches your search." +msgstr "Kāore mea i te taurite ki nōu rapu." + +#: libunity-2d-private/src/workspaces.cpp:73 +msgid "Workspaces" +msgstr "Mokowāmahi" + +#: panel/applets/appname/appnameapplet.cpp:368 +msgid "Ubuntu Desktop" +msgstr "Papamahi Ubuntu" diff -Nru unity-2d-5.12.0/po/ml.po unity-2d-5.14.0/po/ml.po --- unity-2d-5.12.0/po/ml.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ml.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "കുറച്ച് ഫലങ്ങള്‍ മാത്രം കാണുക" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "ചുരുക്കവഴികള്‍" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "പുറന്തള്ളുക" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "നിര്‍ത്തിവയ്ക്കുക" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ചവറ്റുകുട്ട" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ചവറ്റുകുട്ട ശൂന്യമാക്കുക" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "പണിയറകള്‍" diff -Nru unity-2d-5.12.0/po/mr.po unity-2d-5.14.0/po/mr.po --- unity-2d-5.12.0/po/mr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/mr.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,19 +15,19 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "कार्यरत नाही" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,58 +37,57 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "सर्व" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "शोध" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "संकुचित" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "विस्तारित" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "आणखी %1 निकाल पाहा" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "इतके नको" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "शॉर्टकटस्" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "बाहेर काढा" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "सुरक्षित रित्या हटवा" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,51 +97,49 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "" +msgstr "बाहेर" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "डॅश मुखपृष्ठ" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "मुख्यपृष्ठ" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "मुख्यपृष्ठ" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "" +msgstr "केरटोपली" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n गोष्ट केरटोपलीत" +msgstr[1] "%n गोष्टी केरटोपलीत" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "" +msgstr "केरटोपली रिकामी करा" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "क्षमस्व, तुमच्या शोधाशी मिळते जुळते काहिच नाहीये." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "" +msgstr "कार्यस्थळे" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "उबुंटु मुख्यपृष्ठ" diff -Nru unity-2d-5.12.0/po/ms.po unity-2d-5.14.0/po/ms.po --- unity-2d-5.12.0/po/ms.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ms.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,26 +8,26 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 17:22+0000\n" +"PO-Revision-Date: 2012-08-22 14:57+0000\n" "Last-Translator: abuyop \n" "Language-Team: Malay \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 tetingkap dibuka" +msgstr[1] "%1 tetingkap dibuka" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "tidak dijalankan" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,58 +37,58 @@ msgid "Error: HUD service not connected" msgstr "Ralat: Perkhidmatan HUD tidak bersambung" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Penapis keputusan" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Penapis %1 aktif" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Penapis %1 tidak aktif" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Semua" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Gelintar" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "tidak dikembangkan" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "dikembang" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Lihat %1 lagi keputusan" +msgstr[1] "Lihat %1 lagi keputusan" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Lihat keputusan lebih ringkas" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Pintasan" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Lenting" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Tanggal secara selamat" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,19 +98,17 @@ msgid "Unlock from Launcher" msgstr "Tanggalkan dari Pelancar" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Keluar" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Rumah Pemuka" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "QT_LAYOUT_DIRECTION" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Skrin rumah" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Tong Sampah" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item didalam tong sampah" msgstr[1] "%n item didalam tong sampah" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Kosongkan Tong Sampah" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Maaf, tiada apa yang sepadan dengan gelintar anda." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Ruang kerja" diff -Nru unity-2d-5.12.0/po/my.po unity-2d-5.14.0/po/my.po --- unity-2d-5.12.0/po/my.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/my.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,24 +8,24 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 15:40+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2012-08-16 09:40+0000\n" +"Last-Translator: Pyae Sone \n" "Language-Team: Burmese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "not running" @@ -35,60 +35,60 @@ #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Error: HUD service မချိတ်ဆက်မိပါ။" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "အဖြေများကို ကန့်သတ်မည်။" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filter %1 active" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filter %1 inactive" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "အားလုံး" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "ရှာဖွေရန်" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "not expanded" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "expanded" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "ရလဒ် နည်းနည်းသာ ကြည့်မယ်" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "အတိုကောက်" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "ထုတ်ပါ။" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "သေချာစွာဖြုတ်မည်။" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Unlock from Launcher" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "" +msgstr "ထွက်" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Dash home" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,28 +118,27 @@ msgid "Home screen" msgstr "Home screen" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "" +msgstr "အမှိုက်ပုံး" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "ပစ္စည်း %n ခု အမှိုက်ပုံးထဲတွင် ရှိနေသည်" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "" +msgstr "အမှိုက်ပုံးရှင်းပါ" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "ဆောရီး၊ သင်၏ရှာဖွေမူနှင့်တူညီတာဘာမှမရှိပါ။" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "" +msgstr "အလုပ်နေရာ" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" diff -Nru unity-2d-5.12.0/po/nb.po unity-2d-5.14.0/po/nb.po --- unity-2d-5.12.0/po/nb.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/nb.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -35,58 +35,58 @@ #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Error: HUD-service ikke tilkoblet" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Vis færre resultater" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Snarveier" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Løs ut" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,40 +98,38 @@ msgid "Unlock from Launcher" msgstr "Lås opp fra oppstarter" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Avslutt" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "Hjem" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papirkurv" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n element i papirkurven" msgstr[1] "%n elementer i papirkurven" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tøm papirkurv" @@ -139,13 +137,13 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Arbeidsområder" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Ubuntu skrivebord" #~ msgid "Listen to Music" #~ msgstr "Lytt til musikk" diff -Nru unity-2d-5.12.0/po/nl.po unity-2d-5.14.0/po/nl.po --- unity-2d-5.12.0/po/nl.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/nl.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Fout: HUD-dienst is niet verbonden" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Minder resultaten weergeven" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Snelkoppelingen" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Uitwerpen" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Uit starter verwijderen" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Afsluiten" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Startscherm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Prullenbak" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "%n item in de prullenbak" -msgstr[1] "%n items in de prullenbak" +msgstr[0] "" +msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Prullenbak legen" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Er is niets dat met uw zoekopdracht overeenkomt." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Werkbladen" diff -Nru unity-2d-5.12.0/po/nn.po unity-2d-5.14.0/po/nn.po --- unity-2d-5.12.0/po/nn.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/nn.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Feil: HUD-tenesta er ikkje kopla til" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Syn færre resultat" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Snøggtastar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Løys ut" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Løys frå oppstartaren" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Avslutt" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Dashbord" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Heimeskjerm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papirkorg" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n element i papirkorga" msgstr[1] "%n element i papirkorga" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Tøm papirkorga" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Søket gav ingen treff." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Arbeidsområde" diff -Nru unity-2d-5.12.0/po/oc.po unity-2d-5.14.0/po/oc.po --- unity-2d-5.12.0/po/oc.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/oc.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Error : servici afichatge cap naut (HUD) pas connectat" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Veire mens de resultats" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Acorchis" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Ejectar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Levar de l'aviador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Quitar" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Ecran d’acuèlh" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Escobilhièr" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n element dins l'escobilhièr" msgstr[1] "%n elements dins l'escobilhièr" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Voidar l'escobilhièr" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "O planhèm, cap de resultat correspond pas a vòstra recèrca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espacis de trabalh" diff -Nru unity-2d-5.12.0/po/os.po unity-2d-5.14.0/po/os.po --- unity-2d-5.12.0/po/os.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-2d-5.14.0/po/os.po 2012-10-30 12:59:17.000000000 +0000 @@ -0,0 +1,146 @@ +# Ossetian translation for unity-2d +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-2d package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-2d\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-04-10 10:59+0100\n" +"PO-Revision-Date: 2012-05-14 00:11+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Ossetian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" + +#: launcher/LauncherList.qml:82 +#, qt-format +msgid "%1 window opened" +msgid_plural "%1 windows opened" +msgstr[0] "%1 рудзынг байгом ис" +msgstr[1] "%1 рудзынджы байгом сты" + +#: launcher/LauncherList.qml:85 +msgid "not running" +msgstr "хицӕн" + +#: shell/hud/Hud.qml:211 +msgid "Type your Command" +msgstr "Ныффыс дӕ командӕ" + +#: shell/hud/Hud.qml:212 +msgid "Error: HUD service not connected" +msgstr "Рӕдыд. HUD хицӕн у" + +#: places/FilterPane.qml:69 +msgid "Filter results" +msgstr "" + +#: places/FilterLoader.qml:36 +#, qt-format +msgid "Filter %1 active" +msgstr "" + +#: places/FilterLoader.qml:38 +#, qt-format +msgid "Filter %1 inactive" +msgstr "" + +#: places/FilterLoader.qml:90 +msgid "All" +msgstr "Иууылдӕр" + +#: places/SearchEntry.qml:176 +msgid "Search" +msgstr "Агурын" + +#: places/CategoryHeader.qml:36 +msgid "not expanded" +msgstr "" + +#: places/CategoryHeader.qml:36 +msgid "expanded" +msgstr "" + +#: places/CategoryHeader.qml:97 +#, qt-format +msgid "See %1 more result" +msgid_plural "See %1 more results" +msgstr[0] "Равдисын ноджы %1 фӕстиуӕг" +msgstr[1] "Равдисын ноджы %1 фӕстиуӕгы" + +#: places/CategoryHeader.qml:99 +msgid "See fewer results" +msgstr "Равдисын къаддӕр фӕстиуӕг" + +#: places/Home.qml:80 +msgid "Shortcuts" +msgstr "Ярлык" + +#: libunity-2d-private/src/launcherdevice.cpp:273 +msgid "Eject" +msgstr "Сласын" + +#: libunity-2d-private/src/launcherdevice.cpp:281 +msgid "Safely remove" +msgstr "Ӕдасӕй сласын" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Lock to Launcher" +msgstr "Бафидар кӕнын панелмӕ" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Unlock from Launcher" +msgstr "Суадзын панелӕй" + +#: libunity-2d-private/src/launcherapplication.cpp:910 +msgid "Quit" +msgstr "Рахизын" + +#: libunity-2d-private/src/bfb.cpp:71 +msgid "Dash home" +msgstr "Сайраг меню" + +#: libunity-2d-private/src/unity2dapplication.cpp:151 +msgid "QT_LAYOUT_DIRECTION" +msgstr "LTR" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home" +msgstr "Сӕйраг" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home screen" +msgstr "Сӕйраг экран" + +#: libunity-2d-private/src/trash.cpp:128 +msgid "Trash" +msgstr "Тӕскъ" + +#: libunity-2d-private/src/trash.cpp:208 +#, c-format, qt-plural-format +msgid "%n item in trash" +msgid_plural "%n items in trash" +msgstr[0] "%n цыдӕр аппӕрст" +msgstr[1] "%n цыдӕры ӕппӕрст" + +#: libunity-2d-private/src/trash.cpp:215 +msgid "Empty Trash" +msgstr "Сафтид кӕнын" + +#: libunity-2d-private/src/lens.cpp:348 +msgid "Sorry, there is nothing that matches your search." +msgstr "Хатыр, цы агуырдтай, уымӕй ницы разындис" + +#: libunity-2d-private/src/workspaces.cpp:73 +msgid "Workspaces" +msgstr "Куыстуӕттӕ" + +#: panel/applets/appname/appnameapplet.cpp:368 +msgid "Ubuntu Desktop" +msgstr "Ubuntu Куыстуат" diff -Nru unity-2d-5.12.0/po/pa.po unity-2d-5.14.0/po/pa.po --- unity-2d-5.12.0/po/pa.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/pa.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ਘੱਟ ਨਤੀਜੇ ਵੇਖੋ" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "ਸ਼ਾਰਟਕੱਟ" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "ਬਾਹਰ ਕੱਢੋ" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "ਬਾਹਰ ਜਾਓ" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ਰੱਦੀ" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "ਰੱਦੀ ਵਿੱਚ %n ਆਈਟਮ" msgstr[1] "ਰੱਦੀ ਵਿੱਚ %n ਆਈਟਮਾਂ" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ਰੱਦੀ ਖਾਲੀ ਕਰੋ" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "ਵਰਕਸਪੇਸ" diff -Nru unity-2d-5.12.0/po/pl.po unity-2d-5.14.0/po/pl.po --- unity-2d-5.12.0/po/pl.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/pl.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,18 +16,18 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " "|| n%100>=20) ? 1 : 2;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" "Language: pl\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "nie uruchomiony" @@ -39,56 +39,56 @@ msgid "Error: HUD service not connected" msgstr "Błąd: nie połączono z usługą HUD" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "Filtrowanie wyników" +msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Aktywny filtr %1" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Nieaktywny filtr %1" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Wszystko" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "Wyszukiwanie" +msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "nie rozwinięty" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "rozwinięty" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Wyświetl mniej wyników" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Skróty" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Wysuń" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Usuń bezpiecznie" @@ -100,17 +100,15 @@ msgid "Unlock from Launcher" msgstr "Usuń z panelu uruchamiania" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Zakończ" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "Panel główny" +msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -122,11 +120,11 @@ msgid "Home screen" msgstr "Ekran główny" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Kosz" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -134,7 +132,7 @@ msgstr[1] "%n elementy w koszu" msgstr[2] "%n elementów w koszu" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Opróżnij kosz" @@ -144,7 +142,7 @@ "Przepraszamy, nie odnaleziono żadnego elementu pasującego do wyszukiwanego " "wyrażenia." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Obszary robocze" diff -Nru unity-2d-5.12.0/po/ps.po unity-2d-5.14.0/po/ps.po --- unity-2d-5.12.0/po/ps.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ps.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n!=1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/pt.po unity-2d-5.14.0/po/pt.po --- unity-2d-5.12.0/po/pt.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/pt.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,137 +15,135 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "Introduza o seu comando" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "Erro: Serviço HUD não ligado" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ver menos resultados" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Atalhos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Ejectar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "Trancar no Lançador" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "Destrancar do Lançador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Sair" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "Pasta pessoal" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "Ecrã inicial" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Lixo" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item no lixo" msgstr[1] "%n itens no lixo" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Esvaziar Lixo" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Desculpe, não há nada que corresponda à sua busca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Áreas de Trabalho" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "Área de Trabalho Ubuntu" #~ msgid "Listen to Music" #~ msgstr "Ouvir Música" diff -Nru unity-2d-5.12.0/po/pt_BR.po unity-2d-5.14.0/po/pt_BR.po --- unity-2d-5.12.0/po/pt_BR.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/pt_BR.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 janela aberta" msgstr[1] "%1 janelas abertas" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "não está em execução" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Erro: Serviço HUD não conectado" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Filtrar resultados" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filtro %1 ativo" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filtro %1 inativo" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Tudo" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Pesquisar" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "não expandido" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "expandido" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Ver mais %1 resultado" msgstr[1] "Ver mais %1 resultados" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ver menos resultados" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Atalhos" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Ejetar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Remover com segurança" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Desbloquear do lançador" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Sair" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Painel inicial" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "LTR" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Tela inicial" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Lixeira" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n item na lixeira" msgstr[1] "%n itens na lixeira" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Esvaziar lixeira" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Desculpe, não há nada que coincida com sua busca." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Espaços de trabalho" diff -Nru unity-2d-5.12.0/po/ro.po unity-2d-5.14.0/po/ro.po --- unity-2d-5.12.0/po/ro.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ro.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1 ? 0: (((n % 100 > 19) || ((n % 100 " "== 0) && (n != 0))) ? 2: 1));\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Eroare: serviciul HUD nu este conectat" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Arată mai puține rezultate" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Scurtături" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Scoate" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Deblochează de pe lansator" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ieșire" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "Ecran principal" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Coș de gunoi" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +131,7 @@ msgstr[1] "%n elemente în coșul de gunoi" msgstr[2] "%n de elemente în coșul de gunoi" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Golește coșul de gunoi" @@ -141,7 +139,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Nu există nimic care să se potrivească criteriilor de căutare" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Spații de lucru" diff -Nru unity-2d-5.12.0/po/ru.po unity-2d-5.14.0/po/ru.po --- unity-2d-5.12.0/po/ru.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ru.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "Ошибка: служба дополнительной панели (HUD) не подключена" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Меньше результатов" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Комбинации клавиш" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Извлечь" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "Убрать с панели" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Выйти" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "Домашний экран" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Корзина" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +131,7 @@ msgstr[1] "%n объекта в корзине" msgstr[2] "%n объектов в корзине" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Очистить корзину" @@ -141,7 +139,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Извините, поиск не дал результатов." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Рабочие области" diff -Nru unity-2d-5.12.0/po/sd.po unity-2d-5.14.0/po/sd.po --- unity-2d-5.12.0/po/sd.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sd.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/se.po unity-2d-5.14.0/po/se.po --- unity-2d-5.12.0/po/se.po 1970-01-01 00:00:00.000000000 +0000 +++ unity-2d-5.14.0/po/se.po 2012-10-30 12:59:17.000000000 +0000 @@ -0,0 +1,146 @@ +# Northern Sami translation for unity-2d +# Copyright (c) 2012 Rosetta Contributors and Canonical Ltd 2012 +# This file is distributed under the same license as the unity-2d package. +# FIRST AUTHOR , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: unity-2d\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2012-04-10 10:59+0100\n" +"PO-Revision-Date: 2012-08-01 18:14+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Northern Sami \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" + +#: launcher/LauncherList.qml:82 +#, qt-format +msgid "%1 window opened" +msgid_plural "%1 windows opened" +msgstr[0] "" +msgstr[1] "" + +#: launcher/LauncherList.qml:85 +msgid "not running" +msgstr "" + +#: shell/hud/Hud.qml:211 +msgid "Type your Command" +msgstr "" + +#: shell/hud/Hud.qml:212 +msgid "Error: HUD service not connected" +msgstr "" + +#: places/FilterPane.qml:69 +msgid "Filter results" +msgstr "" + +#: places/FilterLoader.qml:36 +#, qt-format +msgid "Filter %1 active" +msgstr "" + +#: places/FilterLoader.qml:38 +#, qt-format +msgid "Filter %1 inactive" +msgstr "" + +#: places/FilterLoader.qml:90 +msgid "All" +msgstr "Buot" + +#: places/SearchEntry.qml:176 +msgid "Search" +msgstr "Oza" + +#: places/CategoryHeader.qml:36 +msgid "not expanded" +msgstr "" + +#: places/CategoryHeader.qml:36 +msgid "expanded" +msgstr "" + +#: places/CategoryHeader.qml:97 +#, qt-format +msgid "See %1 more result" +msgid_plural "See %1 more results" +msgstr[0] "" +msgstr[1] "" + +#: places/CategoryHeader.qml:99 +msgid "See fewer results" +msgstr "" + +#: places/Home.qml:80 +msgid "Shortcuts" +msgstr "Njuolggobálggis" + +#: libunity-2d-private/src/launcherdevice.cpp:273 +msgid "Eject" +msgstr "Bálkes olggos" + +#: libunity-2d-private/src/launcherdevice.cpp:281 +msgid "Safely remove" +msgstr "" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Lock to Launcher" +msgstr "" + +#: libunity-2d-private/src/application.cpp:1000 +msgid "Unlock from Launcher" +msgstr "" + +#: libunity-2d-private/src/launcherapplication.cpp:910 +msgid "Quit" +msgstr "Heaittit" + +#: libunity-2d-private/src/bfb.cpp:71 +msgid "Dash home" +msgstr "" + +#: libunity-2d-private/src/unity2dapplication.cpp:151 +msgid "QT_LAYOUT_DIRECTION" +msgstr "" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home" +msgstr "Ruoktot" + +#: libunity-2d-private/src/lenses.cpp:45 +msgid "Home screen" +msgstr "" + +#: libunity-2d-private/src/trash.cpp:128 +msgid "Trash" +msgstr "Ruskalihtti" + +#: libunity-2d-private/src/trash.cpp:208 +#, c-format, qt-plural-format +msgid "%n item in trash" +msgid_plural "%n items in trash" +msgstr[0] "" +msgstr[1] "" + +#: libunity-2d-private/src/trash.cpp:215 +msgid "Empty Trash" +msgstr "Gurre ruskalihti" + +#: libunity-2d-private/src/lens.cpp:348 +msgid "Sorry, there is nothing that matches your search." +msgstr "" + +#: libunity-2d-private/src/workspaces.cpp:73 +msgid "Workspaces" +msgstr "" + +#: panel/applets/appname/appnameapplet.cpp:368 +msgid "Ubuntu Desktop" +msgstr "Ubuntu Čállinbeavdi" diff -Nru unity-2d-5.12.0/po/shn.po unity-2d-5.14.0/po/shn.po --- unity-2d-5.12.0/po/shn.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/shn.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,19 +15,19 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n == 1) ? 0 : 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 ဝိၼ်းတူဝ်း ပိုတ်ႇဝႆ့ယဝ့်" +msgstr[1] "%1 ဝိၼ်းတူဝ်း ပိုတ်ႇဝႆ့ယဝ့်" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "ဢမ်ႇႁဵတ်းၵၢၼ်" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,58 +37,58 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "ၽွၼ်းလႆႈ ၸႅတ်ႈၽေ" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "ၸႅတ်ႈၽေ %1 တူင့်ၼိုင်" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "ၸႅတ်ႈၽေ %1 ဢမ်ႇတူင့်ၼိုင်" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "တၢင်းမူတ်း" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "သွၵ်ႈ" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "ဢမ်ႇၶႂၢၵ်ႈဝႆ့" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "ၶႂၢၵ်ႈဝႆ့" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "တူၺ်း ၽွၼ်းလႆႈ %1 ႁႂ်ႈႁၼ်ၼမ်" +msgstr[1] "တူၺ်း ၽွၼ်းလႆႈ %1 ႁႂ်ႈႁၼ်ၼမ်" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "" +msgstr "တူၺ်းၽွၼ်းလႆႈ တီႈၵႅပ်ႈ" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "" +msgstr "လၢႆးဝႆး" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "" +msgstr "ဢဝ်ဢွၵ်ႇ" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "ထွၼ်ဢွၵ်ႇလႆႈလီငၢမ်းယဝ့်" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,19 +98,17 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "" +msgstr "ဢိုတ်း" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "ၽိုၼ်ငဝ်ႈ" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "QT_LAYOUT_DIRECTION" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" @@ -120,29 +118,59 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "" +msgstr "ၵူၺ်ယုၵ်းယၵ်း" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%n ၸိူဝ်းမီးၼႂ်း ၵူၺ်ယုၵ်းယၵ်း" +msgstr[1] "%n ၸိူဝ်းမီးၼႂ်း ၵူၺ်ယုၵ်းယၵ်း" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "" +msgstr "ၽဵဝ်ႈပႅတ်ႈ ၵူၺ်ယုၵ်းယၵ်း" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "" +msgstr "ဢွင်ႈႁဵတ်းၵၢၼ်" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" msgstr "" + +#~ msgid "Keep in launcher" +#~ msgstr "ၼဵပ်းသႂ်ႇဝႆ့တီႈ လၢၼ်ႇၶျိူဝ်ႇ" + +#~ msgid "Remove from launcher" +#~ msgstr "ထွၼ်ဢွၵ်ႇပႅတ်ႈတီႈ လၢၼ်ႇၶျိူဝ်ႇ" + +#~ msgid "Media Apps" +#~ msgstr "ဢႅပ့်တႃႇသိုဝ်ႇၶၢဝ်ႇ" + +#~ msgid "Internet Apps" +#~ msgstr "ဢႅပ့်တႃႇဢိၼ်ႇထိူဝ်ႇၼႅတ့်" + +#~ msgid "More Apps" +#~ msgstr "ဢႅပ့်တၢင်ႇၸိူဝ်း" + +#~ msgid "Find Files" +#~ msgstr "ႁႃသွႆ့" + +#~ msgid "Browse the Web" +#~ msgstr "ပိုတ်ႇၼႃႇလိၵ်ႈဝႅပ့်" + +#~ msgid "View Photos" +#~ msgstr "တူၺ်းၶႅပ်းႁၢင်ႈ" + +#~ msgid "Check Email" +#~ msgstr "ၵူတ်ႇတူၺ်းမေးလ်" + +#~ msgid "Listen to Music" +#~ msgstr "ထွမ်ႇၽဵင်းၵႂၢမ်း" diff -Nru unity-2d-5.12.0/po/si.po unity-2d-5.14.0/po/si.po --- unity-2d-5.12.0/po/si.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/si.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,144 +8,142 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 16:51+0000\n" -"Last-Translator: Thambaru Wijesekara \n" +"PO-Revision-Date: 2012-05-09 05:11+0000\n" +"Last-Translator: පසිඳු කාවින්ද \n" "Language-Team: Sinhalese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "කවුළු %1 ක් විවෘත වී ඇත" +msgstr[1] "කවුළු %1 ක් විවෘත වී ඇත" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "ධාවනය නොවේ" #: shell/hud/Hud.qml:211 msgid "Type your Command" -msgstr "" +msgstr "ඔබේ විධානය යතුරු ලියනය කරන්න" #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "" +msgstr "දෝෂය: HUD සේවාව සම්බන්ධ කර නොමැත" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "පෙරහන් ප්‍රතිඑල" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "%1 පෙරහන සක්‍රීයයි" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "%1 පෙරහන අක්‍රීයයි" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "සියල්ල" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "සොයන්න" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "නොවිහිදුනු" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "විහිදුනු" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "තව ප්‍රතිඑල %1 ක් නරඹන්න" +msgstr[1] "තව ප්‍රතිඑල %1 ක් නරඹන්න" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ප්‍රතිඵළ කීපයක් බලන්න" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "කෙටි මං" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "බැහැර කරන්න" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "ආරක්ෂාකාරීව ඉවතලෑම" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" -msgstr "" +msgstr "දියත්කරණය වෙත අගුළුලන්න" #: libunity-2d-private/src/application.cpp:1000 msgid "Unlock from Launcher" -msgstr "" +msgstr "දියත්කරණයෙන් අගුළු අරින්න" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "ඉවත් වීම" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "තේජස් නිවස" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "QT_LAYOUT_DIRECTION" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "නිවස" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "නිවෙස් තිරය" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ඉවතලන බදුන" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "ඉවතලන බදුන තුල %n අයිතමයක් ඇත" msgstr[1] "ඉවතලන බදුන තුල අයිතම %n ක් ඇත" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ඉවතලන බහලුම හිස් කරන්න" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "කණගාටුයි, ඔබේ සෙවුමට ගැලපෙන කිසිවක් නොමැත." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "කර්යාවකාශ" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "උබුන්ටු වැඩතලය" #~ msgid "Find Files" #~ msgstr "ගොනු සොයන්න" diff -Nru unity-2d-5.12.0/po/sk.po unity-2d-5.14.0/po/sk.po --- unity-2d-5.12.0/po/sk.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sk.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 1 : (n>=2 && n<=4) ? 2 : 0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Chyba: služba HUD nie je pripojená" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Ukázať menej výsledkov" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Odkazy" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Vysunúť" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Nenechávať v Spúšťači" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Ukončiť" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,27 +118,26 @@ msgid "Home screen" msgstr "Domáca obrazovka" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Kôš" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "%n položiek v Koši" -msgstr[1] "%n položka v Koši" -msgstr[2] "%n položky v Koši" +msgstr[0] "" +msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "Vyprázdniť Kôš" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "Prepáčte, nenašlo sa nič, čo by vyhovovalo vášmu vyhľadávaniu." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Pracovné plochy" diff -Nru unity-2d-5.12.0/po/sl.po unity-2d-5.14.0/po/sl.po --- unity-2d-5.12.0/po/sl.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sl.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 1 : n%100==2 ? 2 : n%100==3 || " "n%100==4 ? 3 : 0);\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,37 +38,37 @@ msgid "Error: HUD service not connected" msgstr "Napaka: storitev HUD ni povezana" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" @@ -77,19 +77,19 @@ msgstr[2] "Ogled %1 dodatnih rezultatov" msgstr[3] "Ogled %1 dodatnih rezultatov" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Oglejte si manj zadetkov" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Bližnjice" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Izvrzi" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -101,17 +101,15 @@ msgid "Unlock from Launcher" msgstr "Odkleni z zaganjalnika" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Končaj" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -123,11 +121,11 @@ msgid "Home screen" msgstr "Domači zaslon" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Smeti" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -136,7 +134,7 @@ msgstr[2] "%n predmeta v smeteh" msgstr[3] "%n predmeti v smeteh" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Izprazni smeti" @@ -144,7 +142,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Nič se ne ujema z vašim iskalnim nizom." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Delovne površine" diff -Nru unity-2d-5.12.0/po/sq.po unity-2d-5.14.0/po/sq.po --- unity-2d-5.12.0/po/sq.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sq.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 dritare e hapur" msgstr[1] "%1 dritare të hapura" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "Nuk është në funksionim" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Gabim: Shërbimi HUD nuk është lidhur" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Rezultatet e filtrit" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "Filtri %1 aktiv" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "Filtri %1 joaktiv" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Gjithçka" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Kërko" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "nuk është zgjeruar" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "i zgjeruar" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "Shiko %1 rezultat më tepër" msgstr[1] "Shiko %1 rezultate më tepër" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Shiko më pak rezultate" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Shkurtore" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Nxirre" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Hiqe në mënyrë të sigurtë" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Zhbllokoje nga Nisësi" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Largohu" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "QT_LAYOUT_DIRECTION" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Ekrani i shtëpisë" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Koshi" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n send në kosh" msgstr[1] "%n sende në kosh" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Zbraze Koshin" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Më vjen keq, nuk ka asgjë që përputhet me kërkimin tuaj." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Hapësirat e Punës" diff -Nru unity-2d-5.12.0/po/sr.po unity-2d-5.14.0/po/sr.po --- unity-2d-5.12.0/po/sr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sr.po 2012-10-30 12:59:17.000000000 +0000 @@ -16,17 +16,17 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -38,56 +38,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Погледајте мање резултата" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Пречице" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Избаци" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -99,17 +99,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Напусти" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -121,11 +119,11 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Корпа" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,15 +131,15 @@ msgstr[1] "%n ставке у смећу" msgstr[2] "%n ставки у смећу" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Испразни корпу" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." -msgstr "" +msgstr "Нажалост, претрага није нашла икакво подударање." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Радни простори" diff -Nru unity-2d-5.12.0/po/sv.po unity-2d-5.14.0/po/sv.po --- unity-2d-5.12.0/po/sv.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/sv.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Fel: HUD-tjänsten är inte ansluten" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Visa färre resultat" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Genvägar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Mata ut" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Lås upp från programstartaren" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Avsluta" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Hemskärm" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Papperskorg" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n objekt i papperskorgen" msgstr[1] "%n objekt i papperskorgen" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Töm papperskorgen" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Tyvärr, det finns ingenting som matchar din sökning." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Arbetsytor" diff -Nru unity-2d-5.12.0/po/ta.po unity-2d-5.14.0/po/ta.po --- unity-2d-5.12.0/po/ta.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ta.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,26 +8,26 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 17:52+0000\n" -"Last-Translator: Mel C \n" +"PO-Revision-Date: 2012-05-31 03:40+0000\n" +"Last-Translator: Barneedhar \n" "Language-Team: Tamil \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "%1 சாளரம் திறந்துள்ளது" +msgstr[1] "%1 சாளரங்கள் திறந்துள்ளன" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "இயங்கவில்லை" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,58 +37,58 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "முடிவுகளை வடிகட்டு" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "%1 வடிப்பி செயலில் உள்ளது" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "%1 வடிப்பி செயலில் இல்லை" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "அனைத்தும்" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "தேடு" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "விரிவாக்கப்படவில்லை" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "விரிவாக்கப்பட்டது" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "மேலும் %1 முடிவைப் பார்க்கவும்" +msgstr[1] "மேலும் %1 முடிவுகளைப் பார்க்கவும்" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "குறைந்த பட்ச தேடல் விவரங்கள்" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "சுருக்குவழிகள்" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "வெளித்தள்ளு" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "பாதுகாப்பாக நீக்கவும்" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "துவக்கியிலிருந்து விடுவி" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "மூடு" +msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "முதற்முகப்பு (Dash home)" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,26 +118,26 @@ msgid "Home screen" msgstr "முகப்புத் திரை" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "குப்பைதொட்டி" +msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" -msgstr[0] "%n பொருள் குப்பைதொட்டியில் உள்ளது" -msgstr[1] "%n பொருட்கள் குப்பைதொட்டியில் உள்ளது" +msgstr[0] "" +msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "குப்பையை காலி செய்" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "பணியிடங்கள்" diff -Nru unity-2d-5.12.0/po/te.po unity-2d-5.14.0/po/te.po --- unity-2d-5.12.0/po/te.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/te.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "తక్కువ ఫలితాలు చూడు" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "దగ్గరిదారులు" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "తోసివేయి" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,40 +98,38 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "నిష్క్రమించు" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "అనువర్తనాల ఇల్లు" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" -msgstr "" +msgstr "నివాసము" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home screen" -msgstr "" +msgstr "నివాస తెర" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "చెత్తబుట్ట" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "చెత్తబుట్టలో %n అంశం" msgstr[1] "చెత్తబుట్టలో %n అంశాలు" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "చెత్తబుట్టని ఖాళీచేయి" @@ -139,13 +137,13 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "కార్యక్షేత్రాలు" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" -msgstr "" +msgstr "ఉబుంటు డెస్క్‍టాప్" #~ msgid "Listen to Music" #~ msgstr "సంగీతం విను" diff -Nru unity-2d-5.12.0/po/th.po unity-2d-5.14.0/po/th.po --- unity-2d-5.12.0/po/th.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/th.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ดูผลลัพธ์น้อยลง" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "ปุ่มลัด" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "ดีดออก" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "ออก" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ถังขยะ" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n รายการในถังขยะ" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "เทขยะ" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "พื้นที่ทำงาน" diff -Nru unity-2d-5.12.0/po/ti.po unity-2d-5.14.0/po/ti.po --- unity-2d-5.12.0/po/ti.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ti.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/tr.po unity-2d-5.14.0/po/tr.po --- unity-2d-5.12.0/po/tr.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/tr.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,16 +15,16 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "%1 pencere açıldı" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "çalışmıyor" @@ -34,57 +34,57 @@ #: shell/hud/Hud.qml:212 msgid "Error: HUD service not connected" -msgstr "Hata: Başüstü Göstergesi hizmeti bağlı değil" +msgstr "Hata: Akıllı Seçke hizmeti bağlı değil" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "Sonuçları süz" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "%1 süzgeci etkin" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "%1 süzgeci etkin değil" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "Tümü" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "Ara" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "genişletilmemiş" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "genişletilmiş" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "%1 sonuç daha gör" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Daha az sonuç gör" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Kısayollar" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Çıkar" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "Güvenle kaldır" @@ -96,17 +96,15 @@ msgid "Unlock from Launcher" msgstr "Başlatıcıdan Ayır" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Çık" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Ana Seçke" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -118,17 +116,17 @@ msgid "Home screen" msgstr "Başlangıç ekranı" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" -msgstr "Çöp Kutusu" +msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "Çöpte %n öğe var" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Çöpü Boşalt" @@ -136,7 +134,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Üzgünüz, aramanızla eşleşen hiçbir şey yok." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Çalışma Alanları" diff -Nru unity-2d-5.12.0/po/tt.po unity-2d-5.14.0/po/tt.po --- unity-2d-5.12.0/po/tt.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/tt.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Азрак нәтиҗәләр" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Ярлыклар" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Чыгару" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Чыгу" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Чүп савыты" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n җисем чүп савынтында" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Чүп савытын чистарту" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Эш өлкәләре" diff -Nru unity-2d-5.12.0/po/ug.po unity-2d-5.14.0/po/ug.po --- unity-2d-5.12.0/po/ug.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ug.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "خاتالىق: HUD مۇلازىمىتى باغلانمىدى" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "يېيىلغان" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "ئازراق نەتىجىنى كۆرۈش" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "تېزلەتمىلەر" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "چىقار" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "بىخەتەر چىقار" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "ئىجراچىدىن چىقار" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" -msgstr "ئاخىرلاشتۇر" +msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "باش تاختا ماكانى" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "ماكان ئېكران" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "ئەخلەتخانا" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "ئەخلەت ساندۇقىدا %n دانە نەرسە بار" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "ئەخلەتخانىنى تازىلا" @@ -138,9 +136,9 @@ msgid "Sorry, there is nothing that matches your search." msgstr "كەچۈرۈڭ، ئىزدىگىنىڭىزگە ماس نەتىجە تېپىلمىدى." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" -msgstr "خىزمەت رايونلىرى" +msgstr "" #: panel/applets/appname/appnameapplet.cpp:368 msgid "Ubuntu Desktop" diff -Nru unity-2d-5.12.0/po/uk.po unity-2d-5.14.0/po/uk.po --- unity-2d-5.12.0/po/uk.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/uk.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,7 +8,7 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 16:52+0000\n" +"PO-Revision-Date: 2012-06-02 14:18+0000\n" "Last-Translator: Yuri Chornoivan \n" "Language-Team: Ukrainian \n" "MIME-Version: 1.0\n" @@ -16,19 +16,20 @@ "Content-Transfer-Encoding: 8bit\n" "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" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "відкрито %1 вікно" +msgstr[1] "відкрито %1 вікна" +msgstr[2] "відкрито %1 вікон" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "не запущено" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -38,58 +39,59 @@ msgid "Error: HUD service not connected" msgstr "Помилка: не вдалося встановити з’єднання зі службою HUD" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" -msgstr "" +msgstr "Фільтрування результатів" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" -msgstr "" +msgstr "Задіяно фільтр %1" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" -msgstr "" +msgstr "Не задіяно фільтр %1" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" -msgstr "" +msgstr "Всі" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" -msgstr "" +msgstr "Шукати" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" -msgstr "" +msgstr "не розгорнуто" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" -msgstr "" +msgstr "розгорнуто" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" -msgstr[0] "" -msgstr[1] "" +msgstr[0] "Переглянути ще %1 результат" +msgstr[1] "Переглянути ще %1 результати" +msgstr[2] "Переглянути ще %1 результатів" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Показати скорочений список" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Скорочення" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" -msgstr "Виштовхнути" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" -msgstr "" +msgstr "Безпечно вилучити" #: libunity-2d-private/src/application.cpp:1000 msgid "Lock to Launcher" @@ -99,19 +101,17 @@ msgid "Unlock from Launcher" msgstr "Від’єднати від панелі запуску" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Вийти" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" -msgstr "" +msgstr "Домівка панелі" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" -msgstr "" +msgstr "LTR" #: libunity-2d-private/src/lenses.cpp:45 msgid "Home" @@ -121,11 +121,11 @@ msgid "Home screen" msgstr "Екран домівки" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Смітник" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" @@ -133,7 +133,7 @@ msgstr[1] "У смітнику %n об’єкти" msgstr[2] "У смітнику %n об’єктів" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "Спорожнити смітник" @@ -141,7 +141,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Вибачте, для вказаних вами ключових слів нічого не знайдено." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Робочі області" diff -Nru unity-2d-5.12.0/po/ur.po unity-2d-5.14.0/po/ur.po --- unity-2d-5.12.0/po/ur.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/ur.po 2012-10-30 12:59:17.000000000 +0000 @@ -8,26 +8,26 @@ "Project-Id-Version: unity-2d\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-04-10 10:59+0100\n" -"PO-Revision-Date: 2012-03-08 17:56+0000\n" -"Last-Translator: Shehzad Ashiq Ali \n" +"PO-Revision-Date: 2012-08-09 16:17+0000\n" +"Last-Translator: Sikander Khan \n" "Language-Team: Urdu \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" -msgstr "" +msgstr "نہیں چل رہا" #: shell/hud/Hud.qml:211 msgid "Type your Command" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "دیکھیی کم نتایج" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "حوالے" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "نکالیں" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "ترک کریں" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "کوڑا" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "چیژ کوڑھدان میی %n" msgstr[1] "چیژیی کوڑھدان میی %n" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "کوڑھدان خالی کریں" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "کام کی جگہ" diff -Nru unity-2d-5.12.0/po/uz.po unity-2d-5.14.0/po/uz.po --- unity-2d-5.12.0/po/uz.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/uz.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Хато: HUD хизмати уланмаган" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Ишга туширгичга қулфлашни бекор қилиш" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "Уй экрани" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "Кечирасиз. излаётганингизга мос ҳеч нима топилмади." -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/vec.po unity-2d-5.14.0/po/vec.po --- unity-2d-5.12.0/po/vec.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/vec.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/vi.po unity-2d-5.14.0/po/vi.po --- unity-2d-5.12.0/po/vi.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/vi.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "Lỗi: dịch vụ HUD chưa được kết nối" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "Xem ít kết quả hơn" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "Đường tắt" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "Đẩy ra" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "Tháo khỏi Thanh khởi chạy" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "Thoát" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,25 +118,25 @@ msgid "Home screen" msgstr "Màn hình đầu" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "Thùng rác" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "%n mục trong sọt rác" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" -msgstr "Đổ Thùng rác" +msgstr "" #: libunity-2d-private/src/lens.cpp:348 msgid "Sorry, there is nothing that matches your search." msgstr "Rất tiếc, không có gì phù hợp với cái bạn tìm" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "Vùng làm việc" diff -Nru unity-2d-5.12.0/po/wae.po unity-2d-5.14.0/po/wae.po --- unity-2d-5.12.0/po/wae.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/wae.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,18 +118,18 @@ msgid "Home screen" msgstr "" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "" msgstr[1] "" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "" @@ -139,7 +137,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "" diff -Nru unity-2d-5.12.0/po/zh_CN.po unity-2d-5.14.0/po/zh_CN.po --- unity-2d-5.12.0/po/zh_CN.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/zh_CN.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "错误:未连接 HUD 服务" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" -msgstr "显示较少结果" +msgstr "" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" -msgstr "快捷方式" +msgstr "" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "弹出" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "安全移除" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "从启动器解锁" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "退出" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "Dash 主页" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "主页" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "回收站" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "回收站中有 %n 项" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "清空回收站" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "对不起,没有找到匹配的结果" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "工作区" diff -Nru unity-2d-5.12.0/po/zh_HK.po unity-2d-5.14.0/po/zh_HK.po --- unity-2d-5.12.0/po/zh_HK.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/zh_HK.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "錯誤:HUD 服務尚未連接" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "查看較少結果" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "捷徑" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "退出" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "從啟動器解除鎖定" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "結束" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "主目錄畫面" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "回收筒" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "回收筒中有 %n 個項目" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "清理回收筒" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "很抱歉,沒有符合您搜尋的結果。" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "工作區" diff -Nru unity-2d-5.12.0/po/zh_TW.po unity-2d-5.14.0/po/zh_TW.po --- unity-2d-5.12.0/po/zh_TW.po 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/po/zh_TW.po 2012-10-30 12:59:17.000000000 +0000 @@ -15,17 +15,17 @@ "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Launchpad-Export-Date: 2012-04-24 05:26+0000\n" -"X-Generator: Launchpad (build 15135)\n" +"X-Launchpad-Export-Date: 2012-10-03 05:40+0000\n" +"X-Generator: Launchpad (build 16061)\n" -#: shell/launcher/LauncherList.qml:90 +#: launcher/LauncherList.qml:82 #, qt-format msgid "%1 window opened" msgid_plural "%1 windows opened" msgstr[0] "" msgstr[1] "" -#: shell/launcher/LauncherList.qml:93 +#: launcher/LauncherList.qml:85 msgid "not running" msgstr "" @@ -37,56 +37,56 @@ msgid "Error: HUD service not connected" msgstr "錯誤:HUD 服務尚未連接" -#: shell/dash/FilterPane.qml:71 +#: places/FilterPane.qml:69 msgid "Filter results" msgstr "" -#: shell/dash/FilterLoader.qml:38 +#: places/FilterLoader.qml:36 #, qt-format msgid "Filter %1 active" msgstr "" -#: shell/dash/FilterLoader.qml:40 +#: places/FilterLoader.qml:38 #, qt-format msgid "Filter %1 inactive" msgstr "" -#: shell/dash/FilterLoader.qml:86 shell/dash/FilterLoader.qml:92 +#: places/FilterLoader.qml:90 msgid "All" msgstr "" -#: shell/dash/Dash.qml:338 libunity-2d-private/src/lenses.cpp:45 +#: places/SearchEntry.qml:176 msgid "Search" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "not expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:37 +#: places/CategoryHeader.qml:36 msgid "expanded" msgstr "" -#: shell/dash/CategoryHeader.qml:93 +#: places/CategoryHeader.qml:97 #, qt-format msgid "See %1 more result" msgid_plural "See %1 more results" msgstr[0] "" msgstr[1] "" -#: shell/dash/CategoryHeader.qml:95 +#: places/CategoryHeader.qml:99 msgid "See fewer results" msgstr "查看較少結果" -#: shell/dash/Home.qml:82 +#: places/Home.qml:80 msgid "Shortcuts" msgstr "捷徑" -#: libunity-2d-private/src/launcherdevice.cpp:279 +#: libunity-2d-private/src/launcherdevice.cpp:273 msgid "Eject" msgstr "退出" -#: libunity-2d-private/src/launcherdevice.cpp:287 +#: libunity-2d-private/src/launcherdevice.cpp:281 msgid "Safely remove" msgstr "" @@ -98,17 +98,15 @@ msgid "Unlock from Launcher" msgstr "從啟動器解除鎖定" -#: libunity-2d-private/src/application.cpp:1007 +#: libunity-2d-private/src/launcherapplication.cpp:910 msgid "Quit" msgstr "結束" -#: libunity-2d-private/src/bfb.cpp:69 +#: libunity-2d-private/src/bfb.cpp:71 msgid "Dash home" msgstr "" -#. TRANSLATORS: This refers to the direction of text -#. (left-to-right or right-to-left): possible values are LTR or RTL -#: libunity-2d-private/src/unity2dapplication.cpp:173 +#: libunity-2d-private/src/unity2dapplication.cpp:151 msgid "QT_LAYOUT_DIRECTION" msgstr "" @@ -120,17 +118,17 @@ msgid "Home screen" msgstr "主目錄畫面" -#: libunity-2d-private/src/trash.cpp:134 +#: libunity-2d-private/src/trash.cpp:128 msgid "Trash" msgstr "回收筒" -#: libunity-2d-private/src/trash.cpp:214 +#: libunity-2d-private/src/trash.cpp:208 #, c-format, qt-plural-format msgid "%n item in trash" msgid_plural "%n items in trash" msgstr[0] "回收筒中有 %n 個項目" -#: libunity-2d-private/src/trash.cpp:221 +#: libunity-2d-private/src/trash.cpp:215 msgid "Empty Trash" msgstr "清理回收筒" @@ -138,7 +136,7 @@ msgid "Sorry, there is nothing that matches your search." msgstr "很抱歉,沒有符合您搜尋的結果。" -#: libunity-2d-private/src/workspaces.cpp:79 +#: libunity-2d-private/src/workspaces.cpp:73 msgid "Workspaces" msgstr "工作區" diff -Nru unity-2d-5.12.0/shell/Shell.qml unity-2d-5.14.0/shell/Shell.qml --- unity-2d-5.12.0/shell/Shell.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/Shell.qml 2012-05-30 09:13:41.000000000 +0000 @@ -293,7 +293,7 @@ // This enableSticky logic has a 'bug' int RTL where the right most screen will still have enableSticky // set to true, but it won't cause any issue other than consuming a few bytes of mememory and calculating the // rightmost x is probably more expensive and error prone than just enabling the extra barrier - property bool enableSticky: unity2dConfiguration.stickyEdges && declarativeView.screen.geometry.x > 0 + property bool enableSticky: unity2dConfiguration.stickyEdges && (declarativeView.screen.geometry.x > 0 || Utils.isRightToLeft()) id: leftBarrier triggerDirection: Utils.isLeftToRight() ? PointerBarrier.TriggerFromRight : PointerBarrier.TriggerFromLeft diff -Nru unity-2d-5.12.0/shell/app/shelldeclarativeview.cpp unity-2d-5.14.0/shell/app/shelldeclarativeview.cpp --- unity-2d-5.12.0/shell/app/shelldeclarativeview.cpp 2012-04-03 09:12:30.000000000 +0000 +++ unity-2d-5.14.0/shell/app/shelldeclarativeview.cpp 2012-05-30 09:13:41.000000000 +0000 @@ -205,6 +205,16 @@ } } +void ShellDeclarativeView::dragLeaveEvent(QDragLeaveEvent *event) +{ + Unity2DDeclarativeView::dragLeaveEvent(event); + + if (m_monitoredAreaContainsMouse) { + m_monitoredAreaContainsMouse = false; + Q_EMIT monitoredAreaContainsMouseChanged(); + } +} + /* When another window calls XGrabPointer we receive a LeaveNotify event but QT doesn't emit a corresponding leaveEvent. Therefore we have to intercept it ourselves from X11 and act accordingly. diff -Nru unity-2d-5.12.0/shell/app/shelldeclarativeview.h unity-2d-5.14.0/shell/app/shelldeclarativeview.h --- unity-2d-5.12.0/shell/app/shelldeclarativeview.h 2012-03-15 10:39:14.000000000 +0000 +++ unity-2d-5.14.0/shell/app/shelldeclarativeview.h 2012-05-30 09:13:41.000000000 +0000 @@ -77,6 +77,7 @@ virtual void mouseMoveEvent(QMouseEvent *event); virtual void leaveEvent(QEvent *event); virtual void resizeEvent(QResizeEvent *event); + virtual void dragLeaveEvent(QDragLeaveEvent *event); private Q_SLOTS: void updateShellPosition(); diff -Nru unity-2d-5.12.0/shell/app/shellmanager.cpp unity-2d-5.14.0/shell/app/shellmanager.cpp --- unity-2d-5.12.0/shell/app/shellmanager.cpp 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/app/shellmanager.cpp 2012-05-30 16:01:54.000000000 +0000 @@ -62,6 +62,7 @@ static const char* HUD_SHORTCUT_KEY = "/apps/compiz-1/plugins/unityshell/screen0/options/show_hud"; GOBJECT_CALLBACK1(activeWorkspaceChangedCB, "onActiveWorkspaceChanged"); +GOBJECT_CALLBACK0(iconThemeChangedCB, "onIconThemeChanged"); struct ShellManagerPrivate { @@ -334,11 +335,13 @@ updateDashAlwaysFullScreen(); g_signal_connect(G_OBJECT(wnck_screen_get_default()), "active_workspace_changed", G_CALLBACK(activeWorkspaceChangedCB), this); + g_signal_connect(G_OBJECT(gtk_icon_theme_get_default()), "changed", G_CALLBACK(iconThemeChangedCB), this); } ShellManager::~ShellManager() { g_signal_handlers_disconnect_by_func(G_OBJECT(wnck_screen_get_default()), gpointer(activeWorkspaceChangedCB), this); + g_signal_handlers_disconnect_by_func(G_OBJECT(gtk_icon_theme_get_default()), gpointer(iconThemeChangedCB), this); qDeleteAll(d->m_viewList); delete d; @@ -492,6 +495,11 @@ Q_EMIT lastFocusedWindowChanged(d->m_last_focused_window); } +void ShellManager::onIconThemeChanged() +{ + Q_EMIT iconThemeChanged(); +} + void ShellManager::onHudActivationShortcutChanged() { // TODO It might make sense to abstract this logic diff -Nru unity-2d-5.12.0/shell/app/shellmanager.h unity-2d-5.14.0/shell/app/shellmanager.h --- unity-2d-5.12.0/shell/app/shellmanager.h 2012-04-03 09:12:30.000000000 +0000 +++ unity-2d-5.14.0/shell/app/shellmanager.h 2012-05-30 16:01:54.000000000 +0000 @@ -101,6 +101,7 @@ void dashActivateHome(); void dashActivateLens(const QString& lensId); void toggleHud(); + void iconThemeChanged(); private Q_SLOTS: void onScreenCountChanged(int); @@ -119,6 +120,8 @@ void onHudActivationShortcutChanged(); + void onIconThemeChanged(); + private: Q_DISABLE_COPY(ShellManager) ShellManagerPrivate * const d; diff -Nru unity-2d-5.12.0/shell/common/IconTile.qml unity-2d-5.14.0/shell/common/IconTile.qml --- unity-2d-5.12.0/shell/common/IconTile.qml 2012-04-12 09:01:45.000000000 +0000 +++ unity-2d-5.14.0/shell/common/IconTile.qml 2012-05-30 16:01:54.000000000 +0000 @@ -70,6 +70,7 @@ sourceSize.width: 48 sourceSize.height: 48 + cache: false /* Whenever one of the parameters used in calculating the background color of the icon changes, recalculate its value */ diff -Nru unity-2d-5.12.0/shell/common/SearchEntry.qml unity-2d-5.14.0/shell/common/SearchEntry.qml --- unity-2d-5.12.0/shell/common/SearchEntry.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/common/SearchEntry.qml 2012-05-30 09:13:41.000000000 +0000 @@ -29,7 +29,7 @@ property alias forceCursorVisible: searchInput.forceCursorVisible property alias anyKeypressGivesFocus: searchInput.anyKeypressGivesFocus - signal activateFirstResult + signal returnPressed Accessible.name: "Search Entry" @@ -118,7 +118,7 @@ forceActiveFocus(); } if (event.key == Qt.Key_Return || event.key == Qt.Key_Enter) { - activateFirstResult() + returnPressed() event.accepted = true; } if (event.key == Qt.Key_Escape) { diff -Nru unity-2d-5.12.0/shell/dash/Dash.qml unity-2d-5.14.0/shell/dash/Dash.qml --- unity-2d-5.12.0/shell/dash/Dash.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/dash/Dash.qml 2012-05-30 09:13:41.000000000 +0000 @@ -370,7 +370,7 @@ return u2d.tr("Search") } - onActivateFirstResult: if (dash.currentPage != undefined) dash.currentPage.activateFirstResult() + onReturnPressed: if (dash.currentPage != undefined) dash.currentPage.activateFirstResult() } Binding { diff -Nru unity-2d-5.12.0/shell/hud/Hud.qml unity-2d-5.14.0/shell/hud/Hud.qml --- unity-2d-5.12.0/shell/hud/Hud.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/hud/Hud.qml 2012-05-30 09:13:41.000000000 +0000 @@ -217,7 +217,7 @@ hudModel.searchQuery = searchQuery resultList.currentIndex = 0 } - onActivateFirstResult: executeResult(resultList.currentIndex) + onReturnPressed: executeResult(resultList.currentIndex) } ListView { @@ -260,6 +260,12 @@ appIcon = getActiveWindowIcon() } } + + onCountChanged: { + if (count == 0) { + appIcon = getActiveWindowIcon() + } + } } } } diff -Nru unity-2d-5.12.0/shell/launcher/LauncherItem.qml unity-2d-5.14.0/shell/launcher/LauncherItem.qml --- unity-2d-5.12.0/shell/launcher/LauncherItem.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/launcher/LauncherItem.qml 2012-05-30 16:01:54.000000000 +0000 @@ -197,6 +197,8 @@ /* This draws the icon, the tile background and the sheen on top */ IconTile { + property bool refreshingIcon: false + id: icon width: item.tileSize height: item.tileSize @@ -205,7 +207,7 @@ activeFocus: declarativeView.focus && item.activeFocus backgroundFromIcon: item.backgroundFromIcon - source: (beHudItem && hudLoader) ? hudLoader.item.appIcon : item.icon + source: refreshingIcon ? "image://icons/unknown" : ((beHudItem && hudLoader) ? hudLoader.item.appIcon : item.icon) tileBackgroundImage: (item.isBfb) ? "../launcher/artwork/squircle_base_54.png" : "" tileShineImage: (item.isBfb) ? "../launcher/artwork/squircle_shine_54.png" : "" selectedTileBackgroundImage: (item.isBfb) ? "../launcher/artwork/squircle_base_selected_54.png" : "" @@ -219,6 +221,14 @@ alwaysRunToEnd: true running: launching } + + Connections { + target: shellManager + onIconThemeChanged: { + icon.refreshingIcon = true + icon.refreshingIcon = false + } + } } /* This image appears only while launching, and pulses in and out in counterpoint diff -Nru unity-2d-5.12.0/shell/launcher/LauncherList.qml unity-2d-5.14.0/shell/launcher/LauncherList.qml --- unity-2d-5.12.0/shell/launcher/LauncherList.qml 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/shell/launcher/LauncherList.qml 2012-05-30 09:13:41.000000000 +0000 @@ -391,6 +391,10 @@ target: shellManager onActiveWorkspaceChanged: updatePips() } + Connections { + target: declarativeView.screen + onGeometryChanged: updatePips() + } Component.onCompleted: updatePips() } } diff -Nru unity-2d-5.12.0/tests/manual-tests/dash.txt unity-2d-5.14.0/tests/manual-tests/dash.txt --- unity-2d-5.12.0/tests/manual-tests/dash.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/tests/manual-tests/dash.txt 2012-05-30 09:13:41.000000000 +0000 @@ -249,3 +249,30 @@ # * Verify video opens correctly in web browser ----- + +# Test case objectives: + # * Ensure dash can be maximized in a multimonitor scenario + # Pre-conditions + # * Have two monitors + # * Have the second monitor be the the primary monitor when you connect it + # Test steps + # * Have one monitor attached + # * Connect the second monitor + # * Verify dash can be maximized in the first monitor (that is not the primary anymore) + +----- + +# Test case objectives: + # * Ensure files inside folders with greek names open correctly + # Pre-conditions + # * Have a folder with greek characters like Παράδειγμα + # * Have a file called THIS_IS_A_TEST_FOR_GREEK_CHARS inside that folder + # * Open that file from nautilus so it will show up in the files dash + # Test steps + # * Open Dash + # * Go to the files dash + # * Type THIS_IS_A_TEST_FOR_GREEK_CHARS + # * Open the file from the dash + # * Verify the file really opens + +----- diff -Nru unity-2d-5.12.0/tests/manual-tests/hud.txt unity-2d-5.14.0/tests/manual-tests/hud.txt --- unity-2d-5.12.0/tests/manual-tests/hud.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/tests/manual-tests/hud.txt 2012-05-30 09:13:41.000000000 +0000 @@ -46,3 +46,8 @@ * Navigate through results with keyboard arrow keys * Navigate to a result row different than the top one * Hit Enter to activate an action +---- + * Hit Alt key + * Type something from indicators so that the hud icon changes + * Clear the search line + --> Verify the hud icon goes bacl to the current foregroud app one diff -Nru unity-2d-5.12.0/tests/manual-tests/launcher.txt unity-2d-5.14.0/tests/manual-tests/launcher.txt --- unity-2d-5.12.0/tests/manual-tests/launcher.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/tests/manual-tests/launcher.txt 2012-05-30 16:01:54.000000000 +0000 @@ -148,10 +148,6 @@ Verify that the progress bar appears and that the filler looks correctly centered inside the bar ---- - * Launch an application whose icon uses 24 bit per pixel instead of 32 (e.g. kmag in precise) - -Verify that the icon shows correctly in the launcher ----- * Have the launcher in always shown mode * Have the launcher with more items that it can hold in screen (i.e. it is scrollable) * Put the mouse in the area of the launcher that makes it autoscroll down (and don't move it for the rest of the test) @@ -163,7 +159,40 @@ ---- * Have a multimonitor setup * On primary screen, open dash - * Drab an application icon and drop it onto the launcher beside it + * Drag an application icon and drop it onto the launcher beside it Verify Application tile created for that application in all launchers ---- + * Have a multimonitor setup + * Have launchers in all monitors + * Make an application that is not running not sticky (i.e. remove it from the launcher) + +Verify Application tile is removed from all launchers +---- + * Have launcher set to autohide + * Open nautilus + * Drag a file to the left so the launcher is shown + * Without finishing the drag move the mouse out of the launcher + +Verify the launcher hides +---- + * Have a two monitor setup in which the second monitor becomes screen 0 when plugged + * Start unity-2d-shell with only one monitor plugged + * Start a program + * Plug in the second monitor (which will become screen 0) + +Verify the launcher of that second monitor does not show if the program we started (and still is) on the first monitor was in that screen +---- + * Plug an external device + * Make it busy (e.g. go to it in a terminal) + * Try to safe eject the device + * Verify the volume is busy dialog appears + +Verify there is no "Unity 2d Shell" tile in the launcher +---- + * Open a terminal + * Open the system settings + * Change the icon theme from Ambience to High Constrast + +Verify the icon of the terminal is updated +---- diff -Nru unity-2d-5.12.0/tests/manual-tests/other.txt unity-2d-5.14.0/tests/manual-tests/other.txt --- unity-2d-5.12.0/tests/manual-tests/other.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/tests/manual-tests/other.txt 2012-05-30 09:13:41.000000000 +0000 @@ -19,3 +19,9 @@ * Set the launcher to autohide -> Verify that there is no crash and the launcher is set back always shown +---- + * Have 2 screens stacked horizontally + * Run unity-2d-shell in RTL mode (use -reverse) + * Enable sticky edges + +-> Verify that there is a mouse barrier between the two screens diff -Nru unity-2d-5.12.0/tests/manual-tests/panel.txt unity-2d-5.14.0/tests/manual-tests/panel.txt --- unity-2d-5.12.0/tests/manual-tests/panel.txt 2012-04-27 06:51:19.000000000 +0000 +++ unity-2d-5.14.0/tests/manual-tests/panel.txt 2012-10-30 12:59:17.000000000 +0000 @@ -49,3 +49,43 @@ * Release the mouse button * Verify the "Save Screenshot" app does not close ---- + * Open a window fullscreen (e.g. firefox) + * Go to the panel and double click the middle mouse button + * Verify the fullscreen window stays maximized +---- + * Have two monitors + * Maximize one window + * Double click the panel in the monitor that does not contain the window + * Verify the window stays maximized +---- + * Have two monitors + * Maximize one window + * Press and drag the mouse in the panel in the monitor that does not contain the window + * Verify the window stays unaffected +---- + * Have two monitors + * Maximize one window in each monitor + * Give focus to windown in monitor 1 + * Click in the panel of monitor 2 + * Verify the window from monitor 2 gets the focus +---- + * Have two monitors + * Maximize one window in each monitor + * Give focus to windown in monitor 1 + * Press and drag the mouse in the panel of monitor 2 (has the window without focus) + * Verify the window from monitor 2 gets the focus and starts to be dragged +---- + * Have two windows in one monitor + * Maximize one window + * Give focus to unmaximized one + * Click in the panel (not in window label nor menus) + * Verify focus goes to the maximized window +---- + * Add 'pidgin' to /desktop/unity/panel/systray-whitelist in dconf-editor + * Start pidgin + * Verify the systray icon of pidgin appears in the panel +---- + * Compile simple test program from bug #850017 + * Verify the Disabled menu can not be opened by clicking on it + * Verify the Disabled menu can not be opened by clicking on the Enabled menu and then moving the mouse over to the Disabled one +----