Merge lp:~haggai-eran/unity-2d/rtl into lp:unity-2d/3.0

Proposed by Haggai Eran
Status: Merged
Merge reported by: Florian Boucault
Merged at revision: not available
Proposed branch: lp:~haggai-eran/unity-2d/rtl
Merge into: lp:unity-2d/3.0
Diff against target: 16569 lines (+7163/-6145)
101 files modified
launcher/LauncherItem.qml (+18/-4)
launcher/app/launcher.cpp (+6/-0)
libunity-2d-private/Unity2d/launchermenu/launchermenu.qrc (+6/-0)
libunity-2d-private/Unity2d/launchermenu/launchermenu_rtl.css (+82/-0)
libunity-2d-private/src/edgehitdetector.cpp (+9/-3)
libunity-2d-private/src/intellihidebehavior.cpp (+14/-1)
libunity-2d-private/src/launchermenu.cpp (+28/-8)
libunity-2d-private/src/unity2dpanel.cpp (+19/-6)
panel/app/main.cpp (+2/-0)
panel/app/panelmanager.cpp (+9/-2)
panel/applets/appname/appnameapplet.cpp (+21/-5)
places/GroupHeader.qml (+18/-9)
places/Home.qml (+14/-7)
places/SearchEntry.qml (+12/-5)
places/app/dashdeclarativeview.cpp (+8/-1)
places/app/places.cpp (+5/-0)
places/artwork/desktop_dash_background_no_transparency_rtl.sci (+7/-0)
places/artwork/desktop_dash_background_rtl.sci (+7/-0)
places/dash.qml (+62/-16)
po/af.po (+81/-72)
po/am.po (+83/-74)
po/an.po (+83/-74)
po/ar.po (+87/-78)
po/ast.po (+83/-74)
po/az.po (+83/-74)
po/be.po (+86/-77)
po/bem.po (+86/-77)
po/bg.po (+83/-74)
po/bn.po (+83/-74)
po/bs.po (+86/-77)
po/ca.po (+83/-74)
po/ca@valencia.po (+82/-73)
po/crh.po (+84/-75)
po/cs.po (+84/-75)
po/cy.po (+84/-75)
po/da.po (+83/-74)
po/de.po (+83/-74)
po/el.po (+83/-74)
po/en_AU.po (+83/-74)
po/en_GB.po (+83/-74)
po/eo.po (+83/-74)
po/es.po (+83/-74)
po/et.po (+83/-74)
po/eu.po (+83/-74)
po/fa.po (+81/-72)
po/fi.po (+83/-74)
po/fil.po (+81/-72)
po/fr.po (+83/-75)
po/fy.po (+82/-73)
po/gd.po (+84/-75)
po/gl.po (+83/-74)
po/gv.po (+83/-74)
po/he.po (+83/-74)
po/hi.po (+83/-74)
po/hr.po (+86/-77)
po/hu.po (+85/-76)
po/hy.po (+82/-73)
po/id.po (+82/-73)
po/is.po (+83/-74)
po/it.po (+84/-76)
po/ja.po (+82/-73)
po/ka.po (+82/-73)
po/kk.po (+82/-73)
po/ko.po (+82/-73)
po/ku.po (+83/-74)
po/ky.po (+81/-72)
po/lb.po (+83/-74)
po/lt.po (+86/-77)
po/lv.po (+84/-75)
po/mg.po (+82/-73)
po/ml.po (+84/-75)
po/ms.po (+83/-74)
po/nb.po (+83/-74)
po/nl.po (+83/-74)
po/nn.po (+83/-74)
po/oc.po (+83/-74)
po/pa.po (+83/-74)
po/pl.po (+84/-75)
po/pt.po (+83/-74)
po/pt_BR.po (+83/-74)
po/ro.po (+84/-75)
po/ru.po (+86/-77)
po/si.po (+83/-74)
po/sk.po (+84/-75)
po/sl.po (+87/-78)
po/sq.po (+83/-74)
po/sr.po (+86/-77)
po/sv.po (+83/-74)
po/ta.po (+83/-74)
po/te.po (+83/-74)
po/th.po (+82/-73)
po/tr.po (+82/-73)
po/tt.po (+82/-73)
po/ug.po (+82/-73)
po/uk.po (+86/-77)
po/unity-2d.pot (+74/-63)
po/ur.po (+83/-74)
po/vi.po (+82/-73)
po/zh_CN.po (+82/-73)
po/zh_HK.po (+82/-73)
po/zh_TW.po (+82/-73)
To merge this branch: bzr merge lp:~haggai-eran/unity-2d/rtl
Reviewer Review Type Date Requested Status
Alberto Mardegan (community) Needs Fixing
Review via email: mp+70610@code.launchpad.net

Description of the change

This branch aims to solve bug #654988, and provide a mirrored interface for right-to-left languages in unity-2d.

It makes the following changes when using a right-to-left locale:
 * Move the launcher to the right of the screen, and mirror it.
 * Mirror the layout of the top panel.
 * Mirror the layout of the dash.

To test it, run unity-2d under a right-to-left locale, such as Hebrew (LANG=he_IL.UTF-8).

To post a comment you must log in.
Revision history for this message
Alberto Mardegan (mardy) wrote :

I'm reviewing this merge request, and trying the code rebased on unity-2d/4.0; unfortunately there are merge conflicts for all po/*.po files (which are *a lot*).
Haggai, do I understand correctly that the only change needed in the .po file is the addition of the QT_LAYOUT_DIRECTION id, which must be translated to "RTL" for the right-to-left languages?

Revision history for this message
Alberto Mardegan (mardy) wrote :

Here is the same branch, merged on unity-2d/4.0, without the po file changes:
https://code.launchpad.net/~mardy/unity-2d/rtl

I quickly tested it under the he_IL locale (and adding the QT_LAYOUT_DIRECTION translation as "RTL" in the he.po file), and it seemed to work correctly at a first sight.
Haggai, if you have a change to run Oneiric and test my branch, it will be very much appreciated. Meanwhile, I'll continue testing/reviewing the code in my branch, for the LTR locales, just to make sure that there are no regressions.

Revision history for this message
Alberto Mardegan (mardy) wrote :

In void EdgeHitDetector::updateGeometryFromScreen():

205 + QPoint p = QApplication::isLeftToRight() ?
206 + QPoint() :
207 + QPoint(QApplication::desktop()->width(), 0);

In line 207 I think you should decrement the width by 1 pixel, otherwise you get one pixel which is outside of the desktop area (same applies to the change in panel/app/panelmanager.cpp).
Also, I would save a pointer to QApplication::desktop(), which is used three times in this method.

libunity-2d-private/src/intellihidebehavior.cpp:

241 - launcherRect.moveLeft(0);
242 + switch (static_cast<Unity2dPanel*>(panel())->edge()) {
243 + case Unity2dPanel::LeftEdge:
244 + if (QApplication::isLeftToRight()) {
245 + launcherRect.moveLeft(0);
246 + }
247 + else {
248 + QDesktopWidget* desktop = QApplication::desktop();
249 + const QRect screen = desktop->screenGeometry(m_panel);
250 + launcherRect.moveRight(screen.right());
251 + }
252 + break;
253 + }

Why the "switch"? It could be a simple "if"; anyway, it seems to change the logic for the LTR case too, so I wonder if this is about fixing some other bug too.

In places/app/dashdeclarativeview.cpp:

657 + int screenRight = rect.right();
658
659 rect.setWidth(qMin(DASH_DESKTOP_WIDTH, rect.width()));
660 rect.setHeight(qMin(m_expanded ? DASH_DESKTOP_EXPANDED_HEIGHT : DASH_DESKTOP_COLLAPSED_HEIGHT,
661 rect.height()));
662
663 + if (QApplication::isRightToLeft())
664 + rect.moveRight(screenRight);

You can do without the screenRight variable.

In places/Dash.qml, why do you require QtQuick 1.1? (AFAIK, it's not released yet)

About the other changes in the QML code: they look all fine, but I'd suggest to rename the leftRight() and rightLeft() functions to something more easily understood, something like "ifLeftToRight()" and "ifRightToLeft()", even though I'm not sure I like those either. :-)
Or maybe remove them completely, and use only isLeftToRight() and isRightToLeft() -- which would avoid calling functions with less parameters than declared (which is valid in JS, but the resulting code is not that readable, IMHO).

OTOH, both these methods will probably be no longer necessary with Qt 4.7.4 (see http://doc.qt.nokia.com/4.7-snapshot/qml-righttoleft.html ), so I guess we can live with those names for the time being.

Revision history for this message
Haggai Eran (haggai-eran) wrote :
Download full text (4.2 KiB)

Hi,

Thanks for reviewing my code. I'll try to answer the questions below.

> I'm reviewing this merge request, and trying the code rebased on unity-2d/4.0;
> unfortunately there are merge conflicts for all po/*.po files (which are *a
> lot*).
> Haggai, do I understand correctly that the only change needed in the .po file
> is the addition of the QT_LAYOUT_DIRECTION id, which must be translated to
> "RTL" for the right-to-left languages?

You are correct. I don't know why updating the pot file caused all these changes, but the only thing needed is the QT_LAYOUT_DIRECTION. It follows the Qt documentation.

I'll try to test your branch and see how it works.

> In void EdgeHitDetector::updateGeometryFromScreen():
>
> 205 + QPoint p = QApplication::isLeftToRight() ?
> 206 + QPoint() :
> 207 + QPoint(QApplication::desktop()->width(), 0);
>
> In line 207 I think you should decrement the width by 1 pixel, otherwise you
> get one pixel which is outside of the desktop area (same applies to the change
> in panel/app/panelmanager.cpp).
> Also, I would save a pointer to QApplication::desktop(), which is used three
> times in this method.

I'll change that.

> libunity-2d-private/src/intellihidebehavior.cpp:
>
> 241 - launcherRect.moveLeft(0);
> 242 + switch (static_cast<Unity2dPanel*>(panel())->edge()) {
> 243 + case Unity2dPanel::LeftEdge:
> 244 + if (QApplication::isLeftToRight()) {
> 245 + launcherRect.moveLeft(0);
> 246 + }
> 247 + else {
> 248 + QDesktopWidget* desktop = QApplication::desktop();
> 249 + const QRect screen = desktop->screenGeometry(m_panel);
> 250 + launcherRect.moveRight(screen.right());
> 251 + }
> 252 + break;
> 253 + }
>
> Why the "switch"? It could be a simple "if"; anyway, it seems to change the
> logic for the LTR case too, so I wonder if this is about fixing some other bug
> too.

Well, at first I thought I should add a 'RightEdge' entry to the enum, and that's why the switch was there. I changed my mind later, and thought that it would be best just to change the semantic of LeftEdge when using an RTL locale, but I guess I forgot to delete the switch.
I didn't mean to change the LTR case.

> In places/app/dashdeclarativeview.cpp:
>
> 657 + int screenRight = rect.right();
> 658
> 659 rect.setWidth(qMin(DASH_DESKTOP_WIDTH, rect.width()));
> 660 rect.setHeight(qMin(m_expanded ? DASH_DESKTOP_EXPANDED_HEIGHT :
> DASH_DESKTOP_COLLAPSED_HEIGHT,
> 661 rect.height()));
> 662
> 663 + if (QApplication::isRightToLeft())
> 664 + rect.moveRight(screenRight);
>
> You can do without the screenRight variable.

Shouldn't I save it's value? The width of rect might change at line 659.

> In places/Dash.qml, why do you require QtQuick 1.1? (AFAIK, it's not released
> yet)

I'm so sorry about this. I read at the reference you quote below about QtQuick's coming RTL support, and I tried enabling it, but since I didn't have Qt 4.7.4, it didn't work :)
I forgot to return it to QtQuick 1.0 before committing.

> About the other changes in the QML code: they look all fine, but I'd suggest
> to rename the leftRight() and rightLeft() functions to something more ea...

Read more...

Revision history for this message
Alberto Mardegan (mardy) wrote :

> I'll try to test your branch and see how it works.

I just updated it; the mirroring of the application title in the panel was not implemented (it was properly implemented in your original patch, but I lost it when porting it to Oneiric).

> Well, at first I thought I should add a 'RightEdge' entry to the enum, and
> that's why the switch was there. I changed my mind later, and thought that it
> would be best just to change the semantic of LeftEdge when using an RTL
> locale, but I guess I forgot to delete the switch.
> I didn't mean to change the LTR case.

You are right. However, since this is not strictly related to the RTL functionaly, I'd leave it without switch, and let's address it in another merge request (in my branch, I added a FIXME comment not to forget about it).

[...]
> > You can do without the screenRight variable.
>
> Shouldn't I save it's value? The width of rect might change at line 659.

My bad, sorry. You are absolutely right.

> I'm so sorry about this. I read at the reference you quote below about
> QtQuick's coming RTL support, and I tried enabling it, but since I didn't have
> Qt 4.7.4, it didn't work :)
> I forgot to return it to QtQuick 1.0 before committing.

No big issue. :-)

[...]
> I think that using such function is preferred to using isRightToLeft, and ?:
> operator, but I guess it's a matter of taste. I don't mind changing the name,
> or using the ?: operator, and I can pass undefined directly instead of relying
> on this JS feature.

Unless others have strong opinions on this, I'd leave the code as you wrote it. At least, I couldn't come up with a more explicative name for leftRight() and rightLeft(), so I kept them like this in my merge request as well.

> But I agree that once we have Qt 4.7.4 the code could be much simpler. I
> couldn't find when it's release is planned, but there's no chance it will make
> it to Oneiric, right?

I think it might still be possible to have it in Oneiric, if it's released soon, because it's most likely totally backward compatible. But I really don't know. :-)

> Should I make the changes against the branch you published, or against this
> branch?

I did the relevant changes to my branch, so for Oneiric we should be fine (it would be great if you could spend some time to review my branch, to make sure that I didn't introduce some bugs or left out some pieces).
You may still want to update this branch, in case there's a chance of an update of unity-2d for Natty (Florian, is there?).

review: Needs Fixing
Revision history for this message
Florian Boucault (fboucault) wrote :

[...]
> > Should I make the changes against the branch you published, or against this
> > branch?
>
> I did the relevant changes to my branch, so for Oneiric we should be fine (it
> would be great if you could spend some time to review my branch, to make sure
> that I didn't introduce some bugs or left out some pieces).
> You may still want to update this branch, in case there's a chance of an
> update of unity-2d for Natty (Florian, is there?).

I will do the appropriate backport to Natty if possible and if necessary.
Haggai, do you need LTR support in the Natty version?

Revision history for this message
Haggai Eran (haggai-eran) wrote :

Alberto,
I tried testing your branch, but I had to merge it with 4.0 in order for it to compile on an updated oneiric system. In order for it to work I also had to add the QT_LAYOUT_DIRECTION to the po file. Should I do it manually, without updating the pot file and the rest of the po files?
Another problem is that the new 4.0.0 version stopped using QMenuBar for the menus, and now even in RTL mode, the menus open aligned to the left with the menu title. (The entries inside the menus align to the right just fine, only the menu popup window isn't positioned correctly). I think fixing it will require modifying libunity-core, since (if I understand correctly), it is now responsible for showing the menu.

In addition I noticed that pressing the left/right keyboard arrows when the menu is open in RTL mode, opens the menus in the wrong direction. Do you think changing that will also need to be done in libunity-core?

Florian,
Having RTL support in Natty would be great. I personally plan to upgrade to Oneiric when it's released, but I'm sure people that continue to use Natty will appreciate it.

Revision history for this message
Haggai Eran (haggai-eran) wrote :

I wrote some code to solve the problem with the menus, but I had to change nux and unity as well, since unity-service is now responsible for the menus even in unity-2d.

I've put the unity-2d branch at lp:~haggai-eran/unity-2d/4.0-rtl and it depends on lp:~haggai-eran/unity/rtl-menu-popup and lp:~haggai-eran/nux/rtl .

Revision history for this message
Alberto Mardegan (mardy) wrote :

> Alberto,
> I tried testing your branch, but I had to merge it with 4.0 in order for it to
> compile on an updated oneiric system. In order for it to work I also had to
> add the QT_LAYOUT_DIRECTION to the po file. Should I do it manually, without
> updating the pot file and the rest of the po files?

When making the next release we'll update the pot file, and the translators will have to translate the QT_LAYOUT_DIRECTION text as appropriate.
For testing purposes yes, you'll have to update it manually.

For the other issues, looks like you did a great job in fixing them! Thanks!
I think you need to file two different merge requests to get your changes accepted in unity and nux, first.

Revision history for this message
Haggai Eran (haggai-eran) wrote :

Okay, I'll file the merge requests. Thanks.

Revision history for this message
Florian Boucault (fboucault) wrote :

I believe this work has been merged albeit with modifications. Thanks to everybody involved, especially Haggai!

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'launcher/LauncherItem.qml'
2--- launcher/LauncherItem.qml 2011-07-14 11:17:30 +0000
3+++ launcher/LauncherItem.qml 2011-08-05 18:22:37 +0000
4@@ -82,7 +82,7 @@
5
6 property int pips: 0
7 property string pipSource: "artwork/launcher_" +
8- ((pips <= 1) ? "arrow" : "pip") + "_ltr.png"
9+ ((pips <= 1) ? "arrow" : "pip") + "_" + leftRight("ltr", "rtl") + ".png"
10 function getPipOffset(index) {
11 /* Pips need to always be centered, regardless if they are an even or odd
12 number. The following simple conditional code works and is less
13@@ -93,6 +93,18 @@
14 else return (index == 0) ? 0 : (index == 1) ? -4 : +4
15 }
16
17+ function isLeftToRight() {
18+ return item.layoutDirection == Qt.LeftToRight;
19+ }
20+
21+ function leftRight(ltr, rtl) {
22+ return isLeftToRight() ? ltr : rtl;
23+ }
24+
25+ function rightLeft(rtl, ltr) {
26+ return isLeftToRight()? ltr : rtl;
27+ }
28+
29 signal clicked(variant mouse)
30 signal entered
31 signal exited
32@@ -123,11 +135,12 @@
33 /* This is the arrow shown at the right of the tile when the application is
34 the active one */
35 Image {
36- anchors.right: parent.right
37+ anchors.right: leftRight(parent.right)
38+ anchors.left: rightLeft(parent.left)
39 y: item.height - item.tileSize / 2 - height / 2
40
41 source: "image://blended/%1color=%2alpha=%3"
42- .arg("artwork/launcher_arrow_rtl.png")
43+ .arg("artwork/launcher_arrow_" + leftRight("rtl","ltr") + ".png")
44 .arg("lightgrey")
45 .arg(1.0)
46
47@@ -147,7 +160,8 @@
48 for a moment it doesn't have any parent, and therefore warnings are
49 printed for the following two anchor assignements. This fixes the
50 problem, but I'm not sure if it should happen in the first place. */
51- anchors.left: (parent) ? parent.left : undefined
52+ anchors.left: leftRight((parent) ? parent.left : undefined)
53+ anchors.right: rightLeft((parent) ? parent.right : undefined)
54 y: item.height - item.tileSize / 2 - height / 2 + getPipOffset(index)
55
56 source: "image://blended/%1color=%2alpha=%3"
57
58=== modified file 'launcher/app/launcher.cpp'
59--- launcher/app/launcher.cpp 2011-07-27 09:42:32 +0000
60+++ launcher/app/launcher.cpp 2011-08-05 18:22:37 +0000
61@@ -22,6 +22,7 @@
62 #include <launcherclient.h>
63 #include <unity2dapplication.h>
64 #include <propertybinder.h>
65+#include <unity2dtr.h>
66
67 // libdconf-qt
68 #include "qconf.h"
69@@ -89,6 +90,11 @@
70
71 /* Panel containing the QML declarative view */
72 Unity2dPanel panel(true);
73+
74+ Unity2dTr::init("unity-2d", INSTALL_PREFIX "/share/locale");
75+ if (u2dTr("QT_LAYOUT_DIRECTION") == "RTL")
76+ QApplication::setLayoutDirection(Qt::RightToLeft);
77+
78 panel.setEdge(Unity2dPanel::LeftEdge);
79 panel.setFixedWidth(LauncherClient::MaximumWidth);
80
81
82=== added file 'launcher/artwork/launcher_pip_rtl.png'
83Binary files launcher/artwork/launcher_pip_rtl.png 1970-01-01 00:00:00 +0000 and launcher/artwork/launcher_pip_rtl.png 2011-08-05 18:22:37 +0000 differ
84=== added file 'libunity-2d-private/Unity2d/launchermenu/arrow_no_transparency_rtl.png'
85Binary files libunity-2d-private/Unity2d/launchermenu/arrow_no_transparency_rtl.png 1970-01-01 00:00:00 +0000 and libunity-2d-private/Unity2d/launchermenu/arrow_no_transparency_rtl.png 2011-08-05 18:22:37 +0000 differ
86=== added file 'libunity-2d-private/Unity2d/launchermenu/arrow_rtl.png'
87Binary files libunity-2d-private/Unity2d/launchermenu/arrow_rtl.png 1970-01-01 00:00:00 +0000 and libunity-2d-private/Unity2d/launchermenu/arrow_rtl.png 2011-08-05 18:22:37 +0000 differ
88=== added file 'libunity-2d-private/Unity2d/launchermenu/background_no_transparency_rtl.png'
89Binary files libunity-2d-private/Unity2d/launchermenu/background_no_transparency_rtl.png 1970-01-01 00:00:00 +0000 and libunity-2d-private/Unity2d/launchermenu/background_no_transparency_rtl.png 2011-08-05 18:22:37 +0000 differ
90=== added file 'libunity-2d-private/Unity2d/launchermenu/background_rtl.png'
91Binary files libunity-2d-private/Unity2d/launchermenu/background_rtl.png 1970-01-01 00:00:00 +0000 and libunity-2d-private/Unity2d/launchermenu/background_rtl.png 2011-08-05 18:22:37 +0000 differ
92=== modified file 'libunity-2d-private/Unity2d/launchermenu/launchermenu.qrc'
93--- libunity-2d-private/Unity2d/launchermenu/launchermenu.qrc 2011-06-08 20:43:09 +0000
94+++ libunity-2d-private/Unity2d/launchermenu/launchermenu.qrc 2011-08-05 18:22:37 +0000
95@@ -7,5 +7,11 @@
96 <file>check_default.png</file>
97 <file>check_selected.png</file>
98 <file>launchermenu.css</file>
99+
100+ <file>arrow_rtl.png</file>
101+ <file>arrow_no_transparency_rtl.png</file>
102+ <file>background_rtl.png</file>
103+ <file>background_no_transparency_rtl.png</file>
104+ <file>launchermenu_rtl.css</file>
105 </qresource>
106 </RCC>
107
108=== added file 'libunity-2d-private/Unity2d/launchermenu/launchermenu_rtl.css'
109--- libunity-2d-private/Unity2d/launchermenu/launchermenu_rtl.css 1970-01-01 00:00:00 +0000
110+++ libunity-2d-private/Unity2d/launchermenu/launchermenu_rtl.css 2011-08-05 18:22:37 +0000
111@@ -0,0 +1,82 @@
112+/*
113+ * Copyright (C) 2010 Canonical, Ltd.
114+ *
115+ * Authors:
116+ * Olivier Tilloy <olivier.tilloy@canonical.com>
117+ *
118+ * This program is free software; you can redistribute it and/or modify
119+ * it under the terms of the GNU General Public License as published by
120+ * the Free Software Foundation; version 3.
121+ *
122+ * This program is distributed in the hope that it will be useful,
123+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
124+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
125+ * GNU General Public License for more details.
126+ *
127+ * You should have received a copy of the GNU General Public License
128+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
129+ */
130+
131+QMenu {
132+ border-width: 24px 15px 4px 5px;
133+ padding-top: -4px;
134+ padding-right: -15px;
135+ min-width: 72px;
136+ min-height: 13px;
137+}
138+
139+QMenu[transparencyAvailable=true] {
140+ border-image: url(:/launchermenu/background_rtl.png) 5px 15px 4px 5px Repeat Repeat;
141+}
142+
143+QMenu[transparencyAvailable=false] {
144+ border-image: url(:/launchermenu/background_no_transparency_rtl.png) 5px 15px 4px 5px Repeat Repeat;
145+}
146+
147+
148+QMenu::item {
149+ color: white;
150+ margin-left: 5px;
151+ margin-right: 15px;
152+ margin-top: 2px;
153+ margin-bottom: 2px;
154+ padding-left: 25px;
155+ padding-right: 25px;
156+ padding-top: 5px;
157+ padding-bottom: 5px;
158+}
159+
160+QMenu::item:selected:enabled {
161+ border-radius: 4px;
162+ border-color: rgb(109, 109, 109);
163+ border-width: 1px;
164+ border-style: solid;
165+ color: rgba(41, 41, 41, 90%);
166+ background-color: rgba(255, 255, 255, 90%);
167+}
168+
169+QMenu::indicator {
170+ width: 16px;
171+ height: 13px;
172+ margin-right: 3px;
173+}
174+
175+QMenu::indicator:checked {
176+ image: url(:/launchermenu/check_default.png);
177+}
178+
179+QMenu::indicator:checked:selected {
180+ image: url(:/launchermenu/check_selected.png);
181+}
182+
183+QMenu::separator {
184+ height: 1px;
185+ margin-left: 4px;
186+ margin-right: 14px;
187+ background-color: rgba(255, 255, 255, 56%);
188+ border-color: rgba(0, 0, 0, 55%);
189+ border-style: solid;
190+ border-top-width: 1px;
191+ border-bottom-width: 1px;
192+}
193+
194
195=== modified file 'libunity-2d-private/src/edgehitdetector.cpp'
196--- libunity-2d-private/src/edgehitdetector.cpp 2011-06-11 11:33:52 +0000
197+++ libunity-2d-private/src/edgehitdetector.cpp 2011-08-05 18:22:37 +0000
198@@ -51,9 +51,15 @@
199
200 void EdgeHitDetector::updateGeometryFromScreen()
201 {
202- int leftScreen = QApplication::desktop()->screenNumber(QPoint());
203- QRect rect = QApplication::desktop()->screenGeometry(leftScreen);
204- m_mouseArea->setGeometry(rect.left(), rect.top(), 1, rect.height());
205+ QPoint p = QApplication::isLeftToRight() ?
206+ QPoint() :
207+ QPoint(QApplication::desktop()->width(), 0);
208+ int screen = QApplication::desktop()->screenNumber(p);
209+ QRect rect = QApplication::desktop()->screenGeometry(screen);
210+ if (QApplication::isLeftToRight())
211+ m_mouseArea->setGeometry(rect.left(), rect.top(), 1, rect.height());
212+ else
213+ m_mouseArea->setGeometry(rect.right()-1, rect.top(), 1, rect.height());
214 }
215
216 #include "edgehitdetector.moc"
217
218=== modified file 'libunity-2d-private/src/intellihidebehavior.cpp'
219--- libunity-2d-private/src/intellihidebehavior.cpp 2011-06-27 13:43:05 +0000
220+++ libunity-2d-private/src/intellihidebehavior.cpp 2011-08-05 18:22:37 +0000
221@@ -13,6 +13,7 @@
222 #include "intellihidebehavior.h"
223
224 // Local
225+#include "unity2dpanel.h"
226
227 // libunity-2d
228 #include <debug_p.h>
229@@ -23,6 +24,7 @@
230 #include <QEvent>
231 #include <QTimer>
232 #include <QWidget>
233+#include <QDesktopWidget>
234
235 // libwnck
236 extern "C" {
237@@ -131,7 +133,18 @@
238 // Compute launcherRect, adjust "left" to the position where the launcher
239 // is fully visible.
240 QRect launcherRect = m_panel->geometry();
241- launcherRect.moveLeft(0);
242+ switch (static_cast<Unity2dPanel*>(panel())->edge()) {
243+ case Unity2dPanel::LeftEdge:
244+ if (QApplication::isLeftToRight()) {
245+ launcherRect.moveLeft(0);
246+ }
247+ else {
248+ QDesktopWidget* desktop = QApplication::desktop();
249+ const QRect screen = desktop->screenGeometry(m_panel);
250+ launcherRect.moveRight(screen.right());
251+ }
252+ break;
253+ }
254
255 WnckScreen* screen = wnck_screen_get_default();
256 WnckWorkspace* workspace = wnck_screen_get_active_workspace(screen);
257
258=== modified file 'libunity-2d-private/src/launchermenu.cpp'
259--- libunity-2d-private/src/launchermenu.cpp 2011-07-29 13:49:34 +0000
260+++ libunity-2d-private/src/launchermenu.cpp 2011-08-05 18:22:37 +0000
261@@ -58,9 +58,15 @@
262 /* Load the pixmap for the arrow. It is drawn separately as its position
263 may vary depending on the position of the menu on the screen. */
264 if (transparencyAvailable()) {
265- m_arrow.load(":/launchermenu/arrow.png");
266+ if (QApplication::isLeftToRight())
267+ m_arrow.load(":/launchermenu/arrow.png");
268+ else
269+ m_arrow.load(":/launchermenu/arrow_rtl.png");
270 } else {
271- m_arrow.load(":/launchermenu/arrow_no_transparency.png");
272+ if (QApplication::isLeftToRight())
273+ m_arrow.load(":/launchermenu/arrow_no_transparency.png");
274+ else
275+ m_arrow.load(":/launchermenu/arrow_no_transparency_rtl.png");
276 }
277
278 /* First action used to display the title of the item */
279@@ -77,6 +83,8 @@
280 LauncherContextualMenu::loadCSS()
281 {
282 QString cssFilePath = ":/launchermenu/launchermenu.css";
283+ if (QApplication::isRightToLeft())
284+ cssFilePath = ":/launchermenu/launchermenu_rtl.css";
285
286 QFile file(cssFilePath);
287 if (!file.open(QIODevice::ReadOnly | QIODevice::Text))
288@@ -153,6 +161,10 @@
289 return;
290
291 m_arrowY = 6;
292+
293+ if (QApplication::isRightToLeft())
294+ x = QApplication::desktop()->width() - x - sizeHint().width();
295+
296 move(x, y - minimumSize().height() / 2);
297 QMenu::show();
298
299@@ -202,10 +214,14 @@
300 }
301 }
302 } else {
303+ int prevWidth = width();
304+ int left = x(), top = y();
305 addSeparator();
306 m_launcherItem->createMenuActions();
307
308 QRect screenGeometry = QApplication::desktop()->screenGeometry(this);
309+ if (QApplication::isRightToLeft())
310+ left -= width() - prevWidth;
311 if (height() <= screenGeometry.height()) {
312 /* Adjust the position of the menu only if it fits entirely on the screen. */
313 int menuBottomEdge = y() + height();
314@@ -213,13 +229,14 @@
315 if (menuBottomEdge > screenBottomEdge) {
316 /* The menu goes offscreen, shift it upwards. */
317 m_arrowY += menuBottomEdge - screenBottomEdge;
318- move(x(), screenBottomEdge - height());
319- if (!transparencyAvailable()) {
320- /* The arrow has moved relatively to the menu. */
321- updateMask();
322- }
323+ top = screenBottomEdge - height();
324 }
325 }
326+ move(left, top);
327+ if (!transparencyAvailable()) {
328+ /* The arrow has moved relatively to the menu. */
329+ updateMask();
330+ }
331 }
332
333 m_folded = folded;
334@@ -235,7 +252,10 @@
335 /* Draw the arrow. */
336 QPainter painter(this);
337 painter.setCompositionMode(QPainter::CompositionMode_Source);
338- painter.drawPixmap(0, m_arrowY, m_arrow);
339+ int left = 0;
340+ if (QApplication::isRightToLeft())
341+ left = width() - m_arrow.width();
342+ painter.drawPixmap(left, m_arrowY, m_arrow);
343 }
344
345 LauncherItem*
346
347=== modified file 'libunity-2d-private/src/unity2dpanel.cpp'
348--- libunity-2d-private/src/unity2dpanel.cpp 2011-06-07 13:46:38 +0000
349+++ libunity-2d-private/src/unity2dpanel.cpp 2011-08-05 18:22:37 +0000
350@@ -65,9 +65,16 @@
351 ulong struts[12] = {};
352 switch (m_edge) {
353 case Unity2dPanel::LeftEdge:
354- struts[0] = q->width();
355- struts[4] = available.top();
356- struts[5] = available.y() + available.height();
357+ if (QApplication::isLeftToRight()) {
358+ struts[0] = q->width();
359+ struts[4] = available.top();
360+ struts[5] = available.y() + available.height();
361+ }
362+ else {
363+ struts[1] = q->width();
364+ struts[6] = available.top();
365+ struts[7] = available.y() + available.height();
366+ }
367 break;
368 case Unity2dPanel::TopEdge:
369 struts[2] = q->height();
370@@ -95,8 +102,14 @@
371 QRect rect;
372 switch (m_edge) {
373 case Unity2dPanel::LeftEdge:
374- rect = QRect(screen.left(), available.top(), q->width(), available.height());
375- rect.moveLeft(m_delta);
376+ if (QApplication::isLeftToRight()) {
377+ rect = QRect(screen.left(), available.top(), q->width(), available.height());
378+ rect.moveLeft(m_delta);
379+ }
380+ else {
381+ rect = QRect(screen.right() - q->width(), available.top(), q->width(), available.height());
382+ rect.moveRight(screen.right() - m_delta);
383+ }
384 break;
385 case Unity2dPanel::TopEdge:
386 rect = QRect(screen.left(), screen.top(), screen.width(), q->height());
387@@ -112,7 +125,7 @@
388 QBoxLayout::Direction direction;
389 switch(m_edge) {
390 case Unity2dPanel::TopEdge:
391- direction = QApplication::isRightToLeft() ? QBoxLayout::RightToLeft : QBoxLayout::LeftToRight;
392+ direction = QBoxLayout::LeftToRight;
393 break;
394 case Unity2dPanel::LeftEdge:
395 direction = QBoxLayout::TopToBottom;
396
397=== modified file 'panel/app/main.cpp'
398--- panel/app/main.cpp 2011-07-18 13:47:29 +0000
399+++ panel/app/main.cpp 2011-08-05 18:22:37 +0000
400@@ -61,6 +61,8 @@
401
402 /* Configure translations */
403 Unity2dTr::init("unity-2d", INSTALL_PREFIX "/share/locale");
404+ if (u2dTr("QT_LAYOUT_DIRECTION") == "RTL")
405+ QApplication::setLayoutDirection(Qt::RightToLeft);
406
407 PanelManager panels;
408
409
410=== modified file 'panel/app/panelmanager.cpp'
411--- panel/app/panelmanager.cpp 2011-06-12 23:01:35 +0000
412+++ panel/app/panelmanager.cpp 2011-08-05 18:22:37 +0000
413@@ -60,7 +60,11 @@
414 static QLabel* createSeparator()
415 {
416 QLabel* label = new QLabel;
417- QPixmap pix(unity2dDirectory() + "/panel/artwork/divider.png");
418+ QPixmap pix;
419+ if (QApplication::isLeftToRight())
420+ pix = QPixmap(unity2dDirectory() + "/panel/artwork/divider.png");
421+ else
422+ pix = QPixmap(unity2dDirectory() + "/panel/artwork/divider_rtl.png");
423 label->setPixmap(pix);
424 label->setFixedSize(pix.size());
425 return label;
426@@ -73,7 +77,10 @@
427 panel->setPalette(getPalette());
428 panel->setFixedHeight(24);
429
430- int leftmost = QApplication::desktop()->screenNumber(QPoint());
431+ QPoint p;
432+ if (QApplication::isRightToLeft())
433+ p = QPoint(QApplication::desktop()->width(), 0);
434+ int leftmost = QApplication::desktop()->screenNumber(p);
435 if (screen == leftmost) {
436 panel->addWidget(new HomeButtonApplet);
437 panel->addWidget(createSeparator());
438
439=== modified file 'panel/applets/appname/appnameapplet.cpp'
440--- panel/applets/appname/appnameapplet.cpp 2011-07-26 09:36:41 +0000
441+++ panel/applets/appname/appnameapplet.cpp 2011-08-05 18:22:37 +0000
442@@ -133,15 +133,28 @@
443 painter.fillRect(rect(), Qt::transparent);
444
445 painter.setCompositionMode(QPainter::CompositionMode_SourceOver);
446- painter.drawText(contentsRect(), Qt::AlignLeft | Qt::AlignVCenter, text());
447+
448+ Qt::AlignmentFlag alignment = QApplication::isLeftToRight() ?
449+ Qt::AlignLeft : Qt::AlignRight;
450+ painter.drawText(contentsRect(), alignment | Qt::AlignVCenter, text());
451
452 if (QLabel::minimumSizeHint().width() > contentsRect().width()) {
453 // Text does not fit, fade the end
454 painter.setCompositionMode(QPainter::CompositionMode_DestinationIn);
455- QRect gradientRect(width() - FADEOUT_WIDTH, 0, FADEOUT_WIDTH, height());
456+ QRect gradientRect;
457+ if (QApplication::isLeftToRight())
458+ gradientRect = QRect(width() - FADEOUT_WIDTH, 0, FADEOUT_WIDTH, height());
459+ else
460+ gradientRect = QRect(0, 0, FADEOUT_WIDTH, height());
461 QLinearGradient gradient(gradientRect.topLeft(), gradientRect.topRight());
462- gradient.setColorAt(0, Qt::white);
463- gradient.setColorAt(1, Qt::transparent);
464+ if (QApplication::isLeftToRight()) {
465+ gradient.setColorAt(0, Qt::white);
466+ gradient.setColorAt(1, Qt::transparent);
467+ }
468+ else {
469+ gradient.setColorAt(0, Qt::transparent);
470+ gradient.setColorAt(1, Qt::white);
471+ }
472 painter.fillRect(gradientRect, gradient);
473 }
474 }
475@@ -167,7 +180,10 @@
476 m_label->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Minimum);
477 m_label->setTextFormat(Qt::PlainText);
478 // Align left of label with left of menubar
479- m_label->setContentsMargins(APPNAME_LABEL_LEFT_MARGIN, 0, 0, 0);
480+ if (QApplication::isLeftToRight())
481+ m_label->setContentsMargins(APPNAME_LABEL_LEFT_MARGIN, 0, 0, 0);
482+ else
483+ m_label->setContentsMargins(0, 0, APPNAME_LABEL_LEFT_MARGIN, 0);
484 QFont font = m_label->font();
485 font.setBold(true);
486 m_label->setFont(font);
487
488=== added file 'panel/artwork/divider_rtl.png'
489Binary files panel/artwork/divider_rtl.png 1970-01-01 00:00:00 +0000 and panel/artwork/divider_rtl.png 2011-08-05 18:22:37 +0000 differ
490=== modified file 'places/GroupHeader.qml'
491--- places/GroupHeader.qml 2011-06-23 17:08:53 +0000
492+++ places/GroupHeader.qml 2011-08-05 18:22:37 +0000
493@@ -44,8 +44,10 @@
494 height: 22
495 anchors.bottom: underline.top
496 anchors.bottomMargin: 5
497- anchors.left: parent.left
498- anchors.leftMargin: 8
499+ anchors.left: leftRight(parent.left)
500+ anchors.right: rightLeft(parent.right)
501+ anchors.leftMargin: leftRight(8,0)
502+ anchors.rightMargin: rightLeft(8,0)
503 fillMode: Image.PreserveAspectFit
504 sourceSize.width: width
505 sourceSize.height: height
506@@ -57,16 +59,20 @@
507 font.pixelSize: 16
508 anchors.baseline: underline.top
509 anchors.baselineOffset: -10
510- anchors.left: iconImage.right
511- anchors.leftMargin: 8
512+ anchors.left: leftRight(iconImage.right)
513+ anchors.right: rightLeft(iconImage.left)
514+ anchors.leftMargin: leftRight(8,0)
515+ anchors.rightMargin: rightLeft(8,0)
516 }
517
518 Item {
519 id: moreResults
520
521 visible: availableCount > 0
522- anchors.left: title.right
523- anchors.leftMargin: 11
524+ anchors.left: leftRight(title.right)
525+ anchors.right: rightLeft(title.left)
526+ anchors.leftMargin: leftRight(11,0)
527+ anchors.rightMargin: rightLeft(11,0)
528 anchors.baseline: title.baseline
529
530 opacity: groupHeader.state == "selected" || groupHeader.state == "pressed" ? 1.0 : 0.5
531@@ -93,7 +99,8 @@
532 return u2d.tr("See fewer results")
533 }
534
535- anchors.left: parent.left
536+ anchors.left: leftRight(parent.left)
537+ anchors.right: rightLeft(parent.right)
538 anchors.baseline: parent.baseline
539 }
540
541@@ -101,8 +108,10 @@
542 id: arrow
543
544 folded: groupHeader.folded
545- anchors.left: label.right
546- anchors.leftMargin: 10
547+ anchors.left: leftRight(label.right)
548+ anchors.right: rightLeft(label.left)
549+ anchors.leftMargin: leftRight(10,0)
550+ anchors.rightMargin: rightLeft(10,0)
551 anchors.verticalCenter: label.verticalCenter
552 }
553 }
554
555=== modified file 'places/Home.qml'
556--- places/Home.qml 2011-07-26 16:57:44 +0000
557+++ places/Home.qml 2011-08-05 18:22:37 +0000
558@@ -60,8 +60,10 @@
559 id: openShortcutsButton
560
561 anchors.bottom: parent.top
562- anchors.right: parent.right
563- anchors.rightMargin: 50
564+ anchors.right: leftRight(parent.right)
565+ anchors.left: rightLeft(parent.left)
566+ anchors.rightMargin: leftRight(50,0)
567+ anchors.leftMargin: rightLeft(50,0)
568 anchors.bottomMargin: 10
569 width: childrenRect.width
570 height: childrenRect.height
571@@ -71,13 +73,16 @@
572 source: "artwork/open_shortcuts.png"
573 width: sourceSize.width
574 height: sourceSize.height
575- anchors.left: parent.left
576+ anchors.left: leftRight(parent.left)
577+ anchors.right: rightLeft(parent.right)
578 }
579
580 TextCustom {
581 text: u2d.tr("Shortcuts")
582- anchors.left: icon.right
583- anchors.leftMargin: 3
584+ anchors.left: leftRight(icon.right)
585+ anchors.right: rightLeft(icon.left)
586+ anchors.leftMargin: leftRight(3,0)
587+ anchors.rightMargin: rightLeft(3,0)
588 width: paintedWidth
589 height: icon.height
590 font.pixelSize: 16
591@@ -148,9 +153,11 @@
592 Button {
593 id: closeShortcutsButton
594
595- anchors.left: parent.left
596+ anchors.left: leftRight(parent.left)
597+ anchors.right: rightLeft(parent.right)
598 anchors.top: parent.top
599- anchors.leftMargin: -width/2
600+ anchors.leftMargin: leftRight(-width/2,0)
601+ anchors.rightMargin: rightLeft(-width/2,0)
602
603 width: childrenRect.width
604 height: childrenRect.height
605
606=== modified file 'places/SearchEntry.qml'
607--- places/SearchEntry.qml 2011-06-24 18:35:18 +0000
608+++ places/SearchEntry.qml 2011-08-05 18:22:37 +0000
609@@ -55,8 +55,10 @@
610 Image {
611 id: search_icon
612
613- anchors.left: parent.left
614- anchors.leftMargin: -5
615+ anchors.left: leftRight(parent.left)
616+ anchors.right: rightLeft(parent.right)
617+ anchors.leftMargin: leftRight(-5,0)
618+ anchors.rightMargin: rightLeft(-5,0)
619 anchors.top: parent.top
620 anchors.bottom: parent.bottom
621 width: sourceSize.width
622@@ -91,11 +93,14 @@
623 enabled: search_input.text != ""
624 }
625
626- anchors.left: search_icon.right
627- anchors.leftMargin: -5
628- anchors.right: parent.right
629+ anchors.left: leftRight(search_icon.right, parent.left)
630+ anchors.leftMargin: leftRight(-5,0)
631+ anchors.rightMargin: rightLeft(-5,0)
632+ anchors.right: leftRight(parent.right, search_icon.left)
633 anchors.verticalCenter: parent.verticalCenter
634
635+ horizontalAlignment: leftRight(Text.AlignLeft, Text.AlignRight)
636+
637 color: "#ffffff"
638 font.pixelSize: 28
639 focus: true
640@@ -152,6 +157,8 @@
641 anchors.right: parent.right
642 anchors.verticalCenter: parent.verticalCenter
643
644+ horizontalAlignment: leftRight(Text.AlignLeft, Text.AlignRight)
645+
646 color: "white"
647 opacity: 0.5
648 font.pixelSize: 20
649
650=== modified file 'places/app/dashdeclarativeview.cpp'
651--- places/app/dashdeclarativeview.cpp 2011-07-28 11:10:37 +0000
652+++ places/app/dashdeclarativeview.cpp 2011-08-05 18:22:37 +0000
653@@ -86,11 +86,15 @@
654 DashDeclarativeView::resizeToDesktopModeSize()
655 {
656 QRect rect = availableGeometry();
657+ int screenRight = rect.right();
658
659 rect.setWidth(qMin(DASH_DESKTOP_WIDTH, rect.width()));
660 rect.setHeight(qMin(m_expanded ? DASH_DESKTOP_EXPANDED_HEIGHT : DASH_DESKTOP_COLLAPSED_HEIGHT,
661 rect.height()));
662
663+ if (QApplication::isRightToLeft())
664+ rect.moveRight(screenRight);
665+
666 move(rect.topLeft());
667 setFixedSize(rect.size());
668 }
669@@ -266,12 +270,15 @@
670 QRect screenRect = QApplication::desktop()->screenGeometry(this);
671 QRect availableRect = QApplication::desktop()->availableGeometry(this);
672
673- return QRect(
674+ QRect availableGeometry(
675 LauncherClient::MaximumWidth,
676 availableRect.top(),
677 screenRect.width() - LauncherClient::MaximumWidth,
678 availableRect.height()
679 );
680+ if (QApplication::isRightToLeft())
681+ availableGeometry.moveLeft(0);
682+ return availableGeometry;
683 }
684
685 void
686
687=== modified file 'places/app/places.cpp'
688--- places/app/places.cpp 2011-07-18 13:47:29 +0000
689+++ places/app/places.cpp 2011-08-05 18:22:37 +0000
690@@ -34,6 +34,7 @@
691 // unity-2d
692 #include <unity2dapplication.h>
693 #include <unity2ddebug.h>
694+#include <unity2dtr.h>
695
696 #include "dashdeclarativeview.h"
697 #include "config.h"
698@@ -44,6 +45,10 @@
699 Unity2dApplication application(argc, argv);
700 QSet<QString> arguments = QSet<QString>::fromList(QCoreApplication::arguments());
701
702+ Unity2dTr::init("unity-2d", INSTALL_PREFIX "/share/locale");
703+ if (u2dTr("QT_LAYOUT_DIRECTION") == "RTL")
704+ QApplication::setLayoutDirection(Qt::RightToLeft);
705+
706 qmlRegisterType<DashDeclarativeView>("Unity2d", 1, 0, "DashDeclarativeView");
707 DashDeclarativeView view;
708 view.setUseOpenGL(arguments.contains("-opengl"));
709
710=== added file 'places/artwork/desktop_dash_background_no_transparency_rtl.png'
711Binary files places/artwork/desktop_dash_background_no_transparency_rtl.png 1970-01-01 00:00:00 +0000 and places/artwork/desktop_dash_background_no_transparency_rtl.png 2011-08-05 18:22:37 +0000 differ
712=== added file 'places/artwork/desktop_dash_background_no_transparency_rtl.sci'
713--- places/artwork/desktop_dash_background_no_transparency_rtl.sci 1970-01-01 00:00:00 +0000
714+++ places/artwork/desktop_dash_background_no_transparency_rtl.sci 2011-08-05 18:22:37 +0000
715@@ -0,0 +1,7 @@
716+border.left: 46
717+border.top: 0
718+border.bottom: 45
719+border.right: 0
720+source: desktop_dash_background_no_transparency_rtl.png
721+horizontalTileRule: Repeat
722+verticalTileRule: Repeat
723
724=== added file 'places/artwork/desktop_dash_background_rtl.png'
725Binary files places/artwork/desktop_dash_background_rtl.png 1970-01-01 00:00:00 +0000 and places/artwork/desktop_dash_background_rtl.png 2011-08-05 18:22:37 +0000 differ
726=== added file 'places/artwork/desktop_dash_background_rtl.sci'
727--- places/artwork/desktop_dash_background_rtl.sci 1970-01-01 00:00:00 +0000
728+++ places/artwork/desktop_dash_background_rtl.sci 2011-08-05 18:22:37 +0000
729@@ -0,0 +1,7 @@
730+border.left: 46
731+border.top: 0
732+border.bottom: 45
733+border.right: 0
734+source: desktop_dash_background_rtl.png
735+horizontalTileRule: Repeat
736+verticalTileRule: Repeat
737
738=== added file 'places/artwork/fullscreen_button_rtl.png'
739Binary files places/artwork/fullscreen_button_rtl.png 1970-01-01 00:00:00 +0000 and places/artwork/fullscreen_button_rtl.png 2011-08-05 18:22:37 +0000 differ
740=== modified file 'places/dash.qml'
741--- places/dash.qml 2011-08-02 10:37:01 +0000
742+++ places/dash.qml 2011-08-05 18:22:37 +0000
743@@ -16,7 +16,7 @@
744 * along with this program. If not, see <http://www.gnu.org/licenses/>.
745 */
746
747-import QtQuick 1.0
748+import QtQuick 1.1
749 import Unity2d 1.0 /* Necessary for GnomeBackground and LauncherPlacesList*/
750
751 Item {
752@@ -24,6 +24,26 @@
753
754 property variant currentPage
755
756+ function isLeftToRight() {
757+ return dashView.layoutDirection == Qt.LeftToRight;
758+ }
759+
760+ function isRightToLeft() { return ! isLeftToRight(); }
761+
762+ function leftRight(ltr, rtl) {
763+ if (isLeftToRight())
764+ return ltr;
765+ else
766+ return rtl;
767+ }
768+
769+ function rightLeft(rtl, ltr) {
770+ if (isRightToLeft())
771+ return rtl;
772+ else
773+ return ltr;
774+ }
775+
776 Binding {
777 target: dashView
778 property: "expanded"
779@@ -119,7 +139,23 @@
780
781 anchors.fill: parent
782 visible: dashView.dashMode == DashDeclarativeView.DesktopMode
783- source: screen.isCompositingManagerRunning ? "artwork/desktop_dash_background.sci" : "artwork/desktop_dash_background_no_transparency.sci"
784+ source: getBorderImage()
785+ }
786+
787+ function getBorderImage() {
788+ var dir = dashView.layoutDirection;
789+ if (dir == Qt.LeftToRight) {
790+ if (screen.isCompositingManagerRunning)
791+ return "artwork/desktop_dash_background.sci";
792+ else
793+ return "artwork/desktop_dash_background_no_transparency.sci";
794+ }
795+ else { // Qt.RightToLeft
796+ if (screen.isCompositingManagerRunning)
797+ return "artwork/desktop_dash_background_rtl.sci";
798+ else
799+ return "artwork/desktop_dash_background_no_transparency_rtl.sci";
800+ }
801 }
802 /* /Backgrounds */
803
804@@ -129,7 +165,8 @@
805 the border defined by the background image.
806 */
807 anchors.bottomMargin: dashView.dashMode == DashDeclarativeView.DesktopMode ? 39 : 0
808- anchors.rightMargin: dashView.dashMode == DashDeclarativeView.DesktopMode ? 37 : 0
809+ anchors.rightMargin: leftRight(dashView.dashMode == DashDeclarativeView.DesktopMode ? 37 : 0, 0)
810+ anchors.leftMargin: rightLeft(dashView.dashMode == DashDeclarativeView.DesktopMode ? 37 : 0, 0)
811
812 visible: dashView.active
813
814@@ -152,10 +189,10 @@
815
816 anchors.top: parent.top
817 anchors.topMargin: 10
818- anchors.left: parent.left
819- anchors.leftMargin: 16
820- anchors.right: refine_search.left
821- anchors.rightMargin: 10
822+ anchors.left: leftRight(parent.left, refine_search.right)
823+ anchors.leftMargin: leftRight(16, 10)
824+ anchors.right: leftRight(refine_search.left, parent.right)
825+ anchors.rightMargin: leftRight(10, 16)
826
827 height: 53
828 }
829@@ -174,8 +211,10 @@
830 height: parent.height
831 headerHeight: search_entry.height
832 width: 295
833- anchors.right: parent.right
834- anchors.rightMargin: 19
835+ anchors.right: leftRight(parent.right)
836+ anchors.left: rightLeft(parent.left)
837+ anchors.rightMargin: leftRight(19, 0)
838+ anchors.leftMargin: rightLeft(19, 0)
839 }
840
841 Loader {
842@@ -190,10 +229,14 @@
843 anchors.top: search_entry.bottom
844 anchors.topMargin: 2
845 anchors.bottom: parent.bottom
846- anchors.left: parent.left
847- anchors.leftMargin: 20
848- anchors.right: !refine_search.visible || refine_search.folded ? parent.right : refine_search.left
849- anchors.rightMargin: !refine_search.visible || refine_search.folded ? 0 : 15
850+ anchors.left: leftRight(parent.left,
851+ !refine_search.visible || refine_search.folded ? parent.left : refine_search.right)
852+ anchors.leftMargin: leftRight(20,
853+ !refine_search.visible || refine_search.folded ? 0 : 15)
854+ anchors.right: leftRight(!refine_search.visible || refine_search.folded ? parent.right : refine_search.left,
855+ parent.right)
856+ anchors.rightMargin: leftRight(!refine_search.visible || refine_search.folded ? 0 : 15,
857+ 20)
858 onLoaded: item.focus = true
859 }
860 }
861@@ -201,8 +244,10 @@
862 Button {
863 id: fullScreenButton
864 anchors.bottom: parent.bottom
865- anchors.right: parent.right
866- anchors.rightMargin: 15
867+ anchors.right: leftRight(parent.right)
868+ anchors.left: rightLeft(parent.left)
869+ anchors.rightMargin: leftRight(15,0)
870+ anchors.leftMargin: rightLeft(15,0)
871 anchors.bottomMargin: 15
872 width: fullScreenButtonImage.sourceSize.width
873 height: fullScreenButtonImage.sourceSize.height
874@@ -210,7 +255,8 @@
875
876 Image {
877 id: fullScreenButtonImage
878- source: "artwork/fullscreen_button.png"
879+ source: leftRight("artwork/fullscreen_button.png",
880+ "artwork/fullscreen_button_rtl.png");
881 }
882
883 onClicked: {
884
885=== modified file 'po/af.po'
886--- po/af.po 2011-07-13 14:24:43 +0000
887+++ po/af.po 2011-08-05 18:22:37 +0000
888@@ -6,11 +6,12 @@
889 msgid ""
890 msgstr ""
891 "Project-Id-Version: unity-2d\n"
892-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
893-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
894+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
895+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
896 "PO-Revision-Date: 2011-04-16 12:15+0000\n"
897 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
898 "Language-Team: Afrikaans <af@li.org>\n"
899+"Language: af\n"
900 "MIME-Version: 1.0\n"
901 "Content-Type: text/plain; charset=UTF-8\n"
902 "Content-Transfer-Encoding: 8bit\n"
903@@ -18,8 +19,71 @@
904 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
905 "X-Generator: Launchpad (build 13388)\n"
906
907-#: places/GroupHeader.qml:88
908-msgid "See one more result"
909+#: libunity-2d-private/src/trash.cpp:255
910+#, c-format, qt-plural-format
911+msgid "%n item in trash"
912+msgid_plural "%n items in trash"
913+msgstr[0] ""
914+msgstr[1] ""
915+
916+#: places/HomeShortcuts.qml:82
917+msgid "Browse the Web"
918+msgstr ""
919+
920+#: places/HomeShortcuts.qml:92
921+msgid "Check Email"
922+msgstr ""
923+
924+#: libunity-2d-private/src/launcherdevice.cpp:237
925+msgid "Eject"
926+msgstr ""
927+
928+#: libunity-2d-private/src/trash.cpp:262
929+msgid "Empty Trash"
930+msgstr ""
931+
932+#: places/HomeShortcuts.qml:75
933+msgid "Find Files"
934+msgstr ""
935+
936+#: places/HomeShortcuts.qml:63
937+msgid "Internet Apps"
938+msgstr ""
939+
940+#: libunity-2d-private/src/launcherapplication.cpp:883
941+msgid "Keep In Launcher"
942+msgstr ""
943+
944+#: places/HomeShortcuts.qml:97
945+msgid "Listen to Music"
946+msgstr ""
947+
948+#: places/HomeShortcuts.qml:57
949+msgid "Media Apps"
950+msgstr ""
951+
952+#: places/HomeShortcuts.qml:69
953+msgid "More Apps"
954+msgstr ""
955+
956+#: launcher/app/launcher.cpp:95
957+msgid "QT_LAYOUT_DIRECTION"
958+msgstr ""
959+
960+#: libunity-2d-private/src/launcherapplication.cpp:890
961+msgid "Quit"
962+msgstr ""
963+
964+#: places/SearchRefine.qml:67
965+msgid "Refine search"
966+msgstr ""
967+
968+#: libunity-2d-private/src/launcherapplication.cpp:883
969+msgid "Remove From Launcher"
970+msgstr ""
971+
972+#: places/SearchEntry.qml:165
973+msgid "Search"
974 msgstr ""
975
976 #: places/GroupHeader.qml:90
977@@ -31,81 +95,26 @@
978 msgid "See fewer results"
979 msgstr ""
980
981-#: places/HomeShortcuts.qml:32
982-msgid "Media Apps"
983-msgstr ""
984-
985-#: places/HomeShortcuts.qml:38
986-msgid "Internet Apps"
987-msgstr ""
988-
989-#: places/HomeShortcuts.qml:44
990-msgid "More Apps"
991-msgstr ""
992-
993-#: places/HomeShortcuts.qml:50
994-msgid "Find Files"
995-msgstr ""
996-
997-#: places/HomeShortcuts.qml:57
998-msgid "Browse the Web"
999-msgstr ""
1000-
1001-#: places/HomeShortcuts.qml:62
1002-msgid "View Photos"
1003-msgstr ""
1004-
1005-#: places/HomeShortcuts.qml:67
1006-msgid "Check Email"
1007-msgstr ""
1008-
1009-#: places/HomeShortcuts.qml:72
1010-msgid "Listen to Music"
1011-msgstr ""
1012-
1013-#: places/Home.qml:79
1014+#: places/GroupHeader.qml:88
1015+msgid "See one more result"
1016+msgstr ""
1017+
1018+#: places/Home.qml:78
1019 msgid "Shortcuts"
1020 msgstr ""
1021
1022-#: places/SearchRefine.qml:61
1023-msgid "Refine search"
1024+#: libunity-2d-private/src/trash.cpp:125
1025+msgid "Trash"
1026 msgstr ""
1027
1028-#: places/SearchRefine.qml:84
1029+#: places/SearchRefine.qml:91
1030 msgid "Type"
1031 msgstr ""
1032
1033-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1034-msgid "Eject"
1035-msgstr ""
1036-
1037-#: libunity-2d-private/Unity2d/trash.cpp:125
1038-msgid "Trash"
1039-msgstr ""
1040-
1041-#: libunity-2d-private/Unity2d/trash.cpp:255
1042-#, c-format, qt-plural-format
1043-msgid "%n item in trash"
1044-msgid_plural "%n items in trash"
1045-msgstr[0] ""
1046-msgstr[1] ""
1047-
1048-#: libunity-2d-private/Unity2d/trash.cpp:262
1049-msgid "Empty Trash"
1050-msgstr ""
1051-
1052-#: libunity-2d-private/Unity2d/workspaces.cpp:73
1053+#: places/HomeShortcuts.qml:87
1054+msgid "View Photos"
1055+msgstr ""
1056+
1057+#: libunity-2d-private/src/workspaces.cpp:73
1058 msgid "Workspaces"
1059 msgstr ""
1060-
1061-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1062-msgid "Keep In Launcher"
1063-msgstr ""
1064-
1065-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1066-msgid "Remove From Launcher"
1067-msgstr ""
1068-
1069-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
1070-msgid "Quit"
1071-msgstr ""
1072
1073=== modified file 'po/am.po'
1074--- po/am.po 2011-07-13 14:24:43 +0000
1075+++ po/am.po 2011-08-05 18:22:37 +0000
1076@@ -6,11 +6,12 @@
1077 msgid ""
1078 msgstr ""
1079 "Project-Id-Version: unity-2d\n"
1080-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1081-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
1082+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
1083+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
1084 "PO-Revision-Date: 2011-05-09 00:41+0000\n"
1085 "Last-Translator: samson <Unknown>\n"
1086 "Language-Team: Amharic <am@li.org>\n"
1087+"Language: am\n"
1088 "MIME-Version: 1.0\n"
1089 "Content-Type: text/plain; charset=UTF-8\n"
1090 "Content-Transfer-Encoding: 8bit\n"
1091@@ -18,9 +19,72 @@
1092 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
1093 "X-Generator: Launchpad (build 13388)\n"
1094
1095-#: places/GroupHeader.qml:88
1096-msgid "See one more result"
1097-msgstr "አንድ ተጨማሪ ውጤት መመልከቻ"
1098+#: libunity-2d-private/src/trash.cpp:255
1099+#, c-format, qt-plural-format
1100+msgid "%n item in trash"
1101+msgid_plural "%n items in trash"
1102+msgstr[0] "%n እቃ በቆሻሻ ውስጥ"
1103+msgstr[1] "%n እቃዎች በቆሻሻ ውስጥ"
1104+
1105+#: places/HomeShortcuts.qml:82
1106+msgid "Browse the Web"
1107+msgstr "ዌብ መቃኛ"
1108+
1109+#: places/HomeShortcuts.qml:92
1110+msgid "Check Email"
1111+msgstr "ኢሜይል መፈለጊያ"
1112+
1113+#: libunity-2d-private/src/launcherdevice.cpp:237
1114+msgid "Eject"
1115+msgstr "ማውጫ"
1116+
1117+#: libunity-2d-private/src/trash.cpp:262
1118+msgid "Empty Trash"
1119+msgstr "ቆሻሻውን ባዶ ማድረጊያ"
1120+
1121+#: places/HomeShortcuts.qml:75
1122+msgid "Find Files"
1123+msgstr "ፋይሎች መፈለጊያ"
1124+
1125+#: places/HomeShortcuts.qml:63
1126+msgid "Internet Apps"
1127+msgstr "የኢንተርኔት መተግበሪያዎች"
1128+
1129+#: libunity-2d-private/src/launcherapplication.cpp:883
1130+msgid "Keep In Launcher"
1131+msgstr "ማስነሻው ውስጥ ይቀመጥ"
1132+
1133+#: places/HomeShortcuts.qml:97
1134+msgid "Listen to Music"
1135+msgstr "ሙዚቃ ማድመጫ"
1136+
1137+#: places/HomeShortcuts.qml:57
1138+msgid "Media Apps"
1139+msgstr "የብዙሀን መገናኛ መተግበሪያዎች"
1140+
1141+#: places/HomeShortcuts.qml:69
1142+msgid "More Apps"
1143+msgstr "ተጨማሪ መተግበሪያዎች"
1144+
1145+#: launcher/app/launcher.cpp:95
1146+msgid "QT_LAYOUT_DIRECTION"
1147+msgstr ""
1148+
1149+#: libunity-2d-private/src/launcherapplication.cpp:890
1150+msgid "Quit"
1151+msgstr "ማጥፊያ"
1152+
1153+#: places/SearchRefine.qml:67
1154+msgid "Refine search"
1155+msgstr "ፍለጋውን ማጥሪያ"
1156+
1157+#: libunity-2d-private/src/launcherapplication.cpp:883
1158+msgid "Remove From Launcher"
1159+msgstr "ከማስነሻው ውስጥ ማስወገጃ"
1160+
1161+#: places/SearchEntry.qml:165
1162+msgid "Search"
1163+msgstr ""
1164
1165 #: places/GroupHeader.qml:90
1166 #, qt-format
1167@@ -31,81 +95,26 @@
1168 msgid "See fewer results"
1169 msgstr "ጥቂት ውጤቶች መመልከቻ"
1170
1171-#: places/HomeShortcuts.qml:32
1172-msgid "Media Apps"
1173-msgstr "የብዙሀን መገናኛ መተግበሪያዎች"
1174-
1175-#: places/HomeShortcuts.qml:38
1176-msgid "Internet Apps"
1177-msgstr "የኢንተርኔት መተግበሪያዎች"
1178-
1179-#: places/HomeShortcuts.qml:44
1180-msgid "More Apps"
1181-msgstr "ተጨማሪ መተግበሪያዎች"
1182-
1183-#: places/HomeShortcuts.qml:50
1184-msgid "Find Files"
1185-msgstr "ፋይሎች መፈለጊያ"
1186-
1187-#: places/HomeShortcuts.qml:57
1188-msgid "Browse the Web"
1189-msgstr "ዌብ መቃኛ"
1190-
1191-#: places/HomeShortcuts.qml:62
1192-msgid "View Photos"
1193-msgstr "ፎቶ መመልከቻ"
1194-
1195-#: places/HomeShortcuts.qml:67
1196-msgid "Check Email"
1197-msgstr "ኢሜይል መፈለጊያ"
1198-
1199-#: places/HomeShortcuts.qml:72
1200-msgid "Listen to Music"
1201-msgstr "ሙዚቃ ማድመጫ"
1202-
1203-#: places/Home.qml:79
1204+#: places/GroupHeader.qml:88
1205+msgid "See one more result"
1206+msgstr "አንድ ተጨማሪ ውጤት መመልከቻ"
1207+
1208+#: places/Home.qml:78
1209 msgid "Shortcuts"
1210 msgstr "አቋራጮች"
1211
1212-#: places/SearchRefine.qml:61
1213-msgid "Refine search"
1214-msgstr "ፍለጋውን ማጥሪያ"
1215+#: libunity-2d-private/src/trash.cpp:125
1216+msgid "Trash"
1217+msgstr "ቆሻሻ"
1218
1219-#: places/SearchRefine.qml:84
1220+#: places/SearchRefine.qml:91
1221 msgid "Type"
1222 msgstr "አይነት"
1223
1224-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1225-msgid "Eject"
1226-msgstr "ማውጫ"
1227-
1228-#: libunity-2d-private/Unity2d/trash.cpp:125
1229-msgid "Trash"
1230-msgstr "ቆሻሻ"
1231-
1232-#: libunity-2d-private/Unity2d/trash.cpp:255
1233-#, c-format, qt-plural-format
1234-msgid "%n item in trash"
1235-msgid_plural "%n items in trash"
1236-msgstr[0] "%n እቃ በቆሻሻ ውስጥ"
1237-msgstr[1] "%n እቃዎች በቆሻሻ ውስጥ"
1238-
1239-#: libunity-2d-private/Unity2d/trash.cpp:262
1240-msgid "Empty Trash"
1241-msgstr "ቆሻሻውን ባዶ ማድረጊያ"
1242-
1243-#: libunity-2d-private/Unity2d/workspaces.cpp:73
1244+#: places/HomeShortcuts.qml:87
1245+msgid "View Photos"
1246+msgstr "ፎቶ መመልከቻ"
1247+
1248+#: libunity-2d-private/src/workspaces.cpp:73
1249 msgid "Workspaces"
1250 msgstr "የስራ ቦታዎች"
1251-
1252-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1253-msgid "Keep In Launcher"
1254-msgstr "ማስነሻው ውስጥ ይቀመጥ"
1255-
1256-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1257-msgid "Remove From Launcher"
1258-msgstr "ከማስነሻው ውስጥ ማስወገጃ"
1259-
1260-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
1261-msgid "Quit"
1262-msgstr "ማጥፊያ"
1263
1264=== modified file 'po/an.po'
1265--- po/an.po 2011-07-13 14:24:43 +0000
1266+++ po/an.po 2011-08-05 18:22:37 +0000
1267@@ -6,11 +6,12 @@
1268 msgid ""
1269 msgstr ""
1270 "Project-Id-Version: unity-2d\n"
1271-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1272-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
1273+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
1274+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
1275 "PO-Revision-Date: 2011-04-28 23:57+0000\n"
1276 "Last-Translator: Daniel Martinez <entaltoaragon@gmail.com>\n"
1277 "Language-Team: Aragonese <an@li.org>\n"
1278+"Language: an\n"
1279 "MIME-Version: 1.0\n"
1280 "Content-Type: text/plain; charset=UTF-8\n"
1281 "Content-Transfer-Encoding: 8bit\n"
1282@@ -18,9 +19,72 @@
1283 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
1284 "X-Generator: Launchpad (build 13388)\n"
1285
1286-#: places/GroupHeader.qml:88
1287-msgid "See one more result"
1288-msgstr "Amostrar un resultau mas"
1289+#: libunity-2d-private/src/trash.cpp:255
1290+#, c-format, qt-plural-format
1291+msgid "%n item in trash"
1292+msgid_plural "%n items in trash"
1293+msgstr[0] "%n elemento en a vasuera"
1294+msgstr[1] "%n elementos en a vasuera"
1295+
1296+#: places/HomeShortcuts.qml:82
1297+msgid "Browse the Web"
1298+msgstr "Explorar o Web"
1299+
1300+#: places/HomeShortcuts.qml:92
1301+msgid "Check Email"
1302+msgstr "Comprebar o correu"
1303+
1304+#: libunity-2d-private/src/launcherdevice.cpp:237
1305+msgid "Eject"
1306+msgstr "Expulsar"
1307+
1308+#: libunity-2d-private/src/trash.cpp:262
1309+msgid "Empty Trash"
1310+msgstr "Vaciar a vasuera"
1311+
1312+#: places/HomeShortcuts.qml:75
1313+msgid "Find Files"
1314+msgstr "Mirar archivos"
1315+
1316+#: places/HomeShortcuts.qml:63
1317+msgid "Internet Apps"
1318+msgstr "Internet"
1319+
1320+#: libunity-2d-private/src/launcherapplication.cpp:883
1321+msgid "Keep In Launcher"
1322+msgstr "Mantener en o lanzador"
1323+
1324+#: places/HomeShortcuts.qml:97
1325+msgid "Listen to Music"
1326+msgstr "Ascuitar mosica"
1327+
1328+#: places/HomeShortcuts.qml:57
1329+msgid "Media Apps"
1330+msgstr "Multimedia"
1331+
1332+#: places/HomeShortcuts.qml:69
1333+msgid "More Apps"
1334+msgstr "Mas aplicacions"
1335+
1336+#: launcher/app/launcher.cpp:95
1337+msgid "QT_LAYOUT_DIRECTION"
1338+msgstr ""
1339+
1340+#: libunity-2d-private/src/launcherapplication.cpp:890
1341+msgid "Quit"
1342+msgstr "Salir"
1343+
1344+#: places/SearchRefine.qml:67
1345+msgid "Refine search"
1346+msgstr "Amillorar a busqueda"
1347+
1348+#: libunity-2d-private/src/launcherapplication.cpp:883
1349+msgid "Remove From Launcher"
1350+msgstr "Sacar d'o lanzador"
1351+
1352+#: places/SearchEntry.qml:165
1353+msgid "Search"
1354+msgstr ""
1355
1356 #: places/GroupHeader.qml:90
1357 #, qt-format
1358@@ -31,81 +95,26 @@
1359 msgid "See fewer results"
1360 msgstr "Amostrar menos resultaus"
1361
1362-#: places/HomeShortcuts.qml:32
1363-msgid "Media Apps"
1364-msgstr "Multimedia"
1365-
1366-#: places/HomeShortcuts.qml:38
1367-msgid "Internet Apps"
1368-msgstr "Internet"
1369-
1370-#: places/HomeShortcuts.qml:44
1371-msgid "More Apps"
1372-msgstr "Mas aplicacions"
1373-
1374-#: places/HomeShortcuts.qml:50
1375-msgid "Find Files"
1376-msgstr "Mirar archivos"
1377-
1378-#: places/HomeShortcuts.qml:57
1379-msgid "Browse the Web"
1380-msgstr "Explorar o Web"
1381-
1382-#: places/HomeShortcuts.qml:62
1383-msgid "View Photos"
1384-msgstr "Veyer retratos"
1385-
1386-#: places/HomeShortcuts.qml:67
1387-msgid "Check Email"
1388-msgstr "Comprebar o correu"
1389-
1390-#: places/HomeShortcuts.qml:72
1391-msgid "Listen to Music"
1392-msgstr "Ascuitar mosica"
1393-
1394-#: places/Home.qml:79
1395+#: places/GroupHeader.qml:88
1396+msgid "See one more result"
1397+msgstr "Amostrar un resultau mas"
1398+
1399+#: places/Home.qml:78
1400 msgid "Shortcuts"
1401 msgstr "Alcorces"
1402
1403-#: places/SearchRefine.qml:61
1404-msgid "Refine search"
1405-msgstr "Amillorar a busqueda"
1406+#: libunity-2d-private/src/trash.cpp:125
1407+msgid "Trash"
1408+msgstr "Vasuera"
1409
1410-#: places/SearchRefine.qml:84
1411+#: places/SearchRefine.qml:91
1412 msgid "Type"
1413 msgstr "Tipo"
1414
1415-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1416-msgid "Eject"
1417-msgstr "Expulsar"
1418-
1419-#: libunity-2d-private/Unity2d/trash.cpp:125
1420-msgid "Trash"
1421-msgstr "Vasuera"
1422-
1423-#: libunity-2d-private/Unity2d/trash.cpp:255
1424-#, c-format, qt-plural-format
1425-msgid "%n item in trash"
1426-msgid_plural "%n items in trash"
1427-msgstr[0] "%n elemento en a vasuera"
1428-msgstr[1] "%n elementos en a vasuera"
1429-
1430-#: libunity-2d-private/Unity2d/trash.cpp:262
1431-msgid "Empty Trash"
1432-msgstr "Vaciar a vasuera"
1433-
1434-#: libunity-2d-private/Unity2d/workspaces.cpp:73
1435+#: places/HomeShortcuts.qml:87
1436+msgid "View Photos"
1437+msgstr "Veyer retratos"
1438+
1439+#: libunity-2d-private/src/workspaces.cpp:73
1440 msgid "Workspaces"
1441 msgstr "Areas de treballo"
1442-
1443-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1444-msgid "Keep In Launcher"
1445-msgstr "Mantener en o lanzador"
1446-
1447-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1448-msgid "Remove From Launcher"
1449-msgstr "Sacar d'o lanzador"
1450-
1451-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
1452-msgid "Quit"
1453-msgstr "Salir"
1454
1455=== modified file 'po/ar.po'
1456--- po/ar.po 2011-07-13 14:24:43 +0000
1457+++ po/ar.po 2011-08-05 18:22:37 +0000
1458@@ -6,11 +6,12 @@
1459 msgid ""
1460 msgstr ""
1461 "Project-Id-Version: unity-2d\n"
1462-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1463-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
1464+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
1465+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
1466 "PO-Revision-Date: 2011-03-26 17:01+0000\n"
1467 "Last-Translator: Ahmed Shams <Unknown>\n"
1468 "Language-Team: Arabic <ar@li.org>\n"
1469+"Language: ar\n"
1470 "MIME-Version: 1.0\n"
1471 "Content-Type: text/plain; charset=UTF-8\n"
1472 "Content-Transfer-Encoding: 8bit\n"
1473@@ -19,94 +20,102 @@
1474 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
1475 "X-Generator: Launchpad (build 13388)\n"
1476
1477-#: places/GroupHeader.qml:88
1478-msgid "See one more result"
1479-msgstr ""
1480-
1481-#: places/GroupHeader.qml:90
1482-#, qt-format
1483-msgid "See %1 more results"
1484-msgstr ""
1485-
1486-#: places/GroupHeader.qml:93
1487-msgid "See fewer results"
1488-msgstr ""
1489-
1490-#: places/HomeShortcuts.qml:32
1491-msgid "Media Apps"
1492-msgstr ""
1493-
1494-#: places/HomeShortcuts.qml:38
1495-msgid "Internet Apps"
1496-msgstr ""
1497-
1498-#: places/HomeShortcuts.qml:44
1499-msgid "More Apps"
1500-msgstr ""
1501-
1502-#: places/HomeShortcuts.qml:50
1503-msgid "Find Files"
1504-msgstr ""
1505-
1506-#: places/HomeShortcuts.qml:57
1507-msgid "Browse the Web"
1508-msgstr "تصفح الويب"
1509-
1510-#: places/HomeShortcuts.qml:62
1511-msgid "View Photos"
1512-msgstr "أظهر الصور"
1513-
1514-#: places/HomeShortcuts.qml:67
1515-msgid "Check Email"
1516-msgstr ""
1517-
1518-#: places/HomeShortcuts.qml:72
1519-msgid "Listen to Music"
1520-msgstr "استمع إلى الموسيقى"
1521-
1522-#: places/Home.qml:79
1523-msgid "Shortcuts"
1524-msgstr ""
1525-
1526-#: places/SearchRefine.qml:61
1527-msgid "Refine search"
1528-msgstr ""
1529-
1530-#: places/SearchRefine.qml:84
1531-msgid "Type"
1532-msgstr ""
1533-
1534-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1535-msgid "Eject"
1536-msgstr ""
1537-
1538-#: libunity-2d-private/Unity2d/trash.cpp:125
1539-msgid "Trash"
1540-msgstr "المحذوفات"
1541-
1542-#: libunity-2d-private/Unity2d/trash.cpp:255
1543+#: libunity-2d-private/src/trash.cpp:255
1544 #, c-format, qt-plural-format
1545 msgid "%n item in trash"
1546 msgid_plural "%n items in trash"
1547 msgstr[0] ""
1548 msgstr[1] ""
1549
1550-#: libunity-2d-private/Unity2d/trash.cpp:262
1551+#: places/HomeShortcuts.qml:82
1552+msgid "Browse the Web"
1553+msgstr "تصفح الويب"
1554+
1555+#: places/HomeShortcuts.qml:92
1556+msgid "Check Email"
1557+msgstr ""
1558+
1559+#: libunity-2d-private/src/launcherdevice.cpp:237
1560+msgid "Eject"
1561+msgstr ""
1562+
1563+#: libunity-2d-private/src/trash.cpp:262
1564 msgid "Empty Trash"
1565 msgstr "أفرغ سلة المحذوفات"
1566
1567-#: libunity-2d-private/Unity2d/workspaces.cpp:73
1568-msgid "Workspaces"
1569-msgstr "مساحات العمل"
1570-
1571-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1572+#: places/HomeShortcuts.qml:75
1573+msgid "Find Files"
1574+msgstr ""
1575+
1576+#: places/HomeShortcuts.qml:63
1577+msgid "Internet Apps"
1578+msgstr ""
1579+
1580+#: libunity-2d-private/src/launcherapplication.cpp:883
1581 msgid "Keep In Launcher"
1582 msgstr "ثبت في المُشَغِّل"
1583
1584-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1585+#: places/HomeShortcuts.qml:97
1586+msgid "Listen to Music"
1587+msgstr "استمع إلى الموسيقى"
1588+
1589+#: places/HomeShortcuts.qml:57
1590+msgid "Media Apps"
1591+msgstr ""
1592+
1593+#: places/HomeShortcuts.qml:69
1594+msgid "More Apps"
1595+msgstr ""
1596+
1597+#: launcher/app/launcher.cpp:95
1598+msgid "QT_LAYOUT_DIRECTION"
1599+msgstr "RTL"
1600+
1601+#: libunity-2d-private/src/launcherapplication.cpp:890
1602+msgid "Quit"
1603+msgstr "خروج"
1604+
1605+#: places/SearchRefine.qml:67
1606+msgid "Refine search"
1607+msgstr ""
1608+
1609+#: libunity-2d-private/src/launcherapplication.cpp:883
1610 msgid "Remove From Launcher"
1611 msgstr "أزل من المُشَغِّل"
1612
1613-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
1614-msgid "Quit"
1615-msgstr "خروج"
1616+#: places/SearchEntry.qml:165
1617+msgid "Search"
1618+msgstr ""
1619+
1620+#: places/GroupHeader.qml:90
1621+#, qt-format
1622+msgid "See %1 more results"
1623+msgstr ""
1624+
1625+#: places/GroupHeader.qml:93
1626+msgid "See fewer results"
1627+msgstr ""
1628+
1629+#: places/GroupHeader.qml:88
1630+msgid "See one more result"
1631+msgstr ""
1632+
1633+#: places/Home.qml:78
1634+msgid "Shortcuts"
1635+msgstr ""
1636+
1637+#: libunity-2d-private/src/trash.cpp:125
1638+msgid "Trash"
1639+msgstr "المحذوفات"
1640+
1641+#: places/SearchRefine.qml:91
1642+msgid "Type"
1643+msgstr ""
1644+
1645+#: places/HomeShortcuts.qml:87
1646+msgid "View Photos"
1647+msgstr "أظهر الصور"
1648+
1649+#: libunity-2d-private/src/workspaces.cpp:73
1650+msgid "Workspaces"
1651+msgstr "مساحات العمل"
1652
1653=== modified file 'po/ast.po'
1654--- po/ast.po 2011-07-13 14:24:43 +0000
1655+++ po/ast.po 2011-08-05 18:22:37 +0000
1656@@ -6,11 +6,12 @@
1657 msgid ""
1658 msgstr ""
1659 "Project-Id-Version: unity-2d\n"
1660-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1661-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
1662+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
1663+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
1664 "PO-Revision-Date: 2011-04-20 11:47+0000\n"
1665 "Last-Translator: Iñigo Varela <malditoastur@gmail.com>\n"
1666 "Language-Team: Asturian <ast@li.org>\n"
1667+"Language: ast\n"
1668 "MIME-Version: 1.0\n"
1669 "Content-Type: text/plain; charset=UTF-8\n"
1670 "Content-Transfer-Encoding: 8bit\n"
1671@@ -18,9 +19,72 @@
1672 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
1673 "X-Generator: Launchpad (build 13388)\n"
1674
1675-#: places/GroupHeader.qml:88
1676-msgid "See one more result"
1677-msgstr "Ver un resultáu más"
1678+#: libunity-2d-private/src/trash.cpp:255
1679+#, c-format, qt-plural-format
1680+msgid "%n item in trash"
1681+msgid_plural "%n items in trash"
1682+msgstr[0] "%n elementu na papelera"
1683+msgstr[1] "%n elementos na papelera"
1684+
1685+#: places/HomeShortcuts.qml:82
1686+msgid "Browse the Web"
1687+msgstr "Restolar na Web"
1688+
1689+#: places/HomeShortcuts.qml:92
1690+msgid "Check Email"
1691+msgstr "Ver corréu"
1692+
1693+#: libunity-2d-private/src/launcherdevice.cpp:237
1694+msgid "Eject"
1695+msgstr "Espulsar"
1696+
1697+#: libunity-2d-private/src/trash.cpp:262
1698+msgid "Empty Trash"
1699+msgstr "Vaciar Papelera"
1700+
1701+#: places/HomeShortcuts.qml:75
1702+msgid "Find Files"
1703+msgstr "Guetar ficheros"
1704+
1705+#: places/HomeShortcuts.qml:63
1706+msgid "Internet Apps"
1707+msgstr "Aplicaciones d'Internet"
1708+
1709+#: libunity-2d-private/src/launcherapplication.cpp:883
1710+msgid "Keep In Launcher"
1711+msgstr "Caltener nel llanzador"
1712+
1713+#: places/HomeShortcuts.qml:97
1714+msgid "Listen to Music"
1715+msgstr "Escuchar música"
1716+
1717+#: places/HomeShortcuts.qml:57
1718+msgid "Media Apps"
1719+msgstr "Aplicaciones multimedia"
1720+
1721+#: places/HomeShortcuts.qml:69
1722+msgid "More Apps"
1723+msgstr "Más aplicaciones"
1724+
1725+#: launcher/app/launcher.cpp:95
1726+msgid "QT_LAYOUT_DIRECTION"
1727+msgstr ""
1728+
1729+#: libunity-2d-private/src/launcherapplication.cpp:890
1730+msgid "Quit"
1731+msgstr "Quitar"
1732+
1733+#: places/SearchRefine.qml:67
1734+msgid "Refine search"
1735+msgstr "Meyorar la gueta"
1736+
1737+#: libunity-2d-private/src/launcherapplication.cpp:883
1738+msgid "Remove From Launcher"
1739+msgstr "Desaniciar del llanzador"
1740+
1741+#: places/SearchEntry.qml:165
1742+msgid "Search"
1743+msgstr ""
1744
1745 #: places/GroupHeader.qml:90
1746 #, qt-format
1747@@ -31,81 +95,26 @@
1748 msgid "See fewer results"
1749 msgstr "Ver menos resultados"
1750
1751-#: places/HomeShortcuts.qml:32
1752-msgid "Media Apps"
1753-msgstr "Aplicaciones multimedia"
1754-
1755-#: places/HomeShortcuts.qml:38
1756-msgid "Internet Apps"
1757-msgstr "Aplicaciones d'Internet"
1758-
1759-#: places/HomeShortcuts.qml:44
1760-msgid "More Apps"
1761-msgstr "Más aplicaciones"
1762-
1763-#: places/HomeShortcuts.qml:50
1764-msgid "Find Files"
1765-msgstr "Guetar ficheros"
1766-
1767-#: places/HomeShortcuts.qml:57
1768-msgid "Browse the Web"
1769-msgstr "Restolar na Web"
1770-
1771-#: places/HomeShortcuts.qml:62
1772-msgid "View Photos"
1773-msgstr "Ver semeyes"
1774-
1775-#: places/HomeShortcuts.qml:67
1776-msgid "Check Email"
1777-msgstr "Ver corréu"
1778-
1779-#: places/HomeShortcuts.qml:72
1780-msgid "Listen to Music"
1781-msgstr "Escuchar música"
1782-
1783-#: places/Home.qml:79
1784+#: places/GroupHeader.qml:88
1785+msgid "See one more result"
1786+msgstr "Ver un resultáu más"
1787+
1788+#: places/Home.qml:78
1789 msgid "Shortcuts"
1790 msgstr "Atayos"
1791
1792-#: places/SearchRefine.qml:61
1793-msgid "Refine search"
1794-msgstr "Meyorar la gueta"
1795+#: libunity-2d-private/src/trash.cpp:125
1796+msgid "Trash"
1797+msgstr "Papelera"
1798
1799-#: places/SearchRefine.qml:84
1800+#: places/SearchRefine.qml:91
1801 msgid "Type"
1802 msgstr "Triba"
1803
1804-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1805-msgid "Eject"
1806-msgstr "Espulsar"
1807-
1808-#: libunity-2d-private/Unity2d/trash.cpp:125
1809-msgid "Trash"
1810-msgstr "Papelera"
1811-
1812-#: libunity-2d-private/Unity2d/trash.cpp:255
1813-#, c-format, qt-plural-format
1814-msgid "%n item in trash"
1815-msgid_plural "%n items in trash"
1816-msgstr[0] "%n elementu na papelera"
1817-msgstr[1] "%n elementos na papelera"
1818-
1819-#: libunity-2d-private/Unity2d/trash.cpp:262
1820-msgid "Empty Trash"
1821-msgstr "Vaciar Papelera"
1822-
1823-#: libunity-2d-private/Unity2d/workspaces.cpp:73
1824+#: places/HomeShortcuts.qml:87
1825+msgid "View Photos"
1826+msgstr "Ver semeyes"
1827+
1828+#: libunity-2d-private/src/workspaces.cpp:73
1829 msgid "Workspaces"
1830 msgstr "Árees de trabayu"
1831-
1832-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1833-msgid "Keep In Launcher"
1834-msgstr "Caltener nel llanzador"
1835-
1836-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
1837-msgid "Remove From Launcher"
1838-msgstr "Desaniciar del llanzador"
1839-
1840-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
1841-msgid "Quit"
1842-msgstr "Quitar"
1843
1844=== modified file 'po/az.po'
1845--- po/az.po 2011-07-13 14:24:43 +0000
1846+++ po/az.po 2011-08-05 18:22:37 +0000
1847@@ -6,11 +6,12 @@
1848 msgid ""
1849 msgstr ""
1850 "Project-Id-Version: unity-2d\n"
1851-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
1852-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
1853+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
1854+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
1855 "PO-Revision-Date: 2011-04-21 09:28+0000\n"
1856 "Last-Translator: Rashid Aliyev <Unknown>\n"
1857 "Language-Team: Azerbaijani <az@li.org>\n"
1858+"Language: az\n"
1859 "MIME-Version: 1.0\n"
1860 "Content-Type: text/plain; charset=UTF-8\n"
1861 "Content-Transfer-Encoding: 8bit\n"
1862@@ -18,9 +19,72 @@
1863 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
1864 "X-Generator: Launchpad (build 13388)\n"
1865
1866-#: places/GroupHeader.qml:88
1867-msgid "See one more result"
1868-msgstr "Bir dənənə nəticə göstər"
1869+#: libunity-2d-private/src/trash.cpp:255
1870+#, c-format, qt-plural-format
1871+msgid "%n item in trash"
1872+msgid_plural "%n items in trash"
1873+msgstr[0] "Zibil Qutusunda %n fayl var"
1874+msgstr[1] "Zibil Qutusunda %n fayl var"
1875+
1876+#: places/HomeShortcuts.qml:82
1877+msgid "Browse the Web"
1878+msgstr "İnternetdə gəz"
1879+
1880+#: places/HomeShortcuts.qml:92
1881+msgid "Check Email"
1882+msgstr "E-poçtu yoxla"
1883+
1884+#: libunity-2d-private/src/launcherdevice.cpp:237
1885+msgid "Eject"
1886+msgstr "Çıxar"
1887+
1888+#: libunity-2d-private/src/trash.cpp:262
1889+msgid "Empty Trash"
1890+msgstr "Zibil qutusunu təmizlə"
1891+
1892+#: places/HomeShortcuts.qml:75
1893+msgid "Find Files"
1894+msgstr "Faylları Tap"
1895+
1896+#: places/HomeShortcuts.qml:63
1897+msgid "Internet Apps"
1898+msgstr "İnternet proqramları"
1899+
1900+#: libunity-2d-private/src/launcherapplication.cpp:883
1901+msgid "Keep In Launcher"
1902+msgstr "Başladıcıda Saxla"
1903+
1904+#: places/HomeShortcuts.qml:97
1905+msgid "Listen to Music"
1906+msgstr "Musiqiyə Qulaq as"
1907+
1908+#: places/HomeShortcuts.qml:57
1909+msgid "Media Apps"
1910+msgstr "Media proqramları"
1911+
1912+#: places/HomeShortcuts.qml:69
1913+msgid "More Apps"
1914+msgstr "Daha çox proqram"
1915+
1916+#: launcher/app/launcher.cpp:95
1917+msgid "QT_LAYOUT_DIRECTION"
1918+msgstr ""
1919+
1920+#: libunity-2d-private/src/launcherapplication.cpp:890
1921+msgid "Quit"
1922+msgstr "Çıx"
1923+
1924+#: places/SearchRefine.qml:67
1925+msgid "Refine search"
1926+msgstr "Axtarışı dəqiqləşdir"
1927+
1928+#: libunity-2d-private/src/launcherapplication.cpp:883
1929+msgid "Remove From Launcher"
1930+msgstr "Başladıcıdan çıxart"
1931+
1932+#: places/SearchEntry.qml:165
1933+msgid "Search"
1934+msgstr ""
1935
1936 #: places/GroupHeader.qml:90
1937 #, qt-format
1938@@ -31,81 +95,26 @@
1939 msgid "See fewer results"
1940 msgstr "Az nəticə göstər"
1941
1942-#: places/HomeShortcuts.qml:32
1943-msgid "Media Apps"
1944-msgstr "Media proqramları"
1945-
1946-#: places/HomeShortcuts.qml:38
1947-msgid "Internet Apps"
1948-msgstr "İnternet proqramları"
1949-
1950-#: places/HomeShortcuts.qml:44
1951-msgid "More Apps"
1952-msgstr "Daha çox proqram"
1953-
1954-#: places/HomeShortcuts.qml:50
1955-msgid "Find Files"
1956-msgstr "Faylları Tap"
1957-
1958-#: places/HomeShortcuts.qml:57
1959-msgid "Browse the Web"
1960-msgstr "İnternetdə gəz"
1961-
1962-#: places/HomeShortcuts.qml:62
1963-msgid "View Photos"
1964-msgstr "Şəkillərə Bax"
1965-
1966-#: places/HomeShortcuts.qml:67
1967-msgid "Check Email"
1968-msgstr "E-poçtu yoxla"
1969-
1970-#: places/HomeShortcuts.qml:72
1971-msgid "Listen to Music"
1972-msgstr "Musiqiyə Qulaq as"
1973-
1974-#: places/Home.qml:79
1975+#: places/GroupHeader.qml:88
1976+msgid "See one more result"
1977+msgstr "Bir dənənə nəticə göstər"
1978+
1979+#: places/Home.qml:78
1980 msgid "Shortcuts"
1981 msgstr "Qısa yollar"
1982
1983-#: places/SearchRefine.qml:61
1984-msgid "Refine search"
1985-msgstr "Axtarışı dəqiqləşdir"
1986+#: libunity-2d-private/src/trash.cpp:125
1987+msgid "Trash"
1988+msgstr "Zibil Qutusu"
1989
1990-#: places/SearchRefine.qml:84
1991+#: places/SearchRefine.qml:91
1992 msgid "Type"
1993 msgstr "Növ"
1994
1995-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
1996-msgid "Eject"
1997-msgstr "Çıxar"
1998-
1999-#: libunity-2d-private/Unity2d/trash.cpp:125
2000-msgid "Trash"
2001-msgstr "Zibil Qutusu"
2002-
2003-#: libunity-2d-private/Unity2d/trash.cpp:255
2004-#, c-format, qt-plural-format
2005-msgid "%n item in trash"
2006-msgid_plural "%n items in trash"
2007-msgstr[0] "Zibil Qutusunda %n fayl var"
2008-msgstr[1] "Zibil Qutusunda %n fayl var"
2009-
2010-#: libunity-2d-private/Unity2d/trash.cpp:262
2011-msgid "Empty Trash"
2012-msgstr "Zibil qutusunu təmizlə"
2013-
2014-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2015+#: places/HomeShortcuts.qml:87
2016+msgid "View Photos"
2017+msgstr "Şəkillərə Bax"
2018+
2019+#: libunity-2d-private/src/workspaces.cpp:73
2020 msgid "Workspaces"
2021 msgstr "İş Sahələri"
2022-
2023-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2024-msgid "Keep In Launcher"
2025-msgstr "Başladıcıda Saxla"
2026-
2027-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2028-msgid "Remove From Launcher"
2029-msgstr "Başladıcıdan çıxart"
2030-
2031-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2032-msgid "Quit"
2033-msgstr "Çıx"
2034
2035=== modified file 'po/be.po'
2036--- po/be.po 2011-07-13 14:24:43 +0000
2037+++ po/be.po 2011-08-05 18:22:37 +0000
2038@@ -6,22 +6,87 @@
2039 msgid ""
2040 msgstr ""
2041 "Project-Id-Version: unity-2d\n"
2042-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2043-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
2044+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
2045+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
2046 "PO-Revision-Date: 2011-04-28 01:22+0000\n"
2047 "Last-Translator: Alex Nyakhaychyk <nyakhaychyk@gmail.com>\n"
2048 "Language-Team: Belarusian <be@li.org>\n"
2049+"Language: be\n"
2050 "MIME-Version: 1.0\n"
2051 "Content-Type: text/plain; charset=UTF-8\n"
2052 "Content-Transfer-Encoding: 8bit\n"
2053-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
2054-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2055+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2056+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
2057 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
2058 "X-Generator: Launchpad (build 13388)\n"
2059
2060-#: places/GroupHeader.qml:88
2061-msgid "See one more result"
2062-msgstr "Яшчэ адзін вынік"
2063+#: libunity-2d-private/src/trash.cpp:255
2064+#, c-format, qt-plural-format
2065+msgid "%n item in trash"
2066+msgid_plural "%n items in trash"
2067+msgstr[0] "%n элемент у сметніцы"
2068+msgstr[1] "%n элементы ў сметніцы"
2069+msgstr[2] "%n элементаў у сметніцы"
2070+
2071+#: places/HomeShortcuts.qml:82
2072+msgid "Browse the Web"
2073+msgstr "Павандраваць у сеціве"
2074+
2075+#: places/HomeShortcuts.qml:92
2076+msgid "Check Email"
2077+msgstr "Праверыць пошту"
2078+
2079+#: libunity-2d-private/src/launcherdevice.cpp:237
2080+msgid "Eject"
2081+msgstr "Выштурхнуць"
2082+
2083+#: libunity-2d-private/src/trash.cpp:262
2084+msgid "Empty Trash"
2085+msgstr "Спустошыць сьметніцу"
2086+
2087+#: places/HomeShortcuts.qml:75
2088+msgid "Find Files"
2089+msgstr "Знайсьці файлы"
2090+
2091+#: places/HomeShortcuts.qml:63
2092+msgid "Internet Apps"
2093+msgstr "Інтэрнэт"
2094+
2095+#: libunity-2d-private/src/launcherapplication.cpp:883
2096+msgid "Keep In Launcher"
2097+msgstr "Пакінуць на панэлі запуску"
2098+
2099+#: places/HomeShortcuts.qml:97
2100+msgid "Listen to Music"
2101+msgstr "Паслухаць музыку"
2102+
2103+#: places/HomeShortcuts.qml:57
2104+msgid "Media Apps"
2105+msgstr "Медыя"
2106+
2107+#: places/HomeShortcuts.qml:69
2108+msgid "More Apps"
2109+msgstr "Іншыя"
2110+
2111+#: launcher/app/launcher.cpp:95
2112+msgid "QT_LAYOUT_DIRECTION"
2113+msgstr ""
2114+
2115+#: libunity-2d-private/src/launcherapplication.cpp:890
2116+msgid "Quit"
2117+msgstr "Выйсьці"
2118+
2119+#: places/SearchRefine.qml:67
2120+msgid "Refine search"
2121+msgstr "Удакладніць пошук"
2122+
2123+#: libunity-2d-private/src/launcherapplication.cpp:883
2124+msgid "Remove From Launcher"
2125+msgstr "Выдаліць з панэлі запуску"
2126+
2127+#: places/SearchEntry.qml:165
2128+msgid "Search"
2129+msgstr ""
2130
2131 #: places/GroupHeader.qml:90
2132 #, qt-format
2133@@ -32,82 +97,26 @@
2134 msgid "See fewer results"
2135 msgstr "Паглядзець меньш вынікаў"
2136
2137-#: places/HomeShortcuts.qml:32
2138-msgid "Media Apps"
2139-msgstr "Медыя"
2140-
2141-#: places/HomeShortcuts.qml:38
2142-msgid "Internet Apps"
2143-msgstr "Інтэрнэт"
2144-
2145-#: places/HomeShortcuts.qml:44
2146-msgid "More Apps"
2147-msgstr "Іншыя"
2148-
2149-#: places/HomeShortcuts.qml:50
2150-msgid "Find Files"
2151-msgstr "Знайсьці файлы"
2152-
2153-#: places/HomeShortcuts.qml:57
2154-msgid "Browse the Web"
2155-msgstr "Павандраваць у сеціве"
2156-
2157-#: places/HomeShortcuts.qml:62
2158-msgid "View Photos"
2159-msgstr "Паглядзець фотаздымкі"
2160-
2161-#: places/HomeShortcuts.qml:67
2162-msgid "Check Email"
2163-msgstr "Праверыць пошту"
2164-
2165-#: places/HomeShortcuts.qml:72
2166-msgid "Listen to Music"
2167-msgstr "Паслухаць музыку"
2168-
2169-#: places/Home.qml:79
2170+#: places/GroupHeader.qml:88
2171+msgid "See one more result"
2172+msgstr "Яшчэ адзін вынік"
2173+
2174+#: places/Home.qml:78
2175 msgid "Shortcuts"
2176 msgstr "Скароты"
2177
2178-#: places/SearchRefine.qml:61
2179-msgid "Refine search"
2180-msgstr "Удакладніць пошук"
2181+#: libunity-2d-private/src/trash.cpp:125
2182+msgid "Trash"
2183+msgstr "Сьметніца"
2184
2185-#: places/SearchRefine.qml:84
2186+#: places/SearchRefine.qml:91
2187 msgid "Type"
2188 msgstr "Тып"
2189
2190-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
2191-msgid "Eject"
2192-msgstr "Выштурхнуць"
2193-
2194-#: libunity-2d-private/Unity2d/trash.cpp:125
2195-msgid "Trash"
2196-msgstr "Сьметніца"
2197-
2198-#: libunity-2d-private/Unity2d/trash.cpp:255
2199-#, c-format, qt-plural-format
2200-msgid "%n item in trash"
2201-msgid_plural "%n items in trash"
2202-msgstr[0] "%n элемент у сметніцы"
2203-msgstr[1] "%n элементы ў сметніцы"
2204-msgstr[2] "%n элементаў у сметніцы"
2205-
2206-#: libunity-2d-private/Unity2d/trash.cpp:262
2207-msgid "Empty Trash"
2208-msgstr "Спустошыць сьметніцу"
2209-
2210-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2211+#: places/HomeShortcuts.qml:87
2212+msgid "View Photos"
2213+msgstr "Паглядзець фотаздымкі"
2214+
2215+#: libunity-2d-private/src/workspaces.cpp:73
2216 msgid "Workspaces"
2217 msgstr "Працоўныя прасторы"
2218-
2219-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2220-msgid "Keep In Launcher"
2221-msgstr "Пакінуць на панэлі запуску"
2222-
2223-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2224-msgid "Remove From Launcher"
2225-msgstr "Выдаліць з панэлі запуску"
2226-
2227-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2228-msgid "Quit"
2229-msgstr "Выйсьці"
2230
2231=== modified file 'po/bem.po'
2232--- po/bem.po 2011-07-13 14:24:43 +0000
2233+++ po/bem.po 2011-08-05 18:22:37 +0000
2234@@ -6,11 +6,12 @@
2235 msgid ""
2236 msgstr ""
2237 "Project-Id-Version: unity-2d\n"
2238-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2239-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
2240+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
2241+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
2242 "PO-Revision-Date: 2011-07-08 06:30+0000\n"
2243 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
2244 "Language-Team: Bemba <bem@li.org>\n"
2245+"Language: bem\n"
2246 "MIME-Version: 1.0\n"
2247 "Content-Type: text/plain; charset=UTF-8\n"
2248 "Content-Transfer-Encoding: 8bit\n"
2249@@ -18,8 +19,71 @@
2250 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
2251 "X-Generator: Launchpad (build 13388)\n"
2252
2253-#: places/GroupHeader.qml:88
2254-msgid "See one more result"
2255+#: libunity-2d-private/src/trash.cpp:255
2256+#, c-format, qt-plural-format
2257+msgid "%n item in trash"
2258+msgid_plural "%n items in trash"
2259+msgstr[0] ""
2260+msgstr[1] ""
2261+
2262+#: places/HomeShortcuts.qml:82
2263+msgid "Browse the Web"
2264+msgstr ""
2265+
2266+#: places/HomeShortcuts.qml:92
2267+msgid "Check Email"
2268+msgstr ""
2269+
2270+#: libunity-2d-private/src/launcherdevice.cpp:237
2271+msgid "Eject"
2272+msgstr ""
2273+
2274+#: libunity-2d-private/src/trash.cpp:262
2275+msgid "Empty Trash"
2276+msgstr ""
2277+
2278+#: places/HomeShortcuts.qml:75
2279+msgid "Find Files"
2280+msgstr ""
2281+
2282+#: places/HomeShortcuts.qml:63
2283+msgid "Internet Apps"
2284+msgstr ""
2285+
2286+#: libunity-2d-private/src/launcherapplication.cpp:883
2287+msgid "Keep In Launcher"
2288+msgstr ""
2289+
2290+#: places/HomeShortcuts.qml:97
2291+msgid "Listen to Music"
2292+msgstr ""
2293+
2294+#: places/HomeShortcuts.qml:57
2295+msgid "Media Apps"
2296+msgstr ""
2297+
2298+#: places/HomeShortcuts.qml:69
2299+msgid "More Apps"
2300+msgstr "Ama Apps nayambi"
2301+
2302+#: launcher/app/launcher.cpp:95
2303+msgid "QT_LAYOUT_DIRECTION"
2304+msgstr ""
2305+
2306+#: libunity-2d-private/src/launcherapplication.cpp:890
2307+msgid "Quit"
2308+msgstr ""
2309+
2310+#: places/SearchRefine.qml:67
2311+msgid "Refine search"
2312+msgstr ""
2313+
2314+#: libunity-2d-private/src/launcherapplication.cpp:883
2315+msgid "Remove From Launcher"
2316+msgstr ""
2317+
2318+#: places/SearchEntry.qml:165
2319+msgid "Search"
2320 msgstr ""
2321
2322 #: places/GroupHeader.qml:90
2323@@ -31,81 +95,26 @@
2324 msgid "See fewer results"
2325 msgstr ""
2326
2327-#: places/HomeShortcuts.qml:32
2328-msgid "Media Apps"
2329-msgstr ""
2330-
2331-#: places/HomeShortcuts.qml:38
2332-msgid "Internet Apps"
2333-msgstr ""
2334-
2335-#: places/HomeShortcuts.qml:44
2336-msgid "More Apps"
2337-msgstr "Ama Apps nayambi"
2338-
2339-#: places/HomeShortcuts.qml:50
2340-msgid "Find Files"
2341-msgstr ""
2342-
2343-#: places/HomeShortcuts.qml:57
2344-msgid "Browse the Web"
2345-msgstr ""
2346-
2347-#: places/HomeShortcuts.qml:62
2348+#: places/GroupHeader.qml:88
2349+msgid "See one more result"
2350+msgstr ""
2351+
2352+#: places/Home.qml:78
2353+msgid "Shortcuts"
2354+msgstr ""
2355+
2356+#: libunity-2d-private/src/trash.cpp:125
2357+msgid "Trash"
2358+msgstr ""
2359+
2360+#: places/SearchRefine.qml:91
2361+msgid "Type"
2362+msgstr ""
2363+
2364+#: places/HomeShortcuts.qml:87
2365 msgid "View Photos"
2366 msgstr "Tambeni ifikope"
2367
2368-#: places/HomeShortcuts.qml:67
2369-msgid "Check Email"
2370-msgstr ""
2371-
2372-#: places/HomeShortcuts.qml:72
2373-msgid "Listen to Music"
2374-msgstr ""
2375-
2376-#: places/Home.qml:79
2377-msgid "Shortcuts"
2378-msgstr ""
2379-
2380-#: places/SearchRefine.qml:61
2381-msgid "Refine search"
2382-msgstr ""
2383-
2384-#: places/SearchRefine.qml:84
2385-msgid "Type"
2386-msgstr ""
2387-
2388-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
2389-msgid "Eject"
2390-msgstr ""
2391-
2392-#: libunity-2d-private/Unity2d/trash.cpp:125
2393-msgid "Trash"
2394-msgstr ""
2395-
2396-#: libunity-2d-private/Unity2d/trash.cpp:255
2397-#, c-format, qt-plural-format
2398-msgid "%n item in trash"
2399-msgid_plural "%n items in trash"
2400-msgstr[0] ""
2401-msgstr[1] ""
2402-
2403-#: libunity-2d-private/Unity2d/trash.cpp:262
2404-msgid "Empty Trash"
2405-msgstr ""
2406-
2407-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2408+#: libunity-2d-private/src/workspaces.cpp:73
2409 msgid "Workspaces"
2410 msgstr ""
2411-
2412-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2413-msgid "Keep In Launcher"
2414-msgstr ""
2415-
2416-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2417-msgid "Remove From Launcher"
2418-msgstr ""
2419-
2420-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2421-msgid "Quit"
2422-msgstr ""
2423
2424=== modified file 'po/bg.po'
2425--- po/bg.po 2011-07-13 14:24:43 +0000
2426+++ po/bg.po 2011-08-05 18:22:37 +0000
2427@@ -6,11 +6,12 @@
2428 msgid ""
2429 msgstr ""
2430 "Project-Id-Version: unity-2d\n"
2431-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2432-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
2433+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
2434+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
2435 "PO-Revision-Date: 2011-05-03 07:13+0000\n"
2436 "Last-Translator: Svetoslav Stefanov <svetlisashkov@yahoo.com>\n"
2437 "Language-Team: Bulgarian <bg@li.org>\n"
2438+"Language: bg\n"
2439 "MIME-Version: 1.0\n"
2440 "Content-Type: text/plain; charset=UTF-8\n"
2441 "Content-Transfer-Encoding: 8bit\n"
2442@@ -18,9 +19,72 @@
2443 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
2444 "X-Generator: Launchpad (build 13388)\n"
2445
2446-#: places/GroupHeader.qml:88
2447-msgid "See one more result"
2448-msgstr "Показване на още един резулат"
2449+#: libunity-2d-private/src/trash.cpp:255
2450+#, c-format, qt-plural-format
2451+msgid "%n item in trash"
2452+msgid_plural "%n items in trash"
2453+msgstr[0] "%n обект в кошчето"
2454+msgstr[1] "%n обекта в кошчето"
2455+
2456+#: places/HomeShortcuts.qml:82
2457+msgid "Browse the Web"
2458+msgstr "Разглеждане на Мрежата"
2459+
2460+#: places/HomeShortcuts.qml:92
2461+msgid "Check Email"
2462+msgstr "Проверка на пощата"
2463+
2464+#: libunity-2d-private/src/launcherdevice.cpp:237
2465+msgid "Eject"
2466+msgstr "Изваждане"
2467+
2468+#: libunity-2d-private/src/trash.cpp:262
2469+msgid "Empty Trash"
2470+msgstr "Изпразване на кошчето"
2471+
2472+#: places/HomeShortcuts.qml:75
2473+msgid "Find Files"
2474+msgstr "Търсене на файлове"
2475+
2476+#: places/HomeShortcuts.qml:63
2477+msgid "Internet Apps"
2478+msgstr "Интернет приложения"
2479+
2480+#: libunity-2d-private/src/launcherapplication.cpp:883
2481+msgid "Keep In Launcher"
2482+msgstr "Остави в програмата за стартиране"
2483+
2484+#: places/HomeShortcuts.qml:97
2485+msgid "Listen to Music"
2486+msgstr "Слушане на Музика"
2487+
2488+#: places/HomeShortcuts.qml:57
2489+msgid "Media Apps"
2490+msgstr "Meдийни приложения"
2491+
2492+#: places/HomeShortcuts.qml:69
2493+msgid "More Apps"
2494+msgstr "Повече приложения"
2495+
2496+#: launcher/app/launcher.cpp:95
2497+msgid "QT_LAYOUT_DIRECTION"
2498+msgstr ""
2499+
2500+#: libunity-2d-private/src/launcherapplication.cpp:890
2501+msgid "Quit"
2502+msgstr "Изход"
2503+
2504+#: places/SearchRefine.qml:67
2505+msgid "Refine search"
2506+msgstr "Прецизиране на търсенето"
2507+
2508+#: libunity-2d-private/src/launcherapplication.cpp:883
2509+msgid "Remove From Launcher"
2510+msgstr "Премахване от програмата за стартиране"
2511+
2512+#: places/SearchEntry.qml:165
2513+msgid "Search"
2514+msgstr ""
2515
2516 #: places/GroupHeader.qml:90
2517 #, qt-format
2518@@ -31,81 +95,26 @@
2519 msgid "See fewer results"
2520 msgstr "Показване на по-малко резултати"
2521
2522-#: places/HomeShortcuts.qml:32
2523-msgid "Media Apps"
2524-msgstr "Meдийни приложения"
2525-
2526-#: places/HomeShortcuts.qml:38
2527-msgid "Internet Apps"
2528-msgstr "Интернет приложения"
2529-
2530-#: places/HomeShortcuts.qml:44
2531-msgid "More Apps"
2532-msgstr "Повече приложения"
2533-
2534-#: places/HomeShortcuts.qml:50
2535-msgid "Find Files"
2536-msgstr "Търсене на файлове"
2537-
2538-#: places/HomeShortcuts.qml:57
2539-msgid "Browse the Web"
2540-msgstr "Разглеждане на Мрежата"
2541-
2542-#: places/HomeShortcuts.qml:62
2543-msgid "View Photos"
2544-msgstr "Преглед на Снимки"
2545-
2546-#: places/HomeShortcuts.qml:67
2547-msgid "Check Email"
2548-msgstr "Проверка на пощата"
2549-
2550-#: places/HomeShortcuts.qml:72
2551-msgid "Listen to Music"
2552-msgstr "Слушане на Музика"
2553-
2554-#: places/Home.qml:79
2555+#: places/GroupHeader.qml:88
2556+msgid "See one more result"
2557+msgstr "Показване на още един резулат"
2558+
2559+#: places/Home.qml:78
2560 msgid "Shortcuts"
2561 msgstr "Препратки"
2562
2563-#: places/SearchRefine.qml:61
2564-msgid "Refine search"
2565-msgstr "Прецизиране на търсенето"
2566+#: libunity-2d-private/src/trash.cpp:125
2567+msgid "Trash"
2568+msgstr "Кошче"
2569
2570-#: places/SearchRefine.qml:84
2571+#: places/SearchRefine.qml:91
2572 msgid "Type"
2573 msgstr "Тип"
2574
2575-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
2576-msgid "Eject"
2577-msgstr "Изваждане"
2578-
2579-#: libunity-2d-private/Unity2d/trash.cpp:125
2580-msgid "Trash"
2581-msgstr "Кошче"
2582-
2583-#: libunity-2d-private/Unity2d/trash.cpp:255
2584-#, c-format, qt-plural-format
2585-msgid "%n item in trash"
2586-msgid_plural "%n items in trash"
2587-msgstr[0] "%n обект в кошчето"
2588-msgstr[1] "%n обекта в кошчето"
2589-
2590-#: libunity-2d-private/Unity2d/trash.cpp:262
2591-msgid "Empty Trash"
2592-msgstr "Изпразване на кошчето"
2593-
2594-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2595+#: places/HomeShortcuts.qml:87
2596+msgid "View Photos"
2597+msgstr "Преглед на Снимки"
2598+
2599+#: libunity-2d-private/src/workspaces.cpp:73
2600 msgid "Workspaces"
2601 msgstr "Работни плотове"
2602-
2603-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2604-msgid "Keep In Launcher"
2605-msgstr "Остави в програмата за стартиране"
2606-
2607-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2608-msgid "Remove From Launcher"
2609-msgstr "Премахване от програмата за стартиране"
2610-
2611-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2612-msgid "Quit"
2613-msgstr "Изход"
2614
2615=== modified file 'po/bn.po'
2616--- po/bn.po 2011-07-13 14:24:43 +0000
2617+++ po/bn.po 2011-08-05 18:22:37 +0000
2618@@ -6,11 +6,12 @@
2619 msgid ""
2620 msgstr ""
2621 "Project-Id-Version: unity-2d\n"
2622-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2623-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
2624+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
2625+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
2626 "PO-Revision-Date: 2011-04-21 01:08+0000\n"
2627 "Last-Translator: Aniruddha Adhikary <Unknown>\n"
2628 "Language-Team: Bengali <ankur-bd-l10n@googlegroups.com>\n"
2629+"Language: bn\n"
2630 "MIME-Version: 1.0\n"
2631 "Content-Type: text/plain; charset=UTF-8\n"
2632 "Content-Transfer-Encoding: 8bit\n"
2633@@ -18,9 +19,72 @@
2634 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
2635 "X-Generator: Launchpad (build 13388)\n"
2636
2637-#: places/GroupHeader.qml:88
2638-msgid "See one more result"
2639-msgstr "আরও একটি ফলাফল দেখুন"
2640+#: libunity-2d-private/src/trash.cpp:255
2641+#, c-format, qt-plural-format
2642+msgid "%n item in trash"
2643+msgid_plural "%n items in trash"
2644+msgstr[0] "আবর্জনায় %n আইটেম"
2645+msgstr[1] "আবর্জনায় %n টি আইটেম"
2646+
2647+#: places/HomeShortcuts.qml:82
2648+msgid "Browse the Web"
2649+msgstr "ওয়েব ব্রাউজ"
2650+
2651+#: places/HomeShortcuts.qml:92
2652+msgid "Check Email"
2653+msgstr "ইমেইল পরীক্ষা"
2654+
2655+#: libunity-2d-private/src/launcherdevice.cpp:237
2656+msgid "Eject"
2657+msgstr "বের করা"
2658+
2659+#: libunity-2d-private/src/trash.cpp:262
2660+msgid "Empty Trash"
2661+msgstr "শূন্য আবর্জনা"
2662+
2663+#: places/HomeShortcuts.qml:75
2664+msgid "Find Files"
2665+msgstr "ফাইল অনুসন্ধান"
2666+
2667+#: places/HomeShortcuts.qml:63
2668+msgid "Internet Apps"
2669+msgstr "ইন্টারনেট অ্যাপ"
2670+
2671+#: libunity-2d-private/src/launcherapplication.cpp:883
2672+msgid "Keep In Launcher"
2673+msgstr "লঞ্চারে রাখা"
2674+
2675+#: places/HomeShortcuts.qml:97
2676+msgid "Listen to Music"
2677+msgstr "গান শোনা"
2678+
2679+#: places/HomeShortcuts.qml:57
2680+msgid "Media Apps"
2681+msgstr "মিডিয়া অ্যাপ"
2682+
2683+#: places/HomeShortcuts.qml:69
2684+msgid "More Apps"
2685+msgstr "আরও অ্যাপ"
2686+
2687+#: launcher/app/launcher.cpp:95
2688+msgid "QT_LAYOUT_DIRECTION"
2689+msgstr ""
2690+
2691+#: libunity-2d-private/src/launcherapplication.cpp:890
2692+msgid "Quit"
2693+msgstr "প্রস্থান"
2694+
2695+#: places/SearchRefine.qml:67
2696+msgid "Refine search"
2697+msgstr "রিফাইন অনুসন্ধান"
2698+
2699+#: libunity-2d-private/src/launcherapplication.cpp:883
2700+msgid "Remove From Launcher"
2701+msgstr "লঞ্চার থেকে অপসারণ"
2702+
2703+#: places/SearchEntry.qml:165
2704+msgid "Search"
2705+msgstr ""
2706
2707 #: places/GroupHeader.qml:90
2708 #, qt-format
2709@@ -31,81 +95,26 @@
2710 msgid "See fewer results"
2711 msgstr "খুব কম ফলাফল দেখা"
2712
2713-#: places/HomeShortcuts.qml:32
2714-msgid "Media Apps"
2715-msgstr "মিডিয়া অ্যাপ"
2716-
2717-#: places/HomeShortcuts.qml:38
2718-msgid "Internet Apps"
2719-msgstr "ইন্টারনেট অ্যাপ"
2720-
2721-#: places/HomeShortcuts.qml:44
2722-msgid "More Apps"
2723-msgstr "আরও অ্যাপ"
2724-
2725-#: places/HomeShortcuts.qml:50
2726-msgid "Find Files"
2727-msgstr "ফাইল অনুসন্ধান"
2728-
2729-#: places/HomeShortcuts.qml:57
2730-msgid "Browse the Web"
2731-msgstr "ওয়েব ব্রাউজ"
2732-
2733-#: places/HomeShortcuts.qml:62
2734-msgid "View Photos"
2735-msgstr "ছবি দেখা"
2736-
2737-#: places/HomeShortcuts.qml:67
2738-msgid "Check Email"
2739-msgstr "ইমেইল পরীক্ষা"
2740-
2741-#: places/HomeShortcuts.qml:72
2742-msgid "Listen to Music"
2743-msgstr "গান শোনা"
2744-
2745-#: places/Home.qml:79
2746+#: places/GroupHeader.qml:88
2747+msgid "See one more result"
2748+msgstr "আরও একটি ফলাফল দেখুন"
2749+
2750+#: places/Home.qml:78
2751 msgid "Shortcuts"
2752 msgstr "শর্টকাট"
2753
2754-#: places/SearchRefine.qml:61
2755-msgid "Refine search"
2756-msgstr "রিফাইন অনুসন্ধান"
2757+#: libunity-2d-private/src/trash.cpp:125
2758+msgid "Trash"
2759+msgstr "আবর্জনা"
2760
2761-#: places/SearchRefine.qml:84
2762+#: places/SearchRefine.qml:91
2763 msgid "Type"
2764 msgstr "ধরণ"
2765
2766-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
2767-msgid "Eject"
2768-msgstr "বের করা"
2769-
2770-#: libunity-2d-private/Unity2d/trash.cpp:125
2771-msgid "Trash"
2772-msgstr "আবর্জনা"
2773-
2774-#: libunity-2d-private/Unity2d/trash.cpp:255
2775-#, c-format, qt-plural-format
2776-msgid "%n item in trash"
2777-msgid_plural "%n items in trash"
2778-msgstr[0] "আবর্জনায় %n আইটেম"
2779-msgstr[1] "আবর্জনায় %n টি আইটেম"
2780-
2781-#: libunity-2d-private/Unity2d/trash.cpp:262
2782-msgid "Empty Trash"
2783-msgstr "শূন্য আবর্জনা"
2784-
2785-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2786+#: places/HomeShortcuts.qml:87
2787+msgid "View Photos"
2788+msgstr "ছবি দেখা"
2789+
2790+#: libunity-2d-private/src/workspaces.cpp:73
2791 msgid "Workspaces"
2792 msgstr "ওয়ার্কস্পেস"
2793-
2794-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2795-msgid "Keep In Launcher"
2796-msgstr "লঞ্চারে রাখা"
2797-
2798-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2799-msgid "Remove From Launcher"
2800-msgstr "লঞ্চার থেকে অপসারণ"
2801-
2802-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2803-msgid "Quit"
2804-msgstr "প্রস্থান"
2805
2806=== modified file 'po/bs.po'
2807--- po/bs.po 2011-07-13 14:24:43 +0000
2808+++ po/bs.po 2011-08-05 18:22:37 +0000
2809@@ -6,22 +6,87 @@
2810 msgid ""
2811 msgstr ""
2812 "Project-Id-Version: unity-2d\n"
2813-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
2814-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
2815+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
2816+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
2817 "PO-Revision-Date: 2011-04-20 08:50+0000\n"
2818 "Last-Translator: Samir Ribić <Unknown>\n"
2819 "Language-Team: Bosnian <bs@li.org>\n"
2820+"Language: bs\n"
2821 "MIME-Version: 1.0\n"
2822 "Content-Type: text/plain; charset=UTF-8\n"
2823 "Content-Transfer-Encoding: 8bit\n"
2824-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
2825-"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
2826+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
2827+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
2828 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
2829 "X-Generator: Launchpad (build 13388)\n"
2830
2831-#: places/GroupHeader.qml:88
2832-msgid "See one more result"
2833-msgstr "Vidi još jedan rezultat"
2834+#: libunity-2d-private/src/trash.cpp:255
2835+#, c-format, qt-plural-format
2836+msgid "%n item in trash"
2837+msgid_plural "%n items in trash"
2838+msgstr[0] "%n datoteka u smeću"
2839+msgstr[1] "%n datoteke u smeću"
2840+msgstr[2] "%n datoteka u smeću"
2841+
2842+#: places/HomeShortcuts.qml:82
2843+msgid "Browse the Web"
2844+msgstr "Pregled Interneta"
2845+
2846+#: places/HomeShortcuts.qml:92
2847+msgid "Check Email"
2848+msgstr "Provjerite elektronsku poštu"
2849+
2850+#: libunity-2d-private/src/launcherdevice.cpp:237
2851+msgid "Eject"
2852+msgstr "Izbaci"
2853+
2854+#: libunity-2d-private/src/trash.cpp:262
2855+msgid "Empty Trash"
2856+msgstr "Isprazni kantu"
2857+
2858+#: places/HomeShortcuts.qml:75
2859+msgid "Find Files"
2860+msgstr "Traži datoteke"
2861+
2862+#: places/HomeShortcuts.qml:63
2863+msgid "Internet Apps"
2864+msgstr "Internet programi"
2865+
2866+#: libunity-2d-private/src/launcherapplication.cpp:883
2867+msgid "Keep In Launcher"
2868+msgstr "Čuvaj u pokretaču"
2869+
2870+#: places/HomeShortcuts.qml:97
2871+msgid "Listen to Music"
2872+msgstr "Slušajte muziku"
2873+
2874+#: places/HomeShortcuts.qml:57
2875+msgid "Media Apps"
2876+msgstr "Medijalni programi"
2877+
2878+#: places/HomeShortcuts.qml:69
2879+msgid "More Apps"
2880+msgstr "Još programa"
2881+
2882+#: launcher/app/launcher.cpp:95
2883+msgid "QT_LAYOUT_DIRECTION"
2884+msgstr ""
2885+
2886+#: libunity-2d-private/src/launcherapplication.cpp:890
2887+msgid "Quit"
2888+msgstr "Izlaz"
2889+
2890+#: places/SearchRefine.qml:67
2891+msgid "Refine search"
2892+msgstr "Doradi pretragu"
2893+
2894+#: libunity-2d-private/src/launcherapplication.cpp:883
2895+msgid "Remove From Launcher"
2896+msgstr "Ukloni iz pokretača"
2897+
2898+#: places/SearchEntry.qml:165
2899+msgid "Search"
2900+msgstr ""
2901
2902 #: places/GroupHeader.qml:90
2903 #, qt-format
2904@@ -32,82 +97,26 @@
2905 msgid "See fewer results"
2906 msgstr "Vidi manje rezultata"
2907
2908-#: places/HomeShortcuts.qml:32
2909-msgid "Media Apps"
2910-msgstr "Medijalni programi"
2911-
2912-#: places/HomeShortcuts.qml:38
2913-msgid "Internet Apps"
2914-msgstr "Internet programi"
2915-
2916-#: places/HomeShortcuts.qml:44
2917-msgid "More Apps"
2918-msgstr "Još programa"
2919-
2920-#: places/HomeShortcuts.qml:50
2921-msgid "Find Files"
2922-msgstr "Traži datoteke"
2923-
2924-#: places/HomeShortcuts.qml:57
2925-msgid "Browse the Web"
2926-msgstr "Pregled Interneta"
2927-
2928-#: places/HomeShortcuts.qml:62
2929-msgid "View Photos"
2930-msgstr "Pregled slika"
2931-
2932-#: places/HomeShortcuts.qml:67
2933-msgid "Check Email"
2934-msgstr "Provjerite elektronsku poštu"
2935-
2936-#: places/HomeShortcuts.qml:72
2937-msgid "Listen to Music"
2938-msgstr "Slušajte muziku"
2939-
2940-#: places/Home.qml:79
2941+#: places/GroupHeader.qml:88
2942+msgid "See one more result"
2943+msgstr "Vidi još jedan rezultat"
2944+
2945+#: places/Home.qml:78
2946 msgid "Shortcuts"
2947 msgstr "Prečice"
2948
2949-#: places/SearchRefine.qml:61
2950-msgid "Refine search"
2951-msgstr "Doradi pretragu"
2952+#: libunity-2d-private/src/trash.cpp:125
2953+msgid "Trash"
2954+msgstr "Smeće"
2955
2956-#: places/SearchRefine.qml:84
2957+#: places/SearchRefine.qml:91
2958 msgid "Type"
2959 msgstr "Tip"
2960
2961-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
2962-msgid "Eject"
2963-msgstr "Izbaci"
2964-
2965-#: libunity-2d-private/Unity2d/trash.cpp:125
2966-msgid "Trash"
2967-msgstr "Smeće"
2968-
2969-#: libunity-2d-private/Unity2d/trash.cpp:255
2970-#, c-format, qt-plural-format
2971-msgid "%n item in trash"
2972-msgid_plural "%n items in trash"
2973-msgstr[0] "%n datoteka u smeću"
2974-msgstr[1] "%n datoteke u smeću"
2975-msgstr[2] "%n datoteka u smeću"
2976-
2977-#: libunity-2d-private/Unity2d/trash.cpp:262
2978-msgid "Empty Trash"
2979-msgstr "Isprazni kantu"
2980-
2981-#: libunity-2d-private/Unity2d/workspaces.cpp:73
2982+#: places/HomeShortcuts.qml:87
2983+msgid "View Photos"
2984+msgstr "Pregled slika"
2985+
2986+#: libunity-2d-private/src/workspaces.cpp:73
2987 msgid "Workspaces"
2988 msgstr "Radni prostori"
2989-
2990-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2991-msgid "Keep In Launcher"
2992-msgstr "Čuvaj u pokretaču"
2993-
2994-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
2995-msgid "Remove From Launcher"
2996-msgstr "Ukloni iz pokretača"
2997-
2998-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
2999-msgid "Quit"
3000-msgstr "Izlaz"
3001
3002=== modified file 'po/ca.po'
3003--- po/ca.po 2011-07-13 14:24:43 +0000
3004+++ po/ca.po 2011-08-05 18:22:37 +0000
3005@@ -6,11 +6,12 @@
3006 msgid ""
3007 msgstr ""
3008 "Project-Id-Version: unity-2d\n"
3009-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3010-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3011+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3012+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3013 "PO-Revision-Date: 2011-04-20 11:47+0000\n"
3014 "Last-Translator: David Planella <david.planella@ubuntu.com>\n"
3015 "Language-Team: Catalan <ca@li.org>\n"
3016+"Language: ca\n"
3017 "MIME-Version: 1.0\n"
3018 "Content-Type: text/plain; charset=UTF-8\n"
3019 "Content-Transfer-Encoding: 8bit\n"
3020@@ -18,9 +19,72 @@
3021 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
3022 "X-Generator: Launchpad (build 13388)\n"
3023
3024-#: places/GroupHeader.qml:88
3025-msgid "See one more result"
3026-msgstr "Mostra un altre resultat"
3027+#: libunity-2d-private/src/trash.cpp:255
3028+#, c-format, qt-plural-format
3029+msgid "%n item in trash"
3030+msgid_plural "%n items in trash"
3031+msgstr[0] "%n element a la paperera"
3032+msgstr[1] "%n elements a la paperera"
3033+
3034+#: places/HomeShortcuts.qml:82
3035+msgid "Browse the Web"
3036+msgstr "Navegueu per la web"
3037+
3038+#: places/HomeShortcuts.qml:92
3039+msgid "Check Email"
3040+msgstr "Comprova el correu"
3041+
3042+#: libunity-2d-private/src/launcherdevice.cpp:237
3043+msgid "Eject"
3044+msgstr "Expulsa"
3045+
3046+#: libunity-2d-private/src/trash.cpp:262
3047+msgid "Empty Trash"
3048+msgstr "Buida la paperera"
3049+
3050+#: places/HomeShortcuts.qml:75
3051+msgid "Find Files"
3052+msgstr "Cerca fitxers"
3053+
3054+#: places/HomeShortcuts.qml:63
3055+msgid "Internet Apps"
3056+msgstr "Aplicacions d'Internet"
3057+
3058+#: libunity-2d-private/src/launcherapplication.cpp:883
3059+msgid "Keep In Launcher"
3060+msgstr "Mantén al llançador"
3061+
3062+#: places/HomeShortcuts.qml:97
3063+msgid "Listen to Music"
3064+msgstr "Reprodueix música"
3065+
3066+#: places/HomeShortcuts.qml:57
3067+msgid "Media Apps"
3068+msgstr "Aplicacions multimèdia"
3069+
3070+#: places/HomeShortcuts.qml:69
3071+msgid "More Apps"
3072+msgstr "Més aplicacions"
3073+
3074+#: launcher/app/launcher.cpp:95
3075+msgid "QT_LAYOUT_DIRECTION"
3076+msgstr ""
3077+
3078+#: libunity-2d-private/src/launcherapplication.cpp:890
3079+msgid "Quit"
3080+msgstr "Surt"
3081+
3082+#: places/SearchRefine.qml:67
3083+msgid "Refine search"
3084+msgstr "Refina la cerca"
3085+
3086+#: libunity-2d-private/src/launcherapplication.cpp:883
3087+msgid "Remove From Launcher"
3088+msgstr "Suprimeix del llançador"
3089+
3090+#: places/SearchEntry.qml:165
3091+msgid "Search"
3092+msgstr ""
3093
3094 #: places/GroupHeader.qml:90
3095 #, qt-format
3096@@ -31,81 +95,26 @@
3097 msgid "See fewer results"
3098 msgstr "Mostra menys resultats"
3099
3100-#: places/HomeShortcuts.qml:32
3101-msgid "Media Apps"
3102-msgstr "Aplicacions multimèdia"
3103-
3104-#: places/HomeShortcuts.qml:38
3105-msgid "Internet Apps"
3106-msgstr "Aplicacions d'Internet"
3107-
3108-#: places/HomeShortcuts.qml:44
3109-msgid "More Apps"
3110-msgstr "Més aplicacions"
3111-
3112-#: places/HomeShortcuts.qml:50
3113-msgid "Find Files"
3114-msgstr "Cerca fitxers"
3115-
3116-#: places/HomeShortcuts.qml:57
3117-msgid "Browse the Web"
3118-msgstr "Navegueu per la web"
3119-
3120-#: places/HomeShortcuts.qml:62
3121-msgid "View Photos"
3122-msgstr "Mostra fotografies"
3123-
3124-#: places/HomeShortcuts.qml:67
3125-msgid "Check Email"
3126-msgstr "Comprova el correu"
3127-
3128-#: places/HomeShortcuts.qml:72
3129-msgid "Listen to Music"
3130-msgstr "Reprodueix música"
3131-
3132-#: places/Home.qml:79
3133+#: places/GroupHeader.qml:88
3134+msgid "See one more result"
3135+msgstr "Mostra un altre resultat"
3136+
3137+#: places/Home.qml:78
3138 msgid "Shortcuts"
3139 msgstr "Dreceres"
3140
3141-#: places/SearchRefine.qml:61
3142-msgid "Refine search"
3143-msgstr "Refina la cerca"
3144+#: libunity-2d-private/src/trash.cpp:125
3145+msgid "Trash"
3146+msgstr "Paperera"
3147
3148-#: places/SearchRefine.qml:84
3149+#: places/SearchRefine.qml:91
3150 msgid "Type"
3151 msgstr "Tipus"
3152
3153-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
3154-msgid "Eject"
3155-msgstr "Expulsa"
3156-
3157-#: libunity-2d-private/Unity2d/trash.cpp:125
3158-msgid "Trash"
3159-msgstr "Paperera"
3160-
3161-#: libunity-2d-private/Unity2d/trash.cpp:255
3162-#, c-format, qt-plural-format
3163-msgid "%n item in trash"
3164-msgid_plural "%n items in trash"
3165-msgstr[0] "%n element a la paperera"
3166-msgstr[1] "%n elements a la paperera"
3167-
3168-#: libunity-2d-private/Unity2d/trash.cpp:262
3169-msgid "Empty Trash"
3170-msgstr "Buida la paperera"
3171-
3172-#: libunity-2d-private/Unity2d/workspaces.cpp:73
3173+#: places/HomeShortcuts.qml:87
3174+msgid "View Photos"
3175+msgstr "Mostra fotografies"
3176+
3177+#: libunity-2d-private/src/workspaces.cpp:73
3178 msgid "Workspaces"
3179 msgstr "Espais de treball"
3180-
3181-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3182-msgid "Keep In Launcher"
3183-msgstr "Mantén al llançador"
3184-
3185-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3186-msgid "Remove From Launcher"
3187-msgstr "Suprimeix del llançador"
3188-
3189-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
3190-msgid "Quit"
3191-msgstr "Surt"
3192
3193=== modified file 'po/ca@valencia.po'
3194--- po/ca@valencia.po 2011-07-13 14:24:43 +0000
3195+++ po/ca@valencia.po 2011-08-05 18:22:37 +0000
3196@@ -6,11 +6,12 @@
3197 msgid ""
3198 msgstr ""
3199 "Project-Id-Version: unity-2d\n"
3200-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3201-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3202+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3203+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3204 "PO-Revision-Date: 2011-04-19 13:59+0000\n"
3205 "Last-Translator: Joan Duran <jodufi@gmail.com>\n"
3206 "Language-Team: Catalan <ca@li.org>\n"
3207+"Language: ca\n"
3208 "MIME-Version: 1.0\n"
3209 "Content-Type: text/plain; charset=UTF-8\n"
3210 "Content-Transfer-Encoding: 8bit\n"
3211@@ -18,8 +19,71 @@
3212 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
3213 "X-Generator: Launchpad (build 13388)\n"
3214
3215-#: places/GroupHeader.qml:88
3216-msgid "See one more result"
3217+#: libunity-2d-private/src/trash.cpp:255
3218+#, c-format, qt-plural-format
3219+msgid "%n item in trash"
3220+msgid_plural "%n items in trash"
3221+msgstr[0] "%n element a la paperera"
3222+msgstr[1] "%n elements a la paperera"
3223+
3224+#: places/HomeShortcuts.qml:82
3225+msgid "Browse the Web"
3226+msgstr "Navegueu per la web"
3227+
3228+#: places/HomeShortcuts.qml:92
3229+msgid "Check Email"
3230+msgstr "Comprova el correu"
3231+
3232+#: libunity-2d-private/src/launcherdevice.cpp:237
3233+msgid "Eject"
3234+msgstr "Expulsa"
3235+
3236+#: libunity-2d-private/src/trash.cpp:262
3237+msgid "Empty Trash"
3238+msgstr "Buida la paperera"
3239+
3240+#: places/HomeShortcuts.qml:75
3241+msgid "Find Files"
3242+msgstr "Cerca fitxers"
3243+
3244+#: places/HomeShortcuts.qml:63
3245+msgid "Internet Apps"
3246+msgstr "Aplicacions d'Internet"
3247+
3248+#: libunity-2d-private/src/launcherapplication.cpp:883
3249+msgid "Keep In Launcher"
3250+msgstr "Mantén al llançador"
3251+
3252+#: places/HomeShortcuts.qml:97
3253+msgid "Listen to Music"
3254+msgstr "Reprodueix música"
3255+
3256+#: places/HomeShortcuts.qml:57
3257+msgid "Media Apps"
3258+msgstr "Aplicacions multimèdia"
3259+
3260+#: places/HomeShortcuts.qml:69
3261+msgid "More Apps"
3262+msgstr "Més aplicacions"
3263+
3264+#: launcher/app/launcher.cpp:95
3265+msgid "QT_LAYOUT_DIRECTION"
3266+msgstr ""
3267+
3268+#: libunity-2d-private/src/launcherapplication.cpp:890
3269+msgid "Quit"
3270+msgstr "Ix"
3271+
3272+#: places/SearchRefine.qml:67
3273+msgid "Refine search"
3274+msgstr "Refina la cerca"
3275+
3276+#: libunity-2d-private/src/launcherapplication.cpp:883
3277+msgid "Remove From Launcher"
3278+msgstr "Suprimeix del llançador"
3279+
3280+#: places/SearchEntry.qml:165
3281+msgid "Search"
3282 msgstr ""
3283
3284 #: places/GroupHeader.qml:90
3285@@ -31,81 +95,26 @@
3286 msgid "See fewer results"
3287 msgstr "Mostra menys resultats"
3288
3289-#: places/HomeShortcuts.qml:32
3290-msgid "Media Apps"
3291-msgstr "Aplicacions multimèdia"
3292-
3293-#: places/HomeShortcuts.qml:38
3294-msgid "Internet Apps"
3295-msgstr "Aplicacions d'Internet"
3296-
3297-#: places/HomeShortcuts.qml:44
3298-msgid "More Apps"
3299-msgstr "Més aplicacions"
3300-
3301-#: places/HomeShortcuts.qml:50
3302-msgid "Find Files"
3303-msgstr "Cerca fitxers"
3304-
3305-#: places/HomeShortcuts.qml:57
3306-msgid "Browse the Web"
3307-msgstr "Navegueu per la web"
3308-
3309-#: places/HomeShortcuts.qml:62
3310-msgid "View Photos"
3311-msgstr "Mostra fotografies"
3312-
3313-#: places/HomeShortcuts.qml:67
3314-msgid "Check Email"
3315-msgstr "Comprova el correu"
3316-
3317-#: places/HomeShortcuts.qml:72
3318-msgid "Listen to Music"
3319-msgstr "Reprodueix música"
3320-
3321-#: places/Home.qml:79
3322+#: places/GroupHeader.qml:88
3323+msgid "See one more result"
3324+msgstr ""
3325+
3326+#: places/Home.qml:78
3327 msgid "Shortcuts"
3328 msgstr "Dreceres"
3329
3330-#: places/SearchRefine.qml:61
3331-msgid "Refine search"
3332-msgstr "Refina la cerca"
3333+#: libunity-2d-private/src/trash.cpp:125
3334+msgid "Trash"
3335+msgstr "Paperera"
3336
3337-#: places/SearchRefine.qml:84
3338+#: places/SearchRefine.qml:91
3339 msgid "Type"
3340 msgstr "Tipus"
3341
3342-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
3343-msgid "Eject"
3344-msgstr "Expulsa"
3345-
3346-#: libunity-2d-private/Unity2d/trash.cpp:125
3347-msgid "Trash"
3348-msgstr "Paperera"
3349-
3350-#: libunity-2d-private/Unity2d/trash.cpp:255
3351-#, c-format, qt-plural-format
3352-msgid "%n item in trash"
3353-msgid_plural "%n items in trash"
3354-msgstr[0] "%n element a la paperera"
3355-msgstr[1] "%n elements a la paperera"
3356-
3357-#: libunity-2d-private/Unity2d/trash.cpp:262
3358-msgid "Empty Trash"
3359-msgstr "Buida la paperera"
3360-
3361-#: libunity-2d-private/Unity2d/workspaces.cpp:73
3362+#: places/HomeShortcuts.qml:87
3363+msgid "View Photos"
3364+msgstr "Mostra fotografies"
3365+
3366+#: libunity-2d-private/src/workspaces.cpp:73
3367 msgid "Workspaces"
3368 msgstr "Espais de treball"
3369-
3370-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3371-msgid "Keep In Launcher"
3372-msgstr "Mantén al llançador"
3373-
3374-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3375-msgid "Remove From Launcher"
3376-msgstr "Suprimeix del llançador"
3377-
3378-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
3379-msgid "Quit"
3380-msgstr "Ix"
3381
3382=== modified file 'po/crh.po'
3383--- po/crh.po 2011-07-13 14:24:43 +0000
3384+++ po/crh.po 2011-08-05 18:22:37 +0000
3385@@ -6,12 +6,13 @@
3386 msgid ""
3387 msgstr ""
3388 "Project-Id-Version: unity-2d\n"
3389-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3390-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3391+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3392+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3393 "PO-Revision-Date: 2011-05-06 08:36+0000\n"
3394 "Last-Translator: Reşat SABIQ <tilde.birlik@gmail.com>\n"
3395-"Language-Team: QIRIMTATARCA (Qırım Türkçesi) <tilde-birlik-"
3396-"tercime@lists.sourceforge.net>\n"
3397+"Language-Team: QIRIMTATARCA (Qırım Türkçesi) <tilde-birlik-tercime@lists."
3398+"sourceforge.net>\n"
3399+"Language: \n"
3400 "MIME-Version: 1.0\n"
3401 "Content-Type: text/plain; charset=UTF-8\n"
3402 "Content-Transfer-Encoding: 8bit\n"
3403@@ -19,9 +20,71 @@
3404 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
3405 "X-Generator: Launchpad (build 13388)\n"
3406
3407-#: places/GroupHeader.qml:88
3408-msgid "See one more result"
3409-msgstr "Bir netice daa kör"
3410+#: libunity-2d-private/src/trash.cpp:255
3411+#, c-format, qt-plural-format
3412+msgid "%n item in trash"
3413+msgid_plural "%n items in trash"
3414+msgstr[0] "Çöpte %n unsur"
3415+
3416+#: places/HomeShortcuts.qml:82
3417+msgid "Browse the Web"
3418+msgstr "Ağ'da Kezin"
3419+
3420+#: places/HomeShortcuts.qml:92
3421+msgid "Check Email"
3422+msgstr "E-Poçtanı Teşker"
3423+
3424+#: libunity-2d-private/src/launcherdevice.cpp:237
3425+msgid "Eject"
3426+msgstr "Çıqart"
3427+
3428+#: libunity-2d-private/src/trash.cpp:262
3429+msgid "Empty Trash"
3430+msgstr "Çöpni Boşat"
3431+
3432+#: places/HomeShortcuts.qml:75
3433+msgid "Find Files"
3434+msgstr "Dosyelerni Tap"
3435+
3436+#: places/HomeShortcuts.qml:63
3437+msgid "Internet Apps"
3438+msgstr "İnternet Uyğulamaları"
3439+
3440+#: libunity-2d-private/src/launcherapplication.cpp:883
3441+msgid "Keep In Launcher"
3442+msgstr "Fırlatıcıda Tut"
3443+
3444+#: places/HomeShortcuts.qml:97
3445+msgid "Listen to Music"
3446+msgstr "Musıqi Diñle"
3447+
3448+#: places/HomeShortcuts.qml:57
3449+msgid "Media Apps"
3450+msgstr "Vasat Uyğulamaları"
3451+
3452+#: places/HomeShortcuts.qml:69
3453+msgid "More Apps"
3454+msgstr "Daa Çoq Uyğulama"
3455+
3456+#: launcher/app/launcher.cpp:95
3457+msgid "QT_LAYOUT_DIRECTION"
3458+msgstr ""
3459+
3460+#: libunity-2d-private/src/launcherapplication.cpp:890
3461+msgid "Quit"
3462+msgstr "Terk Et"
3463+
3464+#: places/SearchRefine.qml:67
3465+msgid "Refine search"
3466+msgstr "Qıdırmanı zarifleştir"
3467+
3468+#: libunity-2d-private/src/launcherapplication.cpp:883
3469+msgid "Remove From Launcher"
3470+msgstr "Fırlatıcıdan Çetleştir"
3471+
3472+#: places/SearchEntry.qml:165
3473+msgid "Search"
3474+msgstr ""
3475
3476 #: places/GroupHeader.qml:90
3477 #, qt-format
3478@@ -32,80 +95,26 @@
3479 msgid "See fewer results"
3480 msgstr "Daa az netice kör"
3481
3482-#: places/HomeShortcuts.qml:32
3483-msgid "Media Apps"
3484-msgstr "Vasat Uyğulamaları"
3485-
3486-#: places/HomeShortcuts.qml:38
3487-msgid "Internet Apps"
3488-msgstr "İnternet Uyğulamaları"
3489-
3490-#: places/HomeShortcuts.qml:44
3491-msgid "More Apps"
3492-msgstr "Daa Çoq Uyğulama"
3493-
3494-#: places/HomeShortcuts.qml:50
3495-msgid "Find Files"
3496-msgstr "Dosyelerni Tap"
3497-
3498-#: places/HomeShortcuts.qml:57
3499-msgid "Browse the Web"
3500-msgstr "Ağ'da Kezin"
3501-
3502-#: places/HomeShortcuts.qml:62
3503-msgid "View Photos"
3504-msgstr "Fotolarnı Körüntile"
3505-
3506-#: places/HomeShortcuts.qml:67
3507-msgid "Check Email"
3508-msgstr "E-Poçtanı Teşker"
3509-
3510-#: places/HomeShortcuts.qml:72
3511-msgid "Listen to Music"
3512-msgstr "Musıqi Diñle"
3513-
3514-#: places/Home.qml:79
3515+#: places/GroupHeader.qml:88
3516+msgid "See one more result"
3517+msgstr "Bir netice daa kör"
3518+
3519+#: places/Home.qml:78
3520 msgid "Shortcuts"
3521 msgstr "Qısqayollar"
3522
3523-#: places/SearchRefine.qml:61
3524-msgid "Refine search"
3525-msgstr "Qıdırmanı zarifleştir"
3526+#: libunity-2d-private/src/trash.cpp:125
3527+msgid "Trash"
3528+msgstr "Çöp"
3529
3530-#: places/SearchRefine.qml:84
3531+#: places/SearchRefine.qml:91
3532 msgid "Type"
3533 msgstr "Tür"
3534
3535-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
3536-msgid "Eject"
3537-msgstr "Çıqart"
3538-
3539-#: libunity-2d-private/Unity2d/trash.cpp:125
3540-msgid "Trash"
3541-msgstr "Çöp"
3542-
3543-#: libunity-2d-private/Unity2d/trash.cpp:255
3544-#, c-format, qt-plural-format
3545-msgid "%n item in trash"
3546-msgid_plural "%n items in trash"
3547-msgstr[0] "Çöpte %n unsur"
3548-
3549-#: libunity-2d-private/Unity2d/trash.cpp:262
3550-msgid "Empty Trash"
3551-msgstr "Çöpni Boşat"
3552-
3553-#: libunity-2d-private/Unity2d/workspaces.cpp:73
3554+#: places/HomeShortcuts.qml:87
3555+msgid "View Photos"
3556+msgstr "Fotolarnı Körüntile"
3557+
3558+#: libunity-2d-private/src/workspaces.cpp:73
3559 msgid "Workspaces"
3560 msgstr "Çalışma-Fezaları"
3561-
3562-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3563-msgid "Keep In Launcher"
3564-msgstr "Fırlatıcıda Tut"
3565-
3566-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3567-msgid "Remove From Launcher"
3568-msgstr "Fırlatıcıdan Çetleştir"
3569-
3570-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
3571-msgid "Quit"
3572-msgstr "Terk Et"
3573
3574=== modified file 'po/cs.po'
3575--- po/cs.po 2011-07-13 14:24:43 +0000
3576+++ po/cs.po 2011-08-05 18:22:37 +0000
3577@@ -6,11 +6,12 @@
3578 msgid ""
3579 msgstr ""
3580 "Project-Id-Version: unity-2d\n"
3581-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3582-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3583+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3584+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3585 "PO-Revision-Date: 2011-04-20 07:17+0000\n"
3586 "Last-Translator: Vojtěch Trefný <vojtech.trefny@gmail.com>\n"
3587 "Language-Team: Czech <cs@li.org>\n"
3588+"Language: cs\n"
3589 "MIME-Version: 1.0\n"
3590 "Content-Type: text/plain; charset=UTF-8\n"
3591 "Content-Transfer-Encoding: 8bit\n"
3592@@ -18,9 +19,73 @@
3593 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
3594 "X-Generator: Launchpad (build 13388)\n"
3595
3596-#: places/GroupHeader.qml:88
3597-msgid "See one more result"
3598-msgstr "Zobrazit jeden další výsledek"
3599+#: libunity-2d-private/src/trash.cpp:255
3600+#, c-format, qt-plural-format
3601+msgid "%n item in trash"
3602+msgid_plural "%n items in trash"
3603+msgstr[0] "%n položka v koši"
3604+msgstr[1] "%n položky v koši"
3605+msgstr[2] "%n položek v koši"
3606+
3607+#: places/HomeShortcuts.qml:82
3608+msgid "Browse the Web"
3609+msgstr "Prohlížet web"
3610+
3611+#: places/HomeShortcuts.qml:92
3612+msgid "Check Email"
3613+msgstr "Zkontrolovat e-maily"
3614+
3615+#: libunity-2d-private/src/launcherdevice.cpp:237
3616+msgid "Eject"
3617+msgstr "Vysunout"
3618+
3619+#: libunity-2d-private/src/trash.cpp:262
3620+msgid "Empty Trash"
3621+msgstr "Vyprázdnit koš"
3622+
3623+#: places/HomeShortcuts.qml:75
3624+msgid "Find Files"
3625+msgstr "Najít soubory"
3626+
3627+#: places/HomeShortcuts.qml:63
3628+msgid "Internet Apps"
3629+msgstr "Internetové aplikace"
3630+
3631+#: libunity-2d-private/src/launcherapplication.cpp:883
3632+msgid "Keep In Launcher"
3633+msgstr "Ponechat ve spouštěči"
3634+
3635+#: places/HomeShortcuts.qml:97
3636+msgid "Listen to Music"
3637+msgstr "Poslouchat hudbu"
3638+
3639+#: places/HomeShortcuts.qml:57
3640+msgid "Media Apps"
3641+msgstr "Mediální aplikace"
3642+
3643+#: places/HomeShortcuts.qml:69
3644+msgid "More Apps"
3645+msgstr "Více aplikací"
3646+
3647+#: launcher/app/launcher.cpp:95
3648+msgid "QT_LAYOUT_DIRECTION"
3649+msgstr ""
3650+
3651+#: libunity-2d-private/src/launcherapplication.cpp:890
3652+msgid "Quit"
3653+msgstr "Ukončit"
3654+
3655+#: places/SearchRefine.qml:67
3656+msgid "Refine search"
3657+msgstr "Upřesnit vyhledávání"
3658+
3659+#: libunity-2d-private/src/launcherapplication.cpp:883
3660+msgid "Remove From Launcher"
3661+msgstr "Odstranit ze spouštěče"
3662+
3663+#: places/SearchEntry.qml:165
3664+msgid "Search"
3665+msgstr ""
3666
3667 #: places/GroupHeader.qml:90
3668 #, qt-format
3669@@ -31,82 +96,26 @@
3670 msgid "See fewer results"
3671 msgstr "Zobrazit méně výsledků"
3672
3673-#: places/HomeShortcuts.qml:32
3674-msgid "Media Apps"
3675-msgstr "Mediální aplikace"
3676-
3677-#: places/HomeShortcuts.qml:38
3678-msgid "Internet Apps"
3679-msgstr "Internetové aplikace"
3680-
3681-#: places/HomeShortcuts.qml:44
3682-msgid "More Apps"
3683-msgstr "Více aplikací"
3684-
3685-#: places/HomeShortcuts.qml:50
3686-msgid "Find Files"
3687-msgstr "Najít soubory"
3688-
3689-#: places/HomeShortcuts.qml:57
3690-msgid "Browse the Web"
3691-msgstr "Prohlížet web"
3692-
3693-#: places/HomeShortcuts.qml:62
3694-msgid "View Photos"
3695-msgstr "Prohlédnout fotografie"
3696-
3697-#: places/HomeShortcuts.qml:67
3698-msgid "Check Email"
3699-msgstr "Zkontrolovat e-maily"
3700-
3701-#: places/HomeShortcuts.qml:72
3702-msgid "Listen to Music"
3703-msgstr "Poslouchat hudbu"
3704-
3705-#: places/Home.qml:79
3706+#: places/GroupHeader.qml:88
3707+msgid "See one more result"
3708+msgstr "Zobrazit jeden další výsledek"
3709+
3710+#: places/Home.qml:78
3711 msgid "Shortcuts"
3712 msgstr "Rychlý přístup"
3713
3714-#: places/SearchRefine.qml:61
3715-msgid "Refine search"
3716-msgstr "Upřesnit vyhledávání"
3717+#: libunity-2d-private/src/trash.cpp:125
3718+msgid "Trash"
3719+msgstr "Koš"
3720
3721-#: places/SearchRefine.qml:84
3722+#: places/SearchRefine.qml:91
3723 msgid "Type"
3724 msgstr "Kategorie"
3725
3726-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
3727-msgid "Eject"
3728-msgstr "Vysunout"
3729-
3730-#: libunity-2d-private/Unity2d/trash.cpp:125
3731-msgid "Trash"
3732-msgstr "Koš"
3733-
3734-#: libunity-2d-private/Unity2d/trash.cpp:255
3735-#, c-format, qt-plural-format
3736-msgid "%n item in trash"
3737-msgid_plural "%n items in trash"
3738-msgstr[0] "%n položka v koši"
3739-msgstr[1] "%n položky v koši"
3740-msgstr[2] "%n položek v koši"
3741-
3742-#: libunity-2d-private/Unity2d/trash.cpp:262
3743-msgid "Empty Trash"
3744-msgstr "Vyprázdnit koš"
3745-
3746-#: libunity-2d-private/Unity2d/workspaces.cpp:73
3747+#: places/HomeShortcuts.qml:87
3748+msgid "View Photos"
3749+msgstr "Prohlédnout fotografie"
3750+
3751+#: libunity-2d-private/src/workspaces.cpp:73
3752 msgid "Workspaces"
3753 msgstr "Pracovní plochy"
3754-
3755-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3756-msgid "Keep In Launcher"
3757-msgstr "Ponechat ve spouštěči"
3758-
3759-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3760-msgid "Remove From Launcher"
3761-msgstr "Odstranit ze spouštěče"
3762-
3763-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
3764-msgid "Quit"
3765-msgstr "Ukončit"
3766
3767=== modified file 'po/cy.po'
3768--- po/cy.po 2011-07-13 14:24:43 +0000
3769+++ po/cy.po 2011-08-05 18:22:37 +0000
3770@@ -6,11 +6,12 @@
3771 msgid ""
3772 msgstr ""
3773 "Project-Id-Version: unity-2d\n"
3774-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3775-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3776+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3777+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3778 "PO-Revision-Date: 2011-04-01 22:45+0000\n"
3779 "Last-Translator: danielt998 <daniel@fearnley.net>\n"
3780 "Language-Team: Welsh <cy@li.org>\n"
3781+"Language: cy\n"
3782 "MIME-Version: 1.0\n"
3783 "Content-Type: text/plain; charset=UTF-8\n"
3784 "Content-Transfer-Encoding: 8bit\n"
3785@@ -19,94 +20,102 @@
3786 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
3787 "X-Generator: Launchpad (build 13388)\n"
3788
3789-#: places/GroupHeader.qml:88
3790-msgid "See one more result"
3791-msgstr ""
3792-
3793-#: places/GroupHeader.qml:90
3794-#, qt-format
3795-msgid "See %1 more results"
3796-msgstr ""
3797-
3798-#: places/GroupHeader.qml:93
3799-msgid "See fewer results"
3800-msgstr ""
3801-
3802-#: places/HomeShortcuts.qml:32
3803-msgid "Media Apps"
3804-msgstr "Rhaglenni Cyfryngau"
3805-
3806-#: places/HomeShortcuts.qml:38
3807-msgid "Internet Apps"
3808-msgstr "Rhaglenni Rhyngrwyd"
3809-
3810-#: places/HomeShortcuts.qml:44
3811-msgid "More Apps"
3812-msgstr "Mwy o Raglenni"
3813-
3814-#: places/HomeShortcuts.qml:50
3815-msgid "Find Files"
3816-msgstr "Darganfyddwch Ffeiliau"
3817-
3818-#: places/HomeShortcuts.qml:57
3819+#: libunity-2d-private/src/trash.cpp:255
3820+#, c-format, qt-plural-format
3821+msgid "%n item in trash"
3822+msgid_plural "%n items in trash"
3823+msgstr[0] ""
3824+msgstr[1] ""
3825+
3826+#: places/HomeShortcuts.qml:82
3827 msgid "Browse the Web"
3828 msgstr "Porwch yr We"
3829
3830-#: places/HomeShortcuts.qml:62
3831-msgid "View Photos"
3832-msgstr "Gweld Lluniau"
3833-
3834-#: places/HomeShortcuts.qml:67
3835+#: places/HomeShortcuts.qml:92
3836 msgid "Check Email"
3837 msgstr "Gwirio E-bost"
3838
3839-#: places/HomeShortcuts.qml:72
3840-msgid "Listen to Music"
3841-msgstr "Gwrandewch i Cerddoriaeth"
3842-
3843-#: places/Home.qml:79
3844-msgid "Shortcuts"
3845-msgstr ""
3846-
3847-#: places/SearchRefine.qml:61
3848-msgid "Refine search"
3849-msgstr ""
3850-
3851-#: places/SearchRefine.qml:84
3852-msgid "Type"
3853-msgstr "Math"
3854-
3855-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
3856+#: libunity-2d-private/src/launcherdevice.cpp:237
3857 msgid "Eject"
3858 msgstr "Allfwrw"
3859
3860-#: libunity-2d-private/Unity2d/trash.cpp:125
3861-msgid "Trash"
3862-msgstr "Sbwriel"
3863-
3864-#: libunity-2d-private/Unity2d/trash.cpp:255
3865-#, c-format, qt-plural-format
3866-msgid "%n item in trash"
3867-msgid_plural "%n items in trash"
3868-msgstr[0] ""
3869-msgstr[1] ""
3870-
3871-#: libunity-2d-private/Unity2d/trash.cpp:262
3872+#: libunity-2d-private/src/trash.cpp:262
3873 msgid "Empty Trash"
3874 msgstr ""
3875
3876-#: libunity-2d-private/Unity2d/workspaces.cpp:73
3877-msgid "Workspaces"
3878-msgstr ""
3879-
3880-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3881+#: places/HomeShortcuts.qml:75
3882+msgid "Find Files"
3883+msgstr "Darganfyddwch Ffeiliau"
3884+
3885+#: places/HomeShortcuts.qml:63
3886+msgid "Internet Apps"
3887+msgstr "Rhaglenni Rhyngrwyd"
3888+
3889+#: libunity-2d-private/src/launcherapplication.cpp:883
3890 msgid "Keep In Launcher"
3891 msgstr "Cadwch mewn Lansiwr"
3892
3893-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
3894+#: places/HomeShortcuts.qml:97
3895+msgid "Listen to Music"
3896+msgstr "Gwrandewch i Cerddoriaeth"
3897+
3898+#: places/HomeShortcuts.qml:57
3899+msgid "Media Apps"
3900+msgstr "Rhaglenni Cyfryngau"
3901+
3902+#: places/HomeShortcuts.qml:69
3903+msgid "More Apps"
3904+msgstr "Mwy o Raglenni"
3905+
3906+#: launcher/app/launcher.cpp:95
3907+msgid "QT_LAYOUT_DIRECTION"
3908+msgstr ""
3909+
3910+#: libunity-2d-private/src/launcherapplication.cpp:890
3911+msgid "Quit"
3912+msgstr "Gadael"
3913+
3914+#: places/SearchRefine.qml:67
3915+msgid "Refine search"
3916+msgstr ""
3917+
3918+#: libunity-2d-private/src/launcherapplication.cpp:883
3919 msgid "Remove From Launcher"
3920 msgstr "Tynnu O Lansiwr"
3921
3922-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
3923-msgid "Quit"
3924-msgstr "Gadael"
3925+#: places/SearchEntry.qml:165
3926+msgid "Search"
3927+msgstr ""
3928+
3929+#: places/GroupHeader.qml:90
3930+#, qt-format
3931+msgid "See %1 more results"
3932+msgstr ""
3933+
3934+#: places/GroupHeader.qml:93
3935+msgid "See fewer results"
3936+msgstr ""
3937+
3938+#: places/GroupHeader.qml:88
3939+msgid "See one more result"
3940+msgstr ""
3941+
3942+#: places/Home.qml:78
3943+msgid "Shortcuts"
3944+msgstr ""
3945+
3946+#: libunity-2d-private/src/trash.cpp:125
3947+msgid "Trash"
3948+msgstr "Sbwriel"
3949+
3950+#: places/SearchRefine.qml:91
3951+msgid "Type"
3952+msgstr "Math"
3953+
3954+#: places/HomeShortcuts.qml:87
3955+msgid "View Photos"
3956+msgstr "Gweld Lluniau"
3957+
3958+#: libunity-2d-private/src/workspaces.cpp:73
3959+msgid "Workspaces"
3960+msgstr ""
3961
3962=== modified file 'po/da.po'
3963--- po/da.po 2011-07-13 14:24:43 +0000
3964+++ po/da.po 2011-08-05 18:22:37 +0000
3965@@ -6,11 +6,12 @@
3966 msgid ""
3967 msgstr ""
3968 "Project-Id-Version: unity-2d\n"
3969-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
3970-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
3971+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
3972+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
3973 "PO-Revision-Date: 2011-04-20 12:55+0000\n"
3974 "Last-Translator: AJenbo <anders@jenbo.dk>\n"
3975 "Language-Team: Danish <da@li.org>\n"
3976+"Language: da\n"
3977 "MIME-Version: 1.0\n"
3978 "Content-Type: text/plain; charset=UTF-8\n"
3979 "Content-Transfer-Encoding: 8bit\n"
3980@@ -18,9 +19,72 @@
3981 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
3982 "X-Generator: Launchpad (build 13388)\n"
3983
3984-#: places/GroupHeader.qml:88
3985-msgid "See one more result"
3986-msgstr "Se et yderligere resultat"
3987+#: libunity-2d-private/src/trash.cpp:255
3988+#, c-format, qt-plural-format
3989+msgid "%n item in trash"
3990+msgid_plural "%n items in trash"
3991+msgstr[0] "%n emne i parpirkurven"
3992+msgstr[1] "%n emner i parpirkurven"
3993+
3994+#: places/HomeShortcuts.qml:82
3995+msgid "Browse the Web"
3996+msgstr "Surf på nettet"
3997+
3998+#: places/HomeShortcuts.qml:92
3999+msgid "Check Email"
4000+msgstr "Tjek e-mail"
4001+
4002+#: libunity-2d-private/src/launcherdevice.cpp:237
4003+msgid "Eject"
4004+msgstr "Skub ud"
4005+
4006+#: libunity-2d-private/src/trash.cpp:262
4007+msgid "Empty Trash"
4008+msgstr "Tøm papirkurv"
4009+
4010+#: places/HomeShortcuts.qml:75
4011+msgid "Find Files"
4012+msgstr "Find filer"
4013+
4014+#: places/HomeShortcuts.qml:63
4015+msgid "Internet Apps"
4016+msgstr "Internetprogrammer"
4017+
4018+#: libunity-2d-private/src/launcherapplication.cpp:883
4019+msgid "Keep In Launcher"
4020+msgstr "Behold i panelet"
4021+
4022+#: places/HomeShortcuts.qml:97
4023+msgid "Listen to Music"
4024+msgstr "Lyt til musik"
4025+
4026+#: places/HomeShortcuts.qml:57
4027+msgid "Media Apps"
4028+msgstr "Medieprogrammer"
4029+
4030+#: places/HomeShortcuts.qml:69
4031+msgid "More Apps"
4032+msgstr "Flere programmer"
4033+
4034+#: launcher/app/launcher.cpp:95
4035+msgid "QT_LAYOUT_DIRECTION"
4036+msgstr ""
4037+
4038+#: libunity-2d-private/src/launcherapplication.cpp:890
4039+msgid "Quit"
4040+msgstr "Afslut"
4041+
4042+#: places/SearchRefine.qml:67
4043+msgid "Refine search"
4044+msgstr "Tilpas søgning"
4045+
4046+#: libunity-2d-private/src/launcherapplication.cpp:883
4047+msgid "Remove From Launcher"
4048+msgstr "Fjern fra panelet"
4049+
4050+#: places/SearchEntry.qml:165
4051+msgid "Search"
4052+msgstr ""
4053
4054 #: places/GroupHeader.qml:90
4055 #, qt-format
4056@@ -31,81 +95,26 @@
4057 msgid "See fewer results"
4058 msgstr "Se færre resultater"
4059
4060-#: places/HomeShortcuts.qml:32
4061-msgid "Media Apps"
4062-msgstr "Medieprogrammer"
4063-
4064-#: places/HomeShortcuts.qml:38
4065-msgid "Internet Apps"
4066-msgstr "Internetprogrammer"
4067-
4068-#: places/HomeShortcuts.qml:44
4069-msgid "More Apps"
4070-msgstr "Flere programmer"
4071-
4072-#: places/HomeShortcuts.qml:50
4073-msgid "Find Files"
4074-msgstr "Find filer"
4075-
4076-#: places/HomeShortcuts.qml:57
4077-msgid "Browse the Web"
4078-msgstr "Surf på nettet"
4079-
4080-#: places/HomeShortcuts.qml:62
4081-msgid "View Photos"
4082-msgstr "Se billeder"
4083-
4084-#: places/HomeShortcuts.qml:67
4085-msgid "Check Email"
4086-msgstr "Tjek e-mail"
4087-
4088-#: places/HomeShortcuts.qml:72
4089-msgid "Listen to Music"
4090-msgstr "Lyt til musik"
4091-
4092-#: places/Home.qml:79
4093+#: places/GroupHeader.qml:88
4094+msgid "See one more result"
4095+msgstr "Se et yderligere resultat"
4096+
4097+#: places/Home.qml:78
4098 msgid "Shortcuts"
4099 msgstr "Genveje"
4100
4101-#: places/SearchRefine.qml:61
4102-msgid "Refine search"
4103-msgstr "Tilpas søgning"
4104+#: libunity-2d-private/src/trash.cpp:125
4105+msgid "Trash"
4106+msgstr "Papirkurv"
4107
4108-#: places/SearchRefine.qml:84
4109+#: places/SearchRefine.qml:91
4110 msgid "Type"
4111 msgstr "Type"
4112
4113-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
4114-msgid "Eject"
4115-msgstr "Skub ud"
4116-
4117-#: libunity-2d-private/Unity2d/trash.cpp:125
4118-msgid "Trash"
4119-msgstr "Papirkurv"
4120-
4121-#: libunity-2d-private/Unity2d/trash.cpp:255
4122-#, c-format, qt-plural-format
4123-msgid "%n item in trash"
4124-msgid_plural "%n items in trash"
4125-msgstr[0] "%n emne i parpirkurven"
4126-msgstr[1] "%n emner i parpirkurven"
4127-
4128-#: libunity-2d-private/Unity2d/trash.cpp:262
4129-msgid "Empty Trash"
4130-msgstr "Tøm papirkurv"
4131-
4132-#: libunity-2d-private/Unity2d/workspaces.cpp:73
4133+#: places/HomeShortcuts.qml:87
4134+msgid "View Photos"
4135+msgstr "Se billeder"
4136+
4137+#: libunity-2d-private/src/workspaces.cpp:73
4138 msgid "Workspaces"
4139 msgstr "Arbejdsområder"
4140-
4141-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4142-msgid "Keep In Launcher"
4143-msgstr "Behold i panelet"
4144-
4145-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4146-msgid "Remove From Launcher"
4147-msgstr "Fjern fra panelet"
4148-
4149-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
4150-msgid "Quit"
4151-msgstr "Afslut"
4152
4153=== modified file 'po/de.po'
4154--- po/de.po 2011-07-13 14:24:43 +0000
4155+++ po/de.po 2011-08-05 18:22:37 +0000
4156@@ -6,11 +6,12 @@
4157 msgid ""
4158 msgstr ""
4159 "Project-Id-Version: unity-2d\n"
4160-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4161-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
4162+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
4163+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
4164 "PO-Revision-Date: 2011-04-27 12:14+0000\n"
4165 "Last-Translator: Hendrik Knackstedt <Unknown>\n"
4166 "Language-Team: German <de@li.org>\n"
4167+"Language: de\n"
4168 "MIME-Version: 1.0\n"
4169 "Content-Type: text/plain; charset=UTF-8\n"
4170 "Content-Transfer-Encoding: 8bit\n"
4171@@ -18,9 +19,72 @@
4172 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
4173 "X-Generator: Launchpad (build 13388)\n"
4174
4175-#: places/GroupHeader.qml:88
4176-msgid "See one more result"
4177-msgstr "Ein weiteres Ergebnis anzeigen"
4178+#: libunity-2d-private/src/trash.cpp:255
4179+#, c-format, qt-plural-format
4180+msgid "%n item in trash"
4181+msgid_plural "%n items in trash"
4182+msgstr[0] "%n Objekt im Mülleimer"
4183+msgstr[1] "%n Objekte im Mülleimer"
4184+
4185+#: places/HomeShortcuts.qml:82
4186+msgid "Browse the Web"
4187+msgstr "Im Internet surfen"
4188+
4189+#: places/HomeShortcuts.qml:92
4190+msgid "Check Email"
4191+msgstr "E-Mails abrufen"
4192+
4193+#: libunity-2d-private/src/launcherdevice.cpp:237
4194+msgid "Eject"
4195+msgstr "Auswerfen"
4196+
4197+#: libunity-2d-private/src/trash.cpp:262
4198+msgid "Empty Trash"
4199+msgstr "Mülleimer leeren"
4200+
4201+#: places/HomeShortcuts.qml:75
4202+msgid "Find Files"
4203+msgstr "Dateien finden"
4204+
4205+#: places/HomeShortcuts.qml:63
4206+msgid "Internet Apps"
4207+msgstr "Internet-Anwendungen"
4208+
4209+#: libunity-2d-private/src/launcherapplication.cpp:883
4210+msgid "Keep In Launcher"
4211+msgstr "Im Starter behalten"
4212+
4213+#: places/HomeShortcuts.qml:97
4214+msgid "Listen to Music"
4215+msgstr "Musik hören"
4216+
4217+#: places/HomeShortcuts.qml:57
4218+msgid "Media Apps"
4219+msgstr "Multimedia-Anwendungen"
4220+
4221+#: places/HomeShortcuts.qml:69
4222+msgid "More Apps"
4223+msgstr "Mehr Anwendungen"
4224+
4225+#: launcher/app/launcher.cpp:95
4226+msgid "QT_LAYOUT_DIRECTION"
4227+msgstr ""
4228+
4229+#: libunity-2d-private/src/launcherapplication.cpp:890
4230+msgid "Quit"
4231+msgstr "Schließen"
4232+
4233+#: places/SearchRefine.qml:67
4234+msgid "Refine search"
4235+msgstr "Suche eingrenzen"
4236+
4237+#: libunity-2d-private/src/launcherapplication.cpp:883
4238+msgid "Remove From Launcher"
4239+msgstr "Aus dem Starter entfernen"
4240+
4241+#: places/SearchEntry.qml:165
4242+msgid "Search"
4243+msgstr ""
4244
4245 #: places/GroupHeader.qml:90
4246 #, qt-format
4247@@ -31,81 +95,26 @@
4248 msgid "See fewer results"
4249 msgstr "Weniger Ergebnisse anzeigen"
4250
4251-#: places/HomeShortcuts.qml:32
4252-msgid "Media Apps"
4253-msgstr "Multimedia-Anwendungen"
4254-
4255-#: places/HomeShortcuts.qml:38
4256-msgid "Internet Apps"
4257-msgstr "Internet-Anwendungen"
4258-
4259-#: places/HomeShortcuts.qml:44
4260-msgid "More Apps"
4261-msgstr "Mehr Anwendungen"
4262-
4263-#: places/HomeShortcuts.qml:50
4264-msgid "Find Files"
4265-msgstr "Dateien finden"
4266-
4267-#: places/HomeShortcuts.qml:57
4268-msgid "Browse the Web"
4269-msgstr "Im Internet surfen"
4270-
4271-#: places/HomeShortcuts.qml:62
4272-msgid "View Photos"
4273-msgstr "Fotos betrachten"
4274-
4275-#: places/HomeShortcuts.qml:67
4276-msgid "Check Email"
4277-msgstr "E-Mails abrufen"
4278-
4279-#: places/HomeShortcuts.qml:72
4280-msgid "Listen to Music"
4281-msgstr "Musik hören"
4282-
4283-#: places/Home.qml:79
4284+#: places/GroupHeader.qml:88
4285+msgid "See one more result"
4286+msgstr "Ein weiteres Ergebnis anzeigen"
4287+
4288+#: places/Home.qml:78
4289 msgid "Shortcuts"
4290 msgstr "Verknüpfungen"
4291
4292-#: places/SearchRefine.qml:61
4293-msgid "Refine search"
4294-msgstr "Suche eingrenzen"
4295+#: libunity-2d-private/src/trash.cpp:125
4296+msgid "Trash"
4297+msgstr "Mülleimer"
4298
4299-#: places/SearchRefine.qml:84
4300+#: places/SearchRefine.qml:91
4301 msgid "Type"
4302 msgstr "Typ"
4303
4304-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
4305-msgid "Eject"
4306-msgstr "Auswerfen"
4307-
4308-#: libunity-2d-private/Unity2d/trash.cpp:125
4309-msgid "Trash"
4310-msgstr "Mülleimer"
4311-
4312-#: libunity-2d-private/Unity2d/trash.cpp:255
4313-#, c-format, qt-plural-format
4314-msgid "%n item in trash"
4315-msgid_plural "%n items in trash"
4316-msgstr[0] "%n Objekt im Mülleimer"
4317-msgstr[1] "%n Objekte im Mülleimer"
4318-
4319-#: libunity-2d-private/Unity2d/trash.cpp:262
4320-msgid "Empty Trash"
4321-msgstr "Mülleimer leeren"
4322-
4323-#: libunity-2d-private/Unity2d/workspaces.cpp:73
4324+#: places/HomeShortcuts.qml:87
4325+msgid "View Photos"
4326+msgstr "Fotos betrachten"
4327+
4328+#: libunity-2d-private/src/workspaces.cpp:73
4329 msgid "Workspaces"
4330 msgstr "Arbeitsflächen"
4331-
4332-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4333-msgid "Keep In Launcher"
4334-msgstr "Im Starter behalten"
4335-
4336-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4337-msgid "Remove From Launcher"
4338-msgstr "Aus dem Starter entfernen"
4339-
4340-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
4341-msgid "Quit"
4342-msgstr "Schließen"
4343
4344=== modified file 'po/el.po'
4345--- po/el.po 2011-07-13 14:24:43 +0000
4346+++ po/el.po 2011-08-05 18:22:37 +0000
4347@@ -6,11 +6,12 @@
4348 msgid ""
4349 msgstr ""
4350 "Project-Id-Version: unity-2d\n"
4351-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4352-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
4353+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
4354+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
4355 "PO-Revision-Date: 2011-04-20 07:39+0000\n"
4356 "Last-Translator: Michael Kotsarinis <mk73628@gmail.com>\n"
4357 "Language-Team: Greek <el@li.org>\n"
4358+"Language: el\n"
4359 "MIME-Version: 1.0\n"
4360 "Content-Type: text/plain; charset=UTF-8\n"
4361 "Content-Transfer-Encoding: 8bit\n"
4362@@ -18,9 +19,72 @@
4363 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
4364 "X-Generator: Launchpad (build 13388)\n"
4365
4366-#: places/GroupHeader.qml:88
4367-msgid "See one more result"
4368-msgstr "Εμφάνιση ενός ακόμη αποτελέσματος"
4369+#: libunity-2d-private/src/trash.cpp:255
4370+#, c-format, qt-plural-format
4371+msgid "%n item in trash"
4372+msgid_plural "%n items in trash"
4373+msgstr[0] "%n αντικείμενο στον κάδο"
4374+msgstr[1] "%n αντικείμενα στον κάδο"
4375+
4376+#: places/HomeShortcuts.qml:82
4377+msgid "Browse the Web"
4378+msgstr "Περιήγηση στον ιστό"
4379+
4380+#: places/HomeShortcuts.qml:92
4381+msgid "Check Email"
4382+msgstr "Έλεγχος Ηλεκτρονικού Ταχυδρομείου"
4383+
4384+#: libunity-2d-private/src/launcherdevice.cpp:237
4385+msgid "Eject"
4386+msgstr "Εξαγωγή"
4387+
4388+#: libunity-2d-private/src/trash.cpp:262
4389+msgid "Empty Trash"
4390+msgstr "Άδειασμα Απορριμάτων"
4391+
4392+#: places/HomeShortcuts.qml:75
4393+msgid "Find Files"
4394+msgstr "Εύρεση Αρχείων"
4395+
4396+#: places/HomeShortcuts.qml:63
4397+msgid "Internet Apps"
4398+msgstr "Εφαρμογές Διαδικτύου"
4399+
4400+#: libunity-2d-private/src/launcherapplication.cpp:883
4401+msgid "Keep In Launcher"
4402+msgstr "Διατήρηση στον εκκινητή"
4403+
4404+#: places/HomeShortcuts.qml:97
4405+msgid "Listen to Music"
4406+msgstr "Ακούστε Μουσική"
4407+
4408+#: places/HomeShortcuts.qml:57
4409+msgid "Media Apps"
4410+msgstr "Εφαρμογές Πολυμέσων"
4411+
4412+#: places/HomeShortcuts.qml:69
4413+msgid "More Apps"
4414+msgstr "Περισσότερες Εφαρμογές"
4415+
4416+#: launcher/app/launcher.cpp:95
4417+msgid "QT_LAYOUT_DIRECTION"
4418+msgstr ""
4419+
4420+#: libunity-2d-private/src/launcherapplication.cpp:890
4421+msgid "Quit"
4422+msgstr "Έξοδος"
4423+
4424+#: places/SearchRefine.qml:67
4425+msgid "Refine search"
4426+msgstr "Ανακαθορίσετε την αναζήτησή"
4427+
4428+#: libunity-2d-private/src/launcherapplication.cpp:883
4429+msgid "Remove From Launcher"
4430+msgstr "Αφαίρεση από τον εκκινητή"
4431+
4432+#: places/SearchEntry.qml:165
4433+msgid "Search"
4434+msgstr ""
4435
4436 #: places/GroupHeader.qml:90
4437 #, qt-format
4438@@ -31,81 +95,26 @@
4439 msgid "See fewer results"
4440 msgstr "Δείτε λιγότερα αποτελέσματα"
4441
4442-#: places/HomeShortcuts.qml:32
4443-msgid "Media Apps"
4444-msgstr "Εφαρμογές Πολυμέσων"
4445-
4446-#: places/HomeShortcuts.qml:38
4447-msgid "Internet Apps"
4448-msgstr "Εφαρμογές Διαδικτύου"
4449-
4450-#: places/HomeShortcuts.qml:44
4451-msgid "More Apps"
4452-msgstr "Περισσότερες Εφαρμογές"
4453-
4454-#: places/HomeShortcuts.qml:50
4455-msgid "Find Files"
4456-msgstr "Εύρεση Αρχείων"
4457-
4458-#: places/HomeShortcuts.qml:57
4459-msgid "Browse the Web"
4460-msgstr "Περιήγηση στον ιστό"
4461-
4462-#: places/HomeShortcuts.qml:62
4463-msgid "View Photos"
4464-msgstr "Προβολή Φωτογραφιών"
4465-
4466-#: places/HomeShortcuts.qml:67
4467-msgid "Check Email"
4468-msgstr "Έλεγχος Ηλεκτρονικού Ταχυδρομείου"
4469-
4470-#: places/HomeShortcuts.qml:72
4471-msgid "Listen to Music"
4472-msgstr "Ακούστε Μουσική"
4473-
4474-#: places/Home.qml:79
4475+#: places/GroupHeader.qml:88
4476+msgid "See one more result"
4477+msgstr "Εμφάνιση ενός ακόμη αποτελέσματος"
4478+
4479+#: places/Home.qml:78
4480 msgid "Shortcuts"
4481 msgstr "Συντομεύσεις"
4482
4483-#: places/SearchRefine.qml:61
4484-msgid "Refine search"
4485-msgstr "Ανακαθορίσετε την αναζήτησή"
4486+#: libunity-2d-private/src/trash.cpp:125
4487+msgid "Trash"
4488+msgstr "Απορρίμματα"
4489
4490-#: places/SearchRefine.qml:84
4491+#: places/SearchRefine.qml:91
4492 msgid "Type"
4493 msgstr "Τύπος"
4494
4495-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
4496-msgid "Eject"
4497-msgstr "Εξαγωγή"
4498-
4499-#: libunity-2d-private/Unity2d/trash.cpp:125
4500-msgid "Trash"
4501-msgstr "Απορρίμματα"
4502-
4503-#: libunity-2d-private/Unity2d/trash.cpp:255
4504-#, c-format, qt-plural-format
4505-msgid "%n item in trash"
4506-msgid_plural "%n items in trash"
4507-msgstr[0] "%n αντικείμενο στον κάδο"
4508-msgstr[1] "%n αντικείμενα στον κάδο"
4509-
4510-#: libunity-2d-private/Unity2d/trash.cpp:262
4511-msgid "Empty Trash"
4512-msgstr "Άδειασμα Απορριμάτων"
4513-
4514-#: libunity-2d-private/Unity2d/workspaces.cpp:73
4515+#: places/HomeShortcuts.qml:87
4516+msgid "View Photos"
4517+msgstr "Προβολή Φωτογραφιών"
4518+
4519+#: libunity-2d-private/src/workspaces.cpp:73
4520 msgid "Workspaces"
4521 msgstr "Χώροι εργασίας"
4522-
4523-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4524-msgid "Keep In Launcher"
4525-msgstr "Διατήρηση στον εκκινητή"
4526-
4527-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4528-msgid "Remove From Launcher"
4529-msgstr "Αφαίρεση από τον εκκινητή"
4530-
4531-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
4532-msgid "Quit"
4533-msgstr "Έξοδος"
4534
4535=== modified file 'po/en_AU.po'
4536--- po/en_AU.po 2011-07-13 14:24:43 +0000
4537+++ po/en_AU.po 2011-08-05 18:22:37 +0000
4538@@ -6,11 +6,12 @@
4539 msgid ""
4540 msgstr ""
4541 "Project-Id-Version: unity-2d\n"
4542-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4543-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
4544+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
4545+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
4546 "PO-Revision-Date: 2011-04-20 18:55+0000\n"
4547 "Last-Translator: Jared Norris <jrnorris@gmail.com>\n"
4548 "Language-Team: English (Australia) <en_AU@li.org>\n"
4549+"Language: \n"
4550 "MIME-Version: 1.0\n"
4551 "Content-Type: text/plain; charset=UTF-8\n"
4552 "Content-Transfer-Encoding: 8bit\n"
4553@@ -18,9 +19,72 @@
4554 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
4555 "X-Generator: Launchpad (build 13388)\n"
4556
4557-#: places/GroupHeader.qml:88
4558-msgid "See one more result"
4559-msgstr "See one more result"
4560+#: libunity-2d-private/src/trash.cpp:255
4561+#, c-format, qt-plural-format
4562+msgid "%n item in trash"
4563+msgid_plural "%n items in trash"
4564+msgstr[0] "%n item in rubbish bin"
4565+msgstr[1] "%n items in rubbish bin"
4566+
4567+#: places/HomeShortcuts.qml:82
4568+msgid "Browse the Web"
4569+msgstr "Browse the Web"
4570+
4571+#: places/HomeShortcuts.qml:92
4572+msgid "Check Email"
4573+msgstr "Check Email"
4574+
4575+#: libunity-2d-private/src/launcherdevice.cpp:237
4576+msgid "Eject"
4577+msgstr "Eject"
4578+
4579+#: libunity-2d-private/src/trash.cpp:262
4580+msgid "Empty Trash"
4581+msgstr "Empty Rubbish Bin"
4582+
4583+#: places/HomeShortcuts.qml:75
4584+msgid "Find Files"
4585+msgstr "Find Files"
4586+
4587+#: places/HomeShortcuts.qml:63
4588+msgid "Internet Apps"
4589+msgstr "Internet Apps"
4590+
4591+#: libunity-2d-private/src/launcherapplication.cpp:883
4592+msgid "Keep In Launcher"
4593+msgstr "Keep In Launcher"
4594+
4595+#: places/HomeShortcuts.qml:97
4596+msgid "Listen to Music"
4597+msgstr "Listen to Music"
4598+
4599+#: places/HomeShortcuts.qml:57
4600+msgid "Media Apps"
4601+msgstr "Media Apps"
4602+
4603+#: places/HomeShortcuts.qml:69
4604+msgid "More Apps"
4605+msgstr "More Apps"
4606+
4607+#: launcher/app/launcher.cpp:95
4608+msgid "QT_LAYOUT_DIRECTION"
4609+msgstr ""
4610+
4611+#: libunity-2d-private/src/launcherapplication.cpp:890
4612+msgid "Quit"
4613+msgstr "Quit"
4614+
4615+#: places/SearchRefine.qml:67
4616+msgid "Refine search"
4617+msgstr "Refine search"
4618+
4619+#: libunity-2d-private/src/launcherapplication.cpp:883
4620+msgid "Remove From Launcher"
4621+msgstr "Remove From Launcher"
4622+
4623+#: places/SearchEntry.qml:165
4624+msgid "Search"
4625+msgstr ""
4626
4627 #: places/GroupHeader.qml:90
4628 #, qt-format
4629@@ -31,81 +95,26 @@
4630 msgid "See fewer results"
4631 msgstr "See fewer results"
4632
4633-#: places/HomeShortcuts.qml:32
4634-msgid "Media Apps"
4635-msgstr "Media Apps"
4636-
4637-#: places/HomeShortcuts.qml:38
4638-msgid "Internet Apps"
4639-msgstr "Internet Apps"
4640-
4641-#: places/HomeShortcuts.qml:44
4642-msgid "More Apps"
4643-msgstr "More Apps"
4644-
4645-#: places/HomeShortcuts.qml:50
4646-msgid "Find Files"
4647-msgstr "Find Files"
4648-
4649-#: places/HomeShortcuts.qml:57
4650-msgid "Browse the Web"
4651-msgstr "Browse the Web"
4652-
4653-#: places/HomeShortcuts.qml:62
4654-msgid "View Photos"
4655-msgstr "View Photos"
4656-
4657-#: places/HomeShortcuts.qml:67
4658-msgid "Check Email"
4659-msgstr "Check Email"
4660-
4661-#: places/HomeShortcuts.qml:72
4662-msgid "Listen to Music"
4663-msgstr "Listen to Music"
4664-
4665-#: places/Home.qml:79
4666+#: places/GroupHeader.qml:88
4667+msgid "See one more result"
4668+msgstr "See one more result"
4669+
4670+#: places/Home.qml:78
4671 msgid "Shortcuts"
4672 msgstr "Shortcuts"
4673
4674-#: places/SearchRefine.qml:61
4675-msgid "Refine search"
4676-msgstr "Refine search"
4677+#: libunity-2d-private/src/trash.cpp:125
4678+msgid "Trash"
4679+msgstr "Rubbish Bin"
4680
4681-#: places/SearchRefine.qml:84
4682+#: places/SearchRefine.qml:91
4683 msgid "Type"
4684 msgstr "Type"
4685
4686-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
4687-msgid "Eject"
4688-msgstr "Eject"
4689-
4690-#: libunity-2d-private/Unity2d/trash.cpp:125
4691-msgid "Trash"
4692-msgstr "Rubbish Bin"
4693-
4694-#: libunity-2d-private/Unity2d/trash.cpp:255
4695-#, c-format, qt-plural-format
4696-msgid "%n item in trash"
4697-msgid_plural "%n items in trash"
4698-msgstr[0] "%n item in rubbish bin"
4699-msgstr[1] "%n items in rubbish bin"
4700-
4701-#: libunity-2d-private/Unity2d/trash.cpp:262
4702-msgid "Empty Trash"
4703-msgstr "Empty Rubbish Bin"
4704-
4705-#: libunity-2d-private/Unity2d/workspaces.cpp:73
4706+#: places/HomeShortcuts.qml:87
4707+msgid "View Photos"
4708+msgstr "View Photos"
4709+
4710+#: libunity-2d-private/src/workspaces.cpp:73
4711 msgid "Workspaces"
4712 msgstr "Workspaces"
4713-
4714-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4715-msgid "Keep In Launcher"
4716-msgstr "Keep In Launcher"
4717-
4718-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4719-msgid "Remove From Launcher"
4720-msgstr "Remove From Launcher"
4721-
4722-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
4723-msgid "Quit"
4724-msgstr "Quit"
4725
4726=== modified file 'po/en_GB.po'
4727--- po/en_GB.po 2011-07-13 14:24:43 +0000
4728+++ po/en_GB.po 2011-08-05 18:22:37 +0000
4729@@ -6,11 +6,12 @@
4730 msgid ""
4731 msgstr ""
4732 "Project-Id-Version: unity-2d\n"
4733-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4734-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
4735+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
4736+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
4737 "PO-Revision-Date: 2011-04-26 23:32+0000\n"
4738 "Last-Translator: James Thorrold <jameslin@inbox.com>\n"
4739 "Language-Team: English (United Kingdom) <en_GB@li.org>\n"
4740+"Language: \n"
4741 "MIME-Version: 1.0\n"
4742 "Content-Type: text/plain; charset=UTF-8\n"
4743 "Content-Transfer-Encoding: 8bit\n"
4744@@ -18,9 +19,72 @@
4745 "X-Launchpad-Export-Date: 2011-07-11 15:21+0000\n"
4746 "X-Generator: Launchpad (build 13388)\n"
4747
4748-#: places/GroupHeader.qml:88
4749-msgid "See one more result"
4750-msgstr "See one more result"
4751+#: libunity-2d-private/src/trash.cpp:255
4752+#, c-format, qt-plural-format
4753+msgid "%n item in trash"
4754+msgid_plural "%n items in trash"
4755+msgstr[0] "%n item in the Rubbish Bin"
4756+msgstr[1] "%n items in the Rubbish Bin"
4757+
4758+#: places/HomeShortcuts.qml:82
4759+msgid "Browse the Web"
4760+msgstr "Browse the Web"
4761+
4762+#: places/HomeShortcuts.qml:92
4763+msgid "Check Email"
4764+msgstr "Check Email"
4765+
4766+#: libunity-2d-private/src/launcherdevice.cpp:237
4767+msgid "Eject"
4768+msgstr "Eject"
4769+
4770+#: libunity-2d-private/src/trash.cpp:262
4771+msgid "Empty Trash"
4772+msgstr "Empty the Rubbish Bin"
4773+
4774+#: places/HomeShortcuts.qml:75
4775+msgid "Find Files"
4776+msgstr "Find Files"
4777+
4778+#: places/HomeShortcuts.qml:63
4779+msgid "Internet Apps"
4780+msgstr "Internet Apps"
4781+
4782+#: libunity-2d-private/src/launcherapplication.cpp:883
4783+msgid "Keep In Launcher"
4784+msgstr "Keep In Launcher"
4785+
4786+#: places/HomeShortcuts.qml:97
4787+msgid "Listen to Music"
4788+msgstr "Listen to Music"
4789+
4790+#: places/HomeShortcuts.qml:57
4791+msgid "Media Apps"
4792+msgstr "Media Apps"
4793+
4794+#: places/HomeShortcuts.qml:69
4795+msgid "More Apps"
4796+msgstr "More Apps"
4797+
4798+#: launcher/app/launcher.cpp:95
4799+msgid "QT_LAYOUT_DIRECTION"
4800+msgstr ""
4801+
4802+#: libunity-2d-private/src/launcherapplication.cpp:890
4803+msgid "Quit"
4804+msgstr "Quit"
4805+
4806+#: places/SearchRefine.qml:67
4807+msgid "Refine search"
4808+msgstr "Refine search"
4809+
4810+#: libunity-2d-private/src/launcherapplication.cpp:883
4811+msgid "Remove From Launcher"
4812+msgstr "Remove From Launcher"
4813+
4814+#: places/SearchEntry.qml:165
4815+msgid "Search"
4816+msgstr ""
4817
4818 #: places/GroupHeader.qml:90
4819 #, qt-format
4820@@ -31,81 +95,26 @@
4821 msgid "See fewer results"
4822 msgstr "See fewer results"
4823
4824-#: places/HomeShortcuts.qml:32
4825-msgid "Media Apps"
4826-msgstr "Media Apps"
4827-
4828-#: places/HomeShortcuts.qml:38
4829-msgid "Internet Apps"
4830-msgstr "Internet Apps"
4831-
4832-#: places/HomeShortcuts.qml:44
4833-msgid "More Apps"
4834-msgstr "More Apps"
4835-
4836-#: places/HomeShortcuts.qml:50
4837-msgid "Find Files"
4838-msgstr "Find Files"
4839-
4840-#: places/HomeShortcuts.qml:57
4841-msgid "Browse the Web"
4842-msgstr "Browse the Web"
4843-
4844-#: places/HomeShortcuts.qml:62
4845-msgid "View Photos"
4846-msgstr "View Photos"
4847-
4848-#: places/HomeShortcuts.qml:67
4849-msgid "Check Email"
4850-msgstr "Check Email"
4851-
4852-#: places/HomeShortcuts.qml:72
4853-msgid "Listen to Music"
4854-msgstr "Listen to Music"
4855-
4856-#: places/Home.qml:79
4857+#: places/GroupHeader.qml:88
4858+msgid "See one more result"
4859+msgstr "See one more result"
4860+
4861+#: places/Home.qml:78
4862 msgid "Shortcuts"
4863 msgstr "Shortcuts"
4864
4865-#: places/SearchRefine.qml:61
4866-msgid "Refine search"
4867-msgstr "Refine search"
4868+#: libunity-2d-private/src/trash.cpp:125
4869+msgid "Trash"
4870+msgstr "Rubbish Bin"
4871
4872-#: places/SearchRefine.qml:84
4873+#: places/SearchRefine.qml:91
4874 msgid "Type"
4875 msgstr "Type"
4876
4877-#: libunity-2d-private/Unity2d/launcherdevice.cpp:238
4878-msgid "Eject"
4879-msgstr "Eject"
4880-
4881-#: libunity-2d-private/Unity2d/trash.cpp:125
4882-msgid "Trash"
4883-msgstr "Rubbish Bin"
4884-
4885-#: libunity-2d-private/Unity2d/trash.cpp:255
4886-#, c-format, qt-plural-format
4887-msgid "%n item in trash"
4888-msgid_plural "%n items in trash"
4889-msgstr[0] "%n item in the Rubbish Bin"
4890-msgstr[1] "%n items in the Rubbish Bin"
4891-
4892-#: libunity-2d-private/Unity2d/trash.cpp:262
4893-msgid "Empty Trash"
4894-msgstr "Empty the Rubbish Bin"
4895-
4896-#: libunity-2d-private/Unity2d/workspaces.cpp:73
4897+#: places/HomeShortcuts.qml:87
4898+msgid "View Photos"
4899+msgstr "View Photos"
4900+
4901+#: libunity-2d-private/src/workspaces.cpp:73
4902 msgid "Workspaces"
4903 msgstr "Workspaces"
4904-
4905-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4906-msgid "Keep In Launcher"
4907-msgstr "Keep In Launcher"
4908-
4909-#: libunity-2d-private/Unity2d/launcherapplication.cpp:863
4910-msgid "Remove From Launcher"
4911-msgstr "Remove From Launcher"
4912-
4913-#: libunity-2d-private/Unity2d/launcherapplication.cpp:870
4914-msgid "Quit"
4915-msgstr "Quit"
4916
4917=== modified file 'po/eo.po'
4918--- po/eo.po 2011-07-13 14:24:43 +0000
4919+++ po/eo.po 2011-08-05 18:22:37 +0000
4920@@ -6,11 +6,12 @@
4921 msgid ""
4922 msgstr ""
4923 "Project-Id-Version: unity-2d\n"
4924-"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
4925-"POT-Creation-Date: 2011-06-07 18:21+0200\n"
4926+"Report-Msgid-Bugs-To: https://bugs.launchpad.net/unity-2d/+filebug\n"
4927+"POT-Creation-Date: 2011-08-04 17:53+0300\n"
4928 "PO-Revision-Date: 2011-06-26 15:20+0000\n"
4929 "Last-Translator: Michael Moroni <michael.moroni@mailoo.org>\n"
4930 "Language-Team: Esperanto <eo@li.org>\n"
4931+"Language: eo\n"
4932 "MIME-Version: 1.0\n"
4933 "Content-Type: text/plain; charset=UTF-8\n"
4934 "Content-Transfer-Encoding: 8bit\n"
4935@@ -18,9 +19,72 @@
4936 "X-Launchpad-Export-Date: 2011-07-11 15:20+0000\n"
4937 "X-Generator: Launchpad (build 13388)\n"
4938
4939-#: places/GroupHeader.qml:88
4940-msgid "See one more result"
4941-msgstr "Montri unu plian rezulton"
4942+#: libunity-2d-private/src/trash.cpp:255
4943+#, c-format, qt-plural-format
4944+msgid "%n item in trash"
4945+msgid_plural "%n items in trash"
4946+msgstr[0] "%n ero en rubujo"
4947+msgstr[1] "%n eroj en rubujo"
4948+
4949+#: places/HomeShortcuts.qml:82
4950+msgid "Browse the Web"
4951+msgstr "Foliumi interrete"
4952+
4953+#: places/HomeShortcuts.qml:92
4954+msgid "Check Email"
4955+msgstr "Kontroli pri retpoŝto"
4956+
4957+#: libunity-2d-private/src/launcherdevice.cpp:237
4958+msgid "Eject"
4959+msgstr "Elĵeti"
4960+
4961+#: libunity-2d-private/src/trash.cpp:262
4962+msgid "Empty Trash"
4963+msgstr "Malplenigi rubujon"
4964+
4965+#: places/HomeShortcuts.qml:75
4966+msgid "Find Files"
4967+msgstr "Trovi dosierojn"
4968+
4969+#: places/HomeShortcuts.qml:63
4970+msgid "Internet Apps"
4971+msgstr "Interretaj aplikaĵoj"
4972+
4973+#: libunity-2d-private/src/launcherapplication.cpp:883
4974+msgid "Keep In Launcher"
4975+msgstr "Teni en lanĉilo"
4976+
4977+#: places/HomeShortcuts.qml:97
4978+msgid "Listen to Music"
4979+msgstr "Ludi muzikon"
4980+
4981+#: places/HomeShortcuts.qml:57
4982+msgid "Media Apps"
4983+msgstr "Plurmediaj aplikaĵoj"
4984+
4985+#: places/HomeShortcuts.qml:69
4986+msgid "More Apps"
4987+msgstr "Pliaj aplikaĵoj"
4988+
4989+#: launcher/app/launcher.cpp:95
4990+msgid "QT_LAYOUT_DIRECTION"
4991+msgstr ""
4992+
4993+#: libunity-2d-private/src/launcherapplication.cpp:890
4994+msgid "Quit"
4995+msgstr "Eliri"
4996+
4997+#: places/SearchRefine.qml:67
4998+msgid "Refine search"
4999+msgstr "Rafini serĉon"
5000+
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches