Merge lp:~therve/landscape-client/i18n-settings into lp:~landscape/landscape-client/trunk

Proposed by Thomas Herve
Status: Merged
Approved by: Alberto Donato
Approved revision: 548
Merged at revision: 543
Proposed branch: lp:~therve/landscape-client/i18n-settings
Merge into: lp:~landscape/landscape-client/trunk
Diff against target: 580 lines (+295/-39)
12 files modified
applications/landscape-client-settings.desktop.in (+3/-3)
debian/rules (+0/-1)
landscape/ui/controller/app.py (+7/-5)
landscape/ui/controller/configuration.py (+12/-9)
landscape/ui/view/configuration.py (+24/-6)
po/POTFILES.in (+6/-0)
po/fr.po (+116/-8)
po/landscape-client.pot (+116/-1)
polkit-1/com.canonical.LandscapeClientSettings.policy.in (+2/-2)
scripts/landscape-client-settings-ui (+4/-0)
setup.cfg (+5/-0)
setup.py (+0/-4)
To merge this branch: bzr merge lp:~therve/landscape-client/i18n-settings
Reviewer Review Type Date Requested Status
Alberto Donato (community) Approve
Mike Milner (community) Approve
Review via email: mp+99030@code.launchpad.net

Description of the change

This adds i18n to the settings UI itself, including policy file, glade file, and desktop file. Most of the infrastructure being in place it was easier than the previous ones.

To post a comment you must log in.
Revision history for this message
Mike Milner (milner) wrote :

Looks good! Can't make sense of your Parisian French though :) +1

review: Approve
Revision history for this message
Alberto Donato (ack) wrote :

Looks good! +1

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== renamed file 'applications/landscape-client-settings.desktop' => 'applications/landscape-client-settings.desktop.in'
2--- applications/landscape-client-settings.desktop 2012-03-09 14:49:04 +0000
3+++ applications/landscape-client-settings.desktop.in 2012-03-23 14:26:24 +0000
4@@ -1,6 +1,6 @@
5 [Desktop Entry]
6-Name=Management Service
7-Comment=Management Service Preferences
8+_Name=Management Service
9+_Comment=Management Service Preferences
10 Exec=landscape-client-ui-install
11 Icon=preferences-management-service
12 Terminal=False
13@@ -13,5 +13,5 @@
14 X-GNOME-Bugzilla-Component=sample
15 X-GNOME-Bugzilla-Version=1.0.0
16 X-GNOME-Settings-Panel=sample
17-X-Ubuntu-Gettext-Domain=gnome-control-center-2.0
18 X-GNOME-Keywords=device;system;information;memory;processor;version;default;application;fallback;preferred;
19+X-Ubuntu-Gettext-Domain=landscape-client
20
21=== modified file 'debian/rules'
22--- debian/rules 2012-03-22 09:35:43 +0000
23+++ debian/rules 2012-03-23 14:26:24 +0000
24@@ -35,7 +35,6 @@
25 dh_testdir
26 sed -i -e "s/^DEBIAN_REVISION = \"\"/DEBIAN_REVISION = \"-$(revision)\"/g" landscape/__init__.py
27 python setup.py build
28- python setup.py build_i18n
29 make -C apt-update
30 touch build-stamp
31
32
33=== modified file 'landscape/ui/controller/app.py'
34--- landscape/ui/controller/app.py 2012-03-14 12:05:30 +0000
35+++ landscape/ui/controller/app.py 2012-03-23 14:26:24 +0000
36@@ -1,5 +1,7 @@
37 import sys
38
39+from gettext import gettext as _
40+
41 from gi.repository import Gio, Gtk, Notify
42
43 from landscape.ui.model.configuration.proxy import ConfigurationProxy
44@@ -42,18 +44,18 @@
45
46 def on_succeed(self, action=None):
47 if action:
48- message = "%s was successful." % action
49+ message = action
50 else:
51- message = "Success"
52+ message = _("Success.")
53 notification = Notify.Notification.new(NOTIFY_ID, message,
54 "dialog-information")
55 notification.show()
56
57 def on_fail(self, action=None):
58 if action:
59- message = "%s failed." % action
60+ message = action
61 else:
62- message = "Failure."
63+ message = _("Failure.")
64 notification = Notify.Notification.new(NOTIFY_ID, message,
65 "dialog-information")
66 notification.show()
67@@ -85,5 +87,5 @@
68 controller.exit(asynchronous=asynchronous)
69 self.settings_dialog.destroy()
70 else:
71- self.on_fail(action="Authentication")
72+ self.on_fail(action=_("Authentication failed"))
73 sys.stderr.write("Authentication failed.\n")
74
75=== modified file 'landscape/ui/controller/configuration.py'
76--- landscape/ui/controller/configuration.py 2012-03-14 13:48:18 +0000
77+++ landscape/ui/controller/configuration.py 2012-03-23 14:26:24 +0000
78@@ -1,5 +1,8 @@
79+import logging
80+
81+from gettext import gettext as _
82+
83 from landscape.ui.constants import NOT_MANAGED, CANONICAL_MANAGED
84-import logging
85
86 from landscape.ui.model.registration.proxy import RegistrationProxy
87 from landscape.ui.model.configuration.state import StateError
88@@ -62,7 +65,7 @@
89 "changes to revert.")
90
91 def persist(self, on_notify, on_error, on_succeed, on_fail):
92- "Persist settings via the configuration object."
93+ """Persist settings via the configuration object."""
94 try:
95 self._configuration.persist()
96 except StateError:
97@@ -81,10 +84,10 @@
98 """
99
100 def registration_fail_wrapper():
101- fail_method(action="Registering client")
102+ fail_method(action=_("Registering client failed"))
103
104 def registration_succeed_wrapper():
105- succeed_method(action="Registering client")
106+ succeed_method(action=_("Registering client was successful"))
107
108 registration = RegistrationProxy(
109 on_register_notify=notify_method,
110@@ -92,10 +95,10 @@
111 on_register_succeed=registration_succeed_wrapper,
112 on_register_fail=registration_fail_wrapper)
113 if self._configuration.management_type == CANONICAL_MANAGED:
114- notify_method("Attempting to register at %s" %
115+ notify_method(_("Attempting to register at %s") %
116 self._configuration.hosted_landscape_host)
117 else:
118- notify_method("Attempting to register at %s" %
119+ notify_method(_("Attempting to register at %s") %
120 self._configuration.local_landscape_host)
121 registration.register(self._configuration.get_config_filename())
122 registration.exit()
123@@ -106,14 +109,14 @@
124 """
125
126 def disabling_fail_wrapper():
127- fail_method(action="Disabling client")
128+ fail_method(action=_("Disabling client failed"))
129
130 def disabling_succeed_wrapper():
131- succeed_method(action="Disabling client")
132+ succeed_method(action=_("Disabling client was successful"))
133
134 registration = RegistrationProxy(
135 on_disable_succeed=disabling_succeed_wrapper,
136 on_disable_fail=disabling_fail_wrapper)
137- notify_method("Attempting to disable landscape client.")
138+ notify_method(_("Attempting to disable landscape client."))
139 registration.disable()
140 registration.exit()
141
142=== modified file 'landscape/ui/view/configuration.py'
143--- landscape/ui/view/configuration.py 2012-03-16 14:57:32 +0000
144+++ landscape/ui/view/configuration.py 2012-03-23 14:26:24 +0000
145@@ -1,5 +1,7 @@
146 import os
147
148+from gettext import gettext as _
149+
150 from gi.repository import GObject, Gtk
151
152 from landscape.ui.constants import (
153@@ -14,15 +16,10 @@
154 """
155
156 GLADE_FILE = "landscape-client-settings.glade"
157- NO_SERVICE_TEXT = "None"
158- HOSTED_SERVICE_TEXT = "Landscape - hosted by Canonical"
159- LOCAL_SERVICE_TEXT = "Landscape - dedicated server"
160- REGISTER_BUTTON_TEXT = "Register"
161- DISABLE_BUTTON_TEXT = "Disable"
162
163 def __init__(self, controller):
164 super(ClientSettingsDialog, self).__init__(
165- title="Management Service",
166+ title=_("Management Service"),
167 flags=Gtk.DialogFlags.MODAL)
168 self.set_default_icon_name("preferences-management-service")
169 self.set_resizable(False)
170@@ -33,6 +30,26 @@
171 # One extra revert to reset after loading data
172 self.controller.revert()
173
174+ @property
175+ def NO_SERVICE_TEXT(self):
176+ return _("None")
177+
178+ @property
179+ def HOSTED_SERVICE_TEXT(self):
180+ return _("Landscape - hosted by Canonical")
181+
182+ @property
183+ def LOCAL_SERVICE_TEXT(self):
184+ return _("Landscape - dedicated server")
185+
186+ @property
187+ def REGISTER_BUTTON_TEXT(self):
188+ return _("Register")
189+
190+ @property
191+ def DISABLE_BUTTON_TEXT(self):
192+ return _("Disable")
193+
194 def _set_use_type_combobox_from_controller(self):
195 """
196 Load the persisted L{management_type} from the controller and set the
197@@ -150,6 +167,7 @@
198
199 def setup_ui(self):
200 self._builder = Gtk.Builder()
201+ self._builder.set_translation_domain("landscape-client")
202 self._builder.add_from_file(
203 os.path.join(
204 os.path.dirname(__file__), "ui", self.GLADE_FILE))
205
206=== modified file 'po/POTFILES.in'
207--- po/POTFILES.in 2012-03-22 09:11:31 +0000
208+++ po/POTFILES.in 2012-03-23 14:26:24 +0000
209@@ -1,2 +1,8 @@
210 [encoding: UTF-8]
211+landscape/ui/controller/app.py
212+landscape/ui/controller/configuration.py
213+landscape/ui/view/configuration.py
214+landscape/ui/view/ui/landscape-client-settings.glade
215+applications/landscape-client-settings.desktop.in
216+polkit-1/com.canonical.LandscapeClientSettings.policy.in
217 scripts/landscape-client-ui-install
218
219=== modified file 'po/fr.po'
220--- po/fr.po 2012-03-22 15:11:27 +0000
221+++ po/fr.po 2012-03-23 14:26:24 +0000
222@@ -8,8 +8,8 @@
223 msgstr ""
224 "Project-Id-Version: PACKAGE VERSION\n"
225 "Report-Msgid-Bugs-To: \n"
226-"POT-Creation-Date: 2012-03-22 10:33+0100\n"
227-"PO-Revision-Date: 2012-03-22 15:32+0100\n"
228+"POT-Creation-Date: 2012-03-23 11:12+0100\n"
229+"PO-Revision-Date: 2012-03-23 11:25+0100\n"
230 "Last-Translator: Thomas Hervé <thomas.herve@canonical.com>\n"
231 "Language-Team: français <>\n"
232 "Language: \n"
233@@ -18,27 +18,135 @@
234 "Content-Transfer-Encoding: 8bit\n"
235 "Plural-Forms: nplurals=2; plural=(n!=1);\n"
236
237-#: ../scripts/landscape-client-ui-install:49
238+#: ../landscape/ui/controller/app.py:49
239+msgid "Success."
240+msgstr "Réussi."
241+
242+#: ../landscape/ui/controller/app.py:58
243+msgid "Failure."
244+msgstr "Echoué."
245+
246+#: ../landscape/ui/controller/app.py:90
247+msgid "Authentication failed"
248+msgstr "L'authentification a échoué"
249+
250+#: ../landscape/ui/controller/configuration.py:87
251+msgid "Registering client failed"
252+msgstr "L'enregistrement du client a échoué"
253+
254+#: ../landscape/ui/controller/configuration.py:90
255+msgid "Registering client was successful"
256+msgstr "L'enregistrement du client a réussi"
257+
258+#: ../landscape/ui/controller/configuration.py:98
259+#: ../landscape/ui/controller/configuration.py:101
260+#, python-format
261+msgid "Attempting to register at %s"
262+msgstr "Tentative d'enregistrement sur %s"
263+
264+#: ../landscape/ui/controller/configuration.py:112
265+msgid "Disabling client failed"
266+msgstr "Le client n'a pas pu être désactivé"
267+
268+#: ../landscape/ui/controller/configuration.py:115
269+msgid "Disabling client was successful"
270+msgstr "Le client a été désactivé avec succès"
271+
272+#: ../landscape/ui/controller/configuration.py:120
273+msgid "Attempting to disable landscape client."
274+msgstr "Tentative de désactivation du client Landscape."
275+
276+#: ../landscape/ui/view/configuration.py:19
277+msgid "None"
278+msgstr "Aucun"
279+
280+#: ../landscape/ui/view/configuration.py:20
281+msgid "Landscape - hosted by Canonical"
282+msgstr "Landscape - hébergé par Canonical"
283+
284+#: ../landscape/ui/view/configuration.py:21
285+msgid "Landscape - dedicated server"
286+msgstr "Landscape - serveur dédié"
287+
288+#: ../landscape/ui/view/configuration.py:22
289+msgid "Register"
290+msgstr "S'enregistrer"
291+
292+#: ../landscape/ui/view/configuration.py:23
293+msgid "Disable"
294+msgstr "Désactiver"
295+
296+#: ../landscape/ui/view/configuration.py:27
297+#: ../applications/landscape-client-settings.desktop.in.h:1
298+msgid "Management Service"
299+msgstr "Service de gestion"
300+
301+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:1
302+msgid "Account name:"
303+msgstr "Nom du compte:"
304+
305+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:2
306+msgid "Don't have an account?"
307+msgstr "Vous n'avez pas de compte?"
308+
309+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:3
310+#: ../scripts/landscape-client-ui-install:52
311 msgid "Find out more..."
312 msgstr "En apprendre plus..."
313
314-#: ../scripts/landscape-client-ui-install:52
315+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:4
316+msgid "If you click \"Disable\" the Landscape client on this machine will be disabled. You can reenable it later by revisiting this dialog."
317+msgstr "Si vous cliquez sur \"Désactiver\" le client Landscape sera désactivé sur cette machine. Vous pouvez le réactiver plus tard en rouvrant cette fenêtre de dialogue."
318+
319+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:5
320+msgid "Landscape is a remote administration service from Canonical. If you allow it, a Landcape server can monitor this computer's performance and send administration commands."
321+msgstr "Landscape est un service de gestion à distance de Canonical. Si vous l'autorisez, un serveur Landscape peut surveiller les performance de cette machine et envoyer des commandes administratives."
322+
323+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:6
324+msgid "Landscape server hostname:"
325+msgstr "Nom d'hôte du serveur Landscape:"
326+
327+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:7
328+msgid "Management service:"
329+msgstr "Service de gestion:"
330+
331+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:8
332+msgid "Password:"
333+msgstr "Mot de passe:"
334+
335+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:9
336+msgid "Sign up..."
337+msgstr "S'inscrire..."
338+
339+#: ../applications/landscape-client-settings.desktop.in.h:2
340+msgid "Management Service Preferences"
341+msgstr "Préférences du service de gestion"
342+
343+#: ../polkit-1/com.canonical.LandscapeClientSettings.policy.in.h:1
344+msgid "Allow the user to read and write Landscape Client settings."
345+msgstr "Autorise l'utilisateur à lire et écrire la configuration du client Landscape."
346+
347+#: ../polkit-1/com.canonical.LandscapeClientSettings.policy.in.h:2
348+msgid "System policy prevents you from reading and writing Landscape Client Settings."
349+msgstr "Politique système vous empêchant de lire et d'écrire la configuration du client Landscape."
350+
351+#: ../scripts/landscape-client-ui-install:55
352 msgid "Landscape client"
353 msgstr "Client Landscape"
354
355-#: ../scripts/landscape-client-ui-install:53
356+#: ../scripts/landscape-client-ui-install:56
357 msgid "Landscape is an easy to use systems management and monitoring service offered by Canonical that helps administrators manage multiple machines efficiently."
358 msgstr "Landscape est un système de gestion et de surveillance proposé en tant que service par Canonical, qui aide les administrateurs à gérer plusieurs machine efficacement."
359
360-#: ../scripts/landscape-client-ui-install:56
361+#: ../scripts/landscape-client-ui-install:59
362 msgid "You need to install Landscape client to be able to configure it. Do you want to install it now?"
363 msgstr "Il faut installer le client Landscape pour le configurer. Voulez-vous l'installer maintenant?"
364
365-#: ../scripts/landscape-client-ui-install:58
366+#: ../scripts/landscape-client-ui-install:61
367 msgid "Install Landscape client?"
368 msgstr "Installer le client Landscape?"
369
370-#: ../scripts/landscape-client-ui-install:59
371+#: ../scripts/landscape-client-ui-install:62
372 msgid "Install"
373 msgstr "Installer"
374
375
376=== modified file 'po/landscape-client.pot'
377--- po/landscape-client.pot 2012-03-22 15:11:27 +0000
378+++ po/landscape-client.pot 2012-03-23 14:26:24 +0000
379@@ -8,7 +8,7 @@
380 msgstr ""
381 "Project-Id-Version: PACKAGE VERSION\n"
382 "Report-Msgid-Bugs-To: \n"
383-"POT-Creation-Date: 2012-03-22 16:08+0100\n"
384+"POT-Creation-Date: 2012-03-23 11:12+0100\n"
385 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
386 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
387 "Language-Team: LANGUAGE <LL@li.org>\n"
388@@ -17,10 +17,125 @@
389 "Content-Type: text/plain; charset=CHARSET\n"
390 "Content-Transfer-Encoding: 8bit\n"
391
392+#: ../landscape/ui/controller/app.py:49
393+msgid "Success."
394+msgstr ""
395+
396+#: ../landscape/ui/controller/app.py:58
397+msgid "Failure."
398+msgstr ""
399+
400+#: ../landscape/ui/controller/app.py:90
401+msgid "Authentication failed"
402+msgstr ""
403+
404+#: ../landscape/ui/controller/configuration.py:87
405+msgid "Registering client failed"
406+msgstr ""
407+
408+#: ../landscape/ui/controller/configuration.py:90
409+msgid "Registering client was successful"
410+msgstr ""
411+
412+#: ../landscape/ui/controller/configuration.py:98
413+#: ../landscape/ui/controller/configuration.py:101
414+#, python-format
415+msgid "Attempting to register at %s"
416+msgstr ""
417+
418+#: ../landscape/ui/controller/configuration.py:112
419+msgid "Disabling client failed"
420+msgstr ""
421+
422+#: ../landscape/ui/controller/configuration.py:115
423+msgid "Disabling client was successful"
424+msgstr ""
425+
426+#: ../landscape/ui/controller/configuration.py:120
427+msgid "Attempting to disable landscape client."
428+msgstr ""
429+
430+#: ../landscape/ui/view/configuration.py:19
431+msgid "None"
432+msgstr ""
433+
434+#: ../landscape/ui/view/configuration.py:20
435+msgid "Landscape - hosted by Canonical"
436+msgstr ""
437+
438+#: ../landscape/ui/view/configuration.py:21
439+msgid "Landscape - dedicated server"
440+msgstr ""
441+
442+#: ../landscape/ui/view/configuration.py:22
443+msgid "Register"
444+msgstr ""
445+
446+#: ../landscape/ui/view/configuration.py:23
447+msgid "Disable"
448+msgstr ""
449+
450+#: ../landscape/ui/view/configuration.py:27
451+#: ../applications/landscape-client-settings.desktop.in.h:1
452+msgid "Management Service"
453+msgstr ""
454+
455+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:1
456+msgid "Account name:"
457+msgstr ""
458+
459+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:2
460+msgid "Don't have an account?"
461+msgstr ""
462+
463+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:3
464 #: ../scripts/landscape-client-ui-install:52
465 msgid "Find out more..."
466 msgstr ""
467
468+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:4
469+msgid ""
470+"If you click \"Disable\" the Landscape client on this machine will be "
471+"disabled. You can reenable it later by revisiting this dialog."
472+msgstr ""
473+
474+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:5
475+msgid ""
476+"Landscape is a remote administration service from Canonical. If you allow "
477+"it, a Landcape server can monitor this computer's performance and send "
478+"administration commands."
479+msgstr ""
480+
481+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:6
482+msgid "Landscape server hostname:"
483+msgstr ""
484+
485+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:7
486+msgid "Management service:"
487+msgstr ""
488+
489+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:8
490+msgid "Password:"
491+msgstr ""
492+
493+#: ../landscape/ui/view/ui/landscape-client-settings.glade.h:9
494+msgid "Sign up..."
495+msgstr ""
496+
497+#: ../applications/landscape-client-settings.desktop.in.h:2
498+msgid "Management Service Preferences"
499+msgstr ""
500+
501+#: ../polkit-1/com.canonical.LandscapeClientSettings.policy.in.h:1
502+msgid "Allow the user to read and write Landscape Client settings."
503+msgstr ""
504+
505+#: ../polkit-1/com.canonical.LandscapeClientSettings.policy.in.h:2
506+msgid ""
507+"System policy prevents you from reading and writing Landscape Client "
508+"Settings."
509+msgstr ""
510+
511 #: ../scripts/landscape-client-ui-install:55
512 msgid "Landscape client"
513 msgstr ""
514
515=== renamed file 'polkit-1/com.canonical.LandscapeClientSettings.policy' => 'polkit-1/com.canonical.LandscapeClientSettings.policy.in'
516--- polkit-1/com.canonical.LandscapeClientSettings.policy 2012-01-19 14:06:45 +0000
517+++ polkit-1/com.canonical.LandscapeClientSettings.policy.in 2012-03-23 14:26:24 +0000
518@@ -9,8 +9,8 @@
519 <icon_name>preferences-management-service</icon_name>
520
521 <action id="com.canonical.LandscapeClientSettings.configure">
522- <description>Allow the user to read and write Landscape Client settings.</description>
523- <message>System policy prevents you from reading and writing Landscape Client Settings.</message>
524+ <_description>Allow the user to read and write Landscape Client settings.</_description>
525+ <_message>System policy prevents you from reading and writing Landscape Client Settings.</_message>
526 <defaults>
527 <allow_any>auth_admin_keep</allow_any>
528 <allow_inactive>auth_admin_keep</allow_inactive>
529
530=== modified file 'scripts/landscape-client-settings-ui'
531--- scripts/landscape-client-settings-ui 2012-03-21 14:14:06 +0000
532+++ scripts/landscape-client-settings-ui 2012-03-23 14:26:24 +0000
533@@ -2,6 +2,8 @@
534 import os
535 import sys
536
537+from gettext import bindtextdomain, textdomain
538+
539 script_dir = os.path.abspath("scripts")
540 if os.path.dirname(os.path.abspath(sys.argv[0])) == script_dir:
541 sys.path.insert(0, "./")
542@@ -22,6 +24,8 @@
543 "running.\n")
544 sys.exit(1)
545 else:
546+ bindtextdomain("landscape-client", "/usr/share/locale")
547+ textdomain("landscape-client")
548 app = SettingsApplicationController(args=sys.argv[1:])
549 try:
550 app.run(None)
551
552=== modified file 'setup.cfg'
553--- setup.cfg 2012-03-22 09:11:31 +0000
554+++ setup.cfg 2012-03-23 14:26:24 +0000
555@@ -1,2 +1,7 @@
556+[build]
557+i18n=True
558+
559 [build_i18n]
560 domain=landscape-client
561+xml_files=[("share/polkit-1/actions/", ["polkit-1/com.canonical.LandscapeClientSettings.policy.in"])]
562+desktop_files=[("share/applications", ["applications/landscape-client-settings.desktop.in"])]
563
564=== modified file 'setup.py'
565--- setup.py 2012-03-22 15:11:27 +0000
566+++ setup.py 2012-03-23 14:26:24 +0000
567@@ -36,13 +36,9 @@
568 ("/usr/share/dbus-1/system-services/",
569 ["dbus-1/com.canonical.LandscapeClientSettings.service",
570 "dbus-1/com.canonical.LandscapeClientRegistration.service"]),
571- ("/usr/share/polkit-1/actions",
572- ["polkit-1/com.canonical.LandscapeClientSettings.policy"]),
573 ("/etc/dbus-1/system.d/",
574 ["dbus-1/com.canonical.LandscapeClientSettings.conf",
575 "dbus-1/com.canonical.LandscapeClientRegistration.conf"]),
576- ("/usr/share/applications/",
577- ["applications/landscape-client-settings.desktop"]),
578 ("/usr/share/icons/hicolor/scalable/apps/",
579 ["icons/preferences-management-service.svg"]),
580 ("/usr/share/glib-2.0/schemas/",

Subscribers

People subscribed via source and target branches

to all changes: