Merge lp:~gcollura/ubuntu-ui-toolkit/fix-1341814-and-1400297 into lp:ubuntu-ui-toolkit/staging

Proposed by Giulio Collura
Status: Superseded
Proposed branch: lp:~gcollura/ubuntu-ui-toolkit/fix-1341814-and-1400297
Merge into: lp:ubuntu-ui-toolkit/staging
Diff against target: 1081 lines (+161/-142)
55 files modified
examples/ubuntu-ui-toolkit-gallery/po/es.po (+1/-1)
modules/Ubuntu/Components/PageHeadConfiguration.qml (+11/-0)
po/am.po (+2/-2)
po/ar.po (+2/-2)
po/ast.po (+2/-2)
po/az.po (+2/-2)
po/be.po (+2/-2)
po/bs.po (+2/-2)
po/ca.po (+3/-3)
po/ca@valencia.po (+2/-2)
po/ce.po (+2/-2)
po/cs.po (+2/-2)
po/da.po (+2/-2)
po/de.po (+2/-2)
po/el.po (+2/-2)
po/en_AU.po (+2/-2)
po/en_GB.po (+2/-2)
po/es.po (+1/-1)
po/eu.po (+2/-2)
po/fa.po (+1/-1)
po/fi.po (+2/-2)
po/fr.po (+4/-4)
po/fr_CA.po (+2/-2)
po/ga.po (+23/-16)
po/gd.po (+2/-2)
po/gl.po (+4/-4)
po/he.po (+2/-2)
po/hr.po (+2/-2)
po/hu.po (+2/-2)
po/id.po (+2/-2)
po/it.po (+2/-2)
po/ja.po (+2/-2)
po/km.po (+2/-2)
po/kn.po (+2/-2)
po/ko.po (+4/-4)
po/lv.po (+2/-2)
po/ms.po (+2/-2)
po/my.po (+2/-2)
po/nb.po (+4/-4)
po/nl.po (+2/-2)
po/oc.po (+2/-2)
po/pa.po (+2/-2)
po/pl.po (+2/-2)
po/pt.po (+4/-4)
po/pt_BR.po (+2/-2)
po/ro.po (+2/-2)
po/ru.po (+2/-2)
po/sq.po (+2/-2)
po/sr.po (+2/-2)
po/sv.po (+2/-2)
po/tr.po (+12/-11)
po/ug.po (+3/-3)
po/uk.po (+4/-4)
po/zh_CN.po (+2/-2)
po/zh_TW.po (+2/-2)
To merge this branch: bzr merge lp:~gcollura/ubuntu-ui-toolkit/fix-1341814-and-1400297
Reviewer Review Type Date Requested Status
Zoltan Balogh Pending
Riccardo Padovani Pending
Review via email: mp+245552@code.launchpad.net

This proposal supersedes a proposal from 2014-12-29.

This proposal has been superseded by a proposal from 2015-01-06.

Description of the change

This is a bugfix for bug #1341814 and bug #1400297. Essentially we have to force the removal of the previous 'contents' item by removing its parent. This way we ensure that the contents are correctly hidden, focused and removed, without destroying them.

To post a comment you must log in.
Revision history for this message
Riccardo Padovani (rpadovani) wrote : Posted in a previous version of this proposal

Tested on desktop on vivid, it fixes both bugs.

Thanks Giulio!

review: Approve
Revision history for this message
Zoltan Balogh (bzoltan) wrote : Posted in a previous version of this proposal

Would you please target this MR to the staging branch? (lp:ubuntu-ui-toolkit/staging)

review: Needs Fixing
Revision history for this message
Tim Peeters (tpeeters) wrote :

Thanks a lot for the fix! Can you please rebase this with staging so that the changes from trunk don't show up in the diff?

Also,

29 + __oldContents.parent = null

add a semicolon at the end of that line, to use a consistent coding standard.

Revision history for this message
Tim Peeters (tpeeters) wrote :

21 + property Item __oldContents: null

Instead of that, I propose to introduce:

QtObject {
  id: internal
  property Item oldContents: null
}

and then use internal.oldContents instead of __oldContents in onContentsChanged. That way you really prevent developers using PageHeadStyle from accessing __oldContents.

Unmerged revisions

1150. By Giulio Collura

Fix bug #1341814 and #1400297 by forcing the previous displayed contents to lose their parent

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'examples/ubuntu-ui-toolkit-gallery/po/es.po'
2--- examples/ubuntu-ui-toolkit-gallery/po/es.po 2014-12-12 06:33:39 +0000
3+++ examples/ubuntu-ui-toolkit-gallery/po/es.po 2015-01-05 09:51:15 +0000
4@@ -14,7 +14,7 @@
5 "MIME-Version: 1.0\n"
6 "Content-Type: text/plain; charset=UTF-8\n"
7 "Content-Transfer-Encoding: 8bit\n"
8-"X-Launchpad-Export-Date: 2014-12-12 06:33+0000\n"
9+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
10 "X-Generator: Launchpad (build 17286)\n"
11
12 #: Animations.qml:24
13
14=== modified file 'modules/Ubuntu/Components/PageHeadConfiguration.qml'
15--- modules/Ubuntu/Components/PageHeadConfiguration.qml 2014-10-31 13:36:50 +0000
16+++ modules/Ubuntu/Components/PageHeadConfiguration.qml 2015-01-05 09:51:15 +0000
17@@ -94,8 +94,19 @@
18 See \l PageHeadState for an example that shows how search mode can
19 be implemented.
20 */
21+ property Item __oldContents: null
22 property Item contents: null
23
24+ onContentsChanged: {
25+ if (__oldContents) {
26+ // FIX: bug #1341814 and #1400297
27+ // We have to force the removal of the previous head.contents
28+ // in order to show the new contents
29+ __oldContents.parent = null
30+ }
31+ __oldContents = contents;
32+ }
33+
34 // FIXME: The example below can be much simplified using PageHeadState
35 // when bug #1345775 has been fixed.
36 /*!
37
38=== modified file 'po/am.po'
39--- po/am.po 2014-11-29 06:47:10 +0000
40+++ po/am.po 2015-01-05 09:51:15 +0000
41@@ -14,8 +14,8 @@
42 "MIME-Version: 1.0\n"
43 "Content-Type: text/plain; charset=UTF-8\n"
44 "Content-Transfer-Encoding: 8bit\n"
45-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
46-"X-Generator: Launchpad (build 17267)\n"
47+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
48+"X-Generator: Launchpad (build 17286)\n"
49
50 #: Ubuntu/Components/ListItems/Empty.qml:413
51 msgid "Delete"
52
53=== modified file 'po/ar.po'
54--- po/ar.po 2014-11-29 06:47:10 +0000
55+++ po/ar.po 2015-01-05 09:51:15 +0000
56@@ -14,8 +14,8 @@
57 "MIME-Version: 1.0\n"
58 "Content-Type: text/plain; charset=UTF-8\n"
59 "Content-Transfer-Encoding: 8bit\n"
60-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
61-"X-Generator: Launchpad (build 17267)\n"
62+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
63+"X-Generator: Launchpad (build 17286)\n"
64
65 #: Ubuntu/Components/ListItems/Empty.qml:413
66 msgid "Delete"
67
68=== modified file 'po/ast.po'
69--- po/ast.po 2014-11-29 06:47:10 +0000
70+++ po/ast.po 2015-01-05 09:51:15 +0000
71@@ -14,8 +14,8 @@
72 "MIME-Version: 1.0\n"
73 "Content-Type: text/plain; charset=UTF-8\n"
74 "Content-Transfer-Encoding: 8bit\n"
75-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
76-"X-Generator: Launchpad (build 17267)\n"
77+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
78+"X-Generator: Launchpad (build 17286)\n"
79
80 #: Ubuntu/Components/ListItems/Empty.qml:413
81 msgid "Delete"
82
83=== modified file 'po/az.po'
84--- po/az.po 2014-11-29 06:47:10 +0000
85+++ po/az.po 2015-01-05 09:51:15 +0000
86@@ -14,8 +14,8 @@
87 "MIME-Version: 1.0\n"
88 "Content-Type: text/plain; charset=UTF-8\n"
89 "Content-Transfer-Encoding: 8bit\n"
90-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
91-"X-Generator: Launchpad (build 17267)\n"
92+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
93+"X-Generator: Launchpad (build 17286)\n"
94
95 #: Ubuntu/Components/ListItems/Empty.qml:413
96 msgid "Delete"
97
98=== modified file 'po/be.po'
99--- po/be.po 2014-11-29 06:47:10 +0000
100+++ po/be.po 2015-01-05 09:51:15 +0000
101@@ -14,8 +14,8 @@
102 "MIME-Version: 1.0\n"
103 "Content-Type: text/plain; charset=UTF-8\n"
104 "Content-Transfer-Encoding: 8bit\n"
105-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
106-"X-Generator: Launchpad (build 17267)\n"
107+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
108+"X-Generator: Launchpad (build 17286)\n"
109
110 #: Ubuntu/Components/ListItems/Empty.qml:413
111 msgid "Delete"
112
113=== modified file 'po/bs.po'
114--- po/bs.po 2014-11-29 06:47:10 +0000
115+++ po/bs.po 2015-01-05 09:51:15 +0000
116@@ -14,8 +14,8 @@
117 "MIME-Version: 1.0\n"
118 "Content-Type: text/plain; charset=UTF-8\n"
119 "Content-Transfer-Encoding: 8bit\n"
120-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
121-"X-Generator: Launchpad (build 17267)\n"
122+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
123+"X-Generator: Launchpad (build 17286)\n"
124
125 #: Ubuntu/Components/ListItems/Empty.qml:413
126 msgid "Delete"
127
128=== modified file 'po/ca.po'
129--- po/ca.po 2014-11-29 06:47:10 +0000
130+++ po/ca.po 2015-01-05 09:51:15 +0000
131@@ -14,8 +14,8 @@
132 "MIME-Version: 1.0\n"
133 "Content-Type: text/plain; charset=UTF-8\n"
134 "Content-Transfer-Encoding: 8bit\n"
135-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
136-"X-Generator: Launchpad (build 17267)\n"
137+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
138+"X-Generator: Launchpad (build 17286)\n"
139
140 #: Ubuntu/Components/ListItems/Empty.qml:413
141 msgid "Delete"
142@@ -89,7 +89,7 @@
143
144 #: Ubuntu/Components/plugin/uctheme.cpp:233
145 msgid "Theme not found: "
146-msgstr ""
147+msgstr "No s'ha trobat el tema: "
148
149 #: Ubuntu/Components/Popups/ComposerSheet.qml:80
150 msgid "Cancel"
151
152=== modified file 'po/ca@valencia.po'
153--- po/ca@valencia.po 2014-11-29 06:47:10 +0000
154+++ po/ca@valencia.po 2015-01-05 09:51:15 +0000
155@@ -14,8 +14,8 @@
156 "MIME-Version: 1.0\n"
157 "Content-Type: text/plain; charset=UTF-8\n"
158 "Content-Transfer-Encoding: 8bit\n"
159-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
160-"X-Generator: Launchpad (build 17267)\n"
161+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
162+"X-Generator: Launchpad (build 17286)\n"
163
164 #: Ubuntu/Components/ListItems/Empty.qml:413
165 msgid "Delete"
166
167=== modified file 'po/ce.po'
168--- po/ce.po 2014-11-29 06:47:10 +0000
169+++ po/ce.po 2015-01-05 09:51:15 +0000
170@@ -14,8 +14,8 @@
171 "MIME-Version: 1.0\n"
172 "Content-Type: text/plain; charset=UTF-8\n"
173 "Content-Transfer-Encoding: 8bit\n"
174-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
175-"X-Generator: Launchpad (build 17267)\n"
176+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
177+"X-Generator: Launchpad (build 17286)\n"
178
179 #: Ubuntu/Components/ListItems/Empty.qml:413
180 msgid "Delete"
181
182=== modified file 'po/cs.po'
183--- po/cs.po 2014-11-29 06:47:10 +0000
184+++ po/cs.po 2015-01-05 09:51:15 +0000
185@@ -14,8 +14,8 @@
186 "MIME-Version: 1.0\n"
187 "Content-Type: text/plain; charset=UTF-8\n"
188 "Content-Transfer-Encoding: 8bit\n"
189-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
190-"X-Generator: Launchpad (build 17267)\n"
191+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
192+"X-Generator: Launchpad (build 17286)\n"
193
194 #: Ubuntu/Components/ListItems/Empty.qml:413
195 msgid "Delete"
196
197=== modified file 'po/da.po'
198--- po/da.po 2014-11-29 06:47:10 +0000
199+++ po/da.po 2015-01-05 09:51:15 +0000
200@@ -14,8 +14,8 @@
201 "MIME-Version: 1.0\n"
202 "Content-Type: text/plain; charset=UTF-8\n"
203 "Content-Transfer-Encoding: 8bit\n"
204-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
205-"X-Generator: Launchpad (build 17267)\n"
206+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
207+"X-Generator: Launchpad (build 17286)\n"
208
209 #: Ubuntu/Components/ListItems/Empty.qml:413
210 msgid "Delete"
211
212=== modified file 'po/de.po'
213--- po/de.po 2014-11-29 06:47:10 +0000
214+++ po/de.po 2015-01-05 09:51:15 +0000
215@@ -14,8 +14,8 @@
216 "MIME-Version: 1.0\n"
217 "Content-Type: text/plain; charset=UTF-8\n"
218 "Content-Transfer-Encoding: 8bit\n"
219-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
220-"X-Generator: Launchpad (build 17267)\n"
221+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
222+"X-Generator: Launchpad (build 17286)\n"
223
224 #: Ubuntu/Components/ListItems/Empty.qml:413
225 msgid "Delete"
226
227=== modified file 'po/el.po'
228--- po/el.po 2014-11-29 06:47:10 +0000
229+++ po/el.po 2015-01-05 09:51:15 +0000
230@@ -14,8 +14,8 @@
231 "MIME-Version: 1.0\n"
232 "Content-Type: text/plain; charset=UTF-8\n"
233 "Content-Transfer-Encoding: 8bit\n"
234-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
235-"X-Generator: Launchpad (build 17267)\n"
236+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
237+"X-Generator: Launchpad (build 17286)\n"
238
239 #: Ubuntu/Components/ListItems/Empty.qml:413
240 msgid "Delete"
241
242=== modified file 'po/en_AU.po'
243--- po/en_AU.po 2014-11-29 06:47:10 +0000
244+++ po/en_AU.po 2015-01-05 09:51:15 +0000
245@@ -14,8 +14,8 @@
246 "MIME-Version: 1.0\n"
247 "Content-Type: text/plain; charset=UTF-8\n"
248 "Content-Transfer-Encoding: 8bit\n"
249-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
250-"X-Generator: Launchpad (build 17267)\n"
251+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
252+"X-Generator: Launchpad (build 17286)\n"
253
254 #: Ubuntu/Components/ListItems/Empty.qml:413
255 msgid "Delete"
256
257=== modified file 'po/en_GB.po'
258--- po/en_GB.po 2014-11-29 06:47:10 +0000
259+++ po/en_GB.po 2015-01-05 09:51:15 +0000
260@@ -14,8 +14,8 @@
261 "MIME-Version: 1.0\n"
262 "Content-Type: text/plain; charset=UTF-8\n"
263 "Content-Transfer-Encoding: 8bit\n"
264-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
265-"X-Generator: Launchpad (build 17267)\n"
266+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
267+"X-Generator: Launchpad (build 17286)\n"
268
269 #: Ubuntu/Components/ListItems/Empty.qml:413
270 msgid "Delete"
271
272=== modified file 'po/es.po'
273--- po/es.po 2014-12-12 06:33:39 +0000
274+++ po/es.po 2015-01-05 09:51:15 +0000
275@@ -14,7 +14,7 @@
276 "MIME-Version: 1.0\n"
277 "Content-Type: text/plain; charset=UTF-8\n"
278 "Content-Transfer-Encoding: 8bit\n"
279-"X-Launchpad-Export-Date: 2014-12-12 06:33+0000\n"
280+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
281 "X-Generator: Launchpad (build 17286)\n"
282
283 #: Ubuntu/Components/ListItems/Empty.qml:413
284
285=== modified file 'po/eu.po'
286--- po/eu.po 2014-11-29 06:47:10 +0000
287+++ po/eu.po 2015-01-05 09:51:15 +0000
288@@ -14,8 +14,8 @@
289 "MIME-Version: 1.0\n"
290 "Content-Type: text/plain; charset=UTF-8\n"
291 "Content-Transfer-Encoding: 8bit\n"
292-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
293-"X-Generator: Launchpad (build 17267)\n"
294+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
295+"X-Generator: Launchpad (build 17286)\n"
296
297 #: Ubuntu/Components/ListItems/Empty.qml:413
298 msgid "Delete"
299
300=== modified file 'po/fa.po'
301--- po/fa.po 2014-12-12 06:33:39 +0000
302+++ po/fa.po 2015-01-05 09:51:15 +0000
303@@ -14,7 +14,7 @@
304 "MIME-Version: 1.0\n"
305 "Content-Type: text/plain; charset=UTF-8\n"
306 "Content-Transfer-Encoding: 8bit\n"
307-"X-Launchpad-Export-Date: 2014-12-12 06:33+0000\n"
308+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
309 "X-Generator: Launchpad (build 17286)\n"
310
311 #: Ubuntu/Components/ListItems/Empty.qml:413
312
313=== modified file 'po/fi.po'
314--- po/fi.po 2014-11-29 06:47:10 +0000
315+++ po/fi.po 2015-01-05 09:51:15 +0000
316@@ -14,8 +14,8 @@
317 "MIME-Version: 1.0\n"
318 "Content-Type: text/plain; charset=UTF-8\n"
319 "Content-Transfer-Encoding: 8bit\n"
320-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
321-"X-Generator: Launchpad (build 17267)\n"
322+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
323+"X-Generator: Launchpad (build 17286)\n"
324
325 #: Ubuntu/Components/ListItems/Empty.qml:413
326 msgid "Delete"
327
328=== modified file 'po/fr.po'
329--- po/fr.po 2014-11-29 06:47:10 +0000
330+++ po/fr.po 2015-01-05 09:51:15 +0000
331@@ -14,12 +14,12 @@
332 "MIME-Version: 1.0\n"
333 "Content-Type: text/plain; charset=UTF-8\n"
334 "Content-Transfer-Encoding: 8bit\n"
335-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
336-"X-Generator: Launchpad (build 17267)\n"
337+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
338+"X-Generator: Launchpad (build 17286)\n"
339
340 #: Ubuntu/Components/ListItems/Empty.qml:413
341 msgid "Delete"
342-msgstr ""
343+msgstr "Supprimer"
344
345 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
346 #, qt-format
347@@ -145,4 +145,4 @@
348
349 #: Ubuntu/Components/ToolbarItems.qml:142
350 msgid "Back"
351-msgstr ""
352+msgstr "Précédent"
353
354=== modified file 'po/fr_CA.po'
355--- po/fr_CA.po 2014-11-29 06:47:10 +0000
356+++ po/fr_CA.po 2015-01-05 09:51:15 +0000
357@@ -14,8 +14,8 @@
358 "MIME-Version: 1.0\n"
359 "Content-Type: text/plain; charset=UTF-8\n"
360 "Content-Transfer-Encoding: 8bit\n"
361-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
362-"X-Generator: Launchpad (build 17267)\n"
363+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
364+"X-Generator: Launchpad (build 17286)\n"
365
366 #: Ubuntu/Components/ListItems/Empty.qml:413
367 msgid "Delete"
368
369=== modified file 'po/ga.po'
370--- po/ga.po 2014-12-17 07:02:28 +0000
371+++ po/ga.po 2015-01-05 09:51:15 +0000
372@@ -14,7 +14,7 @@
373 "MIME-Version: 1.0\n"
374 "Content-Type: text/plain; charset=UTF-8\n"
375 "Content-Transfer-Encoding: 8bit\n"
376-"X-Launchpad-Export-Date: 2014-12-17 07:02+0000\n"
377+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
378 "X-Generator: Launchpad (build 17286)\n"
379
380 #: Ubuntu/Components/ListItems/Empty.qml:413
381@@ -27,11 +27,13 @@
382 "property \"%1\" of object %2 has type %3 and cannot be set to value \"%4\" "
383 "of type %5"
384 msgstr ""
385+"Tá cineál %3 ag aire \"%1\" de réad %2,agus ní féidir é a shocrú go luach "
386+"\"%4\"de chineál %5"
387
388 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:185
389 #, qt-format
390 msgid "property \"%1\" does not exist or is not writable for object %2"
391-msgstr ""
392+msgstr "Ní ann don luach \"%1\" nó níl sé inscríofa don réad %2"
393
394 #: Ubuntu/Components/plugin/ucalarm.cpp:42
395 #: Ubuntu/Components/plugin/ucalarm.cpp:136
396@@ -41,7 +43,7 @@
397 #: Ubuntu/Components/plugin/ucalarm.cpp:684
398 #: Ubuntu/Components/plugin/ucalarm.cpp:716
399 msgid "Alarm has a pending operation."
400-msgstr ""
401+msgstr "Tá gníomh ar feitheamh ag an aláram"
402
403 #: Ubuntu/Components/plugin/ucarguments.cpp:188
404 msgid "Usage: "
405@@ -69,16 +71,19 @@
406 #: Ubuntu/Components/plugin/ucmousefilters.cpp:1064
407 msgid "Ignoring AfterItem priority for InverseMouse filters."
408 msgstr ""
409+"Ag déanamh neamhaird ar phriaracht AfterItem do scagathóirí InverseMouse"
410
411 #: Ubuntu/Components/plugin/ucstatesaver.cpp:46
412 msgid "Warning: attachee must have an ID. State will not be saved."
413-msgstr ""
414+msgstr "Aire: Tá ID ag teastáil ón gceangalaí. Ní shábháilfear an staid."
415
416 #: Ubuntu/Components/plugin/ucstatesaver.cpp:56
417 #, qt-format
418 msgid ""
419 "Warning: attachee's UUID is already registered, state won't be saved: %1"
420 msgstr ""
421+"Aire: Tá UUID an cheangalaí cláraithe cheana féin. Ní shábháilfear an staid: "
422+"%1"
423
424 #: Ubuntu/Components/plugin/ucstatesaver.cpp:102
425 #, qt-format
426@@ -86,54 +91,56 @@
427 "All the parents must have an id.\n"
428 "State saving disabled for %1, class %2"
429 msgstr ""
430+"Tá id ag teastáil ó gach tuismitheoir.\n"
431+"Sábháil staid díchumasaithe do %1, aicme %2"
432
433 #: Ubuntu/Components/plugin/uctheme.cpp:233
434 msgid "Theme not found: "
435-msgstr ""
436+msgstr "Níor aimsíodh téama: "
437
438 #: Ubuntu/Components/Popups/ComposerSheet.qml:80
439 msgid "Cancel"
440-msgstr ""
441+msgstr "Cealaigh"
442
443 #: Ubuntu/Components/Popups/ComposerSheet.qml:90
444 msgid "Confirm"
445-msgstr ""
446+msgstr "Deimhnigh"
447
448 #: Ubuntu/Components/Popups/DefaultSheet.qml:89
449 msgid "Close"
450-msgstr ""
451+msgstr "Dún"
452
453 #: Ubuntu/Components/Popups/DefaultSheet.qml:99
454 msgid "Done"
455-msgstr ""
456+msgstr "Déanta"
457
458 #: Ubuntu/Components/TextInputPopover.qml:27
459 msgid "Select All"
460-msgstr ""
461+msgstr "Roghnaigh Uile"
462
463 #: Ubuntu/Components/TextInputPopover.qml:33
464 msgid "Cut"
465-msgstr ""
466+msgstr "Gearr"
467
468 #: Ubuntu/Components/TextInputPopover.qml:42
469 msgid "Copy"
470-msgstr ""
471+msgstr "Cóipeáil"
472
473 #: Ubuntu/Components/TextInputPopover.qml:49
474 msgid "Paste"
475-msgstr ""
476+msgstr "Greamaigh"
477
478 #: Ubuntu/Components/Themes/Ambiance/ProgressBarStyle.qml:57
479 msgid "In Progress"
480-msgstr ""
481+msgstr "Ar Bun"
482
483 #: Ubuntu/Components/Themes/Ambiance/PullToRefreshStyle.qml:28
484 msgid "Release to refresh..."
485-msgstr ""
486+msgstr "Scaoil le hathnuachan a dhéanamh…"
487
488 #: Ubuntu/Components/Themes/Ambiance/PullToRefreshStyle.qml:28
489 msgid "Pull to refresh..."
490-msgstr ""
491+msgstr "Tarraing le hathnuachan a dhéanamh…"
492
493 #: Ubuntu/Components/ToolbarItems.qml:142
494 msgid "Back"
495
496=== modified file 'po/gd.po'
497--- po/gd.po 2014-11-29 06:47:10 +0000
498+++ po/gd.po 2015-01-05 09:51:15 +0000
499@@ -14,8 +14,8 @@
500 "MIME-Version: 1.0\n"
501 "Content-Type: text/plain; charset=UTF-8\n"
502 "Content-Transfer-Encoding: 8bit\n"
503-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
504-"X-Generator: Launchpad (build 17267)\n"
505+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
506+"X-Generator: Launchpad (build 17286)\n"
507
508 #: Ubuntu/Components/ListItems/Empty.qml:413
509 msgid "Delete"
510
511=== modified file 'po/gl.po'
512--- po/gl.po 2014-11-29 06:47:10 +0000
513+++ po/gl.po 2015-01-05 09:51:15 +0000
514@@ -14,12 +14,12 @@
515 "MIME-Version: 1.0\n"
516 "Content-Type: text/plain; charset=UTF-8\n"
517 "Content-Transfer-Encoding: 8bit\n"
518-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
519-"X-Generator: Launchpad (build 17267)\n"
520+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
521+"X-Generator: Launchpad (build 17286)\n"
522
523 #: Ubuntu/Components/ListItems/Empty.qml:413
524 msgid "Delete"
525-msgstr ""
526+msgstr "Eliminar"
527
528 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
529 #, qt-format
530@@ -141,4 +141,4 @@
531
532 #: Ubuntu/Components/ToolbarItems.qml:142
533 msgid "Back"
534-msgstr ""
535+msgstr "Atrás"
536
537=== modified file 'po/he.po'
538--- po/he.po 2014-11-29 06:47:10 +0000
539+++ po/he.po 2015-01-05 09:51:15 +0000
540@@ -14,8 +14,8 @@
541 "MIME-Version: 1.0\n"
542 "Content-Type: text/plain; charset=UTF-8\n"
543 "Content-Transfer-Encoding: 8bit\n"
544-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
545-"X-Generator: Launchpad (build 17267)\n"
546+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
547+"X-Generator: Launchpad (build 17286)\n"
548
549 #: Ubuntu/Components/ListItems/Empty.qml:413
550 msgid "Delete"
551
552=== modified file 'po/hr.po'
553--- po/hr.po 2014-12-08 06:37:28 +0000
554+++ po/hr.po 2015-01-05 09:51:15 +0000
555@@ -14,8 +14,8 @@
556 "MIME-Version: 1.0\n"
557 "Content-Type: text/plain; charset=UTF-8\n"
558 "Content-Transfer-Encoding: 8bit\n"
559-"X-Launchpad-Export-Date: 2014-12-08 06:37+0000\n"
560-"X-Generator: Launchpad (build 17274)\n"
561+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
562+"X-Generator: Launchpad (build 17286)\n"
563
564 #: Ubuntu/Components/ListItems/Empty.qml:413
565 msgid "Delete"
566
567=== modified file 'po/hu.po'
568--- po/hu.po 2014-11-29 06:47:10 +0000
569+++ po/hu.po 2015-01-05 09:51:15 +0000
570@@ -14,8 +14,8 @@
571 "MIME-Version: 1.0\n"
572 "Content-Type: text/plain; charset=UTF-8\n"
573 "Content-Transfer-Encoding: 8bit\n"
574-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
575-"X-Generator: Launchpad (build 17267)\n"
576+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
577+"X-Generator: Launchpad (build 17286)\n"
578
579 #: Ubuntu/Components/ListItems/Empty.qml:413
580 msgid "Delete"
581
582=== modified file 'po/id.po'
583--- po/id.po 2014-11-29 06:47:10 +0000
584+++ po/id.po 2015-01-05 09:51:15 +0000
585@@ -14,8 +14,8 @@
586 "MIME-Version: 1.0\n"
587 "Content-Type: text/plain; charset=UTF-8\n"
588 "Content-Transfer-Encoding: 8bit\n"
589-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
590-"X-Generator: Launchpad (build 17267)\n"
591+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
592+"X-Generator: Launchpad (build 17286)\n"
593
594 #: Ubuntu/Components/ListItems/Empty.qml:413
595 msgid "Delete"
596
597=== modified file 'po/it.po'
598--- po/it.po 2014-11-29 06:47:10 +0000
599+++ po/it.po 2015-01-05 09:51:15 +0000
600@@ -14,8 +14,8 @@
601 "MIME-Version: 1.0\n"
602 "Content-Type: text/plain; charset=UTF-8\n"
603 "Content-Transfer-Encoding: 8bit\n"
604-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
605-"X-Generator: Launchpad (build 17267)\n"
606+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
607+"X-Generator: Launchpad (build 17286)\n"
608
609 #: Ubuntu/Components/ListItems/Empty.qml:413
610 msgid "Delete"
611
612=== modified file 'po/ja.po'
613--- po/ja.po 2014-11-29 06:47:10 +0000
614+++ po/ja.po 2015-01-05 09:51:15 +0000
615@@ -14,8 +14,8 @@
616 "MIME-Version: 1.0\n"
617 "Content-Type: text/plain; charset=UTF-8\n"
618 "Content-Transfer-Encoding: 8bit\n"
619-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
620-"X-Generator: Launchpad (build 17267)\n"
621+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
622+"X-Generator: Launchpad (build 17286)\n"
623
624 #: Ubuntu/Components/ListItems/Empty.qml:413
625 msgid "Delete"
626
627=== modified file 'po/km.po'
628--- po/km.po 2014-11-29 06:47:10 +0000
629+++ po/km.po 2015-01-05 09:51:15 +0000
630@@ -14,8 +14,8 @@
631 "MIME-Version: 1.0\n"
632 "Content-Type: text/plain; charset=UTF-8\n"
633 "Content-Transfer-Encoding: 8bit\n"
634-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
635-"X-Generator: Launchpad (build 17267)\n"
636+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
637+"X-Generator: Launchpad (build 17286)\n"
638
639 #: Ubuntu/Components/ListItems/Empty.qml:413
640 msgid "Delete"
641
642=== modified file 'po/kn.po'
643--- po/kn.po 2014-11-29 06:47:10 +0000
644+++ po/kn.po 2015-01-05 09:51:15 +0000
645@@ -14,8 +14,8 @@
646 "MIME-Version: 1.0\n"
647 "Content-Type: text/plain; charset=UTF-8\n"
648 "Content-Transfer-Encoding: 8bit\n"
649-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
650-"X-Generator: Launchpad (build 17267)\n"
651+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
652+"X-Generator: Launchpad (build 17286)\n"
653
654 #: Ubuntu/Components/ListItems/Empty.qml:413
655 msgid "Delete"
656
657=== modified file 'po/ko.po'
658--- po/ko.po 2014-11-29 06:47:10 +0000
659+++ po/ko.po 2015-01-05 09:51:15 +0000
660@@ -14,12 +14,12 @@
661 "MIME-Version: 1.0\n"
662 "Content-Type: text/plain; charset=UTF-8\n"
663 "Content-Transfer-Encoding: 8bit\n"
664-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
665-"X-Generator: Launchpad (build 17267)\n"
666+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
667+"X-Generator: Launchpad (build 17286)\n"
668
669 #: Ubuntu/Components/ListItems/Empty.qml:413
670 msgid "Delete"
671-msgstr ""
672+msgstr "삭제"
673
674 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
675 #, qt-format
676@@ -139,4 +139,4 @@
677
678 #: Ubuntu/Components/ToolbarItems.qml:142
679 msgid "Back"
680-msgstr ""
681+msgstr "뒤로"
682
683=== modified file 'po/lv.po'
684--- po/lv.po 2014-11-29 06:47:10 +0000
685+++ po/lv.po 2015-01-05 09:51:15 +0000
686@@ -14,8 +14,8 @@
687 "MIME-Version: 1.0\n"
688 "Content-Type: text/plain; charset=UTF-8\n"
689 "Content-Transfer-Encoding: 8bit\n"
690-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
691-"X-Generator: Launchpad (build 17267)\n"
692+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
693+"X-Generator: Launchpad (build 17286)\n"
694
695 #: Ubuntu/Components/ListItems/Empty.qml:413
696 msgid "Delete"
697
698=== modified file 'po/ms.po'
699--- po/ms.po 2014-11-29 06:47:10 +0000
700+++ po/ms.po 2015-01-05 09:51:15 +0000
701@@ -14,8 +14,8 @@
702 "MIME-Version: 1.0\n"
703 "Content-Type: text/plain; charset=UTF-8\n"
704 "Content-Transfer-Encoding: 8bit\n"
705-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
706-"X-Generator: Launchpad (build 17267)\n"
707+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
708+"X-Generator: Launchpad (build 17286)\n"
709
710 #: Ubuntu/Components/ListItems/Empty.qml:413
711 msgid "Delete"
712
713=== modified file 'po/my.po'
714--- po/my.po 2014-11-29 06:47:10 +0000
715+++ po/my.po 2015-01-05 09:51:15 +0000
716@@ -14,8 +14,8 @@
717 "MIME-Version: 1.0\n"
718 "Content-Type: text/plain; charset=UTF-8\n"
719 "Content-Transfer-Encoding: 8bit\n"
720-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
721-"X-Generator: Launchpad (build 17267)\n"
722+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
723+"X-Generator: Launchpad (build 17286)\n"
724
725 #: Ubuntu/Components/ListItems/Empty.qml:413
726 msgid "Delete"
727
728=== modified file 'po/nb.po'
729--- po/nb.po 2014-11-29 06:47:10 +0000
730+++ po/nb.po 2015-01-05 09:51:15 +0000
731@@ -14,12 +14,12 @@
732 "MIME-Version: 1.0\n"
733 "Content-Type: text/plain; charset=UTF-8\n"
734 "Content-Transfer-Encoding: 8bit\n"
735-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
736-"X-Generator: Launchpad (build 17267)\n"
737+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
738+"X-Generator: Launchpad (build 17286)\n"
739
740 #: Ubuntu/Components/ListItems/Empty.qml:413
741 msgid "Delete"
742-msgstr ""
743+msgstr "Slett"
744
745 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
746 #, qt-format
747@@ -143,4 +143,4 @@
748
749 #: Ubuntu/Components/ToolbarItems.qml:142
750 msgid "Back"
751-msgstr ""
752+msgstr "Tilbake"
753
754=== modified file 'po/nl.po'
755--- po/nl.po 2014-11-29 06:47:10 +0000
756+++ po/nl.po 2015-01-05 09:51:15 +0000
757@@ -14,8 +14,8 @@
758 "MIME-Version: 1.0\n"
759 "Content-Type: text/plain; charset=UTF-8\n"
760 "Content-Transfer-Encoding: 8bit\n"
761-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
762-"X-Generator: Launchpad (build 17267)\n"
763+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
764+"X-Generator: Launchpad (build 17286)\n"
765
766 #: Ubuntu/Components/ListItems/Empty.qml:413
767 msgid "Delete"
768
769=== modified file 'po/oc.po'
770--- po/oc.po 2014-11-29 06:47:10 +0000
771+++ po/oc.po 2015-01-05 09:51:15 +0000
772@@ -14,8 +14,8 @@
773 "MIME-Version: 1.0\n"
774 "Content-Type: text/plain; charset=UTF-8\n"
775 "Content-Transfer-Encoding: 8bit\n"
776-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
777-"X-Generator: Launchpad (build 17267)\n"
778+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
779+"X-Generator: Launchpad (build 17286)\n"
780
781 #: Ubuntu/Components/ListItems/Empty.qml:413
782 msgid "Delete"
783
784=== modified file 'po/pa.po'
785--- po/pa.po 2014-11-29 06:47:10 +0000
786+++ po/pa.po 2015-01-05 09:51:15 +0000
787@@ -14,8 +14,8 @@
788 "MIME-Version: 1.0\n"
789 "Content-Type: text/plain; charset=UTF-8\n"
790 "Content-Transfer-Encoding: 8bit\n"
791-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
792-"X-Generator: Launchpad (build 17267)\n"
793+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
794+"X-Generator: Launchpad (build 17286)\n"
795
796 #: Ubuntu/Components/ListItems/Empty.qml:413
797 msgid "Delete"
798
799=== modified file 'po/pl.po'
800--- po/pl.po 2014-11-29 06:47:10 +0000
801+++ po/pl.po 2015-01-05 09:51:15 +0000
802@@ -14,8 +14,8 @@
803 "MIME-Version: 1.0\n"
804 "Content-Type: text/plain; charset=UTF-8\n"
805 "Content-Transfer-Encoding: 8bit\n"
806-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
807-"X-Generator: Launchpad (build 17267)\n"
808+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
809+"X-Generator: Launchpad (build 17286)\n"
810
811 #: Ubuntu/Components/ListItems/Empty.qml:413
812 msgid "Delete"
813
814=== modified file 'po/pt.po'
815--- po/pt.po 2014-11-29 06:47:10 +0000
816+++ po/pt.po 2015-01-05 09:51:15 +0000
817@@ -14,12 +14,12 @@
818 "MIME-Version: 1.0\n"
819 "Content-Type: text/plain; charset=UTF-8\n"
820 "Content-Transfer-Encoding: 8bit\n"
821-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
822-"X-Generator: Launchpad (build 17267)\n"
823+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
824+"X-Generator: Launchpad (build 17286)\n"
825
826 #: Ubuntu/Components/ListItems/Empty.qml:413
827 msgid "Delete"
828-msgstr ""
829+msgstr "Eliminar"
830
831 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
832 #, qt-format
833@@ -141,4 +141,4 @@
834
835 #: Ubuntu/Components/ToolbarItems.qml:142
836 msgid "Back"
837-msgstr ""
838+msgstr "Anterior"
839
840=== modified file 'po/pt_BR.po'
841--- po/pt_BR.po 2014-11-29 06:47:10 +0000
842+++ po/pt_BR.po 2015-01-05 09:51:15 +0000
843@@ -14,8 +14,8 @@
844 "MIME-Version: 1.0\n"
845 "Content-Type: text/plain; charset=UTF-8\n"
846 "Content-Transfer-Encoding: 8bit\n"
847-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
848-"X-Generator: Launchpad (build 17267)\n"
849+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
850+"X-Generator: Launchpad (build 17286)\n"
851
852 #: Ubuntu/Components/ListItems/Empty.qml:413
853 msgid "Delete"
854
855=== modified file 'po/ro.po'
856--- po/ro.po 2014-11-29 06:47:10 +0000
857+++ po/ro.po 2015-01-05 09:51:15 +0000
858@@ -14,8 +14,8 @@
859 "MIME-Version: 1.0\n"
860 "Content-Type: text/plain; charset=UTF-8\n"
861 "Content-Transfer-Encoding: 8bit\n"
862-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
863-"X-Generator: Launchpad (build 17267)\n"
864+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
865+"X-Generator: Launchpad (build 17286)\n"
866
867 #: Ubuntu/Components/ListItems/Empty.qml:413
868 msgid "Delete"
869
870=== modified file 'po/ru.po'
871--- po/ru.po 2014-11-29 06:47:10 +0000
872+++ po/ru.po 2015-01-05 09:51:15 +0000
873@@ -14,8 +14,8 @@
874 "MIME-Version: 1.0\n"
875 "Content-Type: text/plain; charset=UTF-8\n"
876 "Content-Transfer-Encoding: 8bit\n"
877-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
878-"X-Generator: Launchpad (build 17267)\n"
879+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
880+"X-Generator: Launchpad (build 17286)\n"
881
882 #: Ubuntu/Components/ListItems/Empty.qml:413
883 msgid "Delete"
884
885=== modified file 'po/sq.po'
886--- po/sq.po 2014-11-29 06:47:10 +0000
887+++ po/sq.po 2015-01-05 09:51:15 +0000
888@@ -14,8 +14,8 @@
889 "MIME-Version: 1.0\n"
890 "Content-Type: text/plain; charset=UTF-8\n"
891 "Content-Transfer-Encoding: 8bit\n"
892-"X-Launchpad-Export-Date: 2014-11-29 06:46+0000\n"
893-"X-Generator: Launchpad (build 17267)\n"
894+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
895+"X-Generator: Launchpad (build 17286)\n"
896
897 #: Ubuntu/Components/ListItems/Empty.qml:413
898 msgid "Delete"
899
900=== modified file 'po/sr.po'
901--- po/sr.po 2014-11-29 06:47:10 +0000
902+++ po/sr.po 2015-01-05 09:51:15 +0000
903@@ -14,8 +14,8 @@
904 "MIME-Version: 1.0\n"
905 "Content-Type: text/plain; charset=UTF-8\n"
906 "Content-Transfer-Encoding: 8bit\n"
907-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
908-"X-Generator: Launchpad (build 17267)\n"
909+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
910+"X-Generator: Launchpad (build 17286)\n"
911
912 #: Ubuntu/Components/ListItems/Empty.qml:413
913 msgid "Delete"
914
915=== modified file 'po/sv.po'
916--- po/sv.po 2014-11-29 06:47:10 +0000
917+++ po/sv.po 2015-01-05 09:51:15 +0000
918@@ -14,8 +14,8 @@
919 "MIME-Version: 1.0\n"
920 "Content-Type: text/plain; charset=UTF-8\n"
921 "Content-Transfer-Encoding: 8bit\n"
922-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
923-"X-Generator: Launchpad (build 17267)\n"
924+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
925+"X-Generator: Launchpad (build 17286)\n"
926
927 #: Ubuntu/Components/ListItems/Empty.qml:413
928 msgid "Delete"
929
930=== modified file 'po/tr.po'
931--- po/tr.po 2014-11-29 06:47:10 +0000
932+++ po/tr.po 2015-01-05 09:51:15 +0000
933@@ -14,8 +14,8 @@
934 "MIME-Version: 1.0\n"
935 "Content-Type: text/plain; charset=UTF-8\n"
936 "Content-Transfer-Encoding: 8bit\n"
937-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
938-"X-Generator: Launchpad (build 17267)\n"
939+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
940+"X-Generator: Launchpad (build 17286)\n"
941
942 #: Ubuntu/Components/ListItems/Empty.qml:413
943 msgid "Delete"
944@@ -26,7 +26,8 @@
945 msgid ""
946 "property \"%1\" of object %2 has type %3 and cannot be set to value \"%4\" "
947 "of type %5"
948-msgstr "%2 nesnesinin %1 niteliği %3 tür, %4 veya %5 olarak ayarlanamaz."
949+msgstr ""
950+"%2 nesnesinin %1 niteliği %3 tipindedir, %4 veya %5 olarak ayarlanamaz."
951
952 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:185
953 #, qt-format
954@@ -89,23 +90,23 @@
955
956 #: Ubuntu/Components/plugin/uctheme.cpp:233
957 msgid "Theme not found: "
958-msgstr ""
959+msgstr "Tema bulunamadı: "
960
961 #: Ubuntu/Components/Popups/ComposerSheet.qml:80
962 msgid "Cancel"
963-msgstr ""
964+msgstr "İptal"
965
966 #: Ubuntu/Components/Popups/ComposerSheet.qml:90
967 msgid "Confirm"
968-msgstr ""
969+msgstr "Doğrula"
970
971 #: Ubuntu/Components/Popups/DefaultSheet.qml:89
972 msgid "Close"
973-msgstr ""
974+msgstr "Kapat"
975
976 #: Ubuntu/Components/Popups/DefaultSheet.qml:99
977 msgid "Done"
978-msgstr ""
979+msgstr "Bitti"
980
981 #: Ubuntu/Components/TextInputPopover.qml:27
982 msgid "Select All"
983@@ -125,15 +126,15 @@
984
985 #: Ubuntu/Components/Themes/Ambiance/ProgressBarStyle.qml:57
986 msgid "In Progress"
987-msgstr ""
988+msgstr "Devam Ediyor"
989
990 #: Ubuntu/Components/Themes/Ambiance/PullToRefreshStyle.qml:28
991 msgid "Release to refresh..."
992-msgstr ""
993+msgstr "Yenilemek için bırakın..."
994
995 #: Ubuntu/Components/Themes/Ambiance/PullToRefreshStyle.qml:28
996 msgid "Pull to refresh..."
997-msgstr ""
998+msgstr "Yenilemek için çekin..."
999
1000 #: Ubuntu/Components/ToolbarItems.qml:142
1001 msgid "Back"
1002
1003=== modified file 'po/ug.po'
1004--- po/ug.po 2014-11-29 06:47:10 +0000
1005+++ po/ug.po 2015-01-05 09:51:15 +0000
1006@@ -14,8 +14,8 @@
1007 "MIME-Version: 1.0\n"
1008 "Content-Type: text/plain; charset=UTF-8\n"
1009 "Content-Transfer-Encoding: 8bit\n"
1010-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
1011-"X-Generator: Launchpad (build 17267)\n"
1012+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
1013+"X-Generator: Launchpad (build 17286)\n"
1014
1015 #: Ubuntu/Components/ListItems/Empty.qml:413
1016 msgid "Delete"
1017@@ -43,7 +43,7 @@
1018 #: Ubuntu/Components/plugin/ucalarm.cpp:684
1019 #: Ubuntu/Components/plugin/ucalarm.cpp:716
1020 msgid "Alarm has a pending operation."
1021-msgstr ""
1022+msgstr "قوڭغۇراق توڭلىتىلغان ھالەتتە."
1023
1024 #: Ubuntu/Components/plugin/ucarguments.cpp:188
1025 msgid "Usage: "
1026
1027=== modified file 'po/uk.po'
1028--- po/uk.po 2014-11-29 06:47:10 +0000
1029+++ po/uk.po 2015-01-05 09:51:15 +0000
1030@@ -14,12 +14,12 @@
1031 "MIME-Version: 1.0\n"
1032 "Content-Type: text/plain; charset=UTF-8\n"
1033 "Content-Transfer-Encoding: 8bit\n"
1034-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
1035-"X-Generator: Launchpad (build 17267)\n"
1036+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
1037+"X-Generator: Launchpad (build 17286)\n"
1038
1039 #: Ubuntu/Components/ListItems/Empty.qml:413
1040 msgid "Delete"
1041-msgstr ""
1042+msgstr "Вилучити"
1043
1044 #: Ubuntu/Components/plugin/statesaverbackend_p.cpp:176
1045 #, qt-format
1046@@ -146,4 +146,4 @@
1047
1048 #: Ubuntu/Components/ToolbarItems.qml:142
1049 msgid "Back"
1050-msgstr ""
1051+msgstr "Назад"
1052
1053=== modified file 'po/zh_CN.po'
1054--- po/zh_CN.po 2014-11-29 06:47:10 +0000
1055+++ po/zh_CN.po 2015-01-05 09:51:15 +0000
1056@@ -14,8 +14,8 @@
1057 "MIME-Version: 1.0\n"
1058 "Content-Type: text/plain; charset=UTF-8\n"
1059 "Content-Transfer-Encoding: 8bit\n"
1060-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
1061-"X-Generator: Launchpad (build 17267)\n"
1062+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
1063+"X-Generator: Launchpad (build 17286)\n"
1064
1065 #: Ubuntu/Components/ListItems/Empty.qml:413
1066 msgid "Delete"
1067
1068=== modified file 'po/zh_TW.po'
1069--- po/zh_TW.po 2014-11-29 06:47:10 +0000
1070+++ po/zh_TW.po 2015-01-05 09:51:15 +0000
1071@@ -14,8 +14,8 @@
1072 "MIME-Version: 1.0\n"
1073 "Content-Type: text/plain; charset=UTF-8\n"
1074 "Content-Transfer-Encoding: 8bit\n"
1075-"X-Launchpad-Export-Date: 2014-11-29 06:47+0000\n"
1076-"X-Generator: Launchpad (build 17267)\n"
1077+"X-Launchpad-Export-Date: 2014-12-25 06:12+0000\n"
1078+"X-Generator: Launchpad (build 17286)\n"
1079
1080 #: Ubuntu/Components/ListItems/Empty.qml:413
1081 msgid "Delete"

Subscribers

People subscribed via source and target branches