Merge ~sylvain-pineau/plainbox-provider-resource:extensions4all into plainbox-provider-resource:master

Proposed by Sylvain Pineau
Status: Merged
Approved by: Sylvain Pineau
Approved revision: cbd7a875eef1179d5dec1a58981f86e89afa0c53
Merged at revision: fb831e628b2886decc5b8345e0c7d4a18135dc0d
Proposed branch: ~sylvain-pineau/plainbox-provider-resource:extensions4all
Merge into: plainbox-provider-resource:master
Diff against target: 2112 lines (+31/-312)
4 files modified
bin/graphics_card_resource.py (+2/-2)
bin/udev2resource.py (+2/-2)
dev/null (+0/-281)
jobs/resource.pxu (+27/-27)
Reviewer Review Type Date Requested Status
Jonathan Cave (community) Approve
Review via email: mp+387380@code.launchpad.net
To post a comment you must log in.
Revision history for this message
Jonathan Cave (jocave) wrote :

+1, let's get this done in one hit!

review: Approve
Revision history for this message
Sylvain Pineau (sylvain-pineau) wrote :

Thanks, I'll follow up with another branch fixing all inline/shellchek/flake8 errors for this provider. I'll also revert the commit that runs only manage.py test -u (i.e for unittests only)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
diff --git a/bin/block_device_resource b/bin/block_device_resource.py
0similarity index 100%0similarity index 100%
1rename from bin/block_device_resource1rename from bin/block_device_resource
2rename to bin/block_device_resource.py2rename to bin/block_device_resource.py
diff --git a/bin/cdimage_resource b/bin/cdimage_resource.py
3similarity index 100%3similarity index 100%
4rename from bin/cdimage_resource4rename from bin/cdimage_resource
5rename to bin/cdimage_resource.py5rename to bin/cdimage_resource.py
diff --git a/bin/cpuinfo_resource b/bin/cpuinfo_resource.py
6similarity index 100%6similarity index 100%
7rename from bin/cpuinfo_resource7rename from bin/cpuinfo_resource
8rename to bin/cpuinfo_resource.py8rename to bin/cpuinfo_resource.py
diff --git a/bin/display_resource b/bin/display_resource.py
9similarity index 100%9similarity index 100%
10rename from bin/display_resource10rename from bin/display_resource
11rename to bin/display_resource.py11rename to bin/display_resource.py
diff --git a/bin/dmi_resource b/bin/dmi_resource.py
12similarity index 100%12similarity index 100%
13rename from bin/dmi_resource13rename from bin/dmi_resource
14rename to bin/dmi_resource.py14rename to bin/dmi_resource.py
diff --git a/bin/dpkg_resource b/bin/dpkg_resource.py
15similarity index 100%15similarity index 100%
16rename from bin/dpkg_resource16rename from bin/dpkg_resource
17rename to bin/dpkg_resource.py17rename to bin/dpkg_resource.py
diff --git a/bin/efi_resource b/bin/efi_resource.py
18similarity index 100%18similarity index 100%
19rename from bin/efi_resource19rename from bin/efi_resource
20rename to bin/efi_resource.py20rename to bin/efi_resource.py
diff --git a/bin/graphics_card_resource b/bin/graphics_card_resource.py
21similarity index 98%21similarity index 98%
22rename from bin/graphics_card_resource22rename from bin/graphics_card_resource
23rename to bin/graphics_card_resource.py23rename to bin/graphics_card_resource.py
index e3e9ed7..110c5f4 100755
--- a/bin/graphics_card_resource
+++ b/bin/graphics_card_resource.py
@@ -85,7 +85,7 @@ def parse_args():
85 parser = argparse.ArgumentParser(description="Resource to filter and "85 parser = argparse.ArgumentParser(description="Resource to filter and "
86 "enumerate graphics cards.")86 "enumerate graphics cards.")
87 parser.add_argument("-c", "--command",87 parser.add_argument("-c", "--command",
88 default='udev_resource',88 default='udev_resource.py',
89 help="""udev_resource command to run. Defaults89 help="""udev_resource command to run. Defaults
90 to %(default)s.""")90 to %(default)s.""")
91 return parser.parse_args()91 return parser.parse_args()
@@ -101,7 +101,7 @@ def bus_ordering(record):
101101
102def main():102def main():
103 """103 """
104 graphics_card_resource was done as a script to be able to reuse it in104 graphics_card_resource.py was done as a script to be able to reuse it in
105 graphics tests that need to be generated per-card.105 graphics tests that need to be generated per-card.
106 It does two things in addition to what filtering the resources by106 It does two things in addition to what filtering the resources by
107 category=VIDEO would achieve:107 category=VIDEO would achieve:
diff --git a/bin/lsb_resource b/bin/lsb_resource.py
108similarity index 100%108similarity index 100%
109rename from bin/lsb_resource109rename from bin/lsb_resource
110rename to bin/lsb_resource.py110rename to bin/lsb_resource.py
diff --git a/bin/meminfo_resource b/bin/meminfo_resource.py
111similarity index 100%111similarity index 100%
112rename from bin/meminfo_resource112rename from bin/meminfo_resource
113rename to bin/meminfo_resource.py113rename to bin/meminfo_resource.py
diff --git a/bin/mobilebroadband_resource b/bin/mobilebroadband_resource.sh
114similarity index 100%114similarity index 100%
115rename from bin/mobilebroadband_resource115rename from bin/mobilebroadband_resource
116rename to bin/mobilebroadband_resource.sh116rename to bin/mobilebroadband_resource.sh
diff --git a/bin/module_resource b/bin/module_resource.py
117similarity index 100%117similarity index 100%
118rename from bin/module_resource118rename from bin/module_resource
119rename to bin/module_resource.py119rename to bin/module_resource.py
diff --git a/bin/optical_resource b/bin/optical_resource.py
120similarity index 100%120similarity index 100%
121rename from bin/optical_resource121rename from bin/optical_resource
122rename to bin/optical_resource.py122rename to bin/optical_resource.py
diff --git a/bin/udev2resource b/bin/udev2resource.py
123similarity index 96%123similarity index 96%
124rename from bin/udev2resource124rename from bin/udev2resource
125rename to bin/udev2resource.py125rename to bin/udev2resource.py
index 4bbf574..d4999ae 100755
--- a/bin/udev2resource
+++ b/bin/udev2resource.py
@@ -17,8 +17,8 @@
17# You should have received a copy of the GNU General Public License17# You should have received a copy of the GNU General Public License
18# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.18# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.
19"""19"""
20udev2resource -- udev to plainbox resource converter20udev2resource.py -- udev to plainbox resource converter
21====================================================21=======================================================
2222
23This script converts the output of 'udev info --export-db' into a RFC822-esque23This script converts the output of 'udev info --export-db' into a RFC822-esque
24PlainBox resource syntax. It handles the P:, N:, E:, S: and L: "directives"24PlainBox resource syntax. It handles the P:, N:, E:, S: and L: "directives"
diff --git a/bin/udev_resource b/bin/udev_resource.py
25similarity index 100%25similarity index 100%
26rename from bin/udev_resource26rename from bin/udev_resource
27rename to bin/udev_resource.py27rename to bin/udev_resource.py
diff --git a/bin/uname_resource b/bin/uname_resource.py
28similarity index 100%28similarity index 100%
29rename from bin/uname_resource29rename from bin/uname_resource
30rename to bin/uname_resource.py30rename to bin/uname_resource.py
diff --git a/bin/xinput_resource b/bin/xinput_resource.py
31similarity index 100%31similarity index 100%
32rename from bin/xinput_resource32rename from bin/xinput_resource
33rename to bin/xinput_resource.py33rename to bin/xinput_resource.py
diff --git a/jobs/resource.pxu b/jobs/resource.pxu
index 21d6293..bcf4d70 100644
--- a/jobs/resource.pxu
+++ b/jobs/resource.pxu
@@ -3,45 +3,45 @@ unit: packaging meta-data
3os-id: debian3os-id: debian
4Depends: python3 (>= 3.2)4Depends: python3 (>= 3.2)
55
6# This is for bin/efi_resource, bin/cpuinfo_resource, bin/meminfo_resource,6# This is for bin/efi_resource.py, bin/cpuinfo_resource.py,
7# bin/udev_resource and bin/xinput_resource7# bin/meminfo_resource.py, bin/udev_resource.py and bin/xinput_resource.py
8unit: packaging meta-data8unit: packaging meta-data
9os-id: debian9os-id: debian
10Depends: python3-checkbox-support (>= 0.22)10Depends: python3-checkbox-support (>= 0.22)
1111
12# This is for bin/display_resource12# This is for bin/display_resource.py
13unit: packaging meta-data13unit: packaging meta-data
14os-id: debian14os-id: debian
15# NOTE: This is not a hard dependency so that15# NOTE: This is not a hard dependency so that
16# plainbox-provider-resource-generic has minimalistic dependencies.16# plainbox-provider-resource-generic has minimalistic dependencies.
17Suggests: x11-server-utils17Suggests: x11-server-utils
1818
19# This is for bin/dmi_resource19# This is for bin/dmi_resource.py
20unit: packaging meta-data20unit: packaging meta-data
21os-id: debian21os-id: debian
22Depends: dmidecode [!arm64 !armel !mips !mipsel !powerpc !ppc64el !s390x !alpha !hppa !m68k !mips64el !ppc64 !sh4 !sparc64]22Depends: dmidecode [!arm64 !armel !mips !mipsel !powerpc !ppc64el !s390x !alpha !hppa !m68k !mips64el !ppc64 !sh4 !sparc64]
2323
24# This is for bin/dpkg_resource24# This is for bin/dpkg_resource.py
25unit: packaging meta-data25unit: packaging meta-data
26os-id: debian26os-id: debian
27Depends: dpkg (>= 1.13)27Depends: dpkg (>= 1.13)
2828
29# This is for bin/lsb_resource29# This is for bin/lsb_resource.py
30unit: packaging meta-data30unit: packaging meta-data
31os-id: debian31os-id: debian
32Depends: lsb-release32Depends: lsb-release
3333
34# This is for bin/mobilebroadband_resource34# This is for bin/mobilebroadband_resource.sh
35unit: packaging meta-data35unit: packaging meta-data
36os-id: debian36os-id: debian
37Depends: network-manager37Depends: network-manager
3838
39# This is for bin/optical_resource and bin/udev_resource39# This is for bin/optical_resource.py and bin/udev_resource.py
40unit: packaging meta-data40unit: packaging meta-data
41os-id: debian41os-id: debian
42Depends: udev42Depends: udev
4343
44# This is for bin/xinput_resource44# This is for bin/xinput_resource.py
45unit: packaging meta-data45unit: packaging meta-data
46os-id: debian46os-id: debian
47# NOTE: This is not a hard dependency so that47# NOTE: This is not a hard dependency so that
@@ -67,7 +67,7 @@ Depends: iw (>= 5.3)
67id: cpuinfo67id: cpuinfo
68estimated_duration: 0.3768estimated_duration: 0.37
69plugin: resource69plugin: resource
70command: cpuinfo_resource70command: cpuinfo_resource.py
71_summary: Collect information about the CPU71_summary: Collect information about the CPU
72_description: Gets CPU resource info from /proc/cpuinfo72_description: Gets CPU resource info from /proc/cpuinfo
7373
@@ -75,28 +75,28 @@ id: cdimage
75estimated_duration: 0.6175estimated_duration: 0.61
76plugin: resource76plugin: resource
77user: root77user: root
78command: cdimage_resource78command: cdimage_resource.py
79_summary: Collect information about installation media (casper)79_summary: Collect information about installation media (casper)
80_description: Gets installation info from casper.log and media-info80_description: Gets installation info from casper.log and media-info
8181
82id: dpkg82id: dpkg
83estimated_duration: 0.1983estimated_duration: 0.19
84plugin: resource84plugin: resource
85command: dpkg_resource85command: dpkg_resource.py
86_summary: Collect information about dpkg version86_summary: Collect information about dpkg version
87_description: Gets info on the version of dpkg installed87_description: Gets info on the version of dpkg installed
8888
89id: lsb89id: lsb
90estimated_duration: 1.6390estimated_duration: 1.63
91plugin: resource91plugin: resource
92command: lsb_resource92command: lsb_resource.py
93_description: Generates release info based on /etc/lsb-release93_description: Generates release info based on /etc/lsb-release
94_summary: Collect information about installed system (lsb-release)94_summary: Collect information about installed system (lsb-release)
9595
96id: meminfo96id: meminfo
97estimated_duration: 0.197estimated_duration: 0.1
98plugin: resource98plugin: resource
99command: meminfo_resource99command: meminfo_resource.py
100_description: Generates resource info based on /proc/meminfo100_description: Generates resource info based on /proc/meminfo
101_summary: Collect information about system memory (/proc/meminfo)101_summary: Collect information about system memory (/proc/meminfo)
102102
@@ -104,7 +104,7 @@ id: module
104estimated_duration: 0.13104estimated_duration: 0.13
105plugin: resource105plugin: resource
106user: root106user: root
107command: module_resource107command: module_resource.py
108_description: Generates resources info on running kernel modules108_description: Generates resources info on running kernel modules
109_summary: Collect information about kernel modules109_summary: Collect information about kernel modules
110110
@@ -130,14 +130,14 @@ command:
130id: device130id: device
131estimated_duration: 0.48131estimated_duration: 0.48
132plugin: resource132plugin: resource
133command: udev_resource133command: udev_resource.py
134_description: Creates resource info from udev134_description: Creates resource info from udev
135_summary: Collect information about hardware devices (udev)135_summary: Collect information about hardware devices (udev)
136136
137id: removable_partition137id: removable_partition
138estimated_duration: 0.48138estimated_duration: 0.48
139plugin: resource139plugin: resource
140command: udev_resource -f PARTITION || true140command: udev_resource.py -f PARTITION || true
141_description: Creates removable partitions info from udev141_description: Creates removable partitions info from udev
142_summary: Collect removable partitions info from udev142_summary: Collect removable partitions info from udev
143143
@@ -145,7 +145,7 @@ id: staging/udev
145estimated_duration: 1.1145estimated_duration: 1.1
146plugin: resource146plugin: resource
147shell: /bin/sh147shell: /bin/sh
148command: udevadm info --export-db | udev2resource148command: udevadm info --export-db | udev2resource.py
149_summary: Collect unfiltered udev data149_summary: Collect unfiltered udev data
150_description:150_description:
151 This job collects the udev database in mostly raw format. The only151 This job collects the udev database in mostly raw format. The only
@@ -171,20 +171,20 @@ plugin: resource
171requires:171requires:
172 dmi_present.state == 'supported'172 dmi_present.state == 'supported'
173user: root173user: root
174command: dmi_resource174command: dmi_resource.py
175_summary: Collect information about hardware devices (DMI)175_summary: Collect information about hardware devices (DMI)
176176
177id: efi177id: efi
178estimated_duration: 0.56178estimated_duration: 0.56
179plugin: resource179plugin: resource
180user: root180user: root
181command: efi_resource181command: efi_resource.py
182_summary: Collect information about the EFI configuration182_summary: Collect information about the EFI configuration
183183
184id: uname184id: uname
185estimated_duration: 0.09185estimated_duration: 0.09
186plugin: resource186plugin: resource
187command: uname_resource187command: uname_resource.py
188_description: Creates resource info from uname output188_description: Creates resource info from uname output
189_summary: Collect information about the running kernel189_summary: Collect information about the running kernel
190190
@@ -199,7 +199,7 @@ template-resource: device
199template-filter: device.category == 'CDROM'199template-filter: device.category == 'CDROM'
200id: optical_drive_{name}200id: optical_drive_{name}
201plugin: resource201plugin: resource
202command: optical_resource /dev/{name}202command: optical_resource.py /dev/{name}
203estimated_duration: 0.5203estimated_duration: 0.5
204_summary: Create resource info for supported optical actions ({name})204_summary: Create resource info for supported optical actions ({name})
205205
@@ -207,13 +207,13 @@ id: block_device
207estimated_duration: 0.08207estimated_duration: 0.08
208plugin: resource208plugin: resource
209user: root209user: root
210command: block_device_resource210command: block_device_resource.py
211_summary: Create resource info for removable block devices211_summary: Create resource info for removable block devices
212212
213id: display213id: display
214estimated_duration: 0.43214estimated_duration: 0.43
215plugin: resource215plugin: resource
216command: display_resource216command: display_resource.py
217requires: package.name == "x11-xserver-utils"217requires: package.name == "x11-xserver-utils"
218_summary: Creates display resource info from xrandr output218_summary: Creates display resource info from xrandr output
219219
@@ -236,7 +236,7 @@ command:
236id: xinput236id: xinput
237estimated_duration: 0.19237estimated_duration: 0.19
238plugin: resource238plugin: resource
239command: xinput_resource239command: xinput_resource.py
240requires: package.name == "xinput"240requires: package.name == "xinput"
241_summary: Creates resource info from xinput output.241_summary: Creates resource info from xinput output.
242242
@@ -254,7 +254,7 @@ id: mobilebroadband
254estimated_duration: 0.38254estimated_duration: 0.38
255plugin: resource255plugin: resource
256_summary: Create resource for mobile broadband devices256_summary: Create resource for mobile broadband devices
257command: mobilebroadband_resource257command: mobilebroadband_resource.sh
258258
259id: virtualization259id: virtualization
260estimated_duration: 0.13260estimated_duration: 0.13
@@ -339,7 +339,7 @@ id: graphics_card
339estimated_duration: 0.05339estimated_duration: 0.05
340plugin: resource340plugin: resource
341_summary: Generate an entry for each graphics card present in the system.341_summary: Generate an entry for each graphics card present in the system.
342command: graphics_card_resource342command: graphics_card_resource.py
343343
344id: fwts344id: fwts
345estimated_duration: 0.5345estimated_duration: 0.5
diff --git a/po/POTFILES.in b/po/POTFILES.in
346deleted file mode 100644346deleted file mode 100644
index e8d87de..0000000
--- a/po/POTFILES.in
+++ /dev/null
@@ -1,18 +0,0 @@
1[encoding: UTF-8]
2[type: gettext/rfc822deb] jobs/resource.pxu
3[type: gettext/python] bin/block_device_resource
4[type: gettext/python] bin/cdimage_resource
5[type: gettext/python] bin/cpuinfo_resource
6[type: gettext/python] bin/display_resource
7[type: gettext/python] bin/dmi_resource
8[type: gettext/python] bin/dpkg_resource
9[type: gettext/python] bin/efi_resource
10[type: gettext/python] bin/gconf_resource
11[type: gettext/python] bin/lsb_resource
12[type: gettext/python] bin/meminfo_resource
13[type: gettext/python] bin/module_resource
14[type: gettext/python] bin/udev_resource
15[type: gettext/python] bin/uname_resource
16[type: gettext/python] bin/xinput_resource
17manage.py
18src/80211_resource.c
diff --git a/po/fr.po b/po/fr.po
19deleted file mode 1006440deleted file mode 100644
index 5fe57ad..0000000
--- a/po/fr.po
+++ /dev/null
@@ -1,328 +0,0 @@
1# French translation for checkbox
2# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015
3# This file is distributed under the same license as the checkbox package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2016-03-07 15:06+0800\n"
11"PO-Revision-Date: 2016-04-09 10:20+0000\n"
12"Last-Translator: Anne017 <anneonyme017@openmailbox.org>\n"
13"Language-Team: French <fr@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2016-09-28 05:53+0000\n"
18"X-Generator: Launchpad (build 18204)\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr "Collecter des information à propos du processeur"
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr ""
29"Récupère les informations relatives aux ressources utilisées par le "
30"processeur à partir de /proc/cpuinfo"
31
32#. summary
33#: ../jobs/resource.pxu:76
34msgid "Collect information about installation media (casper)"
35msgstr ""
36"Collecter des informations à propos du support d'installation (casper)"
37
38#. description
39#: ../jobs/resource.pxu:77
40msgid "Gets installation info from casper.log and media-info"
41msgstr ""
42"Récupère les informations relatives à l'installation à partir de casper.log "
43"et de media-info"
44
45#. summary
46#: ../jobs/resource.pxu:84
47msgid "Collect information about dpkg version"
48msgstr "Collecter des informations à propos de la version de dpkg"
49
50#. description
51#: ../jobs/resource.pxu:85
52msgid "Gets info on the version of dpkg installed"
53msgstr "Récupère les informations relatives à la version de dpkg installée"
54
55#. description
56#: ../jobs/resource.pxu:92
57msgid "Generates resource info from gconf settings"
58msgstr ""
59"Génère les informations relatives aux ressources à partir des réglages de "
60"gconf"
61
62#. summary
63#: ../jobs/resource.pxu:93
64msgid "Collect information about software configuration (gconf)"
65msgstr ""
66"Collecter des informations à propos de la configuration des logiciels (gconf)"
67
68#. description
69#: ../jobs/resource.pxu:100
70msgid "Generates release info based on /etc/lsb-release"
71msgstr ""
72"Génère les informations relatives à la version de sortie à partir de "
73"/etc/lsb-release"
74
75#. summary
76#: ../jobs/resource.pxu:101
77msgid "Collect information about installed system (lsb-release)"
78msgstr ""
79"Collecter des informations à propos du système installé (lsb-release)"
80
81#. description
82#: ../jobs/resource.pxu:107
83msgid "Generates resource info based on /proc/meminfo"
84msgstr ""
85"Génère les informations relatives aux ressources à partir de /proc/meminfo"
86
87#. summary
88#: ../jobs/resource.pxu:108
89msgid "Collect information about system memory (/proc/meminfo)"
90msgstr ""
91"Collecter des informations à propos de la mémoire du système (/proc/meminfo)"
92
93#. description
94#: ../jobs/resource.pxu:114
95msgid "Generates resources info on running kernel modules"
96msgstr ""
97"Génère les informations relatives aux ressources des modules exécutés par le "
98"noyau"
99
100#. summary
101#: ../jobs/resource.pxu:115
102msgid "Collect information about kernel modules"
103msgstr "Collecter des informations à propos des modules du noyau"
104
105#. description
106#: ../jobs/resource.pxu:123
107msgid "Generates a list of packages"
108msgstr "Génère une liste de paquets"
109
110#. summary
111#: ../jobs/resource.pxu:124
112msgid "Collect information about installed software packages"
113msgstr ""
114"Collecter des informations à propos des paquets de logiciels installés"
115
116#. summary
117#: ../jobs/resource.pxu:129
118msgid "Enumerate available system executables"
119msgstr "Énumérer les exécutables du système disponibles"
120
121#. description
122#: ../jobs/resource.pxu:130
123msgid "Generates a resource for all available executables"
124msgstr "Génère une ressource pour tous les exécutables disponibles"
125
126#. description
127#: ../jobs/resource.pxu:140
128msgid "Creates resource info from udev"
129msgstr "Crée des informations relatives aux ressources à partir d'udev"
130
131#. summary
132#: ../jobs/resource.pxu:141
133msgid "Collect information about hardware devices (udev)"
134msgstr ""
135"Collecter des informations à propos des périphériques matériels (udev)"
136
137#. summary
138#: ../jobs/resource.pxu:149
139msgid "Collect unfiltered udev data"
140msgstr "Collecte des données non filtrées à partir d'udev"
141
142#. description
143#: ../jobs/resource.pxu:150
144msgid ""
145"This job collects the udev database in mostly raw format. The only "
146"transformations applied are basic changes to make the format compatible with "
147"RFC822 syntax required by PlainBox."
148msgstr ""
149"Cette tâche collecte la base de données d'udev majoritairement en format "
150"brut. Les seules transformations appliquées sont des changements basiques "
151"pour rendre le format compatible avec la syntaxe RFC822 requise par PlainBox."
152
153#. summary
154#: ../jobs/resource.pxu:161
155msgid "Collect information about hardware devices (DMI)"
156msgstr ""
157"Collecter des informations à propos des périphériques matériels (DMI)"
158
159#. description
160#: ../jobs/resource.pxu:173
161msgid "Creates resource info from uname output"
162msgstr ""
163"Crée des informations relatives aux ressources à partir de la sortie d'uname"
164
165#. summary
166#: ../jobs/resource.pxu:174
167msgid "Collect information about the running kernel"
168msgstr "Collecter des informations à propos du noyau en cours d'exécution"
169
170#. description
171#: ../jobs/resource.pxu:180
172msgid "Create resource info for supported sleep states"
173msgstr ""
174"Crée des informations relatives aux ressources pour les états de veille pris "
175"en charge"
176
177#. description
178#: ../jobs/resource.pxu:189
179msgid "Create resource info for supported optical actions ({name})"
180msgstr ""
181"Générer les renseignements pour les actions optiques prises en charge "
182"({name})"
183
184#. description
185#: ../jobs/resource.pxu:196
186msgid "Create resource info for removable block devices"
187msgstr ""
188"Crée des informations relatives aux ressources pour les dispositifs amovibles"
189
190#. description
191#: ../jobs/resource.pxu:203
192msgid "Creates display resource info from xrandr output"
193msgstr ""
194"Crée des informations relatives aux ressources d'affichage à partir de la "
195"sortie de xrandr"
196
197#. description
198#: ../jobs/resource.pxu:208
199msgid "Creates resource info for supported USB versions"
200msgstr ""
201"Crée des informations relatives aux ressources pour les versions USB prises "
202"en charge"
203
204#. summary
205#: ../jobs/resource.pxu:209
206msgid "Collect information about supported types of USB"
207msgstr "Collecter des informations à propos des types d'USB pris en charge"
208
209#. description
210#: ../jobs/resource.pxu:221
211msgid "Creates resource info from xinput output."
212msgstr ""
213"Crée des informations relatives aux ressources à partir de la sortie de "
214"xinput"
215
216#. description
217#: ../jobs/resource.pxu:226
218msgid "Create resource info for environment variables"
219msgstr ""
220"Crée des informations relatives aux ressources pour les variables "
221"d'environnement"
222
223#. description
224#: ../jobs/resource.pxu:236
225msgid "Create resource for mobile broadband devices"
226msgstr "Crée des ressources pour les appareils mobiles à haut débit"
227
228#. description
229#: ../jobs/resource.pxu:243
230msgid "Resource for hardware virtualization"
231msgstr "Ressources pour la virtualisation du matériel"
232
233#. description
234#: ../jobs/resource.pxu:256
235msgid "Creates resource info for wifi supported protocols/interfaces"
236msgstr ""
237"Crée des informations relatives aux ressources pour les protocoles et les "
238"interfaces Wi-Fi pris en charge"
239
240#. description
241#: ../jobs/resource.pxu:268
242msgid "Creates resource info for RTC"
243msgstr "Crée des informations relatives aux ressources pour RTC"
244
245#. description
246#: ../jobs/resource.pxu:279
247msgid "Provide links to requirements documents."
248msgstr "Fournit des liens vers les documents relatifs aux exigences."
249
250#. description
251#: ../jobs/resource.pxu:279
252msgid "The requirement document should contain sets of name/link pairs."
253msgstr ""
254"Le document d'exigences devrait contenir des séries de paires de nom/lien."
255
256#. description
257#: ../jobs/resource.pxu:279
258msgid ""
259"Each requirement should have two keys with their respective values: name: "
260"(to be used as the anchor text) link: (the actual URL)"
261msgstr ""
262"Chaque exigence devrait avoir deux clés avec leurs valeurs respectives : "
263"nom : (à utiliser comme texte d'ancrage) lien : (l'URL en elle-même)"
264
265#. description
266#: ../jobs/resource.pxu:279
267msgid "Each set should be separated from the previous one by a new line."
268msgstr ""
269"Chaque série devrait être séparée de la précédente par une nouvelle ligne."
270
271#. description
272#: ../jobs/resource.pxu:279
273msgid "Example:"
274msgstr "Exemple :"
275
276#. description
277#: ../jobs/resource.pxu:279
278msgid "name: Requirement 1 link: http://example.com/requirement1"
279msgstr "nom : exigence 1 lien : http://exemple.com/exigence1"
280
281#. description
282#: ../jobs/resource.pxu:279
283msgid "name: requirement 2 link: http://example.com/requirement2"
284msgstr "nom : exigence 2 lien : http://exemple.com/exigence2"
285
286#. description
287#: ../jobs/resource.pxu:279
288msgid ""
289"Providers wishing to use this feature need to: 1- Write a job that places a "
290"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
291"whitelists to run that job *before* miscellanea/submission-resources\n"
292" or the \"requirements\" resource job."
293msgstr ""
294"Les fournisseurs souhaitant utiliser cette fonctionnalité doivent : 1- "
295"écrire une tâche qui place un fichier convenablement formaté dans "
296"$PLAINBOX_SESSION_SHARE 2- mettre à jour leur liste blanche pour exécuter "
297"cette tâche *avant* miscellanea/submission-resources\n"
298" ou la tâche de ressource « exigences »."
299
300#. description
301#: ../jobs/resource.pxu:307
302msgid "Generate an entry for each graphics card present in the system."
303msgstr ""
304"Génère une entrée pour chaque carte graphique présente dans le système."
305
306#. description
307#: ../jobs/resource.pxu:313
308msgid "Resources to gather system information"
309msgstr "Ressources pour recueillir des informations du système"
310
311#. summary
312#: ../jobs/resource.pxu:314
313msgid "Resources"
314msgstr "Ressources"
315
316#. description
317#: ../jobs/resource.pxu:323
318msgid "Generate an entry for each FWTS test available"
319msgstr "Générer une entrée pour chaque test FWTS disponible"
320
321#. description
322#: ../jobs/resource.pxu:331
323msgid "Generate an entry for each MIR integration tests"
324msgstr "Générer une entrée pour chaque test d'intégration de MIR"
325
326#: ../manage.py:48
327msgid "PlainBox resources provider"
328msgstr "Fournisseur de ressources de PlainBox"
diff --git a/po/my.po b/po/my.po
329deleted file mode 1006440deleted file mode 100644
index edc616d..0000000
--- a/po/my.po
+++ /dev/null
@@ -1,282 +0,0 @@
1# Burmese translation for checkbox
2# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016
3# This file is distributed under the same license as the checkbox package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2016-03-07 15:06+0800\n"
11"PO-Revision-Date: 2016-03-09 16:31+0000\n"
12"Last-Translator: AungKhantBo <aungkhantbo@yahoo.com>\n"
13"Language-Team: Burmese <my@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2016-09-28 05:53+0000\n"
18"X-Generator: Launchpad (build 18204)\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr "CPU၏အချက်အလက်များကိုရယူနေပါသည်"
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr "CPU၏မှီငြမ်းစရာအချက်အလက်များကို /proc/cpuinfo မှ ရရှိပါသည်"
29
30#. summary
31#: ../jobs/resource.pxu:76
32msgid "Collect information about installation media (casper)"
33msgstr "(casper) မီဒီယာ တပ်ဆင်ခြင်းဆိုင်ရာအချက်အလက်များကိုရယူနေသည်"
34
35#. description
36#: ../jobs/resource.pxu:77
37msgid "Gets installation info from casper.log and media-info"
38msgstr ""
39"တပ်ဆင်ခြင်းဆိုင်ရာအချက်အလက်များကို casper.log နှင့် media-infoမှ ရရှိပါသည်"
40
41#. summary
42#: ../jobs/resource.pxu:84
43msgid "Collect information about dpkg version"
44msgstr "dpkg version ၏အချက်အလက်များကိုရယူနေသည်"
45
46#. description
47#: ../jobs/resource.pxu:85
48msgid "Gets info on the version of dpkg installed"
49msgstr ""
50
51#. description
52#: ../jobs/resource.pxu:92
53msgid "Generates resource info from gconf settings"
54msgstr ""
55
56#. summary
57#: ../jobs/resource.pxu:93
58msgid "Collect information about software configuration (gconf)"
59msgstr ""
60
61#. description
62#: ../jobs/resource.pxu:100
63msgid "Generates release info based on /etc/lsb-release"
64msgstr ""
65
66#. summary
67#: ../jobs/resource.pxu:101
68msgid "Collect information about installed system (lsb-release)"
69msgstr ""
70
71#. description
72#: ../jobs/resource.pxu:107
73msgid "Generates resource info based on /proc/meminfo"
74msgstr ""
75
76#. summary
77#: ../jobs/resource.pxu:108
78msgid "Collect information about system memory (/proc/meminfo)"
79msgstr ""
80
81#. description
82#: ../jobs/resource.pxu:114
83msgid "Generates resources info on running kernel modules"
84msgstr ""
85
86#. summary
87#: ../jobs/resource.pxu:115
88msgid "Collect information about kernel modules"
89msgstr ""
90
91#. description
92#: ../jobs/resource.pxu:123
93msgid "Generates a list of packages"
94msgstr ""
95
96#. summary
97#: ../jobs/resource.pxu:124
98msgid "Collect information about installed software packages"
99msgstr ""
100
101#. summary
102#: ../jobs/resource.pxu:129
103msgid "Enumerate available system executables"
104msgstr ""
105
106#. description
107#: ../jobs/resource.pxu:130
108msgid "Generates a resource for all available executables"
109msgstr ""
110
111#. description
112#: ../jobs/resource.pxu:140
113msgid "Creates resource info from udev"
114msgstr ""
115
116#. summary
117#: ../jobs/resource.pxu:141
118msgid "Collect information about hardware devices (udev)"
119msgstr ""
120
121#. summary
122#: ../jobs/resource.pxu:149
123msgid "Collect unfiltered udev data"
124msgstr ""
125
126#. description
127#: ../jobs/resource.pxu:150
128msgid ""
129"This job collects the udev database in mostly raw format. The only "
130"transformations applied are basic changes to make the format compatible with "
131"RFC822 syntax required by PlainBox."
132msgstr ""
133
134#. summary
135#: ../jobs/resource.pxu:161
136msgid "Collect information about hardware devices (DMI)"
137msgstr ""
138
139#. description
140#: ../jobs/resource.pxu:173
141msgid "Creates resource info from uname output"
142msgstr ""
143
144#. summary
145#: ../jobs/resource.pxu:174
146msgid "Collect information about the running kernel"
147msgstr ""
148
149#. description
150#: ../jobs/resource.pxu:180
151msgid "Create resource info for supported sleep states"
152msgstr ""
153
154#. description
155#: ../jobs/resource.pxu:189
156msgid "Create resource info for supported optical actions ({name})"
157msgstr ""
158
159#. description
160#: ../jobs/resource.pxu:196
161msgid "Create resource info for removable block devices"
162msgstr ""
163
164#. description
165#: ../jobs/resource.pxu:203
166msgid "Creates display resource info from xrandr output"
167msgstr ""
168
169#. description
170#: ../jobs/resource.pxu:208
171msgid "Creates resource info for supported USB versions"
172msgstr ""
173
174#. summary
175#: ../jobs/resource.pxu:209
176msgid "Collect information about supported types of USB"
177msgstr ""
178
179#. description
180#: ../jobs/resource.pxu:221
181msgid "Creates resource info from xinput output."
182msgstr ""
183
184#. description
185#: ../jobs/resource.pxu:226
186msgid "Create resource info for environment variables"
187msgstr ""
188
189#. description
190#: ../jobs/resource.pxu:236
191msgid "Create resource for mobile broadband devices"
192msgstr ""
193
194#. description
195#: ../jobs/resource.pxu:243
196msgid "Resource for hardware virtualization"
197msgstr ""
198
199#. description
200#: ../jobs/resource.pxu:256
201msgid "Creates resource info for wifi supported protocols/interfaces"
202msgstr ""
203
204#. description
205#: ../jobs/resource.pxu:268
206msgid "Creates resource info for RTC"
207msgstr ""
208
209#. description
210#: ../jobs/resource.pxu:279
211msgid "Provide links to requirements documents."
212msgstr ""
213
214#. description
215#: ../jobs/resource.pxu:279
216msgid "The requirement document should contain sets of name/link pairs."
217msgstr ""
218
219#. description
220#: ../jobs/resource.pxu:279
221msgid ""
222"Each requirement should have two keys with their respective values: name: "
223"(to be used as the anchor text) link: (the actual URL)"
224msgstr ""
225
226#. description
227#: ../jobs/resource.pxu:279
228msgid "Each set should be separated from the previous one by a new line."
229msgstr ""
230
231#. description
232#: ../jobs/resource.pxu:279
233msgid "Example:"
234msgstr ""
235
236#. description
237#: ../jobs/resource.pxu:279
238msgid "name: Requirement 1 link: http://example.com/requirement1"
239msgstr ""
240
241#. description
242#: ../jobs/resource.pxu:279
243msgid "name: requirement 2 link: http://example.com/requirement2"
244msgstr ""
245
246#. description
247#: ../jobs/resource.pxu:279
248msgid ""
249"Providers wishing to use this feature need to: 1- Write a job that places a "
250"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
251"whitelists to run that job *before* miscellanea/submission-resources\n"
252" or the \"requirements\" resource job."
253msgstr ""
254
255#. description
256#: ../jobs/resource.pxu:307
257msgid "Generate an entry for each graphics card present in the system."
258msgstr ""
259
260#. description
261#: ../jobs/resource.pxu:313
262msgid "Resources to gather system information"
263msgstr ""
264
265#. summary
266#: ../jobs/resource.pxu:314
267msgid "Resources"
268msgstr ""
269
270#. description
271#: ../jobs/resource.pxu:323
272msgid "Generate an entry for each FWTS test available"
273msgstr ""
274
275#. description
276#: ../jobs/resource.pxu:331
277msgid "Generate an entry for each MIR integration tests"
278msgstr ""
279
280#: ../manage.py:48
281msgid "PlainBox resources provider"
282msgstr ""
diff --git a/po/plainbox-provider-resource.pot b/po/plainbox-provider-resource.pot
283deleted file mode 1006440deleted file mode 100644
index 9660540..0000000
--- a/po/plainbox-provider-resource.pot
+++ /dev/null
@@ -1,281 +0,0 @@
1# SOME DESCRIPTIVE TITLE.
2# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3# This file is distributed under the same license as the PACKAGE package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5#
6#, fuzzy
7msgid ""
8msgstr ""
9"Project-Id-Version: PACKAGE VERSION\n"
10"Report-Msgid-Bugs-To: \n"
11"POT-Creation-Date: 2016-03-07 15:06+0800\n"
12"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14"Language-Team: LANGUAGE <LL@li.org>\n"
15"Language: \n"
16"MIME-Version: 1.0\n"
17"Content-Type: text/plain; charset=CHARSET\n"
18"Content-Transfer-Encoding: 8bit\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr ""
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr ""
29
30#. summary
31#: ../jobs/resource.pxu:76
32msgid "Collect information about installation media (casper)"
33msgstr ""
34
35#. description
36#: ../jobs/resource.pxu:77
37msgid "Gets installation info from casper.log and media-info"
38msgstr ""
39
40#. summary
41#: ../jobs/resource.pxu:84
42msgid "Collect information about dpkg version"
43msgstr ""
44
45#. description
46#: ../jobs/resource.pxu:85
47msgid "Gets info on the version of dpkg installed"
48msgstr ""
49
50#. description
51#: ../jobs/resource.pxu:92
52msgid "Generates resource info from gconf settings"
53msgstr ""
54
55#. summary
56#: ../jobs/resource.pxu:93
57msgid "Collect information about software configuration (gconf)"
58msgstr ""
59
60#. description
61#: ../jobs/resource.pxu:100
62msgid "Generates release info based on /etc/lsb-release"
63msgstr ""
64
65#. summary
66#: ../jobs/resource.pxu:101
67msgid "Collect information about installed system (lsb-release)"
68msgstr ""
69
70#. description
71#: ../jobs/resource.pxu:107
72msgid "Generates resource info based on /proc/meminfo"
73msgstr ""
74
75#. summary
76#: ../jobs/resource.pxu:108
77msgid "Collect information about system memory (/proc/meminfo)"
78msgstr ""
79
80#. description
81#: ../jobs/resource.pxu:114
82msgid "Generates resources info on running kernel modules"
83msgstr ""
84
85#. summary
86#: ../jobs/resource.pxu:115
87msgid "Collect information about kernel modules"
88msgstr ""
89
90#. description
91#: ../jobs/resource.pxu:123
92msgid "Generates a list of packages"
93msgstr ""
94
95#. summary
96#: ../jobs/resource.pxu:124
97msgid "Collect information about installed software packages"
98msgstr ""
99
100#. summary
101#: ../jobs/resource.pxu:129
102msgid "Enumerate available system executables"
103msgstr ""
104
105#. description
106#: ../jobs/resource.pxu:130
107msgid "Generates a resource for all available executables"
108msgstr ""
109
110#. description
111#: ../jobs/resource.pxu:140
112msgid "Creates resource info from udev"
113msgstr ""
114
115#. summary
116#: ../jobs/resource.pxu:141
117msgid "Collect information about hardware devices (udev)"
118msgstr ""
119
120#. summary
121#: ../jobs/resource.pxu:149
122msgid "Collect unfiltered udev data"
123msgstr ""
124
125#. description
126#: ../jobs/resource.pxu:150
127msgid ""
128"This job collects the udev database in mostly raw format. The only "
129"transformations applied are basic changes to make the format compatible with "
130"RFC822 syntax required by PlainBox."
131msgstr ""
132
133#. summary
134#: ../jobs/resource.pxu:161
135msgid "Collect information about hardware devices (DMI)"
136msgstr ""
137
138#. description
139#: ../jobs/resource.pxu:173
140msgid "Creates resource info from uname output"
141msgstr ""
142
143#. summary
144#: ../jobs/resource.pxu:174
145msgid "Collect information about the running kernel"
146msgstr ""
147
148#. description
149#: ../jobs/resource.pxu:180
150msgid "Create resource info for supported sleep states"
151msgstr ""
152
153#. description
154#: ../jobs/resource.pxu:189
155msgid "Create resource info for supported optical actions ({name})"
156msgstr ""
157
158#. description
159#: ../jobs/resource.pxu:196
160msgid "Create resource info for removable block devices"
161msgstr ""
162
163#. description
164#: ../jobs/resource.pxu:203
165msgid "Creates display resource info from xrandr output"
166msgstr ""
167
168#. description
169#: ../jobs/resource.pxu:208
170msgid "Creates resource info for supported USB versions"
171msgstr ""
172
173#. summary
174#: ../jobs/resource.pxu:209
175msgid "Collect information about supported types of USB"
176msgstr ""
177
178#. description
179#: ../jobs/resource.pxu:221
180msgid "Creates resource info from xinput output."
181msgstr ""
182
183#. description
184#: ../jobs/resource.pxu:226
185msgid "Create resource info for environment variables"
186msgstr ""
187
188#. description
189#: ../jobs/resource.pxu:236
190msgid "Create resource for mobile broadband devices"
191msgstr ""
192
193#. description
194#: ../jobs/resource.pxu:243
195msgid "Resource for hardware virtualization"
196msgstr ""
197
198#. description
199#: ../jobs/resource.pxu:256
200msgid "Creates resource info for wifi supported protocols/interfaces"
201msgstr ""
202
203#. description
204#: ../jobs/resource.pxu:268
205msgid "Creates resource info for RTC"
206msgstr ""
207
208#. description
209#: ../jobs/resource.pxu:279
210msgid "Provide links to requirements documents."
211msgstr ""
212
213#. description
214#: ../jobs/resource.pxu:279
215msgid "The requirement document should contain sets of name/link pairs."
216msgstr ""
217
218#. description
219#: ../jobs/resource.pxu:279
220msgid ""
221"Each requirement should have two keys with their respective values: name: "
222"(to be used as the anchor text) link: (the actual URL)"
223msgstr ""
224
225#. description
226#: ../jobs/resource.pxu:279
227msgid "Each set should be separated from the previous one by a new line."
228msgstr ""
229
230#. description
231#: ../jobs/resource.pxu:279
232msgid "Example:"
233msgstr ""
234
235#. description
236#: ../jobs/resource.pxu:279
237msgid "name: Requirement 1 link: http://example.com/requirement1"
238msgstr ""
239
240#. description
241#: ../jobs/resource.pxu:279
242msgid "name: requirement 2 link: http://example.com/requirement2"
243msgstr ""
244
245#. description
246#: ../jobs/resource.pxu:279
247msgid ""
248"Providers wishing to use this feature need to: 1- Write a job that places a "
249"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
250"whitelists to run that job *before* miscellanea/submission-resources\n"
251" or the \"requirements\" resource job."
252msgstr ""
253
254#. description
255#: ../jobs/resource.pxu:307
256msgid "Generate an entry for each graphics card present in the system."
257msgstr ""
258
259#. description
260#: ../jobs/resource.pxu:313
261msgid "Resources to gather system information"
262msgstr ""
263
264#. summary
265#: ../jobs/resource.pxu:314
266msgid "Resources"
267msgstr ""
268
269#. description
270#: ../jobs/resource.pxu:323
271msgid "Generate an entry for each FWTS test available"
272msgstr ""
273
274#. description
275#: ../jobs/resource.pxu:331
276msgid "Generate an entry for each MIR integration tests"
277msgstr ""
278
279#: ../manage.py:48
280msgid "PlainBox resources provider"
281msgstr ""
diff --git a/po/ru.po b/po/ru.po
282deleted file mode 1006440deleted file mode 100644
index a8e21fb..0000000
--- a/po/ru.po
+++ /dev/null
@@ -1,284 +0,0 @@
1# Russian translation for checkbox
2# Copyright (c) 2016 Rosetta Contributors and Canonical Ltd 2016
3# This file is distributed under the same license as the checkbox package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2016.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2016-03-07 15:06+0800\n"
11"PO-Revision-Date: 2016-05-30 17:06+0000\n"
12"Last-Translator: Данил Тютюник <den.tyutyunik@ya.ru>\n"
13"Language-Team: Russian <ru@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2016-09-28 05:53+0000\n"
18"X-Generator: Launchpad (build 18204)\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr "Сбор информации о процессоре"
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr "Получает данные ресурса CPU из /proc/cpuinfo"
29
30#. summary
31#: ../jobs/resource.pxu:76
32msgid "Collect information about installation media (casper)"
33msgstr "Сбор информации о установочном носителе (casper)"
34
35#. description
36#: ../jobs/resource.pxu:77
37msgid "Gets installation info from casper.log and media-info"
38msgstr "Получает данные установки из casper.log и медиа-информации"
39
40#. summary
41#: ../jobs/resource.pxu:84
42msgid "Collect information about dpkg version"
43msgstr "Сбор информации о версии DPKG"
44
45#. description
46#: ../jobs/resource.pxu:85
47msgid "Gets info on the version of dpkg installed"
48msgstr "Получает информацию о установленной версии DPKG"
49
50#. description
51#: ../jobs/resource.pxu:92
52msgid "Generates resource info from gconf settings"
53msgstr "Генерация информации от настроек Gconf"
54
55#. summary
56#: ../jobs/resource.pxu:93
57msgid "Collect information about software configuration (gconf)"
58msgstr "Сбор информации о конфигурации программного обеспечения (GConf)"
59
60#. description
61#: ../jobs/resource.pxu:100
62msgid "Generates release info based on /etc/lsb-release"
63msgstr "Формирует релиз на основе информации из /etc/lsb-release"
64
65#. summary
66#: ../jobs/resource.pxu:101
67msgid "Collect information about installed system (lsb-release)"
68msgstr "Сбор информации об установленной системе (LSB-release)"
69
70#. description
71#: ../jobs/resource.pxu:107
72msgid "Generates resource info based on /proc/meminfo"
73msgstr "Формирует данные о /proc/meminfo"
74
75#. summary
76#: ../jobs/resource.pxu:108
77msgid "Collect information about system memory (/proc/meminfo)"
78msgstr "Сбор информации о системной памяти (/proc/meminfo)"
79
80#. description
81#: ../jobs/resource.pxu:114
82msgid "Generates resources info on running kernel modules"
83msgstr "Формирует данные о запущенных модулях ядра"
84
85#. summary
86#: ../jobs/resource.pxu:115
87msgid "Collect information about kernel modules"
88msgstr "Сбор информации о модулях ядра"
89
90#. description
91#: ../jobs/resource.pxu:123
92msgid "Generates a list of packages"
93msgstr "Формирует список пакетов"
94
95#. summary
96#: ../jobs/resource.pxu:124
97msgid "Collect information about installed software packages"
98msgstr "Сбор информации об установленных пакетах программного обеспечения"
99
100#. summary
101#: ../jobs/resource.pxu:129
102msgid "Enumerate available system executables"
103msgstr "Перечисление доступных системных исполняемых файлов"
104
105#. description
106#: ../jobs/resource.pxu:130
107msgid "Generates a resource for all available executables"
108msgstr "Создает ресурс для всех доступных исполняемых файлов"
109
110#. description
111#: ../jobs/resource.pxu:140
112msgid "Creates resource info from udev"
113msgstr "Создает данные из Udev"
114
115#. summary
116#: ../jobs/resource.pxu:141
117msgid "Collect information about hardware devices (udev)"
118msgstr "Сбор информации об аппаратных устройствах (Udev)"
119
120#. summary
121#: ../jobs/resource.pxu:149
122msgid "Collect unfiltered udev data"
123msgstr "Сбор неотсортированных данных Udev"
124
125#. description
126#: ../jobs/resource.pxu:150
127msgid ""
128"This job collects the udev database in mostly raw format. The only "
129"transformations applied are basic changes to make the format compatible with "
130"RFC822 syntax required by PlainBox."
131msgstr ""
132
133#. summary
134#: ../jobs/resource.pxu:161
135msgid "Collect information about hardware devices (DMI)"
136msgstr "Сбор информации об аппаратных устройствах (DMI)"
137
138#. description
139#: ../jobs/resource.pxu:173
140msgid "Creates resource info from uname output"
141msgstr ""
142
143#. summary
144#: ../jobs/resource.pxu:174
145msgid "Collect information about the running kernel"
146msgstr "Сбор информации о запущенном ядре"
147
148#. description
149#: ../jobs/resource.pxu:180
150msgid "Create resource info for supported sleep states"
151msgstr "Создание информации для поддерживаемых состояний сна"
152
153#. description
154#: ../jobs/resource.pxu:189
155msgid "Create resource info for supported optical actions ({name})"
156msgstr ""
157"Создание информации ресурса для поддерживаемых оптических действий ({name})"
158
159#. description
160#: ../jobs/resource.pxu:196
161msgid "Create resource info for removable block devices"
162msgstr "Создание информации для съемных блочных устройств"
163
164#. description
165#: ../jobs/resource.pxu:203
166msgid "Creates display resource info from xrandr output"
167msgstr "Создание информации о дисплеи из XRandR вывода"
168
169#. description
170#: ../jobs/resource.pxu:208
171msgid "Creates resource info for supported USB versions"
172msgstr "Создает данные ресурса для поддерживаемых версий USB"
173
174#. summary
175#: ../jobs/resource.pxu:209
176msgid "Collect information about supported types of USB"
177msgstr "Сбор информации о поддерживаемых типах USB"
178
179#. description
180#: ../jobs/resource.pxu:221
181msgid "Creates resource info from xinput output."
182msgstr "Создает данные из Xinput вывода."
183
184#. description
185#: ../jobs/resource.pxu:226
186msgid "Create resource info for environment variables"
187msgstr "Создание информации о переменных окружения"
188
189#. description
190#: ../jobs/resource.pxu:236
191msgid "Create resource for mobile broadband devices"
192msgstr "Создаине информации о мобильных широкополосных устройств"
193
194#. description
195#: ../jobs/resource.pxu:243
196msgid "Resource for hardware virtualization"
197msgstr "Ресурс для аппаратной виртуализации"
198
199#. description
200#: ../jobs/resource.pxu:256
201msgid "Creates resource info for wifi supported protocols/interfaces"
202msgstr "Создает данные поддерживаемых протоколов/интерфейсов для WiFi"
203
204#. description
205#: ../jobs/resource.pxu:268
206msgid "Creates resource info for RTC"
207msgstr "Создает данные для RTC"
208
209#. description
210#: ../jobs/resource.pxu:279
211msgid "Provide links to requirements documents."
212msgstr "Укажите ссылки на требования документов."
213
214#. description
215#: ../jobs/resource.pxu:279
216msgid "The requirement document should contain sets of name/link pairs."
217msgstr "В этом документе требование должно содержать наборы пар имя/ссылка."
218
219#. description
220#: ../jobs/resource.pxu:279
221msgid ""
222"Each requirement should have two keys with their respective values: name: "
223"(to be used as the anchor text) link: (the actual URL)"
224msgstr ""
225"Каждое требование должно иметь два ключа с соответствующими значениями: имя: "
226"(для использования в качестве якорного текста) ссылка: (фактический адрес)"
227
228#. description
229#: ../jobs/resource.pxu:279
230msgid "Each set should be separated from the previous one by a new line."
231msgstr "Каждый набор должен быть отделен от предыдущего новой линии."
232
233#. description
234#: ../jobs/resource.pxu:279
235msgid "Example:"
236msgstr "Пример:"
237
238#. description
239#: ../jobs/resource.pxu:279
240msgid "name: Requirement 1 link: http://example.com/requirement1"
241msgstr "name: Requirement 1 link: http://example.com/requirement1"
242
243#. description
244#: ../jobs/resource.pxu:279
245msgid "name: requirement 2 link: http://example.com/requirement2"
246msgstr "name: requirement 2 link: http://example.com/requirement2"
247
248#. description
249#: ../jobs/resource.pxu:279
250msgid ""
251"Providers wishing to use this feature need to: 1- Write a job that places a "
252"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
253"whitelists to run that job *before* miscellanea/submission-resources\n"
254" or the \"requirements\" resource job."
255msgstr ""
256
257#. description
258#: ../jobs/resource.pxu:307
259msgid "Generate an entry for each graphics card present in the system."
260msgstr ""
261
262#. description
263#: ../jobs/resource.pxu:313
264msgid "Resources to gather system information"
265msgstr "Ресурсы для сбора информации о системе"
266
267#. summary
268#: ../jobs/resource.pxu:314
269msgid "Resources"
270msgstr "Ресурсы"
271
272#. description
273#: ../jobs/resource.pxu:323
274msgid "Generate an entry for each FWTS test available"
275msgstr ""
276
277#. description
278#: ../jobs/resource.pxu:331
279msgid "Generate an entry for each MIR integration tests"
280msgstr ""
281
282#: ../manage.py:48
283msgid "PlainBox resources provider"
284msgstr "Поставщик ресурсов PlainBox"
diff --git a/po/ug.po b/po/ug.po
285deleted file mode 1006440deleted file mode 100644
index 02e35b2..0000000
--- a/po/ug.po
+++ /dev/null
@@ -1,281 +0,0 @@
1# Uyghur translation for checkbox
2# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015
3# This file is distributed under the same license as the checkbox package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2016-03-07 15:06+0800\n"
11"PO-Revision-Date: 2015-10-28 14:23+0000\n"
12"Last-Translator: Eltikin <eltikinuyghur@hotmail.com>\n"
13"Language-Team: Uyghur <ug@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2016-09-28 05:53+0000\n"
18"X-Generator: Launchpad (build 18204)\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr ""
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr ""
29
30#. summary
31#: ../jobs/resource.pxu:76
32msgid "Collect information about installation media (casper)"
33msgstr ""
34
35#. description
36#: ../jobs/resource.pxu:77
37msgid "Gets installation info from casper.log and media-info"
38msgstr ""
39
40#. summary
41#: ../jobs/resource.pxu:84
42msgid "Collect information about dpkg version"
43msgstr ""
44
45#. description
46#: ../jobs/resource.pxu:85
47msgid "Gets info on the version of dpkg installed"
48msgstr ""
49
50#. description
51#: ../jobs/resource.pxu:92
52msgid "Generates resource info from gconf settings"
53msgstr ""
54
55#. summary
56#: ../jobs/resource.pxu:93
57msgid "Collect information about software configuration (gconf)"
58msgstr ""
59
60#. description
61#: ../jobs/resource.pxu:100
62msgid "Generates release info based on /etc/lsb-release"
63msgstr ""
64
65#. summary
66#: ../jobs/resource.pxu:101
67msgid "Collect information about installed system (lsb-release)"
68msgstr ""
69
70#. description
71#: ../jobs/resource.pxu:107
72msgid "Generates resource info based on /proc/meminfo"
73msgstr ""
74
75#. summary
76#: ../jobs/resource.pxu:108
77msgid "Collect information about system memory (/proc/meminfo)"
78msgstr ""
79
80#. description
81#: ../jobs/resource.pxu:114
82msgid "Generates resources info on running kernel modules"
83msgstr ""
84
85#. summary
86#: ../jobs/resource.pxu:115
87msgid "Collect information about kernel modules"
88msgstr ""
89
90#. description
91#: ../jobs/resource.pxu:123
92msgid "Generates a list of packages"
93msgstr ""
94
95#. summary
96#: ../jobs/resource.pxu:124
97msgid "Collect information about installed software packages"
98msgstr ""
99
100#. summary
101#: ../jobs/resource.pxu:129
102msgid "Enumerate available system executables"
103msgstr ""
104
105#. description
106#: ../jobs/resource.pxu:130
107msgid "Generates a resource for all available executables"
108msgstr ""
109
110#. description
111#: ../jobs/resource.pxu:140
112msgid "Creates resource info from udev"
113msgstr ""
114
115#. summary
116#: ../jobs/resource.pxu:141
117msgid "Collect information about hardware devices (udev)"
118msgstr ""
119
120#. summary
121#: ../jobs/resource.pxu:149
122msgid "Collect unfiltered udev data"
123msgstr ""
124
125#. description
126#: ../jobs/resource.pxu:150
127msgid ""
128"This job collects the udev database in mostly raw format. The only "
129"transformations applied are basic changes to make the format compatible with "
130"RFC822 syntax required by PlainBox."
131msgstr ""
132
133#. summary
134#: ../jobs/resource.pxu:161
135msgid "Collect information about hardware devices (DMI)"
136msgstr ""
137
138#. description
139#: ../jobs/resource.pxu:173
140msgid "Creates resource info from uname output"
141msgstr ""
142
143#. summary
144#: ../jobs/resource.pxu:174
145msgid "Collect information about the running kernel"
146msgstr ""
147
148#. description
149#: ../jobs/resource.pxu:180
150msgid "Create resource info for supported sleep states"
151msgstr ""
152
153#. description
154#: ../jobs/resource.pxu:189
155msgid "Create resource info for supported optical actions ({name})"
156msgstr ""
157
158#. description
159#: ../jobs/resource.pxu:196
160msgid "Create resource info for removable block devices"
161msgstr ""
162
163#. description
164#: ../jobs/resource.pxu:203
165msgid "Creates display resource info from xrandr output"
166msgstr ""
167
168#. description
169#: ../jobs/resource.pxu:208
170msgid "Creates resource info for supported USB versions"
171msgstr ""
172
173#. summary
174#: ../jobs/resource.pxu:209
175msgid "Collect information about supported types of USB"
176msgstr ""
177
178#. description
179#: ../jobs/resource.pxu:221
180msgid "Creates resource info from xinput output."
181msgstr ""
182
183#. description
184#: ../jobs/resource.pxu:226
185msgid "Create resource info for environment variables"
186msgstr ""
187
188#. description
189#: ../jobs/resource.pxu:236
190msgid "Create resource for mobile broadband devices"
191msgstr ""
192
193#. description
194#: ../jobs/resource.pxu:243
195msgid "Resource for hardware virtualization"
196msgstr ""
197
198#. description
199#: ../jobs/resource.pxu:256
200msgid "Creates resource info for wifi supported protocols/interfaces"
201msgstr ""
202
203#. description
204#: ../jobs/resource.pxu:268
205msgid "Creates resource info for RTC"
206msgstr ""
207
208#. description
209#: ../jobs/resource.pxu:279
210msgid "Provide links to requirements documents."
211msgstr ""
212
213#. description
214#: ../jobs/resource.pxu:279
215msgid "The requirement document should contain sets of name/link pairs."
216msgstr ""
217
218#. description
219#: ../jobs/resource.pxu:279
220msgid ""
221"Each requirement should have two keys with their respective values: name: "
222"(to be used as the anchor text) link: (the actual URL)"
223msgstr ""
224
225#. description
226#: ../jobs/resource.pxu:279
227msgid "Each set should be separated from the previous one by a new line."
228msgstr ""
229
230#. description
231#: ../jobs/resource.pxu:279
232msgid "Example:"
233msgstr "مىسال:"
234
235#. description
236#: ../jobs/resource.pxu:279
237msgid "name: Requirement 1 link: http://example.com/requirement1"
238msgstr ""
239
240#. description
241#: ../jobs/resource.pxu:279
242msgid "name: requirement 2 link: http://example.com/requirement2"
243msgstr ""
244
245#. description
246#: ../jobs/resource.pxu:279
247msgid ""
248"Providers wishing to use this feature need to: 1- Write a job that places a "
249"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
250"whitelists to run that job *before* miscellanea/submission-resources\n"
251" or the \"requirements\" resource job."
252msgstr ""
253
254#. description
255#: ../jobs/resource.pxu:307
256msgid "Generate an entry for each graphics card present in the system."
257msgstr ""
258
259#. description
260#: ../jobs/resource.pxu:313
261msgid "Resources to gather system information"
262msgstr ""
263
264#. summary
265#: ../jobs/resource.pxu:314
266msgid "Resources"
267msgstr ""
268
269#. description
270#: ../jobs/resource.pxu:323
271msgid "Generate an entry for each FWTS test available"
272msgstr ""
273
274#. description
275#: ../jobs/resource.pxu:331
276msgid "Generate an entry for each MIR integration tests"
277msgstr ""
278
279#: ../manage.py:48
280msgid "PlainBox resources provider"
281msgstr ""
diff --git a/po/zh_TW.po b/po/zh_TW.po
282deleted file mode 1006440deleted file mode 100644
index e26c1ad..0000000
--- a/po/zh_TW.po
+++ /dev/null
@@ -1,281 +0,0 @@
1# Chinese (Traditional) translation for checkbox
2# Copyright (c) 2015 Rosetta Contributors and Canonical Ltd 2015
3# This file is distributed under the same license as the checkbox package.
4# FIRST AUTHOR <EMAIL@ADDRESS>, 2015.
5#
6msgid ""
7msgstr ""
8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2016-03-07 15:06+0800\n"
11"PO-Revision-Date: 2016-06-17 03:28+0000\n"
12"Last-Translator: Po-Hsu Lin <po-hsu.lin@canonical.com>\n"
13"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2016-09-28 05:53+0000\n"
18"X-Generator: Launchpad (build 18204)\n"
19
20#. summary
21#: ../jobs/resource.pxu:68
22msgid "Collect information about the CPU"
23msgstr "收集關於 CPU 的資訊"
24
25#. description
26#: ../jobs/resource.pxu:69
27msgid "Gets CPU resource info from /proc/cpuinfo"
28msgstr "自 /proc/cpuinfo 取得 CPU 資訊"
29
30#. summary
31#: ../jobs/resource.pxu:76
32msgid "Collect information about installation media (casper)"
33msgstr ""
34
35#. description
36#: ../jobs/resource.pxu:77
37msgid "Gets installation info from casper.log and media-info"
38msgstr "由 casper.log 及 media-info 取得安裝資訊"
39
40#. summary
41#: ../jobs/resource.pxu:84
42msgid "Collect information about dpkg version"
43msgstr "收集關於 dpkg 的版本資訊"
44
45#. description
46#: ../jobs/resource.pxu:85
47msgid "Gets info on the version of dpkg installed"
48msgstr ""
49
50#. description
51#: ../jobs/resource.pxu:92
52msgid "Generates resource info from gconf settings"
53msgstr ""
54
55#. summary
56#: ../jobs/resource.pxu:93
57msgid "Collect information about software configuration (gconf)"
58msgstr ""
59
60#. description
61#: ../jobs/resource.pxu:100
62msgid "Generates release info based on /etc/lsb-release"
63msgstr ""
64
65#. summary
66#: ../jobs/resource.pxu:101
67msgid "Collect information about installed system (lsb-release)"
68msgstr ""
69
70#. description
71#: ../jobs/resource.pxu:107
72msgid "Generates resource info based on /proc/meminfo"
73msgstr ""
74
75#. summary
76#: ../jobs/resource.pxu:108
77msgid "Collect information about system memory (/proc/meminfo)"
78msgstr ""
79
80#. description
81#: ../jobs/resource.pxu:114
82msgid "Generates resources info on running kernel modules"
83msgstr ""
84
85#. summary
86#: ../jobs/resource.pxu:115
87msgid "Collect information about kernel modules"
88msgstr "收集關於核心模組的資訊"
89
90#. description
91#: ../jobs/resource.pxu:123
92msgid "Generates a list of packages"
93msgstr "產生套件列表"
94
95#. summary
96#: ../jobs/resource.pxu:124
97msgid "Collect information about installed software packages"
98msgstr ""
99
100#. summary
101#: ../jobs/resource.pxu:129
102msgid "Enumerate available system executables"
103msgstr ""
104
105#. description
106#: ../jobs/resource.pxu:130
107msgid "Generates a resource for all available executables"
108msgstr ""
109
110#. description
111#: ../jobs/resource.pxu:140
112msgid "Creates resource info from udev"
113msgstr ""
114
115#. summary
116#: ../jobs/resource.pxu:141
117msgid "Collect information about hardware devices (udev)"
118msgstr ""
119
120#. summary
121#: ../jobs/resource.pxu:149
122msgid "Collect unfiltered udev data"
123msgstr "收集未過濾的 udev 資料"
124
125#. description
126#: ../jobs/resource.pxu:150
127msgid ""
128"This job collects the udev database in mostly raw format. The only "
129"transformations applied are basic changes to make the format compatible with "
130"RFC822 syntax required by PlainBox."
131msgstr ""
132
133#. summary
134#: ../jobs/resource.pxu:161
135msgid "Collect information about hardware devices (DMI)"
136msgstr ""
137
138#. description
139#: ../jobs/resource.pxu:173
140msgid "Creates resource info from uname output"
141msgstr ""
142
143#. summary
144#: ../jobs/resource.pxu:174
145msgid "Collect information about the running kernel"
146msgstr ""
147
148#. description
149#: ../jobs/resource.pxu:180
150msgid "Create resource info for supported sleep states"
151msgstr ""
152
153#. description
154#: ../jobs/resource.pxu:189
155msgid "Create resource info for supported optical actions ({name})"
156msgstr ""
157
158#. description
159#: ../jobs/resource.pxu:196
160msgid "Create resource info for removable block devices"
161msgstr ""
162
163#. description
164#: ../jobs/resource.pxu:203
165msgid "Creates display resource info from xrandr output"
166msgstr ""
167
168#. description
169#: ../jobs/resource.pxu:208
170msgid "Creates resource info for supported USB versions"
171msgstr ""
172
173#. summary
174#: ../jobs/resource.pxu:209
175msgid "Collect information about supported types of USB"
176msgstr ""
177
178#. description
179#: ../jobs/resource.pxu:221
180msgid "Creates resource info from xinput output."
181msgstr ""
182
183#. description
184#: ../jobs/resource.pxu:226
185msgid "Create resource info for environment variables"
186msgstr ""
187
188#. description
189#: ../jobs/resource.pxu:236
190msgid "Create resource for mobile broadband devices"
191msgstr ""
192
193#. description
194#: ../jobs/resource.pxu:243
195msgid "Resource for hardware virtualization"
196msgstr ""
197
198#. description
199#: ../jobs/resource.pxu:256
200msgid "Creates resource info for wifi supported protocols/interfaces"
201msgstr ""
202
203#. description
204#: ../jobs/resource.pxu:268
205msgid "Creates resource info for RTC"
206msgstr ""
207
208#. description
209#: ../jobs/resource.pxu:279
210msgid "Provide links to requirements documents."
211msgstr ""
212
213#. description
214#: ../jobs/resource.pxu:279
215msgid "The requirement document should contain sets of name/link pairs."
216msgstr ""
217
218#. description
219#: ../jobs/resource.pxu:279
220msgid ""
221"Each requirement should have two keys with their respective values: name: "
222"(to be used as the anchor text) link: (the actual URL)"
223msgstr ""
224
225#. description
226#: ../jobs/resource.pxu:279
227msgid "Each set should be separated from the previous one by a new line."
228msgstr ""
229
230#. description
231#: ../jobs/resource.pxu:279
232msgid "Example:"
233msgstr "範例:"
234
235#. description
236#: ../jobs/resource.pxu:279
237msgid "name: Requirement 1 link: http://example.com/requirement1"
238msgstr ""
239
240#. description
241#: ../jobs/resource.pxu:279
242msgid "name: requirement 2 link: http://example.com/requirement2"
243msgstr ""
244
245#. description
246#: ../jobs/resource.pxu:279
247msgid ""
248"Providers wishing to use this feature need to: 1- Write a job that places a "
249"suitably-formatted file in $PLAINBOX_SESSION_SHARE 2- Update their "
250"whitelists to run that job *before* miscellanea/submission-resources\n"
251" or the \"requirements\" resource job."
252msgstr ""
253
254#. description
255#: ../jobs/resource.pxu:307
256msgid "Generate an entry for each graphics card present in the system."
257msgstr ""
258
259#. description
260#: ../jobs/resource.pxu:313
261msgid "Resources to gather system information"
262msgstr ""
263
264#. summary
265#: ../jobs/resource.pxu:314
266msgid "Resources"
267msgstr ""
268
269#. description
270#: ../jobs/resource.pxu:323
271msgid "Generate an entry for each FWTS test available"
272msgstr ""
273
274#. description
275#: ../jobs/resource.pxu:331
276msgid "Generate an entry for each MIR integration tests"
277msgstr ""
278
279#: ../manage.py:48
280msgid "PlainBox resources provider"
281msgstr "PlainBox 資源供應包"

Subscribers

People subscribed via source and target branches