Merge lp:~nataliabidart/magicicada-client/ubuntu-one-changed-magicicada into lp:magicicada-client

Proposed by Natalia Bidart
Status: Merged
Approved by: Natalia Bidart
Approved revision: 1425
Merged at revision: 1418
Proposed branch: lp:~nataliabidart/magicicada-client/ubuntu-one-changed-magicicada
Merge into: lp:magicicada-client
Diff against target: 2631 lines (+211/-1001)
109 files modified
HACKING (+9/-14)
LICENSE (+1/-1)
bin/ubuntuone-launch (+7/-7)
bin/ubuntuone-login (+3/-3)
bin/ubuntuone-proxy-tunnel (+1/-1)
bin/ubuntuone-syncdaemon (+1/-1)
data/syncdaemon.conf (+1/-1)
data/ubuntuone-launch.desktop.in (+2/-2)
po/ace.po (+1/-8)
po/af.po (+2/-11)
po/am.po (+1/-8)
po/an.po (+1/-8)
po/ar.po (+2/-11)
po/ast.po (+2/-11)
po/az.po (+1/-8)
po/be.po (+2/-12)
po/bg.po (+2/-11)
po/bn.po (+2/-11)
po/bo.po (+1/-8)
po/br.po (+1/-8)
po/bs.po (+2/-11)
po/ca.po (+2/-11)
po/ca@valencia.po (+2/-11)
po/ckb.po (+1/-8)
po/crh.po (+1/-8)
po/cs.po (+2/-11)
po/csb.po (+2/-11)
po/cv.po (+1/-8)
po/cy.po (+2/-11)
po/da.po (+2/-11)
po/de.po (+2/-12)
po/el.po (+2/-12)
po/en_AU.po (+2/-11)
po/en_CA.po (+2/-11)
po/en_GB.po (+2/-11)
po/eo.po (+2/-11)
po/es.po (+2/-11)
po/et.po (+2/-11)
po/eu.po (+2/-11)
po/fa.po (+1/-8)
po/fi.po (+2/-11)
po/fo.po (+2/-9)
po/fr.po (+2/-11)
po/fy.po (+2/-9)
po/gd.po (+2/-12)
po/gl.po (+2/-11)
po/gu.po (+2/-11)
po/he.po (+2/-11)
po/hi.po (+2/-12)
po/hr.po (+2/-11)
po/hu.po (+2/-12)
po/hy.po (+1/-8)
po/id.po (+2/-11)
po/is.po (+1/-8)
po/it.po (+2/-11)
po/ja.po (+2/-11)
po/jv.po (+1/-8)
po/kk.po (+2/-11)
po/km.po (+2/-12)
po/kn.po (+1/-8)
po/ko.po (+2/-11)
po/ku.po (+2/-11)
po/ky.po (+1/-8)
po/lt.po (+2/-11)
po/lv.po (+2/-11)
po/mi.po (+1/-8)
po/ml.po (+1/-8)
po/mr.po (+2/-11)
po/ms.po (+2/-11)
po/my.po (+2/-12)
po/nb.po (+2/-11)
po/nds.po (+1/-8)
po/nl.po (+2/-12)
po/nn.po (+2/-11)
po/oc.po (+2/-11)
po/pl.po (+2/-11)
po/pt.po (+2/-11)
po/pt_BR.po (+2/-11)
po/ro.po (+2/-11)
po/ru.po (+2/-11)
po/sd.po (+2/-9)
po/se.po (+2/-9)
po/shn.po (+1/-8)
po/si.po (+2/-9)
po/sk.po (+2/-11)
po/sl.po (+2/-11)
po/sq.po (+2/-11)
po/sr.po (+2/-11)
po/sv.po (+2/-11)
po/ta.po (+2/-9)
po/te.po (+2/-9)
po/th.po (+2/-11)
po/tr.po (+2/-11)
po/ug.po (+2/-12)
po/uk.po (+2/-12)
po/ur.po (+1/-8)
po/uz.po (+2/-11)
po/vi.po (+2/-12)
po/zh_CN.po (+2/-9)
po/zh_HK.po (+2/-9)
po/zh_TW.po (+2/-9)
tests/platform/test_credentials.py (+0/-3)
tests/syncdaemon/test_action_queue.py (+4/-0)
tests/syncdaemon/test_eq_inotify.py (+10/-3)
tests/syncdaemon/test_interaction_interfaces.py (+1/-0)
tests/syncdaemon/test_localrescan.py (+1/-0)
tests/syncdaemon/test_vm.py (+3/-0)
ubuntuone/clientdefs.py.in (+1/-5)
ubuntuone/platform/credentials/__init__.py (+0/-5)
To merge this branch: bzr merge lp:~nataliabidart/magicicada-client/ubuntu-one-changed-magicicada
Reviewer Review Type Date Requested Status
Facundo Batista Approve
Review via email: mp+272678@code.launchpad.net

Commit message

- Use ~/Magicicada as root folder.
- Fixed a syntax error and many missing inlineCallbacks.

To post a comment you must log in.
1425. By Natalia Bidart

Proper fix.

Revision history for this message
Facundo Batista (facundo) wrote :

Awesome! Thanks

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'HACKING'
--- HACKING 2011-07-21 15:24:02 +0000
+++ HACKING 2015-09-29 21:34:16 +0000
@@ -1,18 +1,11 @@
1Ubuntu One requires acceptance of the Canonical Contributor Agreement. You
2will need to follow the instructions at:
3
4http://www.canonical.com/contributors
5
6Once the agreement is accepted, you will be added to the Canonical Contributor
7Agreement team on Launchpad, so that your branches may be merged in upstream.
8
9
10In order to run tests in ubuntuone-client, you will need to have a built1In order to run tests in ubuntuone-client, you will need to have a built
11version of ubuntuone-storage-protocol in a tree, or installed. You can2version of ubuntuone-storage-protocol in a tree, or installed. You can
12specify the path to a built tree with the --with-protocol option to configure,3specify the path to a built tree with the --with-protocol option to configure,
13or autogen.sh (which calls configure after creating it).4or autogen.sh (which calls configure after creating it).
145
15$: ./configure --with-protocol=$HOME/source/ubuntuone-storage-protocol/trunk6Or you can simply bootstrap and everything will happen automagically:
7
8$: make boostrap
169
17After configuring, in order to run the tests, all you need to do is run10After configuring, in order to run the tests, all you need to do is run
18make check.11make check.
@@ -20,7 +13,7 @@
20$: make check13$: make check
2114
2215
23Ubuntu One uses branch based development on Launchpad, and bugs to track16Magicicada uses branch based development on Launchpad, and bugs to track
24features and issues. Make sure a bug is filed for the piece of code you wish17features and issues. Make sure a bug is filed for the piece of code you wish
25to work on. When committing your changes, be sure to specify the bug # it18to work on. When committing your changes, be sure to specify the bug # it
26fixes using the --fixes option in bzr.19fixes using the --fixes option in bzr.
@@ -34,6 +27,8 @@
3427
35After pushing your branch to Launchpad, you will need to propose it28After pushing your branch to Launchpad, you will need to propose it
36for merging into the parent branch. You can do this from the Launchpad web29for merging into the parent branch. You can do this from the Launchpad web
37page for your branch. In order for your branch to be accepted, you will have30page for your branch. In order for your branch to be accepted, it needs to
38to have accepted the Canonical Contributor Agreement as stated above, and31ensure all existing tests keep passing, and the code you are adding/modifying
39there will need to be at least two approvals from Ubuntu One developers.32has the proper addings/modifications in the tests/ folder.
33Your branch will also need at least one Magicicada developers (the
34chicharreros team) positive vote before landing.
4035
=== modified file 'LICENSE'
--- LICENSE 2013-02-13 20:57:13 +0000
+++ LICENSE 2015-09-29 21:34:16 +0000
@@ -1,4 +1,4 @@
1# This is the Ubuntu One client package.1# This is the Magicicada client package.
2# 2#
3# Copyright (C) 2009-2013 Canonical Ltd.3# Copyright (C) 2009-2013 Canonical Ltd.
4#4#
55
=== modified file 'bin/ubuntuone-launch'
--- bin/ubuntuone-launch 2012-10-15 20:12:29 +0000
+++ bin/ubuntuone-launch 2015-09-29 21:34:16 +0000
@@ -1,6 +1,6 @@
1#!/usr/bin/python1#!/usr/bin/python
22
3# ubuntuone-launch - Ubuntu One storage synchronization daemon startup helper3# Magicicada storage synchronization daemon startup helper
4#4#
5# Author: John Lenton <john.lenton@canonical.com>5# Author: John Lenton <john.lenton@canonical.com>
6#6#
@@ -31,12 +31,12 @@
31# version. If you delete this exception statement from all source31# version. If you delete this exception statement from all source
32# files in the program, then also delete it here.32# files in the program, then also delete it here.
33"""33"""
34Ubuntu One storage synchronization daemon (syncdaemon) startup helper.34Storage synchronization daemon (syncdaemon) startup helper.
3535
36This script decides whether to start and connect syncdaemon.36This script decides whether to start and connect syncdaemon.
3737
38 * If you've never used Ubuntu One file sync, or if you've disabled38 * If you've never used file sync, or if you've disabled
39 file sync via Ubuntu One control panel (or equivalently via setting39 file sync via the control panel (or equivalently via setting
40 files_sync_enabled to False in the syncdaemon configuration file),40 files_sync_enabled to False in the syncdaemon configuration file),
41 syncdaemon is not started, and nothing happens as a result of this41 syncdaemon is not started, and nothing happens as a result of this
42 script being run.42 script being run.
@@ -45,7 +45,7 @@
45 local rescan is allowed to finish.45 local rescan is allowed to finish.
4646
47 * if syncdaemon has never synced to the server, or if there are no47 * if syncdaemon has never synced to the server, or if there are no
48 credentials for Ubuntu One in the keyring, nothing further happens.48 credentials, nothing further happens.
4949
50 * otherwise, syncdaemon is asked to connect.50 * otherwise, syncdaemon is asked to connect.
5151
@@ -53,12 +53,12 @@
53import sys53import sys
54import os54import os
5555
56U1ROOT = os.path.expanduser('~/Ubuntu One/')56ROOT_FOLDER = os.path.expanduser('~/Magicicada/')
5757
58if __name__ == '__main__':58if __name__ == '__main__':
59 # this check is done early to speed up startup on people who are not59 # this check is done early to speed up startup on people who are not
60 # (yet) using the service (this way avoids all the imports).60 # (yet) using the service (this way avoids all the imports).
61 if not os.path.isdir(U1ROOT):61 if not os.path.isdir(ROOT_FOLDER):
62 # no directory, just quit62 # no directory, just quit
63 sys.exit(1)63 sys.exit(1)
6464
6565
=== modified file 'bin/ubuntuone-login'
--- bin/ubuntuone-login 2012-10-19 20:04:10 +0000
+++ bin/ubuntuone-login 2015-09-29 21:34:16 +0000
@@ -27,7 +27,7 @@
27# do not wish to do so, delete this exception statement from your27# do not wish to do so, delete this exception statement from your
28# version. If you delete this exception statement from all source28# version. If you delete this exception statement from all source
29# files in the program, then also delete it here.29# files in the program, then also delete it here.
30"""The script tu ron the Ubuntu One Login D-Bus service."""30"""The script tu run the Login D-Bus service."""
3131
32# Invalid name "ubuntuone-login"32# Invalid name "ubuntuone-login"
3333
@@ -56,7 +56,7 @@
56 name = bus.request_name(DBUS_BUS_NAME,56 name = bus.request_name(DBUS_BUS_NAME,
57 dbus.bus.NAME_FLAG_DO_NOT_QUEUE)57 dbus.bus.NAME_FLAG_DO_NOT_QUEUE)
58 if name == dbus.bus.REQUEST_NAME_REPLY_EXISTS:58 if name == dbus.bus.REQUEST_NAME_REPLY_EXISTS:
59 logger.error("Ubuntu One login manager already running, quitting.")59 logger.error(Login manager already running, quitting.")
60 sys.exit(0)60 sys.exit(0)
61 except dbus.DBusException:61 except dbus.DBusException:
62 pass62 pass
@@ -68,7 +68,7 @@
68 logger.setLevel(logging.DEBUG)68 logger.setLevel(logging.DEBUG)
69 logger.addHandler(debug_handler)69 logger.addHandler(debug_handler)
7070
71 logger.info("Starting Ubuntu One login manager for bus %r.",71 logger.info("Starting login manager for bus %r.",
72 DBUS_BUS_NAME)72 DBUS_BUS_NAME)
73 bus_name = dbus.service.BusName(DBUS_BUS_NAME, bus=bus)73 bus_name = dbus.service.BusName(DBUS_BUS_NAME, bus=bus)
74 mainloop = GLib.MainLoop()74 mainloop = GLib.MainLoop()
7575
=== modified file 'bin/ubuntuone-proxy-tunnel'
--- bin/ubuntuone-proxy-tunnel 2012-04-09 20:07:05 +0000
+++ bin/ubuntuone-proxy-tunnel 2015-09-29 21:34:16 +0000
@@ -26,7 +26,7 @@
26# do not wish to do so, delete this exception statement from your26# do not wish to do so, delete this exception statement from your
27# version. If you delete this exception statement from all source27# version. If you delete this exception statement from all source
28# files in the program, then also delete it here.28# files in the program, then also delete it here.
29"""Ubuntu One tunnel for proxy support."""29"""Tunnel for proxy support."""
3030
31import sys31import sys
3232
3333
=== modified file 'bin/ubuntuone-syncdaemon'
--- bin/ubuntuone-syncdaemon 2015-05-18 21:20:05 +0000
+++ bin/ubuntuone-syncdaemon 2015-09-29 21:34:16 +0000
@@ -26,7 +26,7 @@
26# do not wish to do so, delete this exception statement from your26# do not wish to do so, delete this exception statement from your
27# version. If you delete this exception statement from all source27# version. If you delete this exception statement from all source
28# files in the program, then also delete it here.28# files in the program, then also delete it here.
29"""Ubuntu One storage synchronization daemon."""29"""Storage synchronization daemon."""
3030
31import sys31import sys
3232
3333
=== modified file 'data/syncdaemon.conf'
--- data/syncdaemon.conf 2015-05-18 21:20:05 +0000
+++ data/syncdaemon.conf 2015-09-29 21:34:16 +0000
@@ -19,7 +19,7 @@
19files_sync_enabled.parser = bool19files_sync_enabled.parser = bool
20files_sync_enabled.help = Toggles synchronization of files (False disables syncdaemon entirely)20files_sync_enabled.help = Toggles synchronization of files (False disables syncdaemon entirely)
2121
22root_dir.default = ~/Ubuntu One22root_dir.default = ~/Magicicada
23root_dir.parser = home_dir23root_dir.parser = home_dir
24root_dir.help = Use the specified directory as the root24root_dir.help = Use the specified directory as the root
2525
2626
=== modified file 'data/ubuntuone-launch.desktop.in'
--- data/ubuntuone-launch.desktop.in 2011-07-01 12:06:13 +0000
+++ data/ubuntuone-launch.desktop.in 2015-09-29 21:34:16 +0000
@@ -1,6 +1,6 @@
1[Desktop Entry]1[Desktop Entry]
2Name=Ubuntu One2Name=Magicicada
3Exec=/bin/sh -c '[ -d "$HOME/Ubuntu One" ] && ubuntuone-launch'3Exec=/bin/sh -c '[ -d "$HOME/Magicicada" ] && ubuntuone-launch'
4Type=Application4Type=Application
5X-GNOME-Autostart-Delay=305X-GNOME-Autostart-Delay=30
6Icon=ubuntuone6Icon=ubuntuone
77
=== modified file 'po/ace.po'
--- po/ace.po 2012-09-17 19:03:52 +0000
+++ po/ace.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/af.po'
--- po/af.po 2012-09-17 19:03:52 +0000
+++ po/af.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One vereis 'n Ubuntu Single Sign On (SSO) rekening. Hierdie proses "
28"sal u toelaat om 'n nuwe rekening te skep, indien u nog nie een het nie."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/am.po'
--- po/am.po 2012-09-17 19:03:52 +0000
+++ po/am.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/an.po'
--- po/an.po 2012-09-17 19:03:52 +0000
+++ po/an.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/ar.po'
--- po/ar.po 2012-09-17 19:03:52 +0000
+++ po/ar.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"يتطلب أبونتو ون حساب أبونتو موّحد (SSO). إذا لم تكن تمتلك حسابا، ستتيح لك "
29"هذه العملية إنشاء واحد جديد."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "أبونتو ون"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/ast.po'
--- po/ast.po 2012-09-17 19:03:52 +0000
+++ po/ast.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One necesita una cuenta Ubuntu Single Sign On (SSO). Esti procesu "
28"permitiráte crear una cuenta nueva, si ye qu'entá nun tienes una."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/az.po'
--- po/az.po 2012-09-17 19:03:52 +0000
+++ po/az.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/be.po'
--- po/be.po 2012-09-17 19:03:52 +0000
+++ po/be.po 2015-09-29 21:34:16 +0000
@@ -19,19 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Каб карыстацца з сэрвісу Ubuntu One неабходны ўліковы запіс Ubuntu Single "
29"Sign On (SSO). Калі вы працягнеце, то будзе створаны новы ўліковы запіс "
30"(калі ў вас яго яшчэ няма)."
31
32#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
33msgid "Ubuntu One"23msgid "Magicicada"
34msgstr "Ubuntu One"24msgstr "Magicicada"
3525
36#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
37msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3828
=== modified file 'po/bg.po'
--- po/bg.po 2012-09-17 19:03:52 +0000
+++ po/bg.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One изисква Ubuntu Single Sign On (SSO) акаунт. Този процес ще ви "
28"позволи да си направите нов акаунт, ако все още нямате."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/bn.po'
--- po/bn.po 2012-09-17 19:03:52 +0000
+++ po/bn.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"উবুন্টু ওয়ানের জন্য উবুন্টু একক লগইন (SSO) একাউন্ট অত্যাবশ্যক। এই প্রক্রিয়া "
28"নতুন একাউন্ট তৈরি করতে অনুমোদন করে, যদি আপনার একটিও না থাকে।"
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "উবুন্টু ওয়ান"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/bo.po'
--- po/bo.po 2012-09-17 19:03:52 +0000
+++ po/bo.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/br.po'
--- po/br.po 2012-09-17 19:03:52 +0000
+++ po/br.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/bs.po'
--- po/bs.po 2012-09-17 19:03:52 +0000
+++ po/bs.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One zahtijeva Ubuntu Single Sign On (SSO) nalog.. Ovaj proces će vam "
29"omogućiti kreiranje novog naloga ako nemate vlastiti.."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/ca.po'
--- po/ca.po 2012-09-17 19:03:52 +0000
+++ po/ca.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"L'Ubuntu One requereix un compte a l'Ubuntu Single Sign On (SSO). Aquest "
28"procés us permetrà crear un compte nou, si encara no en teniu."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ca@valencia.po'
--- po/ca@valencia.po 2012-09-17 19:03:52 +0000
+++ po/ca@valencia.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"L'Ubuntu One requereix un compte a l'Ubuntu Single Sign On (SSO). Este "
28"procés vos permetrà crear un compte nou, si encara no en teniu."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ckb.po'
--- po/ckb.po 2012-09-17 19:03:52 +0000
+++ po/ckb.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/crh.po'
--- po/crh.po 2012-09-17 19:03:52 +0000
+++ po/crh.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/cs.po'
--- po/cs.po 2012-09-17 19:03:52 +0000
+++ po/cs.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One vyžaduje účet Ubuntu Single Sign On (SSO). Tento postup vám "
28"umožní vytvořit nový účet, pokud jej ještě nemáte."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/csb.po'
--- po/csb.po 2012-09-17 19:03:52 +0000
+++ po/csb.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One brëkùje kònta Single Sign On (SSO). Mòżesz gò terô ùsadzëc, żlë "
29"gò jesz ni môsz ."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/cv.po'
--- po/cv.po 2012-09-17 19:03:52 +0000
+++ po/cv.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/cy.po'
--- po/cy.po 2012-09-17 19:03:52 +0000
+++ po/cy.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Mae angen cyfri Ubuntu Single Sign On (SSO) ar Ubuntu One. Bydd y broses hon "
29"yn rhoi cyfle i ti greu cyfri newydd os nag oes un gen ti."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/da.po'
--- po/da.po 2012-09-17 19:03:52 +0000
+++ po/da.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
20"X-Poedit-Language: Danish\n"20"X-Poedit-Language: Danish\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One kræver en Ubuntu Single SIgn On-konto (SSO). Denne process vil "
29"hjælpe dig med at oprette en ny konto, hvis du endnu ikke har en."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/de.po'
--- po/de.po 2012-09-17 19:03:52 +0000
+++ po/de.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One erfordert ein »Ubuntu Single Sign On« (SSO)-Benutzerkonto. Wenn "
28"Sie noch keines haben, können Sie innerhalb dieses Dialogs solch ein "
29"Benutzerkonto anlegen."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/el.po'
--- po/el.po 2012-09-17 19:03:52 +0000
+++ po/el.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Το Ubuntu One απαιτεί ένα Ubuntu Single Sign On (SSO) λογαριασμό. Η "
28"διαδικασία αυτή θα σας επιτρέψει να δημιουργήσετε ένα νέο λογαριασμό, αν δεν "
29"έχετε έναν ακόμα."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/en_AU.po'
--- po/en_AU.po 2012-09-17 19:03:52 +0000
+++ po/en_AU.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
28"will allow you to create a new account, if you do not yet have one."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/en_CA.po'
--- po/en_CA.po 2012-09-17 19:03:52 +0000
+++ po/en_CA.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
28"will allow you to create a new account, if you do not yet have one."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/en_GB.po'
--- po/en_GB.po 2012-09-17 19:03:52 +0000
+++ po/en_GB.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
28"will allow you to create a new account, if you do not yet have one."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/eo.po'
--- po/eo.po 2012-09-17 19:03:52 +0000
+++ po/eo.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu Unu postulas konton de Ubuntu-SolaAliĝo. Ĉi tiu procezo permesos al "
28"vi krei novan konton, se vi ankoraŭ ne havas unu."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu Unu"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/es.po'
--- po/es.po 2012-09-17 19:03:52 +0000
+++ po/es.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One necesita una cuenta Ubuntu Single Sign On (SSO). Este proceso le "
28"permitirá crear una cuenta nueva, si aún no tiene una."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/et.po'
--- po/et.po 2012-09-17 19:03:52 +0000
+++ po/et.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One vajab 'Ubuntu Single Sign On' (SSO) kontot. See protsess "
28"võimaldab sul luua uue konto, kui sul veel ei ole."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/eu.po'
--- po/eu.po 2012-09-17 19:03:52 +0000
+++ po/eu.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One-k Ubuntu Signle Sign On (SSO) kontu bat behar du. Prozesu honek "
28"kontu hori sortzen lagunduko dizu jada bat ez baduzu."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/fa.po'
--- po/fa.po 2012-09-17 19:03:52 +0000
+++ po/fa.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/fi.po'
--- po/fi.po 2012-09-17 19:03:52 +0000
+++ po/fi.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One tarvitsee Ubuntu-kertakirjautumistunnuksen (SSO). Luo uusi "
28"tunnus, jos sinulla ei ole sellaista entuudestaan."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/fo.po'
--- po/fo.po 2012-09-17 19:03:52 +0000
+++ po/fo.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/fr.po'
--- po/fr.po 2012-09-17 19:03:52 +0000
+++ po/fr.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One requiert un compte Ubuntu. Ce processus vous permettra de créer "
28"un nouveau compte, si vous n'en possédez pas déjà un."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/fy.po'
--- po/fy.po 2012-09-17 19:03:52 +0000
+++ po/fy.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/gd.po'
--- po/gd.po 2012-09-17 19:03:52 +0000
+++ po/gd.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Tha Ubuntu One ag iarraidh cunntas Ubuntu Singilte Soidhnigeadh Air (SSO). "
28"Ceadaich am pròiseis seo dhut cruthachadh cunntas ùr, ma nach eil fear agad "
29"mar thràth."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/gl.po'
--- po/gl.po 2012-09-17 19:03:52 +0000
+++ po/gl.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One require unha conta de Ubuntu Single Sign On (SSO). Este proceso "
28"permitiralle crear unha nova conta, se aínda non ten ningunha."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/gu.po'
--- po/gu.po 2012-09-17 19:03:52 +0000
+++ po/gu.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One માટે એક Ubuntu Single Sign On (SSO) ખાતું જરૂરી છે. જો તમારી "
28"પાસે હજુ ખાતું ન હોય તો, આ પ્રક્રિયા તમને ખાતું બનાવવાની પરવાનગી આપે છે."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/he.po'
--- po/he.po 2012-09-17 19:03:52 +0000
+++ po/he.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One דורשת חשבון Ubuntu Single Sign On (SSO). תהליך זה יאפשר לך ליצור "
28"חשבון חדש, אם עדיין אין לך אחד כזה."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/hi.po'
--- po/hi.po 2012-09-17 19:03:52 +0000
+++ po/hi.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"उबुन्टू एकल के लिए उबुन्टू एकीकृत साइन ऑन (एसएसओ) खाता की आवश्यकता है. यदि "
28"आपके पास एक भी ऐसा खाता नहीं है तो यही प्रक्रिया नए खाता खोलने की इजाजत देता "
29"है."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "उबुन्टू एकल"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/hr.po'
--- po/hr.po 2012-09-17 19:03:52 +0000
+++ po/hr.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One zahtijeva Ubuntu Single Sign On (SSO) korisnički račun. Ako ga "
29"već nemate, sada ćete ga moći otvoriti."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/hu.po'
--- po/hu.po 2012-09-17 19:03:52 +0000
+++ po/hu.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Az Ubuntu One használatához Ubuntu Single Sign On (SSO) fiók szükséges. Ez a "
28"folyamat lehetővé teszi új fiók létrehozását, ha még nem rendelkezik "
29"ilyennel."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/hy.po'
--- po/hy.po 2012-09-17 19:03:52 +0000
+++ po/hy.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/id.po'
--- po/id.po 2012-09-17 19:03:52 +0000
+++ po/id.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One membutuhkan akun Ubuntu Single Sign On (SSO). Proses ini akan "
28"meminta Anda membuat akun baru, jika Anda belum memilikinya."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/is.po'
--- po/is.po 2012-09-17 19:03:52 +0000
+++ po/is.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/it.po'
--- po/it.po 2012-09-17 19:03:52 +0000
+++ po/it.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One richiede un account Ubuntu SSO (Single Sign On). Questo processo "
28"consentirà di creare un nuovo account, qualora non se ne possieda uno."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ja.po'
--- po/ja.po 2012-09-17 19:03:52 +0000
+++ po/ja.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu OneにはUbuntu Single Sign "
28"On(SSO)アカウントが必要です。アカウントをお持ちでない場合は、この処理でアカウントを作成できます。"
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/jv.po'
--- po/jv.po 2012-09-17 19:03:52 +0000
+++ po/jv.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/kk.po'
--- po/kk.po 2012-09-17 19:03:52 +0000
+++ po/kk.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One қызметін пайдалану үшін, Ubuntu Single Sign On (SSO) тіркемесі "
28"қажет. Тіркемеңіз жоқ болса, жаңа тіркеме құруыңызға тура келеді."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One қызметі"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/km.po'
--- po/km.po 2012-09-17 19:03:52 +0000
+++ po/km.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Generator: Launchpad (build 15966)\n"18"X-Generator: Launchpad (build 15966)\n"
19"X-Language: km-KH\n"19"X-Language: km-KH\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"អ៊ូប៊ុនទូ​វ៉ាន់​ទាមទារ​គណនី​ Ubuntu Single Sign On (SSO) ។ "
28"ដំណើរការ​នេះ​នឹង​អនុញ្ញាត​ឲ្យ​អ្នក​បង្កើត​គណនី​ថ្មី​ ប្រសិនបើ "
29"អ្នក​មិន​ទាន់​មាន​គណនី ។"
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "អ៊ូប៊ុនទូ​វ៉ាន់"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/kn.po'
--- po/kn.po 2012-09-17 19:03:52 +0000
+++ po/kn.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/ko.po'
--- po/ko.po 2012-09-17 19:03:52 +0000
+++ po/ko.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"우분투 원을 사용하시려면 우분투 통합 로그인(Single Sign On, SSO) 계정이 필요합니다. 다음 과정을 통해 새로운 계정을 "
28"만드실 수 있습니다."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "우분투 원"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ku.po'
--- po/ku.po 2012-09-17 19:03:52 +0000
+++ po/ku.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One,pêwîs tîyawî bi hesabekî Ubuntu Sing On (SS) heye. Eger hesab "
28"tune ev amur wê hesabêkî bi biafirîne"
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ky.po'
--- po/ky.po 2012-09-17 19:03:52 +0000
+++ po/ky.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/lt.po'
--- po/lt.po 2012-09-17 19:03:52 +0000
+++ po/lt.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One reikalauja Ubuntu Single Sign On (SSO) paskyros. Šis procesas "
29"Jums leis susikurti naują paskyrą, jei dar tokios neturite."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "„Ubuntu One“"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/lv.po'
--- po/lv.po 2012-09-17 19:03:52 +0000
+++ po/lv.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One ir nepieciešams Ubuntu Single Sign On (SSO) konts. Tas jums ļaus "
29"izveidot jaunu kontu, ja jums tā vēl nav."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/mi.po'
--- po/mi.po 2012-09-17 19:03:52 +0000
+++ po/mi.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu Tahi"23msgstr "Ubuntu Tahi"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/ml.po'
--- po/ml.po 2012-09-17 19:03:52 +0000
+++ po/ml.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/mr.po'
--- po/mr.po 2012-09-17 19:03:52 +0000
+++ po/mr.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"उबुंतू वन साठी तुम्हाला उबुंतू सिंगल सैइन ऑन अकौंट लागेल. जर तुमचा जवळ ते "
28"नसेल तर हि प्रक्रिया तुम्हाला ते अकौंट तयार करण्यास मदत करेल."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "उबुंतू वन"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ms.po'
--- po/ms.po 2012-09-17 19:03:52 +0000
+++ po/ms.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One memerlukan akaun Ubuntu Single Sign On (SSO). Proses ini akan "
28"membenarkan anda mencipta akaun baru, jika anda belum memilikinya."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/my.po'
--- po/my.po 2012-09-17 19:03:52 +0000
+++ po/my.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One ကို အသံုးပြုရန် SSO ဟုခေါ်သည့် Ubuntu Single Sign On "
28"အကောက်တစ်ခုရှိရန် လိုအပ်ပါသည်။ အကောက်မရှိသေးပါက အောက်တွင် ဖြည့်စွက်ပြီး "
29"အကောက်သစ်တစ်ခု ဖန်တီးနိုင်ပါသည်။"
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/nb.po'
--- po/nb.po 2012-09-17 19:03:52 +0000
+++ po/nb.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One krever en Ubuntu Single Sign On (SSO)-konto. Denne prosessen vil "
28"la deg å opprette en ny konto, hvis du ikke allerede har en."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/nds.po'
--- po/nds.po 2012-09-17 19:03:52 +0000
+++ po/nds.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/nl.po'
--- po/nl.po 2012-09-17 19:03:52 +0000
+++ po/nl.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One vereist een Ubuntu Single Sign On (SSO)-account. Dit proces geeft "
28"u de mogelijkheid om een nieuw account aan te maken indien u er nog geen "
29"heeft."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/nn.po'
--- po/nn.po 2012-09-17 19:03:52 +0000
+++ po/nn.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One krev ein Ubuntu Single Sign On (SSO)-konto. Denne prosessen vil "
29"la deg oppretta ein ny konto, viss du ikkje allereie har ein."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/oc.po'
--- po/oc.po 2012-09-17 19:03:52 +0000
+++ po/oc.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One requesís un compte Ubuntu. Aqueste processus vos permetrà de "
28"crear un compte novèl, se n'avètz pas encara un."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/pl.po'
--- po/pl.po 2012-09-17 19:03:52 +0000
+++ po/pl.po 2015-09-29 21:34:16 +0000
@@ -21,18 +21,9 @@
21"X-Poedit-Country: Poland\n"21"X-Poedit-Country: Poland\n"
22"X-Poedit-Language: Polish\n"22"X-Poedit-Language: Polish\n"
2323
24#: ../ubuntuone/clientdefs.py.in:52
25#: ../ubuntuone/platform/credentials/__init__.py:90
26msgid ""
27"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
28"will allow you to create a new account, if you do not yet have one."
29msgstr ""
30"Usługa Ubuntu One wymaga konta Ubuntu Single Sign On (SSO). Jeśli jeszcze go "
31"nie posiadasz, ten proces umożliwi jego założenie."
32
33#: ../ubuntuone/status/aggregator.py:5124#: ../ubuntuone/status/aggregator.py:51
34msgid "Ubuntu One"25msgid "Magicicada"
35msgstr "Ubuntu One"26msgstr "Magicicada"
3627
37#: ../ubuntuone/status/aggregator.py:5228#: ../ubuntuone/status/aggregator.py:52
38msgid "New cloud folder(s) available"29msgid "New cloud folder(s) available"
3930
=== modified file 'po/pt.po'
--- po/pt.po 2012-09-17 19:03:52 +0000
+++ po/pt.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"O Ubuntu One requer uma conta Ubuntu Single Sign On (SSO). este processo vai-"
28"lhe permitir criar uma conta, caso não possua uma."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/pt_BR.po'
--- po/pt_BR.po 2012-09-17 19:03:52 +0000
+++ po/pt_BR.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One necessita de uma conta Ubuntu Single Sign On (SSO). Este processo "
28"lhe permitirá criar uma nova conta, se você ainda não tiver."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ro.po'
--- po/ro.po 2012-09-17 19:03:52 +0000
+++ po/ro.po 2015-09-29 21:34:16 +0000
@@ -20,18 +20,9 @@
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
21"Language: ro\n"21"Language: ro\n"
2222
23#: ../ubuntuone/clientdefs.py.in:52
24#: ../ubuntuone/platform/credentials/__init__.py:90
25msgid ""
26"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
27"will allow you to create a new account, if you do not yet have one."
28msgstr ""
29"Ubuntu One necesită un cont Ubuntu Single Sign On (SSO). Acest proces vă "
30"permite crearea unui nou cont, dacă nu aveți deja unul."
31
32#: ../ubuntuone/status/aggregator.py:5123#: ../ubuntuone/status/aggregator.py:51
33msgid "Ubuntu One"24msgid "Magicicada"
34msgstr "Ubuntu One"25msgstr "Magicicada"
3526
36#: ../ubuntuone/status/aggregator.py:5227#: ../ubuntuone/status/aggregator.py:52
37msgid "New cloud folder(s) available"28msgid "New cloud folder(s) available"
3829
=== modified file 'po/ru.po'
--- po/ru.po 2012-09-17 19:03:52 +0000
+++ po/ru.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One использует Ubuntu Single Sign On (SSO). Здесь вы можете создать "
29"новую учетную запись SSO, если у вас её еще нет."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/sd.po'
--- po/sd.po 2012-09-17 19:03:52 +0000
+++ po/sd.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "اُبنٽو ون"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/se.po'
--- po/se.po 2012-09-17 19:03:52 +0000
+++ po/se.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/shn.po'
--- po/shn.po 2012-09-17 19:03:52 +0000
+++ po/shn.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/si.po'
--- po/si.po 2012-09-17 19:03:52 +0000
+++ po/si.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "උබුන්ටු වන්"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/sk.po'
--- po/sk.po 2012-09-17 19:03:52 +0000
+++ po/sk.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One vyžaduje účet Jednotné prihlásenie Ubuntu (SSO). Ak nemáte žiadny "
28"účet, tak vám ho tento proces umožní vytvoriť."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/sl.po'
--- po/sl.po 2012-09-17 19:03:52 +0000
+++ po/sl.po 2015-09-29 21:34:16 +0000
@@ -19,18 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Ubuntu One zahteva račun Ubuntu Single Sign On (SSO). To opravilo vam bo "
29"omogočilo ustvarjanje novega računa, če ga še nimate."
30
31#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"23msgid "Magicicada"
33msgstr "Ubuntu One"24msgstr "Magicicada"
3425
35#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3728
=== modified file 'po/sq.po'
--- po/sq.po 2012-09-17 19:03:52 +0000
+++ po/sq.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One ju kërkon një llogari Ubuntu regjistrim i Vetëm (SSO). Ky proçes "
28"do ju lejojë të krijoni një llogari të re, nëse nuk e keni një tashmë."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/sr.po'
--- po/sr.po 2012-09-17 19:03:52 +0000
+++ po/sr.po 2015-09-29 21:34:16 +0000
@@ -20,18 +20,9 @@
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
21"Language: sr\n"21"Language: sr\n"
2222
23#: ../ubuntuone/clientdefs.py.in:52
24#: ../ubuntuone/platform/credentials/__init__.py:90
25msgid ""
26"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
27"will allow you to create a new account, if you do not yet have one."
28msgstr ""
29"Убунту Један захтева један Убунту налог Јединственог пријављивања (SSO). "
30"Овај процес ће Вам омогућити да направите нови налог, ако већ немате један."
31
32#: ../ubuntuone/status/aggregator.py:5123#: ../ubuntuone/status/aggregator.py:51
33msgid "Ubuntu One"24msgid "Magicicada"
34msgstr "Убунту један"25msgstr "Magicicada"
3526
36#: ../ubuntuone/status/aggregator.py:5227#: ../ubuntuone/status/aggregator.py:52
37msgid "New cloud folder(s) available"28msgid "New cloud folder(s) available"
3829
=== modified file 'po/sv.po'
--- po/sv.po 2012-09-17 19:03:52 +0000
+++ po/sv.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One kräver ett Ubuntu Single Sign On-konto (SSO). Denna process låter "
28"dig skapa ett nytt konto, om du inte redan har ett."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ta.po'
--- po/ta.po 2012-09-17 19:03:52 +0000
+++ po/ta.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "உபுண்டு ஒன்று"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/te.po'
--- po/te.po 2012-09-17 19:03:52 +0000
+++ po/te.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "ఉబుంటు వన్"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/th.po'
--- po/th.po 2012-09-17 19:03:52 +0000
+++ po/th.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One ต้องการบัญชี Ubuntu Single Sign On (SSO) "
28"ขั้นตอนนี้จะอนุญาตให้คุณสร้างบัญชีใหม่ถ้าคุณยังไม่มี"
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/tr.po'
--- po/tr.po 2012-09-17 19:03:52 +0000
+++ po/tr.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One, bir Ubuntu Single Sign On (SSO) hesabına ihtiyaç duyuyor. Bu "
28"işlem, eğer yoksa yeni bir hesap oluşturmanızı sağlayacak."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/ug.po'
--- po/ug.po 2012-09-17 19:03:52 +0000
+++ po/ug.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"ئۇبۇنتۇ بىر(Ubuntu One) نى زىيارەت قىلىش ئۈچۈن Ubuntu Single Sign On(SSO) "
28"ھېساباتى تەلەپ قىلىنىدۇ. بۇ بۇ مەشغۇلات سىزنىڭ ھېساباتىڭىز بولمىسا يېڭىدىن "
29"بىرنى قۇرۇشىڭىزغا يول قويىدۇ."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "ئۇبۇنتۇ بىر(Ubuntu One)"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/uk.po'
--- po/uk.po 2012-09-17 19:03:52 +0000
+++ po/uk.po 2015-09-29 21:34:16 +0000
@@ -19,19 +19,9 @@
19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"19"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
20"X-Generator: Launchpad (build 15966)\n"20"X-Generator: Launchpad (build 15966)\n"
2121
22#: ../ubuntuone/clientdefs.py.in:52
23#: ../ubuntuone/platform/credentials/__init__.py:90
24msgid ""
25"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
26"will allow you to create a new account, if you do not yet have one."
27msgstr ""
28"Щоб користуватись Ubuntu One, треба мати обліковий запис Ubuntu Single Sign "
29"On (SSO). Зараз ви зможете створити цей обліковий запис, якщо ще не маєте "
30"його."
31
32#: ../ubuntuone/status/aggregator.py:5122#: ../ubuntuone/status/aggregator.py:51
33msgid "Ubuntu One"23msgid "Magicicada"
34msgstr "Ubuntu One"24msgstr "Magicicada"
3525
36#: ../ubuntuone/status/aggregator.py:5226#: ../ubuntuone/status/aggregator.py:52
37msgid "New cloud folder(s) available"27msgid "New cloud folder(s) available"
3828
=== modified file 'po/ur.po'
--- po/ur.po 2012-09-17 19:03:52 +0000
+++ po/ur.po 2015-09-29 21:34:16 +0000
@@ -18,15 +18,8 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr ""23msgstr ""
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
3326
=== modified file 'po/uz.po'
--- po/uz.po 2012-09-17 19:03:52 +0000
+++ po/uz.po 2015-09-29 21:34:16 +0000
@@ -18,18 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One Ubuntu Single Sign On (SSO) ҳисобини талаб қилади. Ушбу жараён "
28"агар сизнинг ҳисобингиз бўлмаса, янги яратишга рухсат беради."
29
30#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
31msgid "Ubuntu One"22msgid "Magicicada"
32msgstr "Ubuntu One"23msgstr "Magicicada"
3324
34#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
35msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3627
=== modified file 'po/vi.po'
--- po/vi.po 2012-09-17 19:03:52 +0000
+++ po/vi.po 2015-09-29 21:34:16 +0000
@@ -18,19 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr ""
27"Ubuntu One cần có một tài khoản Ubuntu Single Sign On (SSO - tài khoản "
28"Ubuntu Đăng nhập Một lần). Quá trình này sẽ cho phép bạn tạo một tài khoản "
29"mới, nếu bạn chưa có."
30
31#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
32msgid "Ubuntu One"22msgid "Magicicada"
33msgstr "Ubuntu One"23msgstr "Magicicada"
3424
35#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
36msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3727
=== modified file 'po/zh_CN.po'
--- po/zh_CN.po 2012-09-17 19:03:52 +0000
+++ po/zh_CN.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr "Ubuntu One 需要使用 Ubuntu Single Sign On (SSO) 账户。如果您还没有,这里可以让您创建一个新账户。"
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/zh_HK.po'
--- po/zh_HK.po 2012-09-17 19:03:52 +0000
+++ po/zh_HK.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr "Ubuntu One 需要有 Ubuntu Single Sign On (SSO) 帳號。如果您還沒有帳號,本程序會幫您建立新帳號。"
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'po/zh_TW.po'
--- po/zh_TW.po 2012-09-17 19:03:52 +0000
+++ po/zh_TW.po 2015-09-29 21:34:16 +0000
@@ -18,16 +18,9 @@
18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"18"X-Launchpad-Export-Date: 2012-09-17 18:32+0000\n"
19"X-Generator: Launchpad (build 15966)\n"19"X-Generator: Launchpad (build 15966)\n"
2020
21#: ../ubuntuone/clientdefs.py.in:52
22#: ../ubuntuone/platform/credentials/__init__.py:90
23msgid ""
24"Ubuntu One requires an Ubuntu Single Sign On (SSO) account. This process "
25"will allow you to create a new account, if you do not yet have one."
26msgstr "Ubuntu One 需要有 Ubuntu Single Sign On (SSO) 帳號。如果您還沒有帳號,本程序會幫您建立新帳號。"
27
28#: ../ubuntuone/status/aggregator.py:5121#: ../ubuntuone/status/aggregator.py:51
29msgid "Ubuntu One"22msgid "Magicicada"
30msgstr "Ubuntu One"23msgstr "Magicicada"
3124
32#: ../ubuntuone/status/aggregator.py:5225#: ../ubuntuone/status/aggregator.py:52
33msgid "New cloud folder(s) available"26msgid "New cloud folder(s) available"
3427
=== modified file 'tests/platform/test_credentials.py'
--- tests/platform/test_credentials.py 2015-09-17 02:20:40 +0000
+++ tests/platform/test_credentials.py 2015-09-29 21:34:16 +0000
@@ -47,8 +47,6 @@
47 BASE_PING_URL,47 BASE_PING_URL,
48 CredentialsError,48 CredentialsError,
49 CredentialsManagementTool,49 CredentialsManagementTool,
50 DESCRIPTION,
51 HELP_TEXT_KEY,
52 NO_OP,50 NO_OP,
53 PING_URL,51 PING_URL,
54 PING_URL_KEY,52 PING_URL_KEY,
@@ -253,7 +251,6 @@
253 def test_ui_params(self):251 def test_ui_params(self):
254 """The UI_PARAMS dict is correct."""252 """The UI_PARAMS dict is correct."""
255 expected = {253 expected = {
256 HELP_TEXT_KEY: DESCRIPTION,
257 PING_URL_KEY: PING_URL,254 PING_URL_KEY: PING_URL,
258 POLICY_URL_KEY: POLICY_URL,255 POLICY_URL_KEY: POLICY_URL,
259 TC_URL_KEY: TC_URL,256 TC_URL_KEY: TC_URL,
260257
=== modified file 'tests/syncdaemon/test_action_queue.py'
--- tests/syncdaemon/test_action_queue.py 2015-05-18 21:20:05 +0000
+++ tests/syncdaemon/test_action_queue.py 2015-09-29 21:34:16 +0000
@@ -5416,6 +5416,7 @@
5416 self.assertEqual(called, ['run', exc, 'run', 'finish'])5416 self.assertEqual(called, ['run', exc, 'run', 'finish'])
5417 self._check_finished_ok()5417 self._check_finished_ok()
54185418
5419 @defer.inlineCallbacks
5419 def test_retry_conditions_solved(self):5420 def test_retry_conditions_solved(self):
5420 """Retry the command because conditions solved later."""5421 """Retry the command because conditions solved later."""
5421 finished = defer.Deferred()5422 finished = defer.Deferred()
@@ -5671,6 +5672,7 @@
5671 intrdef.interrupt()5672 intrdef.interrupt()
5672 self.assertFalse(intrdef.interrupted)5673 self.assertFalse(intrdef.interrupted)
56735674
5675 @defer.inlineCallbacks
5674 def test_interrupt_except(self):5676 def test_interrupt_except(self):
5675 """Interrupt!"""5677 """Interrupt!"""
5676 intrdef = InterruptibleDeferred(defer.Deferred())5678 intrdef = InterruptibleDeferred(defer.Deferred())
@@ -5683,6 +5685,7 @@
5683 else:5685 else:
5684 self.fail("Test should have raised an exception")5686 self.fail("Test should have raised an exception")
56855687
5688 @defer.inlineCallbacks
5686 def test_interrupt_callback_original(self):5689 def test_interrupt_callback_original(self):
5687 """Interrupt silences further original callbacks."""5690 """Interrupt silences further original callbacks."""
5688 origdef = defer.Deferred()5691 origdef = defer.Deferred()
@@ -5699,6 +5702,7 @@
5699 # further callback to original deferred is harmless5702 # further callback to original deferred is harmless
5700 origdef.callback("foo")5703 origdef.callback("foo")
57015704
5705 @defer.inlineCallbacks
5702 def test_interrupt_errback_original(self):5706 def test_interrupt_errback_original(self):
5703 """Interrupt silences further original errbacks."""5707 """Interrupt silences further original errbacks."""
5704 origdef = defer.Deferred()5708 origdef = defer.Deferred()
57055709
=== modified file 'tests/syncdaemon/test_eq_inotify.py'
--- tests/syncdaemon/test_eq_inotify.py 2013-01-10 22:17:15 +0000
+++ tests/syncdaemon/test_eq_inotify.py 2015-09-29 21:34:16 +0000
@@ -78,6 +78,11 @@
78 (a, k))78 (a, k))
7979
8080
81class FakedVolume(object):
82
83 path = __file__
84
85
81class WatchTests(BaseEQTestCase):86class WatchTests(BaseEQTestCase):
82 """Test the EQ API to add and remove watchs."""87 """Test the EQ API to add and remove watchs."""
8388
@@ -98,11 +103,12 @@
98 self.assertEqual(called, [method_arg])103 self.assertEqual(called, [method_arg])
99 self.assertEqual(res, method_resp)104 self.assertEqual(res, method_resp)
100105
106 @defer.inlineCallbacks
101 def test_add_watches_to_udf_ancestors(self):107 def test_add_watches_to_udf_ancestors(self):
102 """Test that ancestors watches can be added."""108 """Test that ancestors watches can be added."""
103 called = []109 called = []
104 method_resp = True110 method_resp = True
105 method_arg = object()111 method_arg = FakedVolume()
106112
107 def add_watches_to_udf_ancestors(path):113 def add_watches_to_udf_ancestors(path):
108 """Fake it."""114 """Fake it."""
@@ -115,11 +121,12 @@
115 self.assertEqual(called, [method_arg])121 self.assertEqual(called, [method_arg])
116 self.assertEqual(res, method_resp)122 self.assertEqual(res, method_resp)
117123
124 @defer.inlineCallbacks
118 def test_add_watches_to_udf_ancestors_no_access(self):125 def test_add_watches_to_udf_ancestors_no_access(self):
119 """Test that ancestors watches are not added."""126 """Test that ancestors watches are not added."""
120 called = []127 called = []
121 method_resp = True128 method_resp = True
122 method_arg = object()129 method_arg = FakedVolume()
123130
124 def add_watches_to_udf_ancestors(path):131 def add_watches_to_udf_ancestors(path):
125 """Fake it."""132 """Fake it."""
@@ -127,7 +134,7 @@
127 return defer.succeed(method_resp)134 return defer.succeed(method_resp)
128135
129 self.patch(event_queue, 'access', lambda path: False)136 self.patch(event_queue, 'access', lambda path: False)
130 self.pathc(self.eq.monitor, 'add_watches_to_udf_ancestors',137 self.patch(self.eq.monitor, 'add_watches_to_udf_ancestors',
131 add_watches_to_udf_ancestors)138 add_watches_to_udf_ancestors)
132 added = yield self.eq.add_watches_to_udf_ancestors(method_arg)139 added = yield self.eq.add_watches_to_udf_ancestors(method_arg)
133 self.assertFalse(added, 'Watches should have not been added.')140 self.assertFalse(added, 'Watches should have not been added.')
134141
=== modified file 'tests/syncdaemon/test_interaction_interfaces.py'
--- tests/syncdaemon/test_interaction_interfaces.py 2015-09-20 15:18:41 +0000
+++ tests/syncdaemon/test_interaction_interfaces.py 2015-09-29 21:34:16 +0000
@@ -2166,6 +2166,7 @@
21662166
2167 self.assertEqual(self.called, ['MetaQueueChanged'])2167 self.assertEqual(self.called, ['MetaQueueChanged'])
21682168
2169 @defer.inlineCallbacks
2169 def test_handle_SYS_QUEUE_REMOVED_content_queue_changed_upload(self):2170 def test_handle_SYS_QUEUE_REMOVED_content_queue_changed_upload(self):
2170 """Test that handle_SYS_QUEUE_REMOVED also calls ContentQueueChanged."""2171 """Test that handle_SYS_QUEUE_REMOVED also calls ContentQueueChanged."""
2171 d = defer.Deferred()2172 d = defer.Deferred()
21722173
=== modified file 'tests/syncdaemon/test_localrescan.py'
--- tests/syncdaemon/test_localrescan.py 2012-09-07 20:53:24 +0000
+++ tests/syncdaemon/test_localrescan.py 2015-09-29 21:34:16 +0000
@@ -1775,6 +1775,7 @@
1775 self.assertFalse(path_exists(partial_path), partial_path)1775 self.assertFalse(path_exists(partial_path), partial_path)
1776 self.assertTrue(self.fsm.has_metadata(path=path))1776 self.assertTrue(self.fsm.has_metadata(path=path))
17771777
1778 @defer.inlineCallbacks
1778 def test_partial_for_dir_in_NONE(self):1779 def test_partial_for_dir_in_NONE(self):
1779 """Found a .partial of a directory whose MD said changed=NONE."""1780 """Found a .partial of a directory whose MD said changed=NONE."""
1780 # create the dir in metadata1781 # create the dir in metadata
17811782
=== modified file 'tests/syncdaemon/test_vm.py'
--- tests/syncdaemon/test_vm.py 2015-09-17 02:20:40 +0000
+++ tests/syncdaemon/test_vm.py 2015-09-29 21:34:16 +0000
@@ -2006,6 +2006,7 @@
2006 d.addCallback(check)2006 d.addCallback(check)
2007 return d2007 return d
20082008
2009 @defer.inlineCallbacks
2009 def test_create_udf_unicode(self):2010 def test_create_udf_unicode(self):
2010 """Test VolumeManager.create_udf.2011 """Test VolumeManager.create_udf.
20112012
@@ -2368,6 +2369,7 @@
2368 self.assertIn(share.volume_id, self.vm.shares)2369 self.assertIn(share.volume_id, self.vm.shares)
2369 self.assertIn(share_2.volume_id, self.vm.shares)2370 self.assertIn(share_2.volume_id, self.vm.shares)
23702371
2372 @defer.inlineCallbacks
2371 def test_handle_AQ_CREATE_UDF_OK(self):2373 def test_handle_AQ_CREATE_UDF_OK(self):
2372 """Test AQ_CREATE_UDF_OK. The UDF is always subscribed."""2374 """Test AQ_CREATE_UDF_OK. The UDF is always subscribed."""
2373 d = defer.Deferred()2375 d = defer.Deferred()
@@ -3819,6 +3821,7 @@
3819 vol_id = yield d3821 vol_id = yield d
3820 self.assertEquals(vol_id, share.volume_id)3822 self.assertEquals(vol_id, share.volume_id)
38213823
3824 @defer.inlineCallbacks
3822 def test_handle_SV_VOLUME_NEW_GENERATION_share_eq(self):3825 def test_handle_SV_VOLUME_NEW_GENERATION_share_eq(self):
3823 """Test handle_SV_VOLUME_NEW_GENERATION for a share."""3826 """Test handle_SV_VOLUME_NEW_GENERATION for a share."""
3824 share = self._create_share(subscribed=True)3827 share = self._create_share(subscribed=True)
38253828
=== modified file 'ubuntuone/clientdefs.py.in'
--- ubuntuone/clientdefs.py.in 2013-06-07 15:22:31 +0000
+++ ubuntuone/clientdefs.py.in 2015-09-29 21:34:16 +0000
@@ -28,11 +28,7 @@
28# do not wish to do so, delete this exception statement from your28# do not wish to do so, delete this exception statement from your
29# version. If you delete this exception statement from all source29# version. If you delete this exception statement from all source
30# files in the program, then also delete it here.30# files in the program, then also delete it here.
31"""Ubuntu One client definitions.31"""Configure-time definitions for the client."""
32
33This is a package containing configure-time definitions for the Ubuntu One
34client.
35"""
3632
37import gettext33import gettext
3834
3935
=== modified file 'ubuntuone/platform/credentials/__init__.py'
--- ubuntuone/platform/credentials/__init__.py 2015-09-19 23:15:50 +0000
+++ ubuntuone/platform/credentials/__init__.py 2015-09-29 21:34:16 +0000
@@ -42,7 +42,6 @@
4242
43from ubuntu_sso import UI_EXECUTABLE_QT43from ubuntu_sso import UI_EXECUTABLE_QT
44from ubuntu_sso.credentials import (44from ubuntu_sso.credentials import (
45 HELP_TEXT_KEY,
46 PING_URL_KEY,45 PING_URL_KEY,
47 POLICY_URL_KEY,46 POLICY_URL_KEY,
48 UI_EXECUTABLE_KEY,47 UI_EXECUTABLE_KEY,
@@ -88,11 +87,7 @@
88 u"https://one.ubuntu.com/oauth/sso-finished-so-get-tokens/{email}"87 u"https://one.ubuntu.com/oauth/sso-finished-so-get-tokens/{email}"
89# the result of platform_data is given by urlencode, encoded with ascii88# the result of platform_data is given by urlencode, encoded with ascii
90PING_URL = BASE_PING_URL + u"?" + platform_data().decode('ascii')89PING_URL = BASE_PING_URL + u"?" + platform_data().decode('ascii')
91DESCRIPTION = Q_('Magicicada requires an Ubuntu Single Sign On (SSO) account. '
92 'This process will allow you to create a new account, '
93 'if you do not yet have one.')
94UI_PARAMS = {90UI_PARAMS = {
95 HELP_TEXT_KEY: DESCRIPTION,
96 PING_URL_KEY: PING_URL,91 PING_URL_KEY: PING_URL,
97 POLICY_URL_KEY: POLICY_URL,92 POLICY_URL_KEY: POLICY_URL,
98 TC_URL_KEY: TC_URL,93 TC_URL_KEY: TC_URL,

Subscribers

People subscribed via source and target branches

to all changes: