Merge lp:~roadmr/ubuntu/precise/checkbox/0.13.7 into lp:ubuntu/precise/checkbox

Proposed by Daniel Manrique
Status: Merged
Merge reported by: Mathieu Trudel-Lapierre
Merged at revision: not available
Proposed branch: lp:~roadmr/ubuntu/precise/checkbox/0.13.7
Merge into: lp:ubuntu/precise/checkbox
Diff against target: 171775 lines (+80184/-40843)
101 files modified
checkbox_qt/qt_interface.py (+18/-2)
debian/changelog (+38/-0)
debian/po/es.po (+9/-4)
jobs/local.txt.in (+8/-0)
jobs/mediacard.txt.in (+8/-8)
jobs/networking.txt.in (+2/-2)
jobs/optical.txt.in (+0/-3)
po/ace.po (+788/-406)
po/af.po (+788/-406)
po/am.po (+788/-406)
po/ar.po (+799/-410)
po/ast.po (+1158/-665)
po/az.po (+788/-406)
po/be.po (+840/-415)
po/bg.po (+827/-421)
po/bn.po (+889/-411)
po/bo.po (+820/-420)
po/br.po (+825/-419)
po/bs.po (+840/-415)
po/ca.po (+846/-422)
po/ca@valencia.po (+821/-415)
po/ckb.po (+788/-406)
po/cs.po (+1166/-440)
po/cy.po (+788/-406)
po/da.po (+852/-427)
po/de.po (+1260/-686)
po/dv.po (+788/-406)
po/el.po (+1215/-670)
po/en_AU.po (+1390/-877)
po/en_CA.po (+824/-418)
po/en_GB.po (+1377/-871)
po/eo.po (+819/-416)
po/es.po (+1261/-618)
po/et.po (+788/-406)
po/eu.po (+796/-407)
po/fa.po (+788/-406)
po/fi.po (+905/-681)
po/fr.po (+974/-501)
po/ga.po (+788/-406)
po/gd.po (+792/-410)
po/gl.po (+842/-420)
po/he.po (+868/-424)
po/hi.po (+818/-415)
po/hr.po (+823/-417)
po/hu.po (+848/-418)
po/hy.po (+788/-406)
po/id.po (+819/-419)
po/is.po (+792/-409)
po/it.po (+1197/-423)
po/ja.po (+863/-413)
po/jbo.po (+788/-406)
po/ka.po (+788/-406)
po/kk.po (+822/-416)
po/km.po (+788/-406)
po/kn.po (+788/-406)
po/ko.po (+843/-438)
po/ku.po (+788/-406)
po/ky.po (+788/-406)
po/lt.po (+823/-420)
po/lv.po (+830/-413)
po/mk.po (+788/-409)
po/ml.po (+788/-406)
po/mr.po (+788/-406)
po/ms.po (+1147/-649)
po/my.po (+788/-406)
po/nb.po (+831/-420)
po/nds.po (+788/-406)
po/ne.po (+792/-406)
po/nl.po (+1726/-629)
po/nn.po (+788/-406)
po/oc.po (+826/-414)
po/pl.po (+827/-444)
po/ps.po (+788/-406)
po/pt.po (+825/-419)
po/pt_BR.po (+1180/-620)
po/ro.po (+1199/-463)
po/ru.po (+1018/-682)
po/sd.po (+789/-407)
po/shn.po (+788/-406)
po/si.po (+788/-406)
po/sk.po (+820/-445)
po/sl.po (+1174/-485)
po/sq.po (+841/-416)
po/sr.po (+826/-411)
po/sv.po (+840/-418)
po/ta.po (+788/-406)
po/te.po (+788/-406)
po/th.po (+821/-418)
po/tr.po (+1220/-443)
po/ug.po (+1123/-652)
po/uk.po (+844/-443)
po/ur.po (+788/-406)
po/uz.po (+788/-406)
po/vi.po (+821/-415)
po/zh_CN.po (+820/-414)
po/zh_HK.po (+816/-413)
po/zh_TW.po (+834/-425)
qt/checkbox-qt.ui (+2/-2)
qt/frontend/qtfront.cpp (+8/-3)
qt/frontend/qtfront.h (+4/-2)
qt/frontend/qtfront.ui (+3/-3)
To merge this branch: bzr merge lp:~roadmr/ubuntu/precise/checkbox/0.13.7
Reviewer Review Type Date Requested Status
Mathieu Trudel-Lapierre Approve
Review via email: mp+101783@code.launchpad.net

Description of the change

Resubmitting this branch :)

This contains 7 bugfixes for checkbox, bug 971181 has a UIFe that has been OKd by the translations and release team.

Thanks!

To post a comment you must log in.
Revision history for this message
Mathieu Trudel-Lapierre (cyphermox) wrote :

Looks good, sponsoring.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'checkbox_qt/qt_interface.py'
--- checkbox_qt/qt_interface.py 2012-03-21 02:22:11 +0000
+++ checkbox_qt/qt_interface.py 2012-04-12 17:38:18 +0000
@@ -216,10 +216,26 @@
216 return False216 return False
217217
218 def show_info(self, text, options=[], default=None):218 def show_info(self, text, options=[], default=None):
219 return self.qtiface.showInfo(text, options, default)219 def onInfoBoxResult(result):
220 self.infoResult = str(result)
221 self.loop.quit()
222
223 self.qtiface.showInfo(text, options, default,
224 reply_handler=dummy_handle_reply,
225 error_handler=dummy_handle_error)
226 self.wait_on_signals(
227 infoBoxResult=onInfoBoxResult)
228 return self.infoResult
220229
221 def show_error(self, text):230 def show_error(self, text):
222 self.qtiface.showError(text)231 def onErrorBoxClosed():
232 self.loop.quit()
233
234 self.qtiface.showError(text,
235 reply_handler=dummy_handle_reply,
236 error_handler=dummy_handle_error)
237 self.wait_on_signals(
238 errorBoxClosed=onErrorBoxClosed)
223239
224 def wait_on_signals(self, **signals):240 def wait_on_signals(self, **signals):
225 for name, function in signals.iteritems():241 for name, function in signals.iteritems():
226242
=== modified file 'debian/changelog'
--- debian/changelog 2012-04-02 15:22:05 +0000
+++ debian/changelog 2012-04-12 17:38:18 +0000
@@ -1,3 +1,41 @@
1checkbox (0.13.7) precise; urgency=low
2
3 * New upstream release (LP: #980063)
4
5 * Automated translation file updates from Launchpad
6
7 [Jeff Lane]
8 * qt/checkbox-qt.ui, qt/frontend/qtfront.cpp: Converted
9 submissionWarningLabel and text to submissionUbuntuFriendlyLabel wtih
10 instructional text for submitting results. This is a workaround for the
11 bug causing the warning to be displayed at all times rather than only when
12 testing is incomplete. (LP: #967457)
13 * jobs/networking.txt.in: Removed dhclient call from networking/multi_nic
14 tests because of a bug in dhclient that can cause it to hang when run on
15 eth0. New test requirement will be that the tester must configure and
16 bring up all ethernet devices prior to running checkbox. Also added a
17 check to make sure we're not trying to run the test on a device that's not
18 active. (LP: #926229)
19
20 [Tiago Salem Herrmann]
21 * checkbox_qt/qt_interface.py, qt/frontend/qtfront.cpp,
22 qt/frontend/qtfront.h: Do async calls to some ui methods and avoid
23 unexpected dbus timeouts (LP: #962333)
24
25 [Sylvain Pineau]
26 * qt/frontend/qtfront.cpp: Submit/View results buttons are disabled until
27 every selected test has been run (LP: #937715)
28
29 [Daniel Manrique]
30 * jobs/optical.txt.in: Change test descriptions to avoid confusing
31 instruction to press the "Next" button (which is incorrect). (LP: #971181)
32 * jobs/local.txt.in: Fixed touchpad local job which was using suspend.txt
33 as the job source) (LP: #979344)
34 * jobs/mediacards.txt.in: Added usb and scsi devices to
35 removable_storage_test commands (LP: #979356)
36
37 -- Daniel Manrique <roadmr@ubuntu.com> Wed, 11 Apr 2012 17:20:37 -0400
38
1checkbox (0.13.6) precise; urgency=low39checkbox (0.13.6) precise; urgency=low
240
3 * New upstream release (LP: #971889)41 * New upstream release (LP: #971889)
442
=== modified file 'debian/po/es.po'
--- debian/po/es.po 2012-04-02 15:22:05 +0000
+++ debian/po/es.po 2012-04-12 17:38:18 +0000
@@ -8,15 +8,15 @@
8"Project-Id-Version: checkbox\n"8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: checkbox@packages.debian.org\n"9"Report-Msgid-Bugs-To: checkbox@packages.debian.org\n"
10"POT-Creation-Date: 2011-03-29 15:19+0200\n"10"POT-Creation-Date: 2011-03-29 15:19+0200\n"
11"PO-Revision-Date: 2012-03-22 08:33+0000\n"11"PO-Revision-Date: 2012-04-06 14:01+0000\n"
12"Last-Translator: Fitoschido <fitoschido@gmail.com>\n"12"Last-Translator: Daniel Manrique <daniel.manrique@canonical.com>\n"
13"Language-Team: Spanish <es@li.org>\n"13"Language-Team: Spanish <es@li.org>\n"
14"Language: es\n"14"Language: es\n"
15"MIME-Version: 1.0\n"15"MIME-Version: 1.0\n"
16"Content-Type: text/plain; charset=UTF-8\n"16"Content-Type: text/plain; charset=UTF-8\n"
17"Content-Transfer-Encoding: 8bit\n"17"Content-Transfer-Encoding: 8bit\n"
18"X-Launchpad-Export-Date: 2012-03-23 04:35+0000\n"18"X-Launchpad-Export-Date: 2012-04-07 04:33+0000\n"
19"X-Generator: Launchpad (build 14996)\n"19"X-Generator: Launchpad (build 15060)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
@@ -47,6 +47,9 @@
47"When filing a new bug through checkbox, if it does not guess the package, "47"When filing a new bug through checkbox, if it does not guess the package, "
48"the default package that the bug will be file against."48"the default package that the bug will be file against."
49msgstr ""49msgstr ""
50"Cuando se reporta un error a través de Comprobación del Sistema, si no se "
51"logra determinar automáticamente el paquete, éste es el paquete contra el "
52"cual se reportará el error."
5053
51#. Type: string54#. Type: string
52#. Description55#. Description
@@ -59,6 +62,8 @@
59#: ../checkbox.templates:300162#: ../checkbox.templates:3001
60msgid "List of job files to never run when testing with checkbox."63msgid "List of job files to never run when testing with checkbox."
61msgstr ""64msgstr ""
65"Lista de archivos de trabajo a no ejecutar cuando se prueba con Comprobación "
66"del Sistema."
6267
63#. Type: string68#. Type: string
64#. Description69#. Description
6570
=== modified file 'jobs/local.txt.in'
--- jobs/local.txt.in 2012-03-07 19:46:29 +0000
+++ jobs/local.txt.in 2012-04-12 17:38:18 +0000
@@ -229,6 +229,13 @@
229 shopt -s extglob229 shopt -s extglob
230 cat $CHECKBOX_SHARE/jobs/suspend.txt?(.in)230 cat $CHECKBOX_SHARE/jobs/suspend.txt?(.in)
231231
232name: __touchpad__
233plugin: local
234_description: Touchpad tests
235command:
236 shopt -s extglob
237 cat $CHECKBOX_SHARE/jobs/touchpad.txt?(.in)
238
232name: __unity__239name: __unity__
233plugin: local240plugin: local
234_description: Unity tests241_description: Unity tests
@@ -263,3 +270,4 @@
263command:270command:
264 shopt -s extglob271 shopt -s extglob
265 cat $CHECKBOX_SHARE/jobs/stress.txt?(.in)272 cat $CHECKBOX_SHARE/jobs/stress.txt?(.in)
273
266274
=== modified file 'jobs/mediacard.txt.in'
--- jobs/mediacard.txt.in 2012-03-21 02:22:11 +0000
+++ jobs/mediacard.txt.in 2012-04-12 17:38:18 +0000
@@ -16,7 +16,7 @@
16plugin: shell16plugin: shell
17name: mediacard/mmc-storage17name: mediacard/mmc-storage
18depends: mediacard/mmc-insert18depends: mediacard/mmc-insert
19command: removable_storage_test sdio19command: removable_storage_test sdio usb scsi
20_description:20_description:
21 This test is automated and executes after the mediacard/mmc-insert21 This test is automated and executes after the mediacard/mmc-insert
22 test is run. It tests reading and writing to the MMC card.22 test is run. It tests reading and writing to the MMC card.
@@ -55,7 +55,7 @@
55plugin: shell55plugin: shell
56name: mediacard/mmc-storage-after-suspend56name: mediacard/mmc-storage-after-suspend
57depends: mediacard/mmc-insert-after-suspend57depends: mediacard/mmc-insert-after-suspend
58command: removable_storage_test sdio58command: removable_storage_test sdio usb scsi
59_description:59_description:
60 This test is automated and executes after the mediacard/mmc-insert-after-suspend test60 This test is automated and executes after the mediacard/mmc-insert-after-suspend test
61 is run. It tests reading and writing to the MMC card after the system has been suspended.61 is run. It tests reading and writing to the MMC card after the system has been suspended.
@@ -93,7 +93,7 @@
93plugin: shell93plugin: shell
94name: mediacard/sd-storage94name: mediacard/sd-storage
95depends: mediacard/sd-insert95depends: mediacard/sd-insert
96command: removable_storage_test sdio96command: removable_storage_test sdio usb scsi
97_description:97_description:
98 This test is automated and executes after the mediacard/sd-insert98 This test is automated and executes after the mediacard/sd-insert
99 test is run. It tests reading and writing to the SD card.99 test is run. It tests reading and writing to the SD card.
@@ -132,7 +132,7 @@
132plugin: shell132plugin: shell
133name: mediacard/sd-storage-after-suspend133name: mediacard/sd-storage-after-suspend
134depends: mediacard/sd-insert-after-suspend134depends: mediacard/sd-insert-after-suspend
135command: removable_storage_test sdio135command: removable_storage_test sdio usb scsi
136_description:136_description:
137 This test is automated and executes after the mediacard/sd-insert-after-suspend test137 This test is automated and executes after the mediacard/sd-insert-after-suspend test
138 is run. It tests reading and writing to the SD card after the system has been suspended.138 is run. It tests reading and writing to the SD card after the system has been suspended.
@@ -170,7 +170,7 @@
170plugin: shell170plugin: shell
171name: mediacard/sdhc-storage171name: mediacard/sdhc-storage
172depends: mediacard/sdhc-insert172depends: mediacard/sdhc-insert
173command: removable_storage_test sdio173command: removable_storage_test sdio usb scsi
174_description:174_description:
175 This test is automated and executes after the mediacard/sdhc-insert175 This test is automated and executes after the mediacard/sdhc-insert
176 test is run. It tests reading and writing to the SDHC card.176 test is run. It tests reading and writing to the SDHC card.
@@ -209,7 +209,7 @@
209plugin: shell209plugin: shell
210name: mediacard/sdhc-storage-after-suspend210name: mediacard/sdhc-storage-after-suspend
211depends: mediacard/sdhc-insert-after-suspend211depends: mediacard/sdhc-insert-after-suspend
212command: removable_storage_test sdio212command: removable_storage_test sdio usb scsi
213_description:213_description:
214 This test is automated and executes after the mediacard/sdhc-insert-after-suspend test214 This test is automated and executes after the mediacard/sdhc-insert-after-suspend test
215 is run. It tests reading and writing to the SDHC card after the system has been suspended.215 is run. It tests reading and writing to the SDHC card after the system has been suspended.
@@ -247,7 +247,7 @@
247plugin: shell247plugin: shell
248name: mediacard/cf-storage248name: mediacard/cf-storage
249depends: mediacard/cf-insert249depends: mediacard/cf-insert
250command: removable_storage_test sdio250command: removable_storage_test sdio usb scsi
251_description:251_description:
252 This test is automated and executes after the mediacard/cf-insert252 This test is automated and executes after the mediacard/cf-insert
253 test is run. It tests reading and writing to the CF card.253 test is run. It tests reading and writing to the CF card.
@@ -286,7 +286,7 @@
286plugin: shell286plugin: shell
287name: mediacard/cf-storage-after-suspend287name: mediacard/cf-storage-after-suspend
288depends: mediacard/cf-insert-after-suspend288depends: mediacard/cf-insert-after-suspend
289command: removable_storage_test sdio289command: removable_storage_test sdio usb scsi
290_description:290_description:
291 This test is automated and executes after the mediacard/cf-insert-after-suspend test291 This test is automated and executes after the mediacard/cf-insert-after-suspend test
292 is run. It tests reading and writing to the CF card after the system has been suspended.292 is run. It tests reading and writing to the CF card after the system has been suspended.
293293
=== modified file 'jobs/networking.txt.in'
--- jobs/networking.txt.in 2012-02-15 00:11:21 +0000
+++ jobs/networking.txt.in 2012-04-12 17:38:18 +0000
@@ -110,9 +110,9 @@
110 cat <<'EOF' | run_templates -s 'udev_resource | filter_templates -w "category=NETWORK" | awk "/path: / { print \$2 }" | xargs -n 1 sh -c "for i in \`ls /sys\$0/net 2>/dev/null\`; do echo \$0 \$i; done"'110 cat <<'EOF' | run_templates -s 'udev_resource | filter_templates -w "category=NETWORK" | awk "/path: / { print \$2 }" | xargs -n 1 sh -c "for i in \`ls /sys\$0/net 2>/dev/null\`; do echo \$0 \$i; done"'
111 plugin: shell111 plugin: shell
112 name: networking/multi_nic_$2112 name: networking/multi_nic_$2
113 requires: device.path == "$1" and package.name == 'linux'113 requires: device.path == "$1" and package.name == 'linux' and package.name == 'ethtool'
114 user: root114 user: root
115 command: dhclient $2; network_bandwidth_test --interface=$2 --scan=3 --log-level=debug115 command: ethtool $2 | tail -1 | grep "detected: yes" && network_bandwidth_test --interface=$2 --scan=3 --log-level=debug
116 description:116 description:
117 Testing for NIC $2117 Testing for NIC $2
118 EOF118 EOF
119119
=== modified file 'jobs/optical.txt.in'
--- jobs/optical.txt.in 2012-03-21 02:22:11 +0000
+++ jobs/optical.txt.in 2012-04-12 17:38:18 +0000
@@ -20,7 +20,6 @@
20 1. Insert appropriate non-blank media into your optical drive(s). Movie and Audio Disks may not work. Self-created data disks have the greatest chance of working.20 1. Insert appropriate non-blank media into your optical drive(s). Movie and Audio Disks may not work. Self-created data disks have the greatest chance of working.
21 2. If a file browser window opens, you can safely close or ignore that window.21 2. If a file browser window opens, you can safely close or ignore that window.
22 3. Click "Test" to being the test.22 3. Click "Test" to being the test.
23 4. When the test completes, proceed by clicking "Next"
24 VERIFICATION:23 VERIFICATION:
25 This test should automatically select "Yes" if it passes, "No" if it fails.24 This test should automatically select "Yes" if it passes, "No" if it fails.
2625
@@ -38,7 +37,6 @@
38 1. Enter a blank CD-R into your drive37 1. Enter a blank CD-R into your drive
39 2. Click "Test" to begin.38 2. Click "Test" to begin.
40 3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 10 seconds or the test will time out.39 3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 10 seconds or the test will time out.
41 4. When the test completes, proceed by clicking "Next"
42 VERIFICATION:40 VERIFICATION:
43 This test should automatically select "Yes" if it passes, "No" if it fails.41 This test should automatically select "Yes" if it passes, "No" if it fails.
4442
@@ -75,7 +73,6 @@
75 1. Enter a blank DVD-R into your drive73 1. Enter a blank DVD-R into your drive
76 2. Click "Test" to begin.74 2. Click "Test" to begin.
77 3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 10 seconds or the test will time out.75 3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 10 seconds or the test will time out.
78 4. When the test completes, proceed by clicking "Next"
79 VERIFICATION:76 VERIFICATION:
80 This test should automatically select "Yes" if it passes, "No" if it fails.77 This test should automatically select "Yes" if it passes, "No" if it fails.
8178
8279
=== modified file 'po/ace.po'
--- po/ace.po 2012-03-21 02:22:11 +0000
+++ po/ace.po 2012-04-12 17:38:18 +0000
@@ -7,40 +7,40 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: checkbox\n"8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-01-06 12:39-0500\n"10"POT-Creation-Date: 2012-03-28 10:50-0400\n"
11"PO-Revision-Date: 2011-07-19 16:37+0000\n"11"PO-Revision-Date: 2011-07-19 16:37+0000\n"
12"Last-Translator: Benny Alfian <Unknown>\n"12"Last-Translator: Benny Alfian <Unknown>\n"
13"Language-Team: Acehnese <ace@li.org>\n"13"Language-Team: Acehnese <ace@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"17"X-Launchpad-Export-Date: 2012-04-03 04:37+0000\n"
18"X-Generator: Launchpad (build 14933)\n"18"X-Generator: Launchpad (build 15052)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:44420#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26721#: ../checkbox_urwid/urwid_interface.py:267
22msgid "Further information:"22msgid "Further information:"
23msgstr "Informasi leubeh lanjot:"23msgstr "Informasi leubeh lanjot:"
2424
25#: ../gtk/checkbox-gtk.ui.h:1025#: ../gtk/checkbox-gtk.ui.h:2
26msgid "Ne_xt"26msgid "Ne_xt"
27msgstr "Neul_anjot"27msgstr "Neul_anjot"
2828
29#. Title of the user interface29#. Title of the user interface
30#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:3 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4231#: ../plugins/user_interface.py:43 ../qt/frontend/ui_qtfront.h:589
32msgid "System Testing"32msgid "System Testing"
33msgstr "Neu uji Sistem"33msgstr "Neu uji Sistem"
3434
35#: ../gtk/checkbox-gtk.ui.h:835#: ../gtk/checkbox-gtk.ui.h:4
36msgid "_Deselect All"36msgid "_Deselect All"
37msgstr "Peug_adoh Bandum"37msgstr "Peug_adoh Bandum"
3838
39#: ../gtk/checkbox-gtk.ui.h:439#: ../gtk/checkbox-gtk.ui.h:5
40msgid "_No"40msgid "_No"
41msgstr "_Kon"41msgstr "_Kon"
4242
43#: ../gtk/checkbox-gtk.ui.h:943#: ../gtk/checkbox-gtk.ui.h:6
44msgid "_Previous"44msgid "_Previous"
45msgstr "_Sigohlom jih"45msgstr "_Sigohlom jih"
4646
@@ -48,15 +48,15 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr "_Pileeh Bandum"49msgstr "_Pileeh Bandum"
5050
51#: ../gtk/checkbox-gtk.ui.h:551#: ../gtk/checkbox-gtk.ui.h:8
52msgid "_Skip this test"52msgid "_Skip this test"
53msgstr "_Neupeuliwat uji nyoe"53msgstr "_Neupeuliwat uji nyoe"
5454
55#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:53855#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:553
56msgid "_Test"56msgid "_Test"
57msgstr "_Uji"57msgstr "_Uji"
5858
59#: ../gtk/checkbox-gtk.ui.h:359#: ../gtk/checkbox-gtk.ui.h:10
60msgid "_Yes"60msgid "_Yes"
61msgstr "Ny_oe"61msgstr "Ny_oe"
6262
@@ -130,12 +130,8 @@
130" This test will check that a USB audio device works correctly\n"130" This test will check that a USB audio device works correctly\n"
131"STEPS:\n"131"STEPS:\n"
132" 1. Connect a USB audio device to your system\n"132" 1. Connect a USB audio device to your system\n"
133" 2. Open the volume control application by left-clicking on the speaker "133" 2. Click \"Test\", then speak into the microphone\n"
134"icon in the panel and selecting \"Sound Settings\"\n"134" 3. After a few seconds, your speech will be played back to you\n"
135" 3. Select the \"Input\" tab and choose your USB device\n"
136" 4. Select the \"Output\" tab and choose your USB device\n"
137" 5. Click \"Test\", then speak into the microphone\n"
138" 6. After a few seconds, your speech will be played back to you\n"
139"VERIFICATION:\n"135"VERIFICATION:\n"
140" Did you hear your speech played back through the USB headphones?"136" Did you hear your speech played back through the USB headphones?"
141msgstr ""137msgstr ""
@@ -157,13 +153,6 @@
157msgstr ""153msgstr ""
158154
159#. description155#. description
160#: ../jobs/bluetooth.txt.in:7
161msgid ""
162"This test will detect your Bluetooth device and output the device's hardware "
163"address. If no device is found, the test will exit with an error."
164msgstr ""
165
166#. description
167#: ../jobs/bluetooth.txt.in:8156#: ../jobs/bluetooth.txt.in:8
168msgid ""157msgid ""
169"Automated test to store bluetooth device information in checkbox report"158"Automated test to store bluetooth device information in checkbox report"
@@ -264,7 +253,8 @@
264"PURPOSE:\n"253"PURPOSE:\n"
265" This test will check that the built-in camera works\n"254" This test will check that the built-in camera works\n"
266"STEPS:\n"255"STEPS:\n"
267" 1. Click on Test to display a video capture from the camera\n"256" 1. Click on Test to display a video capture from the camera for ten "
257"seconds.\n"
268"VERIFICATION:\n"258"VERIFICATION:\n"
269" Did you see the video capture?"259" Did you see the video capture?"
270msgstr ""260msgstr ""
@@ -281,19 +271,6 @@
281msgstr ""271msgstr ""
282272
283#. description273#. description
284#: ../jobs/camera.txt.in:49
285msgid ""
286"PURPOSE:\n"
287" This test will check that you can capture video with the built-in "
288"camera\n"
289"STEPS:\n"
290" 1. Click on Test to capture video to a file (it will automatically open "
291"in Totem)\n"
292"VERIFICATION:\n"
293" Did you see and hear the capture?"
294msgstr ""
295
296#. description
297#: ../jobs/codecs.txt.in:7274#: ../jobs/codecs.txt.in:7
298msgid ""275msgid ""
299"PURPOSE:\n"276"PURPOSE:\n"
@@ -406,7 +383,12 @@
406383
407#. description384#. description
408#: ../jobs/disk.txt.in:9385#: ../jobs/disk.txt.in:9
409msgid "Benchmark for each disk "386msgid "Benchmark for each disk"
387msgstr ""
388
389#. description
390#: ../jobs/disk.txt.in:23
391msgid "Check stats changes for each disk"
410msgstr ""392msgstr ""
411393
412#. description394#. description
@@ -472,18 +454,42 @@
472msgstr ""454msgstr ""
473455
474#. description456#. description
475#: ../jobs/firewire.txt.in:3457#: ../jobs/firewire.txt.in:4
476msgid ""458msgid ""
477"PURPOSE:\n"459"PURPOSE:\n"
478" This test will check that the firewire port works\n"460" This test will check the system can detect the insertion of a FireWire "
461"HDD\n"
479"STEPS:\n"462"STEPS:\n"
480" 1. Plug a Firewire HDD into the computer\n"463" 1. Click 'Test' to begin the test. This test will\n"
481" 2. Either a window asking which action should be performed (open folder, "464" timeout and fail if the insertion has not been detected within 10 "
482"photo manager, etc) or a file browser will open.\n"465"seconds.\n"
483" 3. Copy some files from your internal HDD to the firewire HDD\n"466" 2. Plug a FireWire HDD into an available FireWire port.\n"
484" 4. Copy some files from the firewire HDD to your internal HDD\n"
485"VERIFICATION:\n"467"VERIFICATION:\n"
486" Do the copy operations work as expected?"468" The verification of this test is automated. Do not change the "
469"automatically\n"
470" selected result"
471msgstr ""
472
473#. description
474#: ../jobs/firewire.txt.in:19
475msgid ""
476"This is an automated test which performs read/write operations on an "
477"attached FireWire HDD"
478msgstr ""
479
480#. description
481#: ../jobs/firewire.txt.in:27
482msgid ""
483" PURPOSE:\n"
484" This test will check the system can detect the removal of a FireWire HDD\n"
485" STEPS:\n"
486" 1. Click 'Test' to begin the test. This test will timeout and fail if\n"
487" the removal has not been detected within 10 seconds.\n"
488" 2. Remove the previously attached FireWire HDD from the FireWire port.\n"
489" VERIFICATION:\n"
490" The verification of this test is automated. Do not change the "
491"automatically\n"
492" selected result"
487msgstr ""493msgstr ""
488494
489#. description495#. description
@@ -587,17 +593,8 @@
587msgstr ""593msgstr ""
588594
589#. description595#. description
590#: ../jobs/graphics.txt.in:107596#: ../jobs/graphics.txt.in:106
591msgid ""597msgid "Check that VESA drivers are not in use"
592"PURPOSE:\n"
593" This test checks the detected video modes\n"
594"STEPS:\n"
595" 1. The following screens and video modes have been detected on your "
596"system\n"
597"INFO:\n"
598" $output\n"
599"VERIFICATION:\n"
600" Are those correct?"
601msgstr ""598msgstr ""
602599
603#. description600#. description
@@ -612,8 +609,13 @@
612msgstr ""609msgstr ""
613610
614#. description611#. description
612#: ../jobs/graphics.txt.in:126
613msgid "Check that hardware is able to run compiz"
614msgstr ""
615
616#. description
615#: ../jobs/graphics.txt.in:133617#: ../jobs/graphics.txt.in:133
616msgid "Check that the hardware is able to run compiz."618msgid "Check that hardware is able to run Unity 3D"
617msgstr ""619msgstr ""
618620
619#. description621#. description
@@ -631,6 +633,55 @@
631msgstr ""633msgstr ""
632634
633#. description635#. description
636#: ../jobs/graphics.txt.in:159
637msgid ""
638"PURPOSE:\n"
639" Do some challenging operations and check for lockup on the GPU\n"
640"STEPS:\n"
641" 1. Create 2 glxgears windows and move them quickly\n"
642" 2. Switch workspaces/viewports with wmctrl\n"
643" 3. Launch a Flash playback in firefox\n"
644" 4. Suspend/resume\n"
645"VERIFICATION:\n"
646" 1. Atfer a 60s workload, check kern.log for reported GPU errors"
647msgstr ""
648
649#. description
650#: ../jobs/graphics.txt.in:174
651msgid ""
652"PURPOSE:\n"
653" Take a screengrab of the current screen (logged on Unity desktop)\n"
654"STEPS:\n"
655" 1. Take picture using USB webcam\n"
656"VERIFICATION:\n"
657" 1. Review attachment manually later"
658msgstr ""
659
660#. description
661#: ../jobs/graphics.txt.in:186 ../jobs/suspend.txt.in:316
662msgid "Attaches the screenshot captured in graphics/screenshot."
663msgstr ""
664
665#. description
666#: ../jobs/graphics.txt.in:194
667msgid ""
668"PURPOSE:\n"
669" Take a screengrab of the current screen during fullscreen video "
670"playback\n"
671"STEPS:\n"
672" 1. Start a fullscreen video playback\n"
673" 2. Take picture using USB webcam after a few seconds\n"
674"VERIFICATION:\n"
675" 1. Review attachment manually later"
676msgstr ""
677
678#. description
679#: ../jobs/graphics.txt.in:207
680msgid ""
681"Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
682msgstr ""
683
684#. description
634#: ../jobs/hibernate.txt.in:7685#: ../jobs/hibernate.txt.in:7
635msgid ""686msgid ""
636"PURPOSE:\n"687"PURPOSE:\n"
@@ -715,52 +766,42 @@
715msgstr ""766msgstr ""
716767
717#. description768#. description
718#: ../jobs/info.txt.in:85769#: ../jobs/info.txt.in:82
719msgid "Captures a screenshot."
720msgstr ""
721
722#. description
723#: ../jobs/info.txt.in:91
724msgid "Attaches the screenshot captured in info/screenshot."
725msgstr ""
726
727#. description
728#: ../jobs/info.txt.in:96
729msgid "Gather log from the Firmware Test Suite run."770msgid "Gather log from the Firmware Test Suite run."
730msgstr ""771msgstr ""
731772
732#. description773#. description
733#: ../jobs/info.txt.in:103774#: ../jobs/info.txt.in:89
734msgid "Attaches the contents of /proc/acpi/sleep if it exists."775msgid "Attaches the contents of /proc/acpi/sleep if it exists."
735msgstr ""776msgstr ""
736777
737#. description778#. description
738#: ../jobs/info.txt.in:107779#: ../jobs/info.txt.in:93
739msgid "Bootchart information."780msgid "Bootchart information."
740msgstr ""781msgstr ""
741782
742#. description783#. description
743#: ../jobs/info.txt.in:116784#: ../jobs/info.txt.in:102
744msgid "SATA/IDE device information."785msgid "SATA/IDE device information."
745msgstr ""786msgstr ""
746787
747#. description788#. description
748#: ../jobs/info.txt.in:133789#: ../jobs/info.txt.in:119
749msgid "Attaches the bootchart png file for bootchart runs"790msgid "Attaches the bootchart png file for bootchart runs"
750msgstr ""791msgstr ""
751792
752#. description793#. description
753#: ../jobs/info.txt.in:142794#: ../jobs/info.txt.in:128
754msgid "Attaches the bootchart log for bootchart test runs."795msgid "Attaches the bootchart log for bootchart test runs."
755msgstr ""796msgstr ""
756797
757#. description798#. description
758#: ../jobs/info.txt.in:150799#: ../jobs/info.txt.in:136
759msgid "installs the installer bootchart tarball if it exists."800msgid "installs the installer bootchart tarball if it exists."
760msgstr ""801msgstr ""
761802
762#. description803#. description
763#: ../jobs/info.txt.in:155804#: ../jobs/info.txt.in:141
764msgid "Attaches the installer debug log if it exists."805msgid "Attaches the installer debug log if it exists."
765msgstr ""806msgstr ""
766807
@@ -865,16 +906,14 @@
865msgstr ""906msgstr ""
866907
867#. description908#. description
868#: ../jobs/keys.txt.in:76909#: ../jobs/keys.txt.in:74
869msgid ""910msgid ""
870"PURPOSE:\n"911"PURPOSE:\n"
871" This test will test the media keys of your keyboard\n"912" This test will test the media keys of your keyboard\n"
872"STEPS:\n"913"STEPS:\n"
873" 1. Click test to launch the media player\n"914" 1. Click test to open a window on which to test the media control keys.\n"
874" 2. Press the play/pause key on the keyboard\n"915" 2. If all the keys work, the test will be marked as passed.\n"
875" 3. Press the forward key on the keyboard\n"916" 3. If your computer has no media control keys, Skip this test.\n"
876" 4. Press the backward key on the keyboard\n"
877" 5. Press stop key on the keyboard\n"
878"VERIFICATION:\n"917"VERIFICATION:\n"
879" Do the keys work as expected?"918" Do the keys work as expected?"
880msgstr ""919msgstr ""
@@ -1084,191 +1123,308 @@
1084msgstr ""1123msgstr ""
10851124
1086#. description1125#. description
1087#: ../jobs/mediacard.txt.in:31126#: ../jobs/mediacard.txt.in:4
1088msgid ""1127msgid ""
1089"PURPOSE:\n"1128"PURPOSE:\n"
1090" This test will check your system Secure Digital (SD) media card support\n"1129" This test will check that the systems media card reader can\n"
1091"STEPS:\n"1130" detect the insertion of a Multimedia Card (MMC) media\n"
1092" 1. Plug a SD media card into the computer\n"1131"STEPS:\n"
1093" 2. An icon should appear on the Launcher\n"1132" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1094" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1133" (Note: this test will time-out after 10 seconds.)\n"
1095" 4. The icon should disappear from the Launcher\n"1134" 2. Do not unplug the device after the test.\n"
1096"VERIFICATION:\n"1135"VERIFICATION:\n"
1097" Does the icon automatically appear/disappear?"1136" The verification of this test is automated. Do not change the\n"
1098msgstr ""1137" automatically selected result."
10991138msgstr ""
1100#. description1139
1101#: ../jobs/mediacard.txt.in:171140#. description
1102msgid ""1141#: ../jobs/mediacard.txt.in:20
1103"PURPOSE:\n"1142msgid ""
1104" This test will check your system Secure Digital (SD) media card support "1143"This test is automated and executes after the mediacard/mmc-insert test is "
1105"after suspend\n"1144"run. It tests reading and writing to the MMC card."
1106"STEPS:\n"1145msgstr ""
1107" 1. Plug a SD media card into the computer\n"1146
1108" 2. An icon should appear on the Launcher\n"1147#. description
1109" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1148#: ../jobs/mediacard.txt.in:28
1110" 4. The icon should disappear from the Launcher\n"1149msgid ""
1111"VERIFICATION:\n"1150"PURPOSE:\n"
1112" Does the icon automatically appear/disappear?"1151" This test will check that the system correctly detects\n"
1113msgstr ""1152" the removal of the MMC card from the systems card reader.\n"
11141153"STEPS:\n"
1115#. description1154" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1116#: ../jobs/mediacard.txt.in:301155" (Note: this test will time-out after 10 seconds.)\n"
1117msgid ""1156"VERIFICATION:\n"
1118"PURPOSE:\n"1157" The verification of this test is automated. Do not change the\n"
1119" This test will check your system Secure Digital High Capacity (SDHC) "1158" automatically selected result."
1120"media card support\n"1159msgstr ""
1121"STEPS:\n"1160
1122" 1. Plug a SDHC media card into the computer\n"1161#. description
1123" 2. An icon should appear on the Launcher\n"1162#: ../jobs/mediacard.txt.in:43
1124" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1163msgid ""
1125" 4. The icon should disappear from the Launcher\n"1164"PURPOSE:\n"
1126"VERIFICATION:\n"1165" This test will check that the systems media card reader can\n"
1127" Does the icon automatically appear/disappear?"1166" detect the insertion of an MMC card after the system has been suspended\n"
1128msgstr ""1167"STEPS:\n"
11291168" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1130#. description1169" (Note: this test will time-out after 10 seconds.)\n"
1131#: ../jobs/mediacard.txt.in:441170" 2. Do not unplug the device after the test.\n"
1132msgid ""1171"VERIFICATION:\n"
1133" This test will check your system Secure Digital High Capacity (SDHC) "1172" The verification of this test is automated. Do not change the\n"
1134"media card support after suspend\n"1173" automatically selected result."
1135"STEPS:\n"1174msgstr ""
1136" 1. Plug a SDHC media card into the computer\n"1175
1137" 2. An icon should appear on the Launcher\n"1176#. description
1138" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1177#: ../jobs/mediacard.txt.in:59
1139" 4. The icon should disappear from the Launcher\n"1178msgid ""
1140"VERIFICATION:\n"1179"This test is automated and executes after the mediacard/mmc-insert-after-"
1141" Does the icon automatically appear/disappear?"1180"suspend test is run. It tests reading and writing to the MMC card after the "
1142msgstr ""1181"system has been suspended."
11431182msgstr ""
1144#. description1183
1145#: ../jobs/mediacard.txt.in:561184#. description
1146msgid ""1185#: ../jobs/mediacard.txt.in:67
1147"PURPOSE:\n"1186msgid ""
1148" This test will check your system Multi Media Card (MMC) media card "1187"PURPOSE:\n"
1149"support\n"1188" This test will check that the system correctly detects the removal\n"
1150"STEPS:\n"1189" of an MMC card from the systems card reader after the system has been "
1151" 1. Plug a MMC media card into the computer\n"1190"suspended.\n"
1152" 2. An icon should appear on the Launcher\n"1191"STEPS:\n"
1153" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1192" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1154" 4. The icon should disappear from the Launcher\n"1193" (Note: this test will time-out after 10 seconds.)\n"
1155"VERIFICATION:\n"1194"VERIFICATION:\n"
1156" Does the icon automatically appear/disappear?"1195" The verification of this test is automated. Do not change the\n"
1157msgstr ""1196" automatically selected result."
11581197msgstr ""
1159#. description1198
1160#: ../jobs/mediacard.txt.in:701199#. description
1161msgid ""1200#: ../jobs/mediacard.txt.in:81
1162"PURPOSE:\n"1201msgid ""
1163" This test will check your system Multi Media Card (MMC) media card "1202"PURPOSE:\n"
1164"support after suspend\n"1203" This test will check that the systems media card reader can\n"
1165"STEPS:\n"1204" detect the insertion of a Secure Digital (SD) media card\n"
1166" 1. Plug a MMC media card into the computer\n"1205"STEPS:\n"
1167" 2. An icon should appear on the Launcher\n"1206" 1. Click \"Test\" and insert an SD card into the reader.\n"
1168" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1207" (Note: this test will time-out after 10 seconds.)\n"
1169" 4. The icon should disappear from the Launcher\n"1208" 2. Do not unplug the device after the test.\n"
1170"VERIFICATION:\n"1209"VERIFICATION:\n"
1171" Does the icon automatically appear/disappear?"1210" The verification of this test is automated. Do not change the\n"
1172msgstr ""1211" automatically selected result."
1173
1174#. description
1175#: ../jobs/mediacard.txt.in:83
1176msgid ""
1177"PURPOSE:\n"
1178" This test will check your system Memory Stick (MS) media card support\n"
1179"STEPS:\n"
1180" 1. Plug a MS media card into the computer\n"
1181" 2. An icon should appear on the Launcher\n"
1182" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"
1183" 4. The icon should disappear from the Launcher\n"
1184"VERIFICATION:\n"
1185" Does the icon automatically appear/disappear?"
1186msgstr ""1212msgstr ""
11871213
1188#. description1214#. description
1189#: ../jobs/mediacard.txt.in:971215#: ../jobs/mediacard.txt.in:97
1190msgid ""1216msgid ""
1191"PURPOSE:\n"1217"This test is automated and executes after the mediacard/sd-insert test is "
1192" This test will check your system Memory Stick (MS) media card support "1218"run. It tests reading and writing to the SD card."
1193"after suspend\n"1219msgstr ""
1194"STEPS:\n"1220
1195" 1. Plug a MS media card into the computer\n"1221#. description
1196" 2. An icon should appear on the Launcher\n"1222#: ../jobs/mediacard.txt.in:105
1197" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1223msgid ""
1198" 4. The icon should disappear from the Launcher\n"1224"PURPOSE:\n"
1199"VERIFICATION:\n"1225" This test will check that the system correctly detects\n"
1200" Does the icon automatically appear/disappear?"1226" the removal of an SD card from the systems card reader.\n"
1201msgstr ""1227"STEPS:\n"
12021228" 1. Click \"Test\" and remove the SD card from the reader.\n"
1203#. description1229" (Note: this test will time-out after 10 seconds.)\n"
1204#: ../jobs/mediacard.txt.in:1101230"VERIFICATION:\n"
1205msgid ""1231" The verification of this test is automated. Do not change the\n"
1206"PURPOSE:\n"1232" automatically selected result."
1207" This test will check your system Memory Stick Pro (MSP) media card "1233msgstr ""
1208"support\n"1234
1209"STEPS:\n"1235#. description
1210" 1. Plug a MSP media card into the computer\n"1236#: ../jobs/mediacard.txt.in:120
1211" 2. An icon should appear on the Launcher\n"1237msgid ""
1212" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1238"PURPOSE:\n"
1213" 4. The icon should disappear from the Launcher\n"1239" This test will check that the systems media card reader can\n"
1214"VERIFICATION:\n"1240" detect the insertion of an SD card after the system has been suspended\n"
1215" Does the icon automatically appear/disappear?"1241"STEPS:\n"
1216msgstr ""1242" 1. Click \"Test\" and insert an SD card into the reader.\n"
12171243" (Note: this test will time-out after 10 seconds.)\n"
1218#. description1244" 2. Do not unplug the device after the test.\n"
1219#: ../jobs/mediacard.txt.in:1241245"VERIFICATION:\n"
1220msgid ""1246" The verification of this test is automated. Do not change the\n"
1221"PURPOSE:\n"1247" automatically selected result."
1222" This test will check your system Memory Stick Pro (MSP) media card "1248msgstr ""
1223"support after suspend\n"1249
1224"STEPS:\n"1250#. description
1225" 1. Plug a MSP media card into the computer\n"1251#: ../jobs/mediacard.txt.in:136
1226" 2. An icon should appear on the Launcher\n"1252msgid ""
1227" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1253"This test is automated and executes after the mediacard/sd-insert-after-"
1228" 4. The icon should disappear from the Launcher\n"1254"suspend test is run. It tests reading and writing to the SD card after the "
1229"VERIFICATION:\n"1255"system has been suspended."
1230" Does the icon automatically appear/disappear?"1256msgstr ""
1231msgstr ""1257
12321258#. description
1233#. description1259#: ../jobs/mediacard.txt.in:144
1234#: ../jobs/mediacard.txt.in:1371260msgid ""
1235msgid ""1261"PURPOSE:\n"
1236"PURPOSE:\n"1262" This test will check that the system correctly detects\n"
1237" This test will check your system Compact Flash (CF) media card support\n"1263" the removal of an SD card from the systems card reader after the system "
1238"STEPS:\n"1264"has been suspended.\n"
1239" 1. Plug a CF media card into the computer\n"1265"STEPS:\n"
1240" 2. An icon should appear on the Launcher\n"1266" 1. Click \"Test\" and remove the SD card from the reader.\n"
1241" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1267" (Note: this test will time-out after 10 seconds.)\n"
1242" 4. The icon should disappear from the Launcher\n"1268"VERIFICATION:\n"
1243"VERIFICATION:\n"1269" The verification of this test is automated. Do not change the\n"
1244" Does the icon automatically appear/disappear?"1270" automatically selected result."
1245msgstr ""1271msgstr ""
12461272
1247#. description1273#. description
1248#: ../jobs/mediacard.txt.in:1511274#: ../jobs/mediacard.txt.in:158
1249msgid ""1275msgid ""
1250" This test will check your system Compact Flash (CF) media card support "1276"PURPOSE:\n"
1251"after suspend\n"1277" This test will check that the systems media card reader can\n"
1252"STEPS:\n"1278" detect the insertion of a Secure Digital High-Capacity (SDHC) media "
1253" 1. Plug a CF media card into the computer\n"1279"card\n"
1254" 2. An icon should appear on the Launcher\n"1280"STEPS:\n"
1255" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1281" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1256" 4. The icon should disappear from the Launcher\n"1282" (Note: this test will time-out after 10 seconds.)\n"
1257"VERIFICATION:\n"1283" 2. Do not unplug the device after the test.\n"
1258" Does the icon automatically appear/disappear?"1284"VERIFICATION:\n"
1259msgstr ""1285" The verification of this test is automated. Do not change the\n"
12601286" automatically selected result."
1261#. description1287msgstr ""
1262#: ../jobs/memory.txt.in:41288
1263msgid ""1289#. description
1264"PURPOSE:\n"1290#: ../jobs/mediacard.txt.in:174
1265" This test checks the amount of memory that is detected\n"1291msgid ""
1266"STEPS:\n"1292"This test is automated and executes after the mediacard/sdhc-insert test is "
1267" 1. Click Test to see the amount of detected memory\n"1293"run. It tests reading and writing to the SDHC card."
1268"INFO:\n"1294msgstr ""
1269" $output\n"1295
1270"VERIFICATION:\n"1296#. description
1271" Is the amount of detected memory correct?"1297#: ../jobs/mediacard.txt.in:182
1298msgid ""
1299"PURPOSE:\n"
1300" This test will check that the system correctly detects\n"
1301" the removal of an SDHC card from the systems card reader.\n"
1302"STEPS:\n"
1303" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1304" (Note: this test will time-out after 10 seconds.)\n"
1305"VERIFICATION:\n"
1306" The verification of this test is automated. Do not change the\n"
1307" automatically selected result."
1308msgstr ""
1309
1310#. description
1311#: ../jobs/mediacard.txt.in:197
1312msgid ""
1313"PURPOSE:\n"
1314" This test will check that the systems media card reader can\n"
1315" detect the insertion of an SDHC media card after the system has been "
1316"suspended\n"
1317"STEPS:\n"
1318" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1319" (Note: this test will time-out after 10 seconds.)\n"
1320" 2. Do not unplug the device after the test.\n"
1321"VERIFICATION:\n"
1322" The verification of this test is automated. Do not change the\n"
1323" automatically selected result."
1324msgstr ""
1325
1326#. description
1327#: ../jobs/mediacard.txt.in:213
1328msgid ""
1329"This test is automated and executes after the mediacard/sdhc-insert-after-"
1330"suspend test is run. It tests reading and writing to the SDHC card after the "
1331"system has been suspended."
1332msgstr ""
1333
1334#. description
1335#: ../jobs/mediacard.txt.in:221
1336msgid ""
1337"PURPOSE:\n"
1338" This test will check that the system correctly detects the removal\n"
1339" of an SDHC card from the systems card reader after the system has been "
1340"suspended.\n"
1341"STEPS:\n"
1342" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1343" (Note: this test will time-out after 10 seconds.)\n"
1344"VERIFICATION:\n"
1345" The verification of this test is automated. Do not change the\n"
1346" automatically selected result."
1347msgstr ""
1348
1349#. description
1350#: ../jobs/mediacard.txt.in:235
1351msgid ""
1352"PURPOSE:\n"
1353" This test will check that the systems media card reader can\n"
1354" detect the insertion of a Compact Flash (CF) media card\n"
1355"STEPS:\n"
1356" 1. Click \"Test\" and insert a CF card into the reader.\n"
1357" (Note: this test will time-out after 10 seconds.)\n"
1358" 2. Do not unplug the device after the test.\n"
1359"VERIFICATION:\n"
1360" The verification of this test is automated. Do not change the\n"
1361" automatically selected result."
1362msgstr ""
1363
1364#. description
1365#: ../jobs/mediacard.txt.in:251
1366msgid ""
1367"This test is automated and executes after the mediacard/cf-insert test is "
1368"run. It tests reading and writing to the CF card."
1369msgstr ""
1370
1371#. description
1372#: ../jobs/mediacard.txt.in:259
1373msgid ""
1374"PURPOSE:\n"
1375" This test will check that the system correctly detects\n"
1376" the removal of a CF card from the systems card reader.\n"
1377"STEPS:\n"
1378" 1. Click \"Test\" and remove the CF card from the reader.\n"
1379" (Note: this test will time-out after 10 seconds.)\n"
1380"VERIFICATION:\n"
1381" The verification of this test is automated. Do not change the\n"
1382" automatically selected result."
1383msgstr ""
1384
1385#. description
1386#: ../jobs/mediacard.txt.in:274
1387msgid ""
1388"PURPOSE:\n"
1389" This test will check that the systems media card reader can\n"
1390" detect the insertion of a CF card after the system has been suspended\n"
1391"STEPS:\n"
1392" 1. Click \"Test\" and insert a CF card into the reader.\n"
1393" (Note: this test will time-out after 10 seconds.)\n"
1394" 2. Do not unplug the device after the test.\n"
1395"VERIFICATION:\n"
1396" The verification of this test is automated. Do not change the\n"
1397" automatically selected result."
1398msgstr ""
1399
1400#. description
1401#: ../jobs/mediacard.txt.in:290
1402msgid ""
1403"This test is automated and executes after the mediacard/cf-insert-after-"
1404"suspend test is run. It tests reading and writing to the CF card after the "
1405"system has been suspended."
1406msgstr ""
1407
1408#. description
1409#: ../jobs/mediacard.txt.in:298
1410msgid ""
1411"PURPOSE:\n"
1412" This test will check that the system correctly detects the removal\n"
1413" of a CF card from the systems card reader after the system has been "
1414"suspended.\n"
1415"STEPS:\n"
1416" 1. Click \"Test\" and remove the CF card from the reader.\n"
1417" (Note: this test will time-out after 10 seconds.)\n"
1418"VERIFICATION:\n"
1419" The verification of this test is automated. Do not change the\n"
1420" automatically selected result."
1421msgstr ""
1422
1423#. description
1424#: ../jobs/memory.txt.in:5
1425msgid ""
1426"This test checks the amount of memory which is reporting in meminfo against "
1427"the size of the memory modules detected by DMI."
1272msgstr ""1428msgstr ""
12731429
1274#. description1430#. description
@@ -1296,13 +1452,6 @@
1296msgstr ""1452msgstr ""
12971453
1298#. description1454#. description
1299#: ../jobs/miscellanea.txt.in:29
1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."
1303msgstr ""
1304
1305#. description
1306#: ../jobs/miscellanea.txt.in:311455#: ../jobs/miscellanea.txt.in:31
1307msgid ""1456msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1457"This will run some basic connectivity tests against a BMC, verifying that "
@@ -1317,14 +1466,18 @@
1317msgstr ""1466msgstr ""
13181467
1319#. description1468#. description
1320#: ../jobs/miscellanea.txt.in:511469#: ../jobs/miscellanea.txt.in:45
1321msgid ""1470msgid ""
1322"This test checks /var/crash to see if there are any crash reports present."1471"Test that the /var/crash directory doesn't contain anything. Lists the files "
1472"contained within if it does, or echoes the status of the directory (doesn't "
1473"exist/is empty)"
1323msgstr ""1474msgstr ""
13241475
1325#. description1476#. description
1326#: ../jobs/miscellanea.txt.in:511477#: ../jobs/miscellanea.txt.in:53
1327msgid "If there are, this test will fail."1478msgid ""
1479"Test to check that virtualization is supported and the test system has at "
1480"least a minimal amount of RAM to function as an OpenStack Compute Node"
1328msgstr ""1481msgstr ""
13291482
1330#. description1483#. description
@@ -1433,6 +1586,13 @@
1433msgstr ""1586msgstr ""
14341587
1435#. description1588#. description
1589#: ../jobs/networking.txt.in:40
1590msgid ""
1591"This is an automated test to gather some info on the current state of your "
1592"network devices. If no devices are found, the test will exit with an error."
1593msgstr ""
1594
1595#. description
1436#: ../jobs/networking.txt.in:461596#: ../jobs/networking.txt.in:46
1437msgid ""1597msgid ""
1438"PURPOSE:\n"1598"PURPOSE:\n"
@@ -1512,63 +1672,80 @@
1512msgstr ""1672msgstr ""
15131673
1514#. description1674#. description
1515#: ../jobs/optical.txt.in:181675#: ../jobs/optical.txt.in:16
1516msgid "Optical Storage device read tests"1676msgid ""
1517msgstr ""1677"PURPOSE:\n"
15181678" This test will check your optical devices ability to read CD media\n"
1519#. description1679"STEPS:\n"
1520#: ../jobs/optical.txt.in:351680" 1. Insert appropriate non-blank media into your optical drive(s). Movie "
1521msgid ""1681"and Audio Disks may not work. Self-created data disks have the greatest "
1522"PURPOSE:\n"1682"chance of working.\n"
1523" This test will check your system's CDROM writing capabilities. If your "1683" 2. If a file browser window opens, you can safely close or ignore that "
1524"drive does not support writing CDs or you do not have any blank CD media, "1684"window.\n"
1525"please skip this test.\n"1685" 3. Click \"Test\" to being the test.\n"
1526"STEPS:\n"1686" 4. When the test completes, proceed by clicking \"Next\"\n"
1527" 1. Enter a blank CDROM into your drive\n"1687"VERIFICATION:\n"
1528" 2. Write something in the CDROM\n"1688" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1529" 3. Read the newly written CDROM\n"1689"fails."
1530"VERIFICATION:\n"1690msgstr ""
1531" Was the data correctly written?"1691
1532msgstr ""1692#. description
15331693#: ../jobs/optical.txt.in:43
1534#. description1694msgid ""
1535#: ../jobs/optical.txt.in:471695"PURPOSE:\n"
1696" This test will check your system's CD writing capabilities. This test "
1697"requires a blank CD-R. If you do not have a blank CD-R, skip this test.\n"
1698"STEPS:\n"
1699" 1. Enter a blank CD-R into your drive\n"
1700" 2. Click \"Test\" to begin.\n"
1701" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1702"remove the disk, it is needed for the second portion of the test). Note, you "
1703"must close the drive within 10 seconds or the test will time out.\n"
1704" 4. When the test completes, proceed by clicking \"Next\"\n"
1705"VERIFICATION:\n"
1706" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1707"fails."
1708msgstr ""
1709
1710#. description
1711#: ../jobs/optical.txt.in:57
1536msgid ""1712msgid ""
1537"PURPOSE:\n"1713"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1714" This test will check your CD audio playback capabilities\n"
1539"STEPS:\n"1715"STEPS:\n"
1540" 1. Insert an audio CD in your optical drive\n"1716" 1. Insert an audio CD in your optical drive\n"
1541" 2. Open the Dash (click on the Ubuntu Circle of Friends button on the "1717" 2. When prompted, launch the Music Player\n"
1542"Launcher)\n"1718" 3. Locate the CD in the display of the Music Player\n"
1543" 3. Click \"Listen to Music\" to open Banshee\n"1719" 4. Select the CD in the Music Player\n"
1544" 4. Select the CD under \"Libraries\" in the left panel of Banshee\n"1720" 5. Click the Play button to listen to the music on the CD\n"
1545" 5. Click the Play button to listen to music\n"
1546" 6. Stop playing after some time\n"1721" 6. Stop playing after some time\n"
1547" 7. Right click on the CD icon under \"Libraries\" and select \"Eject "1722" 7. Right click on the CD icon and select \"Eject Disc\"\n"
1548"Disc\"\n"
1549" 8. The CD should be ejected\n"1723" 8. The CD should be ejected\n"
1550" 9. Close Banshee\n"1724" 9. Close the Music Player\n"
1551"VERIFICATION:\n"1725"VERIFICATION:\n"
1552" Did all the steps work?"1726" Did all the steps work?"
1553msgstr ""1727msgstr ""
15541728
1555#. description1729#. description
1556#: ../jobs/optical.txt.in:681730#: ../jobs/optical.txt.in:80
1557msgid ""1731msgid ""
1558"PURPOSE:\n"1732"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1733" This test will check your system's DVD writing capabilities. This test "
1560"drive does not support writing DVDs or you do not have any blank DVD media, "1734"requires a blank DVD-R. If you do not have a blank DVD-R, skip this test.\n"
1561"please skip this test.\n"
1562"STEPS:\n"1735"STEPS:\n"
1563" 1. Enter a blank DVD into your drive\n"1736" 1. Enter a blank DVD-R into your drive\n"
1564" 2. Write something in the DVD\n"1737" 2. Click \"Test\" to begin.\n"
1565" 3. Read the newly written DVD\n"1738" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1739"remove the disk, it is needed for the second portion of the test). Note, you "
1740"must close the drive within 10 seconds or the test will time out.\n"
1741" 4. When the test completes, proceed by clicking \"Next\"\n"
1566"VERIFICATION:\n"1742"VERIFICATION:\n"
1567" Was the data correctly written?"1743" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1744"fails."
1568msgstr ""1745msgstr ""
15691746
1570#. description1747#. description
1571#: ../jobs/optical.txt.in:841748#: ../jobs/optical.txt.in:94
1572msgid ""1749msgid ""
1573"PURPOSE:\n"1750"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1751" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1764,7 @@
1587msgstr ""1764msgstr ""
15881765
1589#. description1766#. description
1590#: ../jobs/optical.txt.in:1021767#: ../jobs/optical.txt.in:112
1591msgid ""1768msgid ""
1592"PURPOSE:\n"1769"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1770" This test will check your DVD playback capabilities\n"
@@ -1843,6 +2020,11 @@
1843msgstr ""2020msgstr ""
18442021
1845#. description2022#. description
2023#: ../jobs/suspend.txt.in:4
2024msgid "Record the current network before suspending."
2025msgstr ""
2026
2027#. description
1846#: ../jobs/suspend.txt.in:92028#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."2029msgid "Record the current resolution before suspending."
1848msgstr ""2030msgstr ""
@@ -1864,14 +2046,14 @@
1864msgstr ""2046msgstr ""
18652047
1866#. description2048#. description
1867#: ../jobs/suspend.txt.in:492049#: ../jobs/suspend.txt.in:40
1868msgid ""2050msgid ""
1869"This test disconnects all connections and then connects to the wireless "2051"This test disconnects all connections and then connects to the wireless "
1870"interface. It then checks the connection to confirm it's working as expected."2052"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""2053msgstr ""
18722054
1873#. description2055#. description
1874#: ../jobs/suspend.txt.in:832056#: ../jobs/suspend.txt.in:74
1875msgid ""2057msgid ""
1876"PURPOSE:\n"2058"PURPOSE:\n"
1877" This test will check suspend and resume\n"2059" This test will check suspend and resume\n"
@@ -1887,34 +2069,34 @@
1887msgstr ""2069msgstr ""
18882070
1889#. description2071#. description
1890#: ../jobs/suspend.txt.in:962072#: ../jobs/suspend.txt.in:87
1891msgid "Test the network after resuming."2073msgid "Test the network after resuming."
1892msgstr ""2074msgstr ""
18932075
1894#. description2076#. description
2077#: ../jobs/suspend.txt.in:93
2078msgid ""
2079"Test to see that we have the same resolution after resuming as before."
2080msgstr ""
2081
2082#. description
1895#: ../jobs/suspend.txt.in:1022083#: ../jobs/suspend.txt.in:102
1896msgid ""2084msgid ""
1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""
1899
1900#. description
1901#: ../jobs/suspend.txt.in:111
1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."2085"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""2086msgstr ""
19052087
1906#. description2088#. description
1907#: ../jobs/suspend.txt.in:1272089#: ../jobs/suspend.txt.in:118
1908msgid "Verify that all CPUs are online after resuming."2090msgid "Verify that all CPUs are online after resuming."
1909msgstr ""2091msgstr ""
19102092
1911#. description2093#. description
2094#: ../jobs/suspend.txt.in:135
2095msgid "Verify that all memory is available after resuming from suspend."
2096msgstr ""
2097
2098#. description
1912#: ../jobs/suspend.txt.in:1442099#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""
1915
1916#. description
1917#: ../jobs/suspend.txt.in:153
1918msgid ""2100msgid ""
1919"PURPOSE:\n"2101"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "2102" This test will check that the display is correct after suspend and "
@@ -1924,7 +2106,7 @@
1924msgstr ""2106msgstr ""
19252107
1926#. description2108#. description
1927#: ../jobs/suspend.txt.in:1742109#: ../jobs/suspend.txt.in:155
1928msgid ""2110msgid ""
1929"This test checks that the wireless interface is working after suspending the "2111"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "2112"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +2114,49 @@
1932msgstr ""2114msgstr ""
19332115
1934#. description2116#. description
1935#: ../jobs/suspend.txt.in:1862117#: ../jobs/suspend.txt.in:167
2118msgid ""
2119"Tests that the systems wireless hardware can connect to a router using WPA "
2120"security and the 802.11b/g protocols after the system has been suspended."
2121msgstr ""
2122
2123#. description
2124#: ../jobs/suspend.txt.in:178
2125msgid ""
2126"Tests that the systems wireless hardware can connect to a router using no "
2127"security and the 802.11b/g protocols after the system has been suspended."
2128msgstr ""
2129
2130#. description
2131#: ../jobs/suspend.txt.in:189
2132msgid ""
2133"Tests that the systems wireless hardware can connect to a router using WPA "
2134"security and the 802.11n protocol after the system has been suspended."
2135msgstr ""
2136
2137#. description
2138#: ../jobs/suspend.txt.in:200
2139msgid ""
2140"Tests that the systems wireless hardware can connect to a router using no "
2141"security and the 802.11n protocol after the system has been suspended."
2142msgstr ""
2143
2144#. description
2145#: ../jobs/suspend.txt.in:211
1936msgid ""2146msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "2147"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."2148"and compares it to the address grabbed before suspend."
1939msgstr ""2149msgstr ""
19402150
1941#. description2151#. description
1942#: ../jobs/suspend.txt.in:1962152#: ../jobs/suspend.txt.in:221
1943msgid ""2153msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "2154"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."2155"device specified by the BTDEVADDR environment variable."
1946msgstr ""2156msgstr ""
19472157
1948#. description2158#. description
1949#: ../jobs/suspend.txt.in:2062159#: ../jobs/suspend.txt.in:231
1950msgid ""2160msgid ""
1951"PURPOSE:\n"2161"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "2162" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +2171,7 @@
1961msgstr ""2171msgstr ""
19622172
1963#. description2173#. description
1964#: ../jobs/suspend.txt.in:2202174#: ../jobs/suspend.txt.in:245
1965msgid ""2175msgid ""
1966"PURPOSE:\n"2176"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"2177" This test will cycle through the detected display modes\n"
@@ -1972,7 +2182,7 @@
1972msgstr ""2182msgstr ""
19732183
1974#. description2184#. description
1975#: ../jobs/suspend.txt.in:2322185#: ../jobs/suspend.txt.in:257
1976msgid ""2186msgid ""
1977"This test will check to make sure supported video modes work after a suspend "2187"This test will check to make sure supported video modes work after a suspend "
1978"and resume. This is done automatically by taking screenshots and uploading "2188"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,28 +2190,14 @@
1980msgstr ""2190msgstr ""
19812191
1982#. description2192#. description
1983#: ../jobs/suspend.txt.in:2412193#: ../jobs/suspend.txt.in:266
1984msgid ""2194msgid ""
1985"This attaches screenshots from the "2195"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."2196"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
1987msgstr ""2197msgstr ""
19882198
1989#. description2199#. description
1990#: ../jobs/suspend.txt.in:2312200#: ../jobs/suspend.txt.in:276
1991msgid ""
1992"PURPOSE:\n"
1993" This will test that USB functionality is restored after a suspend and "
1994"resume cycle\n"
1995"STEPS:\n"
1996" 1. Plug in at least one USB storage device if one is not already "
1997"connected\n"
1998" 2. Click \"Test\" to start\n"
1999"VERIFICATION:\n"
2000" Automatically verified"
2001msgstr ""
2002
2003#. description
2004#: ../jobs/suspend.txt.in:251
2005msgid ""2201msgid ""
2006"This will check to make sure that your audio device works properly after a "2202"This will check to make sure that your audio device works properly after a "
2007"suspend and resume. This may work fine with speakers and onboard "2203"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2206,12 @@
2010msgstr ""2206msgstr ""
20112207
2012#. description2208#. description
2013#: ../jobs/suspend.txt.in:2602209#: ../jobs/suspend.txt.in:285
2014msgid "This is the automated version of suspend/suspend_advanced."2210msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2211msgstr ""
20162212
2017#. description2213#. description
2018#: ../jobs/suspend.txt.in:2692214#: ../jobs/suspend.txt.in:294
2019msgid ""2215msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2216"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2217"configured server. During this process the system will suspend, then "
@@ -2023,6 +2219,18 @@
2023msgstr ""2219msgstr ""
20242220
2025#. description2221#. description
2222#: ../jobs/suspend.txt.in:304
2223msgid ""
2224"PURPOSE:\n"
2225" Take a screengrab of the current screen after suspend (logged on Unity "
2226"desktop)\n"
2227"STEPS:\n"
2228" 1. Take picture using USB webcam\n"
2229"VERIFICATION:\n"
2230" 1. Review attachment manually later"
2231msgstr ""
2232
2233#. description
2026#: ../jobs/unity.txt.in:62234#: ../jobs/unity.txt.in:6
2027msgid ""2235msgid ""
2028"Xlib is required for unity testing. This checks for Xlib and installs it if "2236"Xlib is required for unity testing. This checks for Xlib and installs it if "
@@ -2045,7 +2253,7 @@
2045#: ../jobs/usb.txt.in:122253#: ../jobs/usb.txt.in:12
2046msgid ""2254msgid ""
2047"PURPOSE:\n"2255"PURPOSE:\n"
2048" This test will check your USB connection.\n"2256" This test will check that your system detects USB storage devices.\n"
2049"STEPS:\n"2257"STEPS:\n"
2050" 1. Plug in one or more USB keys or hard drives.\n"2258" 1. Plug in one or more USB keys or hard drives.\n"
2051" 2. Click on \"Test\".\n"2259" 2. Click on \"Test\".\n"
@@ -2083,28 +2291,33 @@
2083#: ../jobs/usb.txt.in:552291#: ../jobs/usb.txt.in:55
2084msgid ""2292msgid ""
2085"PURPOSE:\n"2293"PURPOSE:\n"
2086" This test will check your USB connection.\n"2294" This test will check that the system correctly detects the insertion of\n"
2295" a USB storage device\n"
2087"STEPS:\n"2296"STEPS:\n"
2088" 1. Click \"Test\" and insert a USB device within 5 seconds.\n"2297" 1. Click \"Test\" and insert a USB storage device (pen-drive/HDD).\n"
2298" (Note: this test will time-out after 10 seconds.)\n"
2089" 2. Do not unplug the device after the test.\n"2299" 2. Do not unplug the device after the test.\n"
2090"VERIFICATION:\n"2300"VERIFICATION:\n"
2091" The verification of this test is automated."2301" The verification of this test is automated. Do not change the\n"
2302" automatically selected result."
2092msgstr ""2303msgstr ""
20932304
2094#. description2305#. description
2095#: ../jobs/usb.txt.in:692306#: ../jobs/usb.txt.in:72
2096msgid ""2307msgid ""
2097"PURPOSE:\n"2308"PURPOSE:\n"
2098" This test will check your USB connection.\n"2309" This test will check that the system correctly detects the removal of\n"
2310" a USB storage device\n"
2099"STEPS:\n"2311"STEPS:\n"
2100" 1. Click \"Test\" and remove the USB device within 5 seconds.\n"2312" 1. Click \"Test\" and remove the USB device.\n"
2101" 2. Do not unplug the device after the test.\n"2313" (Note: this test will time-out after 10 seconds.)\n"
2102"VERIFICATION:\n"2314"VERIFICATION:\n"
2103" The verification of this test is automated."2315" The verification of this test is automated. Do not change the\n"
2316" automatically selected result."
2104msgstr ""2317msgstr ""
21052318
2106#. description2319#. description
2107#: ../jobs/usb.txt.in:822320#: ../jobs/usb.txt.in:88
2108msgid ""2321msgid ""
2109"PURPOSE:\n"2322"PURPOSE:\n"
2110" This test will check your USB connection.\n"2323" This test will check your USB connection.\n"
@@ -2113,14 +2326,21 @@
2113" 2. An icon should appear on the Launcher.\n"2326" 2. An icon should appear on the Launcher.\n"
2114" 3. Click \"Test\" to begin the test.\n"2327" 3. Click \"Test\" to begin the test.\n"
2115"VERIFICATION:\n"2328"VERIFICATION:\n"
2116" The verification of this test is automated."2329" The verification of this test is automated. Do not change the\n"
2117msgstr ""2330" automatically selected result."
21182331msgstr ""
2119#. description2332
2120#: ../jobs/usb.txt.in:802333#. description
2334#: ../jobs/usb.txt.in:104
2335msgid "This test is automated and executes after the usb/insert test is run."
2336msgstr ""
2337
2338#. description
2339#: ../jobs/usb.txt.in:111
2121msgid ""2340msgid ""
2122"This test is automated and requires that you plug in at least one usb "2341"This is an automated version of usb/storage-automated and assumes that the "
2123"storage device before running checkbox."2342"server has usb storage devices plugged in prior to checkbox execution. It "
2343"is intended for servers and SRU automated testing."
2124msgstr ""2344msgstr ""
21252345
2126#. description2346#. description
@@ -2571,7 +2791,7 @@
2571#. description2791#. description
2572#: ../jobs/wireless.txt.in:382792#: ../jobs/wireless.txt.in:38
2573msgid ""2793msgid ""
2574"Tests that the systems wireless hardware can connect to a router using no no "2794"Tests that the systems wireless hardware can connect to a router using no "
2575"security and the 802.11b/g protocols."2795"security and the 802.11b/g protocols."
2576msgstr ""2796msgstr ""
25772797
@@ -2585,7 +2805,7 @@
2585#. description2805#. description
2586#: ../jobs/wireless.txt.in:582806#: ../jobs/wireless.txt.in:58
2587msgid ""2807msgid ""
2588"Tests that the systems wireless hardware can connect to a router using no no "2808"Tests that the systems wireless hardware can connect to a router using no "
2589"security and the 802.11n protocol."2809"security and the 802.11n protocol."
2590msgstr ""2810msgstr ""
25912811
@@ -2738,17 +2958,17 @@
2738msgstr ""2958msgstr ""
27392959
2740#: ../checkbox_cli/cli_interface.py:312960#: ../checkbox_cli/cli_interface.py:31
2741#: ../checkbox_urwid/urwid_interface.py:9172961#: ../checkbox_urwid/urwid_interface.py:917 ../checkbox_qt/qt_interface.py:33
2742msgid "yes"2962msgid "yes"
2743msgstr ""2963msgstr ""
27442964
2745#: ../checkbox_cli/cli_interface.py:322965#: ../checkbox_cli/cli_interface.py:32
2746#: ../checkbox_urwid/urwid_interface.py:9182966#: ../checkbox_urwid/urwid_interface.py:918 ../checkbox_qt/qt_interface.py:34
2747msgid "no"2967msgid "no"
2748msgstr ""2968msgstr ""
27492969
2750#: ../checkbox_cli/cli_interface.py:332970#: ../checkbox_cli/cli_interface.py:33
2751#: ../checkbox_urwid/urwid_interface.py:9192971#: ../checkbox_urwid/urwid_interface.py:919 ../checkbox_qt/qt_interface.py:35
2752msgid "skip"2972msgid "skip"
2753msgstr ""2973msgstr ""
27542974
@@ -2761,6 +2981,15 @@
2761msgid "Please choose (%s): "2981msgid "Please choose (%s): "
2762msgstr ""2982msgstr ""
27632983
2984#: ../checkbox_cli/cli_interface.py:229 ../checkbox_cli/cli_interface.py:338
2985#: ../checkbox_cli/cli_interface.py:368
2986msgid "Space when finished"
2987msgstr ""
2988
2989#: ../checkbox_cli/cli_interface.py:367
2990msgid "Combine with character above to expand node"
2991msgstr ""
2992
2764#: ../checkbox_cli/cli_interface.py:4162993#: ../checkbox_cli/cli_interface.py:416
2765msgid "test"2994msgid "test"
2766msgstr ""2995msgstr ""
@@ -2784,27 +3013,36 @@
2784#: ../checkbox_urwid/urwid_interface.py:1983013#: ../checkbox_urwid/urwid_interface.py:198
2785#: ../checkbox_urwid/urwid_interface.py:2743014#: ../checkbox_urwid/urwid_interface.py:274
2786#: ../checkbox_urwid/urwid_interface.py:4253015#: ../checkbox_urwid/urwid_interface.py:425
2787#: ../checkbox_urwid/urwid_interface.py:5473016#: ../checkbox_urwid/urwid_interface.py:547 ../qt/frontend/ui_qtfront.h:609
2788msgid "Previous"3017msgid "Previous"
2789msgstr ""3018msgstr ""
27903019
2791#: ../checkbox_urwid/urwid_interface.py:1993020#: ../checkbox_urwid/urwid_interface.py:199
2792#: ../checkbox_urwid/urwid_interface.py:2753021#: ../checkbox_urwid/urwid_interface.py:275
2793#: ../checkbox_urwid/urwid_interface.py:4263022#: ../checkbox_urwid/urwid_interface.py:426
2794#: ../checkbox_urwid/urwid_interface.py:5483023#: ../checkbox_urwid/urwid_interface.py:548 ../qt/frontend/ui_qtfront.h:608
2795msgid "Next"3024msgid "Next"
2796msgstr ""3025msgstr ""
27973026
2798#. Show buttons3027#. Show buttons
2799#: ../checkbox_urwid/urwid_interface.py:4233028#: ../checkbox_urwid/urwid_interface.py:423 ../qt/frontend/qtfront.cpp:137
2800msgid "Select All"3029msgid "Select All"
2801msgstr ""3030msgstr ""
28023031
2803#: ../checkbox_urwid/urwid_interface.py:4243032#: ../checkbox_urwid/urwid_interface.py:424 ../qt/frontend/qtfront.cpp:138
2804msgid "Deselect All"3033msgid "Deselect All"
2805msgstr ""3034msgstr ""
28063035
2807#: ../checkbox_urwid/urwid_interface.py:10133036#. Show buttons
3037#: ../checkbox_urwid/urwid_interface.py:545
3038msgid "Expand All"
3039msgstr ""
3040
3041#: ../checkbox_urwid/urwid_interface.py:546
3042msgid "Collapse All"
3043msgstr ""
3044
3045#: ../checkbox_urwid/urwid_interface.py:1013 ../qt/frontend/ui_qtfront.h:603
2808msgid "Test"3046msgid "Test"
2809msgstr ""3047msgstr ""
28103048
@@ -2812,23 +3050,18 @@
2812msgid "Test Again"3050msgid "Test Again"
2813msgstr ""3051msgstr ""
28143052
2815#: ../checkbox_gtk/gtk_interface.py:5033053#: ../checkbox_gtk/gtk_interface.py:517
2816msgid "_Test Again"3054msgid "_Test Again"
2817msgstr ""3055msgstr ""
28183056
2819#: ../checkbox_gtk/gtk_interface.py:5513057#: ../checkbox_gtk/gtk_interface.py:566
2820msgid "Info"3058msgid "Info"
2821msgstr ""3059msgstr ""
28223060
2823#: ../checkbox_gtk/gtk_interface.py:5753061#: ../checkbox_gtk/gtk_interface.py:590
2824msgid "Error"3062msgid "Error"
2825msgstr ""3063msgstr ""
28263064
2827#: ../checkbox/user_interface.py:137
2828#, python-format
2829msgid "Unable to start web browser to open %s."
2830msgstr ""
2831
2832#: ../plugins/apport_prompt.py:833065#: ../plugins/apport_prompt.py:83
2833msgid ""3066msgid ""
2834"Collecting information about this test.\n"3067"Collecting information about this test.\n"
@@ -2843,19 +3076,19 @@
28433076
2844#: ../plugins/apport_prompt.py:2273077#: ../plugins/apport_prompt.py:227
2845#, python-format3078#, python-format
2846msgid "Test %(name)s from suite %(suite)s failed."3079msgid "Test %(name)s failed."
3080msgstr ""
3081
3082#: ../plugins/apport_prompt.py:230
3083#, python-format
3084msgid "Test %s failed."
2847msgstr ""3085msgstr ""
28483086
2849#: ../plugins/apport_prompt.py:2313087#: ../plugins/apport_prompt.py:231
2850#, python-format
2851msgid "Test %s failed."
2852msgstr ""
2853
2854#: ../plugins/apport_prompt.py:232
2855msgid "Do you want to report a bug?"3088msgid "Do you want to report a bug?"
2856msgstr ""3089msgstr ""
28573090
2858#: ../plugins/apport_prompt.py:2493091#: ../plugins/apport_prompt.py:248
2859#, python-format3092#, python-format
2860msgid "Is a package upgrade in process? Error: %s"3093msgid "Is a package upgrade in process? Error: %s"
2861msgstr ""3094msgstr ""
@@ -2916,7 +3149,7 @@
2916msgid "Information not posted to Launchpad."3149msgid "Information not posted to Launchpad."
2917msgstr ""3150msgstr ""
29183151
2919#: ../plugins/launchpad_prompt.py:713152#: ../plugins/launchpad_prompt.py:74
2920#, python-format3153#, python-format
2921msgid ""3154msgid ""
2922"The following report has been generated for submission to the Launchpad "3155"The following report has been generated for submission to the Launchpad "
@@ -2924,17 +3157,13 @@
2924"\n"3157"\n"
2925" [[%s|View Report]]\n"3158" [[%s|View Report]]\n"
2926"\n"3159"\n"
2927"You can submit this information about your system by providing the e-mail "3160"You can submit this information about your system by providing the email "
2928"address you use to sign in to Launchpad. If you do not have a Launchpad "3161"address you use to sign in to Launchpad. If you do not have a Launchpad "
2929"account, please register here:\n"3162"account, please register here:\n"
2930"\n"3163"\n"
2931" https://launchpad.net/+login"3164" https://launchpad.net/+login"
2932msgstr ""3165msgstr ""
29333166
2934#: ../plugins/launchpad_prompt.py:88
2935msgid "No e-mail address provided, not submitting to Launchpad."
2936msgstr ""
2937
2938#: ../plugins/launchpad_prompt.py:933167#: ../plugins/launchpad_prompt.py:93
2939msgid "Email address must be in a proper format."3168msgid "Email address must be in a proper format."
2940msgstr ""3169msgstr ""
@@ -2953,6 +3182,14 @@
2953msgid "There is another checkbox running. Please close it first."3182msgid "There is another checkbox running. Please close it first."
2954msgstr ""3183msgstr ""
29553184
3185#: ../plugins/recover_prompt.py:53
3186msgid "Recover"
3187msgstr ""
3188
3189#: ../plugins/recover_prompt.py:54
3190msgid "Restart"
3191msgstr ""
3192
2956#: ../plugins/recover_prompt.py:563193#: ../plugins/recover_prompt.py:56
2957msgid ""3194msgid ""
2958"Checkbox did not finish completely.\n"3195"Checkbox did not finish completely.\n"
@@ -2969,7 +3206,7 @@
2969msgstr ""3206msgstr ""
29703207
2971#. Get results3208#. Get results
2972#: ../plugins/suites_prompt.py:1103209#: ../plugins/suites_prompt.py:124
2973msgid "Select the suites to test"3210msgid "Select the suites to test"
2974msgstr ""3211msgstr ""
29753212
@@ -2981,18 +3218,163 @@
2981msgid "Type Text"3218msgid "Type Text"
2982msgstr ""3219msgstr ""
29833220
2984#: ../scripts/internet_test:1393221#: ../scripts/internet_test:196
2985msgid "No Internet connection"3222msgid "No Internet connection"
2986msgstr ""3223msgstr ""
29873224
2988#: ../scripts/internet_test:1423225#: ../scripts/internet_test:199
2989msgid "Connection established lost a packet"3226msgid "Connection established lost a packet"
2990msgstr ""3227msgstr ""
29913228
2992#: ../scripts/internet_test:1453229#: ../scripts/internet_test:202
2993msgid "Internet connection fully established"3230msgid "Internet connection fully established"
2994msgstr ""3231msgstr ""
29953232
3233#: ../qt/frontend/qtfront.cpp:108
3234msgid "Not Started"
3235msgstr ""
3236
3237#: ../qt/frontend/qtfront.cpp:109 ../qt/frontend/qtfront.cpp:110
3238msgid "Done"
3239msgstr ""
3240
3241#: ../qt/frontend/qtfront.cpp:111
3242msgid "Not Supported"
3243msgstr ""
3244
3245#: ../qt/frontend/qtfront.cpp:112
3246msgid "Not Resolved"
3247msgstr ""
3248
3249#: ../qt/frontend/qtfront.cpp:113
3250msgid "Not Tested"
3251msgstr ""
3252
3253#: ../qt/frontend/qtfront.cpp:114
3254msgid "In Progress"
3255msgstr ""
3256
3257#: ../qt/frontend/qtfront.cpp:182
3258msgid "Are you sure?"
3259msgstr ""
3260
3261#: ../qt/frontend/qtfront.cpp:182
3262msgid "Do you really want to skip this test?"
3263msgstr ""
3264
3265#: ../qt/frontend/qtfront.cpp:183
3266msgid "Don't ask me again"
3267msgstr ""
3268
3269#: ../qt/frontend/treemodel.cpp:13
3270msgid ""
3271"Unselecting a test will invalidate your submission for Ubuntu Friendly. If "
3272"you plan to participate in Ubuntu Friendly, please, select all tests. You "
3273"can always skip individual tests if you don't have the needed equipment."
3274msgstr ""
3275
3276#: ../qt/frontend/ui_qtfront.h:588
3277msgid "Form"
3278msgstr ""
3279
3280#: ../qt/frontend/ui_qtfront.h:590
3281msgid "OK"
3282msgstr ""
3283
3284#: ../qt/frontend/ui_qtfront.h:591
3285msgid "Don't show me this message in the future"
3286msgstr ""
3287
3288#: ../qt/frontend/ui_qtfront.h:592 ../qt/frontend/ui_qtfront.h:606
3289msgid "Tab 1"
3290msgstr ""
3291
3292#: ../qt/frontend/ui_qtfront.h:593
3293msgid "10 tests completed out of 30 (30%)"
3294msgstr ""
3295
3296#: ../qt/frontend/ui_qtfront.h:595
3297msgid "Lists of tests to run based on your system:"
3298msgstr ""
3299
3300#: ../qt/frontend/ui_qtfront.h:596
3301msgid "Components"
3302msgstr ""
3303
3304#: ../qt/frontend/ui_qtfront.h:597
3305msgid "Status"
3306msgstr ""
3307
3308#: ../qt/frontend/ui_qtfront.h:598
3309msgid "Start testing"
3310msgstr ""
3311
3312#: ../qt/frontend/ui_qtfront.h:599
3313msgid " Selection "
3314msgstr ""
3315
3316#: ../qt/frontend/ui_qtfront.h:600 ../qt/frontend/ui_qtfront.h:601
3317msgid "TextLabel"
3318msgstr ""
3319
3320#: ../qt/frontend/ui_qtfront.h:602
3321msgid "Yes"
3322msgstr ""
3323
3324#: ../qt/frontend/ui_qtfront.h:604
3325msgid "No"
3326msgstr ""
3327
3328#: ../qt/frontend/ui_qtfront.h:605
3329msgid "Comment"
3330msgstr ""
3331
3332#: ../qt/frontend/ui_qtfront.h:607 ../qt/frontend/ui_qtfront.h:623
3333msgid "Tab 2"
3334msgstr ""
3335
3336#: ../qt/frontend/ui_qtfront.h:610
3337msgid " Run "
3338msgstr ""
3339
3340#: ../qt/frontend/ui_qtfront.h:611
3341msgid ""
3342"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" "
3343"\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
3344"<html><head><meta name=\"qrichtext\" content=\"1\" /><style "
3345"type=\"text/css\">\n"
3346"p, li { white-space: pre-wrap; }\n"
3347"</style></head><body style=\" font-family:'Ubuntu'; font-size:10pt; font-"
3348"weight:400; font-style:normal;\">\n"
3349"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
3350"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
3351"color:#ff0000;\">Warning: Not all tests have been run yet.</span></p>\n"
3352"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
3353"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
3354"color:#ff0000;\">You can send the results now, but the submission won't make "
3355"it to Ubuntu Friendly.</span></p></body></html>"
3356msgstr ""
3357
3358#: ../qt/frontend/ui_qtfront.h:617
3359msgid "Personal details"
3360msgstr ""
3361
3362#: ../qt/frontend/ui_qtfront.h:619
3363msgid "Email:"
3364msgstr ""
3365
3366#: ../qt/frontend/ui_qtfront.h:620
3367msgid "Submit results"
3368msgstr ""
3369
3370#: ../qt/frontend/ui_qtfront.h:621
3371msgid "View results"
3372msgstr ""
3373
3374#: ../qt/frontend/ui_qtfront.h:622
3375msgid " Results "
3376msgstr ""
3377
2996#~ msgid "$output"3378#~ msgid "$output"
2997#~ msgstr "$hasee"3379#~ msgstr "$hasee"
29983380
29993381
=== modified file 'po/af.po'
--- po/af.po 2012-03-21 02:22:11 +0000
+++ po/af.po 2012-04-12 17:38:18 +0000
@@ -7,40 +7,40 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: checkbox\n"8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-01-06 12:39-0500\n"10"POT-Creation-Date: 2012-03-28 10:50-0400\n"
11"PO-Revision-Date: 2011-07-19 18:28+0000\n"11"PO-Revision-Date: 2011-07-19 18:28+0000\n"
12"Last-Translator: JC Brand <Unknown>\n"12"Last-Translator: JC Brand <Unknown>\n"
13"Language-Team: Afrikaans <af@li.org>\n"13"Language-Team: Afrikaans <af@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"17"X-Launchpad-Export-Date: 2012-04-03 04:37+0000\n"
18"X-Generator: Launchpad (build 14933)\n"18"X-Generator: Launchpad (build 15052)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:44420#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26721#: ../checkbox_urwid/urwid_interface.py:267
22msgid "Further information:"22msgid "Further information:"
23msgstr "Verdere inligting"23msgstr "Verdere inligting"
2424
25#: ../gtk/checkbox-gtk.ui.h:1025#: ../gtk/checkbox-gtk.ui.h:2
26msgid "Ne_xt"26msgid "Ne_xt"
27msgstr "_Volgende"27msgstr "_Volgende"
2828
29#. Title of the user interface29#. Title of the user interface
30#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:3 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4231#: ../plugins/user_interface.py:43 ../qt/frontend/ui_qtfront.h:589
32msgid "System Testing"32msgid "System Testing"
33msgstr "Stelseltoetsing"33msgstr "Stelseltoetsing"
3434
35#: ../gtk/checkbox-gtk.ui.h:835#: ../gtk/checkbox-gtk.ui.h:4
36msgid "_Deselect All"36msgid "_Deselect All"
37msgstr "_Ontmerk alle"37msgstr "_Ontmerk alle"
3838
39#: ../gtk/checkbox-gtk.ui.h:439#: ../gtk/checkbox-gtk.ui.h:5
40msgid "_No"40msgid "_No"
41msgstr "_Nee"41msgstr "_Nee"
4242
43#: ../gtk/checkbox-gtk.ui.h:943#: ../gtk/checkbox-gtk.ui.h:6
44msgid "_Previous"44msgid "_Previous"
45msgstr "Vo_rige"45msgstr "Vo_rige"
4646
@@ -48,15 +48,15 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr "_Kies alle"49msgstr "_Kies alle"
5050
51#: ../gtk/checkbox-gtk.ui.h:551#: ../gtk/checkbox-gtk.ui.h:8
52msgid "_Skip this test"52msgid "_Skip this test"
53msgstr "_Slaan hierdie toets oor"53msgstr "_Slaan hierdie toets oor"
5454
55#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:53855#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:553
56msgid "_Test"56msgid "_Test"
57msgstr "_Toets"57msgstr "_Toets"
5858
59#: ../gtk/checkbox-gtk.ui.h:359#: ../gtk/checkbox-gtk.ui.h:10
60msgid "_Yes"60msgid "_Yes"
61msgstr "_Ja"61msgstr "_Ja"
6262
@@ -130,12 +130,8 @@
130" This test will check that a USB audio device works correctly\n"130" This test will check that a USB audio device works correctly\n"
131"STEPS:\n"131"STEPS:\n"
132" 1. Connect a USB audio device to your system\n"132" 1. Connect a USB audio device to your system\n"
133" 2. Open the volume control application by left-clicking on the speaker "133" 2. Click \"Test\", then speak into the microphone\n"
134"icon in the panel and selecting \"Sound Settings\"\n"134" 3. After a few seconds, your speech will be played back to you\n"
135" 3. Select the \"Input\" tab and choose your USB device\n"
136" 4. Select the \"Output\" tab and choose your USB device\n"
137" 5. Click \"Test\", then speak into the microphone\n"
138" 6. After a few seconds, your speech will be played back to you\n"
139"VERIFICATION:\n"135"VERIFICATION:\n"
140" Did you hear your speech played back through the USB headphones?"136" Did you hear your speech played back through the USB headphones?"
141msgstr ""137msgstr ""
@@ -157,13 +153,6 @@
157msgstr ""153msgstr ""
158154
159#. description155#. description
160#: ../jobs/bluetooth.txt.in:7
161msgid ""
162"This test will detect your Bluetooth device and output the device's hardware "
163"address. If no device is found, the test will exit with an error."
164msgstr ""
165
166#. description
167#: ../jobs/bluetooth.txt.in:8156#: ../jobs/bluetooth.txt.in:8
168msgid ""157msgid ""
169"Automated test to store bluetooth device information in checkbox report"158"Automated test to store bluetooth device information in checkbox report"
@@ -264,7 +253,8 @@
264"PURPOSE:\n"253"PURPOSE:\n"
265" This test will check that the built-in camera works\n"254" This test will check that the built-in camera works\n"
266"STEPS:\n"255"STEPS:\n"
267" 1. Click on Test to display a video capture from the camera\n"256" 1. Click on Test to display a video capture from the camera for ten "
257"seconds.\n"
268"VERIFICATION:\n"258"VERIFICATION:\n"
269" Did you see the video capture?"259" Did you see the video capture?"
270msgstr ""260msgstr ""
@@ -281,19 +271,6 @@
281msgstr ""271msgstr ""
282272
283#. description273#. description
284#: ../jobs/camera.txt.in:49
285msgid ""
286"PURPOSE:\n"
287" This test will check that you can capture video with the built-in "
288"camera\n"
289"STEPS:\n"
290" 1. Click on Test to capture video to a file (it will automatically open "
291"in Totem)\n"
292"VERIFICATION:\n"
293" Did you see and hear the capture?"
294msgstr ""
295
296#. description
297#: ../jobs/codecs.txt.in:7274#: ../jobs/codecs.txt.in:7
298msgid ""275msgid ""
299"PURPOSE:\n"276"PURPOSE:\n"
@@ -406,7 +383,12 @@
406383
407#. description384#. description
408#: ../jobs/disk.txt.in:9385#: ../jobs/disk.txt.in:9
409msgid "Benchmark for each disk "386msgid "Benchmark for each disk"
387msgstr ""
388
389#. description
390#: ../jobs/disk.txt.in:23
391msgid "Check stats changes for each disk"
410msgstr ""392msgstr ""
411393
412#. description394#. description
@@ -472,18 +454,42 @@
472msgstr ""454msgstr ""
473455
474#. description456#. description
475#: ../jobs/firewire.txt.in:3457#: ../jobs/firewire.txt.in:4
476msgid ""458msgid ""
477"PURPOSE:\n"459"PURPOSE:\n"
478" This test will check that the firewire port works\n"460" This test will check the system can detect the insertion of a FireWire "
461"HDD\n"
479"STEPS:\n"462"STEPS:\n"
480" 1. Plug a Firewire HDD into the computer\n"463" 1. Click 'Test' to begin the test. This test will\n"
481" 2. Either a window asking which action should be performed (open folder, "464" timeout and fail if the insertion has not been detected within 10 "
482"photo manager, etc) or a file browser will open.\n"465"seconds.\n"
483" 3. Copy some files from your internal HDD to the firewire HDD\n"466" 2. Plug a FireWire HDD into an available FireWire port.\n"
484" 4. Copy some files from the firewire HDD to your internal HDD\n"
485"VERIFICATION:\n"467"VERIFICATION:\n"
486" Do the copy operations work as expected?"468" The verification of this test is automated. Do not change the "
469"automatically\n"
470" selected result"
471msgstr ""
472
473#. description
474#: ../jobs/firewire.txt.in:19
475msgid ""
476"This is an automated test which performs read/write operations on an "
477"attached FireWire HDD"
478msgstr ""
479
480#. description
481#: ../jobs/firewire.txt.in:27
482msgid ""
483" PURPOSE:\n"
484" This test will check the system can detect the removal of a FireWire HDD\n"
485" STEPS:\n"
486" 1. Click 'Test' to begin the test. This test will timeout and fail if\n"
487" the removal has not been detected within 10 seconds.\n"
488" 2. Remove the previously attached FireWire HDD from the FireWire port.\n"
489" VERIFICATION:\n"
490" The verification of this test is automated. Do not change the "
491"automatically\n"
492" selected result"
487msgstr ""493msgstr ""
488494
489#. description495#. description
@@ -587,17 +593,8 @@
587msgstr ""593msgstr ""
588594
589#. description595#. description
590#: ../jobs/graphics.txt.in:107596#: ../jobs/graphics.txt.in:106
591msgid ""597msgid "Check that VESA drivers are not in use"
592"PURPOSE:\n"
593" This test checks the detected video modes\n"
594"STEPS:\n"
595" 1. The following screens and video modes have been detected on your "
596"system\n"
597"INFO:\n"
598" $output\n"
599"VERIFICATION:\n"
600" Are those correct?"
601msgstr ""598msgstr ""
602599
603#. description600#. description
@@ -612,8 +609,13 @@
612msgstr ""609msgstr ""
613610
614#. description611#. description
612#: ../jobs/graphics.txt.in:126
613msgid "Check that hardware is able to run compiz"
614msgstr ""
615
616#. description
615#: ../jobs/graphics.txt.in:133617#: ../jobs/graphics.txt.in:133
616msgid "Check that the hardware is able to run compiz."618msgid "Check that hardware is able to run Unity 3D"
617msgstr ""619msgstr ""
618620
619#. description621#. description
@@ -631,6 +633,55 @@
631msgstr ""633msgstr ""
632634
633#. description635#. description
636#: ../jobs/graphics.txt.in:159
637msgid ""
638"PURPOSE:\n"
639" Do some challenging operations and check for lockup on the GPU\n"
640"STEPS:\n"
641" 1. Create 2 glxgears windows and move them quickly\n"
642" 2. Switch workspaces/viewports with wmctrl\n"
643" 3. Launch a Flash playback in firefox\n"
644" 4. Suspend/resume\n"
645"VERIFICATION:\n"
646" 1. Atfer a 60s workload, check kern.log for reported GPU errors"
647msgstr ""
648
649#. description
650#: ../jobs/graphics.txt.in:174
651msgid ""
652"PURPOSE:\n"
653" Take a screengrab of the current screen (logged on Unity desktop)\n"
654"STEPS:\n"
655" 1. Take picture using USB webcam\n"
656"VERIFICATION:\n"
657" 1. Review attachment manually later"
658msgstr ""
659
660#. description
661#: ../jobs/graphics.txt.in:186 ../jobs/suspend.txt.in:316
662msgid "Attaches the screenshot captured in graphics/screenshot."
663msgstr ""
664
665#. description
666#: ../jobs/graphics.txt.in:194
667msgid ""
668"PURPOSE:\n"
669" Take a screengrab of the current screen during fullscreen video "
670"playback\n"
671"STEPS:\n"
672" 1. Start a fullscreen video playback\n"
673" 2. Take picture using USB webcam after a few seconds\n"
674"VERIFICATION:\n"
675" 1. Review attachment manually later"
676msgstr ""
677
678#. description
679#: ../jobs/graphics.txt.in:207
680msgid ""
681"Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
682msgstr ""
683
684#. description
634#: ../jobs/hibernate.txt.in:7685#: ../jobs/hibernate.txt.in:7
635msgid ""686msgid ""
636"PURPOSE:\n"687"PURPOSE:\n"
@@ -715,52 +766,42 @@
715msgstr ""766msgstr ""
716767
717#. description768#. description
718#: ../jobs/info.txt.in:85769#: ../jobs/info.txt.in:82
719msgid "Captures a screenshot."
720msgstr ""
721
722#. description
723#: ../jobs/info.txt.in:91
724msgid "Attaches the screenshot captured in info/screenshot."
725msgstr ""
726
727#. description
728#: ../jobs/info.txt.in:96
729msgid "Gather log from the Firmware Test Suite run."770msgid "Gather log from the Firmware Test Suite run."
730msgstr ""771msgstr ""
731772
732#. description773#. description
733#: ../jobs/info.txt.in:103774#: ../jobs/info.txt.in:89
734msgid "Attaches the contents of /proc/acpi/sleep if it exists."775msgid "Attaches the contents of /proc/acpi/sleep if it exists."
735msgstr ""776msgstr ""
736777
737#. description778#. description
738#: ../jobs/info.txt.in:107779#: ../jobs/info.txt.in:93
739msgid "Bootchart information."780msgid "Bootchart information."
740msgstr ""781msgstr ""
741782
742#. description783#. description
743#: ../jobs/info.txt.in:116784#: ../jobs/info.txt.in:102
744msgid "SATA/IDE device information."785msgid "SATA/IDE device information."
745msgstr ""786msgstr ""
746787
747#. description788#. description
748#: ../jobs/info.txt.in:133789#: ../jobs/info.txt.in:119
749msgid "Attaches the bootchart png file for bootchart runs"790msgid "Attaches the bootchart png file for bootchart runs"
750msgstr ""791msgstr ""
751792
752#. description793#. description
753#: ../jobs/info.txt.in:142794#: ../jobs/info.txt.in:128
754msgid "Attaches the bootchart log for bootchart test runs."795msgid "Attaches the bootchart log for bootchart test runs."
755msgstr ""796msgstr ""
756797
757#. description798#. description
758#: ../jobs/info.txt.in:150799#: ../jobs/info.txt.in:136
759msgid "installs the installer bootchart tarball if it exists."800msgid "installs the installer bootchart tarball if it exists."
760msgstr ""801msgstr ""
761802
762#. description803#. description
763#: ../jobs/info.txt.in:155804#: ../jobs/info.txt.in:141
764msgid "Attaches the installer debug log if it exists."805msgid "Attaches the installer debug log if it exists."
765msgstr ""806msgstr ""
766807
@@ -865,16 +906,14 @@
865msgstr ""906msgstr ""
866907
867#. description908#. description
868#: ../jobs/keys.txt.in:76909#: ../jobs/keys.txt.in:74
869msgid ""910msgid ""
870"PURPOSE:\n"911"PURPOSE:\n"
871" This test will test the media keys of your keyboard\n"912" This test will test the media keys of your keyboard\n"
872"STEPS:\n"913"STEPS:\n"
873" 1. Click test to launch the media player\n"914" 1. Click test to open a window on which to test the media control keys.\n"
874" 2. Press the play/pause key on the keyboard\n"915" 2. If all the keys work, the test will be marked as passed.\n"
875" 3. Press the forward key on the keyboard\n"916" 3. If your computer has no media control keys, Skip this test.\n"
876" 4. Press the backward key on the keyboard\n"
877" 5. Press stop key on the keyboard\n"
878"VERIFICATION:\n"917"VERIFICATION:\n"
879" Do the keys work as expected?"918" Do the keys work as expected?"
880msgstr ""919msgstr ""
@@ -1084,191 +1123,308 @@
1084msgstr ""1123msgstr ""
10851124
1086#. description1125#. description
1087#: ../jobs/mediacard.txt.in:31126#: ../jobs/mediacard.txt.in:4
1088msgid ""1127msgid ""
1089"PURPOSE:\n"1128"PURPOSE:\n"
1090" This test will check your system Secure Digital (SD) media card support\n"1129" This test will check that the systems media card reader can\n"
1091"STEPS:\n"1130" detect the insertion of a Multimedia Card (MMC) media\n"
1092" 1. Plug a SD media card into the computer\n"1131"STEPS:\n"
1093" 2. An icon should appear on the Launcher\n"1132" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1094" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1133" (Note: this test will time-out after 10 seconds.)\n"
1095" 4. The icon should disappear from the Launcher\n"1134" 2. Do not unplug the device after the test.\n"
1096"VERIFICATION:\n"1135"VERIFICATION:\n"
1097" Does the icon automatically appear/disappear?"1136" The verification of this test is automated. Do not change the\n"
1098msgstr ""1137" automatically selected result."
10991138msgstr ""
1100#. description1139
1101#: ../jobs/mediacard.txt.in:171140#. description
1102msgid ""1141#: ../jobs/mediacard.txt.in:20
1103"PURPOSE:\n"1142msgid ""
1104" This test will check your system Secure Digital (SD) media card support "1143"This test is automated and executes after the mediacard/mmc-insert test is "
1105"after suspend\n"1144"run. It tests reading and writing to the MMC card."
1106"STEPS:\n"1145msgstr ""
1107" 1. Plug a SD media card into the computer\n"1146
1108" 2. An icon should appear on the Launcher\n"1147#. description
1109" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1148#: ../jobs/mediacard.txt.in:28
1110" 4. The icon should disappear from the Launcher\n"1149msgid ""
1111"VERIFICATION:\n"1150"PURPOSE:\n"
1112" Does the icon automatically appear/disappear?"1151" This test will check that the system correctly detects\n"
1113msgstr ""1152" the removal of the MMC card from the systems card reader.\n"
11141153"STEPS:\n"
1115#. description1154" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1116#: ../jobs/mediacard.txt.in:301155" (Note: this test will time-out after 10 seconds.)\n"
1117msgid ""1156"VERIFICATION:\n"
1118"PURPOSE:\n"1157" The verification of this test is automated. Do not change the\n"
1119" This test will check your system Secure Digital High Capacity (SDHC) "1158" automatically selected result."
1120"media card support\n"1159msgstr ""
1121"STEPS:\n"1160
1122" 1. Plug a SDHC media card into the computer\n"1161#. description
1123" 2. An icon should appear on the Launcher\n"1162#: ../jobs/mediacard.txt.in:43
1124" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1163msgid ""
1125" 4. The icon should disappear from the Launcher\n"1164"PURPOSE:\n"
1126"VERIFICATION:\n"1165" This test will check that the systems media card reader can\n"
1127" Does the icon automatically appear/disappear?"1166" detect the insertion of an MMC card after the system has been suspended\n"
1128msgstr ""1167"STEPS:\n"
11291168" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1130#. description1169" (Note: this test will time-out after 10 seconds.)\n"
1131#: ../jobs/mediacard.txt.in:441170" 2. Do not unplug the device after the test.\n"
1132msgid ""1171"VERIFICATION:\n"
1133" This test will check your system Secure Digital High Capacity (SDHC) "1172" The verification of this test is automated. Do not change the\n"
1134"media card support after suspend\n"1173" automatically selected result."
1135"STEPS:\n"1174msgstr ""
1136" 1. Plug a SDHC media card into the computer\n"1175
1137" 2. An icon should appear on the Launcher\n"1176#. description
1138" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1177#: ../jobs/mediacard.txt.in:59
1139" 4. The icon should disappear from the Launcher\n"1178msgid ""
1140"VERIFICATION:\n"1179"This test is automated and executes after the mediacard/mmc-insert-after-"
1141" Does the icon automatically appear/disappear?"1180"suspend test is run. It tests reading and writing to the MMC card after the "
1142msgstr ""1181"system has been suspended."
11431182msgstr ""
1144#. description1183
1145#: ../jobs/mediacard.txt.in:561184#. description
1146msgid ""1185#: ../jobs/mediacard.txt.in:67
1147"PURPOSE:\n"1186msgid ""
1148" This test will check your system Multi Media Card (MMC) media card "1187"PURPOSE:\n"
1149"support\n"1188" This test will check that the system correctly detects the removal\n"
1150"STEPS:\n"1189" of an MMC card from the systems card reader after the system has been "
1151" 1. Plug a MMC media card into the computer\n"1190"suspended.\n"
1152" 2. An icon should appear on the Launcher\n"1191"STEPS:\n"
1153" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1192" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1154" 4. The icon should disappear from the Launcher\n"1193" (Note: this test will time-out after 10 seconds.)\n"
1155"VERIFICATION:\n"1194"VERIFICATION:\n"
1156" Does the icon automatically appear/disappear?"1195" The verification of this test is automated. Do not change the\n"
1157msgstr ""1196" automatically selected result."
11581197msgstr ""
1159#. description1198
1160#: ../jobs/mediacard.txt.in:701199#. description
1161msgid ""1200#: ../jobs/mediacard.txt.in:81
1162"PURPOSE:\n"1201msgid ""
1163" This test will check your system Multi Media Card (MMC) media card "1202"PURPOSE:\n"
1164"support after suspend\n"1203" This test will check that the systems media card reader can\n"
1165"STEPS:\n"1204" detect the insertion of a Secure Digital (SD) media card\n"
1166" 1. Plug a MMC media card into the computer\n"1205"STEPS:\n"
1167" 2. An icon should appear on the Launcher\n"1206" 1. Click \"Test\" and insert an SD card into the reader.\n"
1168" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1207" (Note: this test will time-out after 10 seconds.)\n"
1169" 4. The icon should disappear from the Launcher\n"1208" 2. Do not unplug the device after the test.\n"
1170"VERIFICATION:\n"1209"VERIFICATION:\n"
1171" Does the icon automatically appear/disappear?"1210" The verification of this test is automated. Do not change the\n"
1172msgstr ""1211" automatically selected result."
1173
1174#. description
1175#: ../jobs/mediacard.txt.in:83
1176msgid ""
1177"PURPOSE:\n"
1178" This test will check your system Memory Stick (MS) media card support\n"
1179"STEPS:\n"
1180" 1. Plug a MS media card into the computer\n"
1181" 2. An icon should appear on the Launcher\n"
1182" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"
1183" 4. The icon should disappear from the Launcher\n"
1184"VERIFICATION:\n"
1185" Does the icon automatically appear/disappear?"
1186msgstr ""1212msgstr ""
11871213
1188#. description1214#. description
1189#: ../jobs/mediacard.txt.in:971215#: ../jobs/mediacard.txt.in:97
1190msgid ""1216msgid ""
1191"PURPOSE:\n"1217"This test is automated and executes after the mediacard/sd-insert test is "
1192" This test will check your system Memory Stick (MS) media card support "1218"run. It tests reading and writing to the SD card."
1193"after suspend\n"1219msgstr ""
1194"STEPS:\n"1220
1195" 1. Plug a MS media card into the computer\n"1221#. description
1196" 2. An icon should appear on the Launcher\n"1222#: ../jobs/mediacard.txt.in:105
1197" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1223msgid ""
1198" 4. The icon should disappear from the Launcher\n"1224"PURPOSE:\n"
1199"VERIFICATION:\n"1225" This test will check that the system correctly detects\n"
1200" Does the icon automatically appear/disappear?"1226" the removal of an SD card from the systems card reader.\n"
1201msgstr ""1227"STEPS:\n"
12021228" 1. Click \"Test\" and remove the SD card from the reader.\n"
1203#. description1229" (Note: this test will time-out after 10 seconds.)\n"
1204#: ../jobs/mediacard.txt.in:1101230"VERIFICATION:\n"
1205msgid ""1231" The verification of this test is automated. Do not change the\n"
1206"PURPOSE:\n"1232" automatically selected result."
1207" This test will check your system Memory Stick Pro (MSP) media card "1233msgstr ""
1208"support\n"1234
1209"STEPS:\n"1235#. description
1210" 1. Plug a MSP media card into the computer\n"1236#: ../jobs/mediacard.txt.in:120
1211" 2. An icon should appear on the Launcher\n"1237msgid ""
1212" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1238"PURPOSE:\n"
1213" 4. The icon should disappear from the Launcher\n"1239" This test will check that the systems media card reader can\n"
1214"VERIFICATION:\n"1240" detect the insertion of an SD card after the system has been suspended\n"
1215" Does the icon automatically appear/disappear?"1241"STEPS:\n"
1216msgstr ""1242" 1. Click \"Test\" and insert an SD card into the reader.\n"
12171243" (Note: this test will time-out after 10 seconds.)\n"
1218#. description1244" 2. Do not unplug the device after the test.\n"
1219#: ../jobs/mediacard.txt.in:1241245"VERIFICATION:\n"
1220msgid ""1246" The verification of this test is automated. Do not change the\n"
1221"PURPOSE:\n"1247" automatically selected result."
1222" This test will check your system Memory Stick Pro (MSP) media card "1248msgstr ""
1223"support after suspend\n"1249
1224"STEPS:\n"1250#. description
1225" 1. Plug a MSP media card into the computer\n"1251#: ../jobs/mediacard.txt.in:136
1226" 2. An icon should appear on the Launcher\n"1252msgid ""
1227" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1253"This test is automated and executes after the mediacard/sd-insert-after-"
1228" 4. The icon should disappear from the Launcher\n"1254"suspend test is run. It tests reading and writing to the SD card after the "
1229"VERIFICATION:\n"1255"system has been suspended."
1230" Does the icon automatically appear/disappear?"1256msgstr ""
1231msgstr ""1257
12321258#. description
1233#. description1259#: ../jobs/mediacard.txt.in:144
1234#: ../jobs/mediacard.txt.in:1371260msgid ""
1235msgid ""1261"PURPOSE:\n"
1236"PURPOSE:\n"1262" This test will check that the system correctly detects\n"
1237" This test will check your system Compact Flash (CF) media card support\n"1263" the removal of an SD card from the systems card reader after the system "
1238"STEPS:\n"1264"has been suspended.\n"
1239" 1. Plug a CF media card into the computer\n"1265"STEPS:\n"
1240" 2. An icon should appear on the Launcher\n"1266" 1. Click \"Test\" and remove the SD card from the reader.\n"
1241" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1267" (Note: this test will time-out after 10 seconds.)\n"
1242" 4. The icon should disappear from the Launcher\n"1268"VERIFICATION:\n"
1243"VERIFICATION:\n"1269" The verification of this test is automated. Do not change the\n"
1244" Does the icon automatically appear/disappear?"1270" automatically selected result."
1245msgstr ""1271msgstr ""
12461272
1247#. description1273#. description
1248#: ../jobs/mediacard.txt.in:1511274#: ../jobs/mediacard.txt.in:158
1249msgid ""1275msgid ""
1250" This test will check your system Compact Flash (CF) media card support "1276"PURPOSE:\n"
1251"after suspend\n"1277" This test will check that the systems media card reader can\n"
1252"STEPS:\n"1278" detect the insertion of a Secure Digital High-Capacity (SDHC) media "
1253" 1. Plug a CF media card into the computer\n"1279"card\n"
1254" 2. An icon should appear on the Launcher\n"1280"STEPS:\n"
1255" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1281" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1256" 4. The icon should disappear from the Launcher\n"1282" (Note: this test will time-out after 10 seconds.)\n"
1257"VERIFICATION:\n"1283" 2. Do not unplug the device after the test.\n"
1258" Does the icon automatically appear/disappear?"1284"VERIFICATION:\n"
1259msgstr ""1285" The verification of this test is automated. Do not change the\n"
12601286" automatically selected result."
1261#. description1287msgstr ""
1262#: ../jobs/memory.txt.in:41288
1263msgid ""1289#. description
1264"PURPOSE:\n"1290#: ../jobs/mediacard.txt.in:174
1265" This test checks the amount of memory that is detected\n"1291msgid ""
1266"STEPS:\n"1292"This test is automated and executes after the mediacard/sdhc-insert test is "
1267" 1. Click Test to see the amount of detected memory\n"1293"run. It tests reading and writing to the SDHC card."
1268"INFO:\n"1294msgstr ""
1269" $output\n"1295
1270"VERIFICATION:\n"1296#. description
1271" Is the amount of detected memory correct?"1297#: ../jobs/mediacard.txt.in:182
1298msgid ""
1299"PURPOSE:\n"
1300" This test will check that the system correctly detects\n"
1301" the removal of an SDHC card from the systems card reader.\n"
1302"STEPS:\n"
1303" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1304" (Note: this test will time-out after 10 seconds.)\n"
1305"VERIFICATION:\n"
1306" The verification of this test is automated. Do not change the\n"
1307" automatically selected result."
1308msgstr ""
1309
1310#. description
1311#: ../jobs/mediacard.txt.in:197
1312msgid ""
1313"PURPOSE:\n"
1314" This test will check that the systems media card reader can\n"
1315" detect the insertion of an SDHC media card after the system has been "
1316"suspended\n"
1317"STEPS:\n"
1318" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1319" (Note: this test will time-out after 10 seconds.)\n"
1320" 2. Do not unplug the device after the test.\n"
1321"VERIFICATION:\n"
1322" The verification of this test is automated. Do not change the\n"
1323" automatically selected result."
1324msgstr ""
1325
1326#. description
1327#: ../jobs/mediacard.txt.in:213
1328msgid ""
1329"This test is automated and executes after the mediacard/sdhc-insert-after-"
1330"suspend test is run. It tests reading and writing to the SDHC card after the "
1331"system has been suspended."
1332msgstr ""
1333
1334#. description
1335#: ../jobs/mediacard.txt.in:221
1336msgid ""
1337"PURPOSE:\n"
1338" This test will check that the system correctly detects the removal\n"
1339" of an SDHC card from the systems card reader after the system has been "
1340"suspended.\n"
1341"STEPS:\n"
1342" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1343" (Note: this test will time-out after 10 seconds.)\n"
1344"VERIFICATION:\n"
1345" The verification of this test is automated. Do not change the\n"
1346" automatically selected result."
1347msgstr ""
1348
1349#. description
1350#: ../jobs/mediacard.txt.in:235
1351msgid ""
1352"PURPOSE:\n"
1353" This test will check that the systems media card reader can\n"
1354" detect the insertion of a Compact Flash (CF) media card\n"
1355"STEPS:\n"
1356" 1. Click \"Test\" and insert a CF card into the reader.\n"
1357" (Note: this test will time-out after 10 seconds.)\n"
1358" 2. Do not unplug the device after the test.\n"
1359"VERIFICATION:\n"
1360" The verification of this test is automated. Do not change the\n"
1361" automatically selected result."
1362msgstr ""
1363
1364#. description
1365#: ../jobs/mediacard.txt.in:251
1366msgid ""
1367"This test is automated and executes after the mediacard/cf-insert test is "
1368"run. It tests reading and writing to the CF card."
1369msgstr ""
1370
1371#. description
1372#: ../jobs/mediacard.txt.in:259
1373msgid ""
1374"PURPOSE:\n"
1375" This test will check that the system correctly detects\n"
1376" the removal of a CF card from the systems card reader.\n"
1377"STEPS:\n"
1378" 1. Click \"Test\" and remove the CF card from the reader.\n"
1379" (Note: this test will time-out after 10 seconds.)\n"
1380"VERIFICATION:\n"
1381" The verification of this test is automated. Do not change the\n"
1382" automatically selected result."
1383msgstr ""
1384
1385#. description
1386#: ../jobs/mediacard.txt.in:274
1387msgid ""
1388"PURPOSE:\n"
1389" This test will check that the systems media card reader can\n"
1390" detect the insertion of a CF card after the system has been suspended\n"
1391"STEPS:\n"
1392" 1. Click \"Test\" and insert a CF card into the reader.\n"
1393" (Note: this test will time-out after 10 seconds.)\n"
1394" 2. Do not unplug the device after the test.\n"
1395"VERIFICATION:\n"
1396" The verification of this test is automated. Do not change the\n"
1397" automatically selected result."
1398msgstr ""
1399
1400#. description
1401#: ../jobs/mediacard.txt.in:290
1402msgid ""
1403"This test is automated and executes after the mediacard/cf-insert-after-"
1404"suspend test is run. It tests reading and writing to the CF card after the "
1405"system has been suspended."
1406msgstr ""
1407
1408#. description
1409#: ../jobs/mediacard.txt.in:298
1410msgid ""
1411"PURPOSE:\n"
1412" This test will check that the system correctly detects the removal\n"
1413" of a CF card from the systems card reader after the system has been "
1414"suspended.\n"
1415"STEPS:\n"
1416" 1. Click \"Test\" and remove the CF card from the reader.\n"
1417" (Note: this test will time-out after 10 seconds.)\n"
1418"VERIFICATION:\n"
1419" The verification of this test is automated. Do not change the\n"
1420" automatically selected result."
1421msgstr ""
1422
1423#. description
1424#: ../jobs/memory.txt.in:5
1425msgid ""
1426"This test checks the amount of memory which is reporting in meminfo against "
1427"the size of the memory modules detected by DMI."
1272msgstr ""1428msgstr ""
12731429
1274#. description1430#. description
@@ -1296,13 +1452,6 @@
1296msgstr ""1452msgstr ""
12971453
1298#. description1454#. description
1299#: ../jobs/miscellanea.txt.in:29
1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."
1303msgstr ""
1304
1305#. description
1306#: ../jobs/miscellanea.txt.in:311455#: ../jobs/miscellanea.txt.in:31
1307msgid ""1456msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1457"This will run some basic connectivity tests against a BMC, verifying that "
@@ -1317,14 +1466,18 @@
1317msgstr ""1466msgstr ""
13181467
1319#. description1468#. description
1320#: ../jobs/miscellanea.txt.in:511469#: ../jobs/miscellanea.txt.in:45
1321msgid ""1470msgid ""
1322"This test checks /var/crash to see if there are any crash reports present."1471"Test that the /var/crash directory doesn't contain anything. Lists the files "
1472"contained within if it does, or echoes the status of the directory (doesn't "
1473"exist/is empty)"
1323msgstr ""1474msgstr ""
13241475
1325#. description1476#. description
1326#: ../jobs/miscellanea.txt.in:511477#: ../jobs/miscellanea.txt.in:53
1327msgid "If there are, this test will fail."1478msgid ""
1479"Test to check that virtualization is supported and the test system has at "
1480"least a minimal amount of RAM to function as an OpenStack Compute Node"
1328msgstr ""1481msgstr ""
13291482
1330#. description1483#. description
@@ -1433,6 +1586,13 @@
1433msgstr ""1586msgstr ""
14341587
1435#. description1588#. description
1589#: ../jobs/networking.txt.in:40
1590msgid ""
1591"This is an automated test to gather some info on the current state of your "
1592"network devices. If no devices are found, the test will exit with an error."
1593msgstr ""
1594
1595#. description
1436#: ../jobs/networking.txt.in:461596#: ../jobs/networking.txt.in:46
1437msgid ""1597msgid ""
1438"PURPOSE:\n"1598"PURPOSE:\n"
@@ -1512,63 +1672,80 @@
1512msgstr ""1672msgstr ""
15131673
1514#. description1674#. description
1515#: ../jobs/optical.txt.in:181675#: ../jobs/optical.txt.in:16
1516msgid "Optical Storage device read tests"1676msgid ""
1517msgstr ""1677"PURPOSE:\n"
15181678" This test will check your optical devices ability to read CD media\n"
1519#. description1679"STEPS:\n"
1520#: ../jobs/optical.txt.in:351680" 1. Insert appropriate non-blank media into your optical drive(s). Movie "
1521msgid ""1681"and Audio Disks may not work. Self-created data disks have the greatest "
1522"PURPOSE:\n"1682"chance of working.\n"
1523" This test will check your system's CDROM writing capabilities. If your "1683" 2. If a file browser window opens, you can safely close or ignore that "
1524"drive does not support writing CDs or you do not have any blank CD media, "1684"window.\n"
1525"please skip this test.\n"1685" 3. Click \"Test\" to being the test.\n"
1526"STEPS:\n"1686" 4. When the test completes, proceed by clicking \"Next\"\n"
1527" 1. Enter a blank CDROM into your drive\n"1687"VERIFICATION:\n"
1528" 2. Write something in the CDROM\n"1688" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1529" 3. Read the newly written CDROM\n"1689"fails."
1530"VERIFICATION:\n"1690msgstr ""
1531" Was the data correctly written?"1691
1532msgstr ""1692#. description
15331693#: ../jobs/optical.txt.in:43
1534#. description1694msgid ""
1535#: ../jobs/optical.txt.in:471695"PURPOSE:\n"
1696" This test will check your system's CD writing capabilities. This test "
1697"requires a blank CD-R. If you do not have a blank CD-R, skip this test.\n"
1698"STEPS:\n"
1699" 1. Enter a blank CD-R into your drive\n"
1700" 2. Click \"Test\" to begin.\n"
1701" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1702"remove the disk, it is needed for the second portion of the test). Note, you "
1703"must close the drive within 10 seconds or the test will time out.\n"
1704" 4. When the test completes, proceed by clicking \"Next\"\n"
1705"VERIFICATION:\n"
1706" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1707"fails."
1708msgstr ""
1709
1710#. description
1711#: ../jobs/optical.txt.in:57
1536msgid ""1712msgid ""
1537"PURPOSE:\n"1713"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1714" This test will check your CD audio playback capabilities\n"
1539"STEPS:\n"1715"STEPS:\n"
1540" 1. Insert an audio CD in your optical drive\n"1716" 1. Insert an audio CD in your optical drive\n"
1541" 2. Open the Dash (click on the Ubuntu Circle of Friends button on the "1717" 2. When prompted, launch the Music Player\n"
1542"Launcher)\n"1718" 3. Locate the CD in the display of the Music Player\n"
1543" 3. Click \"Listen to Music\" to open Banshee\n"1719" 4. Select the CD in the Music Player\n"
1544" 4. Select the CD under \"Libraries\" in the left panel of Banshee\n"1720" 5. Click the Play button to listen to the music on the CD\n"
1545" 5. Click the Play button to listen to music\n"
1546" 6. Stop playing after some time\n"1721" 6. Stop playing after some time\n"
1547" 7. Right click on the CD icon under \"Libraries\" and select \"Eject "1722" 7. Right click on the CD icon and select \"Eject Disc\"\n"
1548"Disc\"\n"
1549" 8. The CD should be ejected\n"1723" 8. The CD should be ejected\n"
1550" 9. Close Banshee\n"1724" 9. Close the Music Player\n"
1551"VERIFICATION:\n"1725"VERIFICATION:\n"
1552" Did all the steps work?"1726" Did all the steps work?"
1553msgstr ""1727msgstr ""
15541728
1555#. description1729#. description
1556#: ../jobs/optical.txt.in:681730#: ../jobs/optical.txt.in:80
1557msgid ""1731msgid ""
1558"PURPOSE:\n"1732"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1733" This test will check your system's DVD writing capabilities. This test "
1560"drive does not support writing DVDs or you do not have any blank DVD media, "1734"requires a blank DVD-R. If you do not have a blank DVD-R, skip this test.\n"
1561"please skip this test.\n"
1562"STEPS:\n"1735"STEPS:\n"
1563" 1. Enter a blank DVD into your drive\n"1736" 1. Enter a blank DVD-R into your drive\n"
1564" 2. Write something in the DVD\n"1737" 2. Click \"Test\" to begin.\n"
1565" 3. Read the newly written DVD\n"1738" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1739"remove the disk, it is needed for the second portion of the test). Note, you "
1740"must close the drive within 10 seconds or the test will time out.\n"
1741" 4. When the test completes, proceed by clicking \"Next\"\n"
1566"VERIFICATION:\n"1742"VERIFICATION:\n"
1567" Was the data correctly written?"1743" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1744"fails."
1568msgstr ""1745msgstr ""
15691746
1570#. description1747#. description
1571#: ../jobs/optical.txt.in:841748#: ../jobs/optical.txt.in:94
1572msgid ""1749msgid ""
1573"PURPOSE:\n"1750"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1751" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1764,7 @@
1587msgstr ""1764msgstr ""
15881765
1589#. description1766#. description
1590#: ../jobs/optical.txt.in:1021767#: ../jobs/optical.txt.in:112
1591msgid ""1768msgid ""
1592"PURPOSE:\n"1769"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1770" This test will check your DVD playback capabilities\n"
@@ -1843,6 +2020,11 @@
1843msgstr ""2020msgstr ""
18442021
1845#. description2022#. description
2023#: ../jobs/suspend.txt.in:4
2024msgid "Record the current network before suspending."
2025msgstr ""
2026
2027#. description
1846#: ../jobs/suspend.txt.in:92028#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."2029msgid "Record the current resolution before suspending."
1848msgstr ""2030msgstr ""
@@ -1864,14 +2046,14 @@
1864msgstr ""2046msgstr ""
18652047
1866#. description2048#. description
1867#: ../jobs/suspend.txt.in:492049#: ../jobs/suspend.txt.in:40
1868msgid ""2050msgid ""
1869"This test disconnects all connections and then connects to the wireless "2051"This test disconnects all connections and then connects to the wireless "
1870"interface. It then checks the connection to confirm it's working as expected."2052"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""2053msgstr ""
18722054
1873#. description2055#. description
1874#: ../jobs/suspend.txt.in:832056#: ../jobs/suspend.txt.in:74
1875msgid ""2057msgid ""
1876"PURPOSE:\n"2058"PURPOSE:\n"
1877" This test will check suspend and resume\n"2059" This test will check suspend and resume\n"
@@ -1887,34 +2069,34 @@
1887msgstr ""2069msgstr ""
18882070
1889#. description2071#. description
1890#: ../jobs/suspend.txt.in:962072#: ../jobs/suspend.txt.in:87
1891msgid "Test the network after resuming."2073msgid "Test the network after resuming."
1892msgstr ""2074msgstr ""
18932075
1894#. description2076#. description
2077#: ../jobs/suspend.txt.in:93
2078msgid ""
2079"Test to see that we have the same resolution after resuming as before."
2080msgstr ""
2081
2082#. description
1895#: ../jobs/suspend.txt.in:1022083#: ../jobs/suspend.txt.in:102
1896msgid ""2084msgid ""
1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""
1899
1900#. description
1901#: ../jobs/suspend.txt.in:111
1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."2085"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""2086msgstr ""
19052087
1906#. description2088#. description
1907#: ../jobs/suspend.txt.in:1272089#: ../jobs/suspend.txt.in:118
1908msgid "Verify that all CPUs are online after resuming."2090msgid "Verify that all CPUs are online after resuming."
1909msgstr ""2091msgstr ""
19102092
1911#. description2093#. description
2094#: ../jobs/suspend.txt.in:135
2095msgid "Verify that all memory is available after resuming from suspend."
2096msgstr ""
2097
2098#. description
1912#: ../jobs/suspend.txt.in:1442099#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""
1915
1916#. description
1917#: ../jobs/suspend.txt.in:153
1918msgid ""2100msgid ""
1919"PURPOSE:\n"2101"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "2102" This test will check that the display is correct after suspend and "
@@ -1924,7 +2106,7 @@
1924msgstr ""2106msgstr ""
19252107
1926#. description2108#. description
1927#: ../jobs/suspend.txt.in:1742109#: ../jobs/suspend.txt.in:155
1928msgid ""2110msgid ""
1929"This test checks that the wireless interface is working after suspending the "2111"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "2112"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +2114,49 @@
1932msgstr ""2114msgstr ""
19332115
1934#. description2116#. description
1935#: ../jobs/suspend.txt.in:1862117#: ../jobs/suspend.txt.in:167
2118msgid ""
2119"Tests that the systems wireless hardware can connect to a router using WPA "
2120"security and the 802.11b/g protocols after the system has been suspended."
2121msgstr ""
2122
2123#. description
2124#: ../jobs/suspend.txt.in:178
2125msgid ""
2126"Tests that the systems wireless hardware can connect to a router using no "
2127"security and the 802.11b/g protocols after the system has been suspended."
2128msgstr ""
2129
2130#. description
2131#: ../jobs/suspend.txt.in:189
2132msgid ""
2133"Tests that the systems wireless hardware can connect to a router using WPA "
2134"security and the 802.11n protocol after the system has been suspended."
2135msgstr ""
2136
2137#. description
2138#: ../jobs/suspend.txt.in:200
2139msgid ""
2140"Tests that the systems wireless hardware can connect to a router using no "
2141"security and the 802.11n protocol after the system has been suspended."
2142msgstr ""
2143
2144#. description
2145#: ../jobs/suspend.txt.in:211
1936msgid ""2146msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "2147"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."2148"and compares it to the address grabbed before suspend."
1939msgstr ""2149msgstr ""
19402150
1941#. description2151#. description
1942#: ../jobs/suspend.txt.in:1962152#: ../jobs/suspend.txt.in:221
1943msgid ""2153msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "2154"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."2155"device specified by the BTDEVADDR environment variable."
1946msgstr ""2156msgstr ""
19472157
1948#. description2158#. description
1949#: ../jobs/suspend.txt.in:2062159#: ../jobs/suspend.txt.in:231
1950msgid ""2160msgid ""
1951"PURPOSE:\n"2161"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "2162" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +2171,7 @@
1961msgstr ""2171msgstr ""
19622172
1963#. description2173#. description
1964#: ../jobs/suspend.txt.in:2202174#: ../jobs/suspend.txt.in:245
1965msgid ""2175msgid ""
1966"PURPOSE:\n"2176"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"2177" This test will cycle through the detected display modes\n"
@@ -1972,7 +2182,7 @@
1972msgstr ""2182msgstr ""
19732183
1974#. description2184#. description
1975#: ../jobs/suspend.txt.in:2322185#: ../jobs/suspend.txt.in:257
1976msgid ""2186msgid ""
1977"This test will check to make sure supported video modes work after a suspend "2187"This test will check to make sure supported video modes work after a suspend "
1978"and resume. This is done automatically by taking screenshots and uploading "2188"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,28 +2190,14 @@
1980msgstr ""2190msgstr ""
19812191
1982#. description2192#. description
1983#: ../jobs/suspend.txt.in:2412193#: ../jobs/suspend.txt.in:266
1984msgid ""2194msgid ""
1985"This attaches screenshots from the "2195"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."2196"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
1987msgstr ""2197msgstr ""
19882198
1989#. description2199#. description
1990#: ../jobs/suspend.txt.in:2312200#: ../jobs/suspend.txt.in:276
1991msgid ""
1992"PURPOSE:\n"
1993" This will test that USB functionality is restored after a suspend and "
1994"resume cycle\n"
1995"STEPS:\n"
1996" 1. Plug in at least one USB storage device if one is not already "
1997"connected\n"
1998" 2. Click \"Test\" to start\n"
1999"VERIFICATION:\n"
2000" Automatically verified"
2001msgstr ""
2002
2003#. description
2004#: ../jobs/suspend.txt.in:251
2005msgid ""2201msgid ""
2006"This will check to make sure that your audio device works properly after a "2202"This will check to make sure that your audio device works properly after a "
2007"suspend and resume. This may work fine with speakers and onboard "2203"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2206,12 @@
2010msgstr ""2206msgstr ""
20112207
2012#. description2208#. description
2013#: ../jobs/suspend.txt.in:2602209#: ../jobs/suspend.txt.in:285
2014msgid "This is the automated version of suspend/suspend_advanced."2210msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2211msgstr ""
20162212
2017#. description2213#. description
2018#: ../jobs/suspend.txt.in:2692214#: ../jobs/suspend.txt.in:294
2019msgid ""2215msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2216"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2217"configured server. During this process the system will suspend, then "
@@ -2023,6 +2219,18 @@
2023msgstr ""2219msgstr ""
20242220
2025#. description2221#. description
2222#: ../jobs/suspend.txt.in:304
2223msgid ""
2224"PURPOSE:\n"
2225" Take a screengrab of the current screen after suspend (logged on Unity "
2226"desktop)\n"
2227"STEPS:\n"
2228" 1. Take picture using USB webcam\n"
2229"VERIFICATION:\n"
2230" 1. Review attachment manually later"
2231msgstr ""
2232
2233#. description
2026#: ../jobs/unity.txt.in:62234#: ../jobs/unity.txt.in:6
2027msgid ""2235msgid ""
2028"Xlib is required for unity testing. This checks for Xlib and installs it if "2236"Xlib is required for unity testing. This checks for Xlib and installs it if "
@@ -2045,7 +2253,7 @@
2045#: ../jobs/usb.txt.in:122253#: ../jobs/usb.txt.in:12
2046msgid ""2254msgid ""
2047"PURPOSE:\n"2255"PURPOSE:\n"
2048" This test will check your USB connection.\n"2256" This test will check that your system detects USB storage devices.\n"
2049"STEPS:\n"2257"STEPS:\n"
2050" 1. Plug in one or more USB keys or hard drives.\n"2258" 1. Plug in one or more USB keys or hard drives.\n"
2051" 2. Click on \"Test\".\n"2259" 2. Click on \"Test\".\n"
@@ -2083,28 +2291,33 @@
2083#: ../jobs/usb.txt.in:552291#: ../jobs/usb.txt.in:55
2084msgid ""2292msgid ""
2085"PURPOSE:\n"2293"PURPOSE:\n"
2086" This test will check your USB connection.\n"2294" This test will check that the system correctly detects the insertion of\n"
2295" a USB storage device\n"
2087"STEPS:\n"2296"STEPS:\n"
2088" 1. Click \"Test\" and insert a USB device within 5 seconds.\n"2297" 1. Click \"Test\" and insert a USB storage device (pen-drive/HDD).\n"
2298" (Note: this test will time-out after 10 seconds.)\n"
2089" 2. Do not unplug the device after the test.\n"2299" 2. Do not unplug the device after the test.\n"
2090"VERIFICATION:\n"2300"VERIFICATION:\n"
2091" The verification of this test is automated."2301" The verification of this test is automated. Do not change the\n"
2302" automatically selected result."
2092msgstr ""2303msgstr ""
20932304
2094#. description2305#. description
2095#: ../jobs/usb.txt.in:692306#: ../jobs/usb.txt.in:72
2096msgid ""2307msgid ""
2097"PURPOSE:\n"2308"PURPOSE:\n"
2098" This test will check your USB connection.\n"2309" This test will check that the system correctly detects the removal of\n"
2310" a USB storage device\n"
2099"STEPS:\n"2311"STEPS:\n"
2100" 1. Click \"Test\" and remove the USB device within 5 seconds.\n"2312" 1. Click \"Test\" and remove the USB device.\n"
2101" 2. Do not unplug the device after the test.\n"2313" (Note: this test will time-out after 10 seconds.)\n"
2102"VERIFICATION:\n"2314"VERIFICATION:\n"
2103" The verification of this test is automated."2315" The verification of this test is automated. Do not change the\n"
2316" automatically selected result."
2104msgstr ""2317msgstr ""
21052318
2106#. description2319#. description
2107#: ../jobs/usb.txt.in:822320#: ../jobs/usb.txt.in:88
2108msgid ""2321msgid ""
2109"PURPOSE:\n"2322"PURPOSE:\n"
2110" This test will check your USB connection.\n"2323" This test will check your USB connection.\n"
@@ -2113,14 +2326,21 @@
2113" 2. An icon should appear on the Launcher.\n"2326" 2. An icon should appear on the Launcher.\n"
2114" 3. Click \"Test\" to begin the test.\n"2327" 3. Click \"Test\" to begin the test.\n"
2115"VERIFICATION:\n"2328"VERIFICATION:\n"
2116" The verification of this test is automated."2329" The verification of this test is automated. Do not change the\n"
2117msgstr ""2330" automatically selected result."
21182331msgstr ""
2119#. description2332
2120#: ../jobs/usb.txt.in:802333#. description
2334#: ../jobs/usb.txt.in:104
2335msgid "This test is automated and executes after the usb/insert test is run."
2336msgstr ""
2337
2338#. description
2339#: ../jobs/usb.txt.in:111
2121msgid ""2340msgid ""
2122"This test is automated and requires that you plug in at least one usb "2341"This is an automated version of usb/storage-automated and assumes that the "
2123"storage device before running checkbox."2342"server has usb storage devices plugged in prior to checkbox execution. It "
2343"is intended for servers and SRU automated testing."
2124msgstr ""2344msgstr ""
21252345
2126#. description2346#. description
@@ -2571,7 +2791,7 @@
2571#. description2791#. description
2572#: ../jobs/wireless.txt.in:382792#: ../jobs/wireless.txt.in:38
2573msgid ""2793msgid ""
2574"Tests that the systems wireless hardware can connect to a router using no no "2794"Tests that the systems wireless hardware can connect to a router using no "
2575"security and the 802.11b/g protocols."2795"security and the 802.11b/g protocols."
2576msgstr ""2796msgstr ""
25772797
@@ -2585,7 +2805,7 @@
2585#. description2805#. description
2586#: ../jobs/wireless.txt.in:582806#: ../jobs/wireless.txt.in:58
2587msgid ""2807msgid ""
2588"Tests that the systems wireless hardware can connect to a router using no no "2808"Tests that the systems wireless hardware can connect to a router using no "
2589"security and the 802.11n protocol."2809"security and the 802.11n protocol."
2590msgstr ""2810msgstr ""
25912811
@@ -2738,17 +2958,17 @@
2738msgstr ""2958msgstr ""
27392959
2740#: ../checkbox_cli/cli_interface.py:312960#: ../checkbox_cli/cli_interface.py:31
2741#: ../checkbox_urwid/urwid_interface.py:9172961#: ../checkbox_urwid/urwid_interface.py:917 ../checkbox_qt/qt_interface.py:33
2742msgid "yes"2962msgid "yes"
2743msgstr ""2963msgstr ""
27442964
2745#: ../checkbox_cli/cli_interface.py:322965#: ../checkbox_cli/cli_interface.py:32
2746#: ../checkbox_urwid/urwid_interface.py:9182966#: ../checkbox_urwid/urwid_interface.py:918 ../checkbox_qt/qt_interface.py:34
2747msgid "no"2967msgid "no"
2748msgstr ""2968msgstr ""
27492969
2750#: ../checkbox_cli/cli_interface.py:332970#: ../checkbox_cli/cli_interface.py:33
2751#: ../checkbox_urwid/urwid_interface.py:9192971#: ../checkbox_urwid/urwid_interface.py:919 ../checkbox_qt/qt_interface.py:35
2752msgid "skip"2972msgid "skip"
2753msgstr ""2973msgstr ""
27542974
@@ -2761,6 +2981,15 @@
2761msgid "Please choose (%s): "2981msgid "Please choose (%s): "
2762msgstr ""2982msgstr ""
27632983
2984#: ../checkbox_cli/cli_interface.py:229 ../checkbox_cli/cli_interface.py:338
2985#: ../checkbox_cli/cli_interface.py:368
2986msgid "Space when finished"
2987msgstr ""
2988
2989#: ../checkbox_cli/cli_interface.py:367
2990msgid "Combine with character above to expand node"
2991msgstr ""
2992
2764#: ../checkbox_cli/cli_interface.py:4162993#: ../checkbox_cli/cli_interface.py:416
2765msgid "test"2994msgid "test"
2766msgstr ""2995msgstr ""
@@ -2784,27 +3013,36 @@
2784#: ../checkbox_urwid/urwid_interface.py:1983013#: ../checkbox_urwid/urwid_interface.py:198
2785#: ../checkbox_urwid/urwid_interface.py:2743014#: ../checkbox_urwid/urwid_interface.py:274
2786#: ../checkbox_urwid/urwid_interface.py:4253015#: ../checkbox_urwid/urwid_interface.py:425
2787#: ../checkbox_urwid/urwid_interface.py:5473016#: ../checkbox_urwid/urwid_interface.py:547 ../qt/frontend/ui_qtfront.h:609
2788msgid "Previous"3017msgid "Previous"
2789msgstr ""3018msgstr ""
27903019
2791#: ../checkbox_urwid/urwid_interface.py:1993020#: ../checkbox_urwid/urwid_interface.py:199
2792#: ../checkbox_urwid/urwid_interface.py:2753021#: ../checkbox_urwid/urwid_interface.py:275
2793#: ../checkbox_urwid/urwid_interface.py:4263022#: ../checkbox_urwid/urwid_interface.py:426
2794#: ../checkbox_urwid/urwid_interface.py:5483023#: ../checkbox_urwid/urwid_interface.py:548 ../qt/frontend/ui_qtfront.h:608
2795msgid "Next"3024msgid "Next"
2796msgstr ""3025msgstr ""
27973026
2798#. Show buttons3027#. Show buttons
2799#: ../checkbox_urwid/urwid_interface.py:4233028#: ../checkbox_urwid/urwid_interface.py:423 ../qt/frontend/qtfront.cpp:137
2800msgid "Select All"3029msgid "Select All"
2801msgstr ""3030msgstr ""
28023031
2803#: ../checkbox_urwid/urwid_interface.py:4243032#: ../checkbox_urwid/urwid_interface.py:424 ../qt/frontend/qtfront.cpp:138
2804msgid "Deselect All"3033msgid "Deselect All"
2805msgstr ""3034msgstr ""
28063035
2807#: ../checkbox_urwid/urwid_interface.py:10133036#. Show buttons
3037#: ../checkbox_urwid/urwid_interface.py:545
3038msgid "Expand All"
3039msgstr ""
3040
3041#: ../checkbox_urwid/urwid_interface.py:546
3042msgid "Collapse All"
3043msgstr ""
3044
3045#: ../checkbox_urwid/urwid_interface.py:1013 ../qt/frontend/ui_qtfront.h:603
2808msgid "Test"3046msgid "Test"
2809msgstr ""3047msgstr ""
28103048
@@ -2812,23 +3050,18 @@
2812msgid "Test Again"3050msgid "Test Again"
2813msgstr ""3051msgstr ""
28143052
2815#: ../checkbox_gtk/gtk_interface.py:5033053#: ../checkbox_gtk/gtk_interface.py:517
2816msgid "_Test Again"3054msgid "_Test Again"
2817msgstr ""3055msgstr ""
28183056
2819#: ../checkbox_gtk/gtk_interface.py:5513057#: ../checkbox_gtk/gtk_interface.py:566
2820msgid "Info"3058msgid "Info"
2821msgstr ""3059msgstr ""
28223060
2823#: ../checkbox_gtk/gtk_interface.py:5753061#: ../checkbox_gtk/gtk_interface.py:590
2824msgid "Error"3062msgid "Error"
2825msgstr ""3063msgstr ""
28263064
2827#: ../checkbox/user_interface.py:137
2828#, python-format
2829msgid "Unable to start web browser to open %s."
2830msgstr ""
2831
2832#: ../plugins/apport_prompt.py:833065#: ../plugins/apport_prompt.py:83
2833msgid ""3066msgid ""
2834"Collecting information about this test.\n"3067"Collecting information about this test.\n"
@@ -2843,19 +3076,19 @@
28433076
2844#: ../plugins/apport_prompt.py:2273077#: ../plugins/apport_prompt.py:227
2845#, python-format3078#, python-format
2846msgid "Test %(name)s from suite %(suite)s failed."3079msgid "Test %(name)s failed."
3080msgstr ""
3081
3082#: ../plugins/apport_prompt.py:230
3083#, python-format
3084msgid "Test %s failed."
2847msgstr ""3085msgstr ""
28483086
2849#: ../plugins/apport_prompt.py:2313087#: ../plugins/apport_prompt.py:231
2850#, python-format
2851msgid "Test %s failed."
2852msgstr ""
2853
2854#: ../plugins/apport_prompt.py:232
2855msgid "Do you want to report a bug?"3088msgid "Do you want to report a bug?"
2856msgstr ""3089msgstr ""
28573090
2858#: ../plugins/apport_prompt.py:2493091#: ../plugins/apport_prompt.py:248
2859#, python-format3092#, python-format
2860msgid "Is a package upgrade in process? Error: %s"3093msgid "Is a package upgrade in process? Error: %s"
2861msgstr ""3094msgstr ""
@@ -2916,7 +3149,7 @@
2916msgid "Information not posted to Launchpad."3149msgid "Information not posted to Launchpad."
2917msgstr ""3150msgstr ""
29183151
2919#: ../plugins/launchpad_prompt.py:713152#: ../plugins/launchpad_prompt.py:74
2920#, python-format3153#, python-format
2921msgid ""3154msgid ""
2922"The following report has been generated for submission to the Launchpad "3155"The following report has been generated for submission to the Launchpad "
@@ -2924,17 +3157,13 @@
2924"\n"3157"\n"
2925" [[%s|View Report]]\n"3158" [[%s|View Report]]\n"
2926"\n"3159"\n"
2927"You can submit this information about your system by providing the e-mail "3160"You can submit this information about your system by providing the email "
2928"address you use to sign in to Launchpad. If you do not have a Launchpad "3161"address you use to sign in to Launchpad. If you do not have a Launchpad "
2929"account, please register here:\n"3162"account, please register here:\n"
2930"\n"3163"\n"
2931" https://launchpad.net/+login"3164" https://launchpad.net/+login"
2932msgstr ""3165msgstr ""
29333166
2934#: ../plugins/launchpad_prompt.py:88
2935msgid "No e-mail address provided, not submitting to Launchpad."
2936msgstr ""
2937
2938#: ../plugins/launchpad_prompt.py:933167#: ../plugins/launchpad_prompt.py:93
2939msgid "Email address must be in a proper format."3168msgid "Email address must be in a proper format."
2940msgstr ""3169msgstr ""
@@ -2953,6 +3182,14 @@
2953msgid "There is another checkbox running. Please close it first."3182msgid "There is another checkbox running. Please close it first."
2954msgstr ""3183msgstr ""
29553184
3185#: ../plugins/recover_prompt.py:53
3186msgid "Recover"
3187msgstr ""
3188
3189#: ../plugins/recover_prompt.py:54
3190msgid "Restart"
3191msgstr ""
3192
2956#: ../plugins/recover_prompt.py:563193#: ../plugins/recover_prompt.py:56
2957msgid ""3194msgid ""
2958"Checkbox did not finish completely.\n"3195"Checkbox did not finish completely.\n"
@@ -2969,7 +3206,7 @@
2969msgstr ""3206msgstr ""
29703207
2971#. Get results3208#. Get results
2972#: ../plugins/suites_prompt.py:1103209#: ../plugins/suites_prompt.py:124
2973msgid "Select the suites to test"3210msgid "Select the suites to test"
2974msgstr ""3211msgstr ""
29753212
@@ -2981,18 +3218,163 @@
2981msgid "Type Text"3218msgid "Type Text"
2982msgstr ""3219msgstr ""
29833220
2984#: ../scripts/internet_test:1393221#: ../scripts/internet_test:196
2985msgid "No Internet connection"3222msgid "No Internet connection"
2986msgstr ""3223msgstr ""
29873224
2988#: ../scripts/internet_test:1423225#: ../scripts/internet_test:199
2989msgid "Connection established lost a packet"3226msgid "Connection established lost a packet"
2990msgstr ""3227msgstr ""
29913228
2992#: ../scripts/internet_test:1453229#: ../scripts/internet_test:202
2993msgid "Internet connection fully established"3230msgid "Internet connection fully established"
2994msgstr ""3231msgstr ""
29953232
3233#: ../qt/frontend/qtfront.cpp:108
3234msgid "Not Started"
3235msgstr ""
3236
3237#: ../qt/frontend/qtfront.cpp:109 ../qt/frontend/qtfront.cpp:110
3238msgid "Done"
3239msgstr ""
3240
3241#: ../qt/frontend/qtfront.cpp:111
3242msgid "Not Supported"
3243msgstr ""
3244
3245#: ../qt/frontend/qtfront.cpp:112
3246msgid "Not Resolved"
3247msgstr ""
3248
3249#: ../qt/frontend/qtfront.cpp:113
3250msgid "Not Tested"
3251msgstr ""
3252
3253#: ../qt/frontend/qtfront.cpp:114
3254msgid "In Progress"
3255msgstr ""
3256
3257#: ../qt/frontend/qtfront.cpp:182
3258msgid "Are you sure?"
3259msgstr ""
3260
3261#: ../qt/frontend/qtfront.cpp:182
3262msgid "Do you really want to skip this test?"
3263msgstr ""
3264
3265#: ../qt/frontend/qtfront.cpp:183
3266msgid "Don't ask me again"
3267msgstr ""
3268
3269#: ../qt/frontend/treemodel.cpp:13
3270msgid ""
3271"Unselecting a test will invalidate your submission for Ubuntu Friendly. If "
3272"you plan to participate in Ubuntu Friendly, please, select all tests. You "
3273"can always skip individual tests if you don't have the needed equipment."
3274msgstr ""
3275
3276#: ../qt/frontend/ui_qtfront.h:588
3277msgid "Form"
3278msgstr ""
3279
3280#: ../qt/frontend/ui_qtfront.h:590
3281msgid "OK"
3282msgstr ""
3283
3284#: ../qt/frontend/ui_qtfront.h:591
3285msgid "Don't show me this message in the future"
3286msgstr ""
3287
3288#: ../qt/frontend/ui_qtfront.h:592 ../qt/frontend/ui_qtfront.h:606
3289msgid "Tab 1"
3290msgstr ""
3291
3292#: ../qt/frontend/ui_qtfront.h:593
3293msgid "10 tests completed out of 30 (30%)"
3294msgstr ""
3295
3296#: ../qt/frontend/ui_qtfront.h:595
3297msgid "Lists of tests to run based on your system:"
3298msgstr ""
3299
3300#: ../qt/frontend/ui_qtfront.h:596
3301msgid "Components"
3302msgstr ""
3303
3304#: ../qt/frontend/ui_qtfront.h:597
3305msgid "Status"
3306msgstr ""
3307
3308#: ../qt/frontend/ui_qtfront.h:598
3309msgid "Start testing"
3310msgstr ""
3311
3312#: ../qt/frontend/ui_qtfront.h:599
3313msgid " Selection "
3314msgstr ""
3315
3316#: ../qt/frontend/ui_qtfront.h:600 ../qt/frontend/ui_qtfront.h:601
3317msgid "TextLabel"
3318msgstr ""
3319
3320#: ../qt/frontend/ui_qtfront.h:602
3321msgid "Yes"
3322msgstr ""
3323
3324#: ../qt/frontend/ui_qtfront.h:604
3325msgid "No"
3326msgstr ""
3327
3328#: ../qt/frontend/ui_qtfront.h:605
3329msgid "Comment"
3330msgstr ""
3331
3332#: ../qt/frontend/ui_qtfront.h:607 ../qt/frontend/ui_qtfront.h:623
3333msgid "Tab 2"
3334msgstr ""
3335
3336#: ../qt/frontend/ui_qtfront.h:610
3337msgid " Run "
3338msgstr ""
3339
3340#: ../qt/frontend/ui_qtfront.h:611
3341msgid ""
3342"<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.0//EN\" "
3343"\"http://www.w3.org/TR/REC-html40/strict.dtd\">\n"
3344"<html><head><meta name=\"qrichtext\" content=\"1\" /><style "
3345"type=\"text/css\">\n"
3346"p, li { white-space: pre-wrap; }\n"
3347"</style></head><body style=\" font-family:'Ubuntu'; font-size:10pt; font-"
3348"weight:400; font-style:normal;\">\n"
3349"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
3350"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
3351"color:#ff0000;\">Warning: Not all tests have been run yet.</span></p>\n"
3352"<p style=\" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-"
3353"right:0px; -qt-block-indent:0; text-indent:0px;\"><span style=\" "
3354"color:#ff0000;\">You can send the results now, but the submission won't make "
3355"it to Ubuntu Friendly.</span></p></body></html>"
3356msgstr ""
3357
3358#: ../qt/frontend/ui_qtfront.h:617
3359msgid "Personal details"
3360msgstr ""
3361
3362#: ../qt/frontend/ui_qtfront.h:619
3363msgid "Email:"
3364msgstr ""
3365
3366#: ../qt/frontend/ui_qtfront.h:620
3367msgid "Submit results"
3368msgstr ""
3369
3370#: ../qt/frontend/ui_qtfront.h:621
3371msgid "View results"
3372msgstr ""
3373
3374#: ../qt/frontend/ui_qtfront.h:622
3375msgid " Results "
3376msgstr ""
3377
2996#~ msgid "Is this correct?"3378#~ msgid "Is this correct?"
2997#~ msgstr "Is hierdie korrek?"3379#~ msgstr "Is hierdie korrek?"
29983380
29993381
=== modified file 'po/am.po'
--- po/am.po 2012-03-21 02:22:11 +0000
+++ po/am.po 2012-04-12 17:38:18 +0000
@@ -7,40 +7,40 @@
7msgstr ""7msgstr ""
8"Project-Id-Version: checkbox\n"8"Project-Id-Version: checkbox\n"
9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"9"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
10"POT-Creation-Date: 2012-01-06 12:39-0500\n"10"POT-Creation-Date: 2012-03-28 10:50-0400\n"
11"PO-Revision-Date: 2011-07-19 18:29+0000\n"11"PO-Revision-Date: 2011-07-19 18:29+0000\n"
12"Last-Translator: samson <Unknown>\n"12"Last-Translator: samson <Unknown>\n"
13"Language-Team: Amharic <am@li.org>\n"13"Language-Team: Amharic <am@li.org>\n"
14"MIME-Version: 1.0\n"14"MIME-Version: 1.0\n"
15"Content-Type: text/plain; charset=UTF-8\n"15"Content-Type: text/plain; charset=UTF-8\n"
16"Content-Transfer-Encoding: 8bit\n"16"Content-Transfer-Encoding: 8bit\n"
17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"17"X-Launchpad-Export-Date: 2012-04-03 04:38+0000\n"
18"X-Generator: Launchpad (build 14933)\n"18"X-Generator: Launchpad (build 15052)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:44420#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26721#: ../checkbox_urwid/urwid_interface.py:267
22msgid "Further information:"22msgid "Further information:"
23msgstr "በበለጠ ለመረዳት:"23msgstr "በበለጠ ለመረዳት:"
2424
25#: ../gtk/checkbox-gtk.ui.h:1025#: ../gtk/checkbox-gtk.ui.h:2
26msgid "Ne_xt"26msgid "Ne_xt"
27msgstr "ቀ_ጥሎ"27msgstr "ቀ_ጥሎ"
2828
29#. Title of the user interface29#. Title of the user interface
30#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:3 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4231#: ../plugins/user_interface.py:43 ../qt/frontend/ui_qtfront.h:589
32msgid "System Testing"32msgid "System Testing"
33msgstr "ስርአቱን በመሞከር ላይ"33msgstr "ስርአቱን በመሞከር ላይ"
3434
35#: ../gtk/checkbox-gtk.ui.h:835#: ../gtk/checkbox-gtk.ui.h:4
36msgid "_Deselect All"36msgid "_Deselect All"
37msgstr ""37msgstr ""
3838
39#: ../gtk/checkbox-gtk.ui.h:439#: ../gtk/checkbox-gtk.ui.h:5
40msgid "_No"40msgid "_No"
41msgstr "_አይ"41msgstr "_አይ"
4242
43#: ../gtk/checkbox-gtk.ui.h:943#: ../gtk/checkbox-gtk.ui.h:6
44msgid "_Previous"44msgid "_Previous"
45msgstr ""45msgstr ""
4646
@@ -48,15 +48,15 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr ""49msgstr ""
5050
51#: ../gtk/checkbox-gtk.ui.h:551#: ../gtk/checkbox-gtk.ui.h:8
52msgid "_Skip this test"52msgid "_Skip this test"
53msgstr "_ይህን ሙከራ መዝለል"53msgstr "_ይህን ሙከራ መዝለል"
5454
55#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:53855#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:553
56msgid "_Test"56msgid "_Test"
57msgstr "_ሙከራ"57msgstr "_ሙከራ"
5858
59#: ../gtk/checkbox-gtk.ui.h:359#: ../gtk/checkbox-gtk.ui.h:10
60msgid "_Yes"60msgid "_Yes"
61msgstr "_አዎ"61msgstr "_አዎ"
6262
@@ -130,12 +130,8 @@
130" This test will check that a USB audio device works correctly\n"130" This test will check that a USB audio device works correctly\n"
131"STEPS:\n"131"STEPS:\n"
132" 1. Connect a USB audio device to your system\n"132" 1. Connect a USB audio device to your system\n"
133" 2. Open the volume control application by left-clicking on the speaker "133" 2. Click \"Test\", then speak into the microphone\n"
134"icon in the panel and selecting \"Sound Settings\"\n"134" 3. After a few seconds, your speech will be played back to you\n"
135" 3. Select the \"Input\" tab and choose your USB device\n"
136" 4. Select the \"Output\" tab and choose your USB device\n"
137" 5. Click \"Test\", then speak into the microphone\n"
138" 6. After a few seconds, your speech will be played back to you\n"
139"VERIFICATION:\n"135"VERIFICATION:\n"
140" Did you hear your speech played back through the USB headphones?"136" Did you hear your speech played back through the USB headphones?"
141msgstr ""137msgstr ""
@@ -157,13 +153,6 @@
157msgstr ""153msgstr ""
158154
159#. description155#. description
160#: ../jobs/bluetooth.txt.in:7
161msgid ""
162"This test will detect your Bluetooth device and output the device's hardware "
163"address. If no device is found, the test will exit with an error."
164msgstr ""
165
166#. description
167#: ../jobs/bluetooth.txt.in:8156#: ../jobs/bluetooth.txt.in:8
168msgid ""157msgid ""
169"Automated test to store bluetooth device information in checkbox report"158"Automated test to store bluetooth device information in checkbox report"
@@ -264,7 +253,8 @@
264"PURPOSE:\n"253"PURPOSE:\n"
265" This test will check that the built-in camera works\n"254" This test will check that the built-in camera works\n"
266"STEPS:\n"255"STEPS:\n"
267" 1. Click on Test to display a video capture from the camera\n"256" 1. Click on Test to display a video capture from the camera for ten "
257"seconds.\n"
268"VERIFICATION:\n"258"VERIFICATION:\n"
269" Did you see the video capture?"259" Did you see the video capture?"
270msgstr ""260msgstr ""
@@ -281,19 +271,6 @@
281msgstr ""271msgstr ""
282272
283#. description273#. description
284#: ../jobs/camera.txt.in:49
285msgid ""
286"PURPOSE:\n"
287" This test will check that you can capture video with the built-in "
288"camera\n"
289"STEPS:\n"
290" 1. Click on Test to capture video to a file (it will automatically open "
291"in Totem)\n"
292"VERIFICATION:\n"
293" Did you see and hear the capture?"
294msgstr ""
295
296#. description
297#: ../jobs/codecs.txt.in:7274#: ../jobs/codecs.txt.in:7
298msgid ""275msgid ""
299"PURPOSE:\n"276"PURPOSE:\n"
@@ -406,7 +383,12 @@
406383
407#. description384#. description
408#: ../jobs/disk.txt.in:9385#: ../jobs/disk.txt.in:9
409msgid "Benchmark for each disk "386msgid "Benchmark for each disk"
387msgstr ""
388
389#. description
390#: ../jobs/disk.txt.in:23
391msgid "Check stats changes for each disk"
410msgstr ""392msgstr ""
411393
412#. description394#. description
@@ -472,18 +454,42 @@
472msgstr ""454msgstr ""
473455
474#. description456#. description
475#: ../jobs/firewire.txt.in:3457#: ../jobs/firewire.txt.in:4
476msgid ""458msgid ""
477"PURPOSE:\n"459"PURPOSE:\n"
478" This test will check that the firewire port works\n"460" This test will check the system can detect the insertion of a FireWire "
461"HDD\n"
479"STEPS:\n"462"STEPS:\n"
480" 1. Plug a Firewire HDD into the computer\n"463" 1. Click 'Test' to begin the test. This test will\n"
481" 2. Either a window asking which action should be performed (open folder, "464" timeout and fail if the insertion has not been detected within 10 "
482"photo manager, etc) or a file browser will open.\n"465"seconds.\n"
483" 3. Copy some files from your internal HDD to the firewire HDD\n"466" 2. Plug a FireWire HDD into an available FireWire port.\n"
484" 4. Copy some files from the firewire HDD to your internal HDD\n"
485"VERIFICATION:\n"467"VERIFICATION:\n"
486" Do the copy operations work as expected?"468" The verification of this test is automated. Do not change the "
469"automatically\n"
470" selected result"
471msgstr ""
472
473#. description
474#: ../jobs/firewire.txt.in:19
475msgid ""
476"This is an automated test which performs read/write operations on an "
477"attached FireWire HDD"
478msgstr ""
479
480#. description
481#: ../jobs/firewire.txt.in:27
482msgid ""
483" PURPOSE:\n"
484" This test will check the system can detect the removal of a FireWire HDD\n"
485" STEPS:\n"
486" 1. Click 'Test' to begin the test. This test will timeout and fail if\n"
487" the removal has not been detected within 10 seconds.\n"
488" 2. Remove the previously attached FireWire HDD from the FireWire port.\n"
489" VERIFICATION:\n"
490" The verification of this test is automated. Do not change the "
491"automatically\n"
492" selected result"
487msgstr ""493msgstr ""
488494
489#. description495#. description
@@ -587,17 +593,8 @@
587msgstr ""593msgstr ""
588594
589#. description595#. description
590#: ../jobs/graphics.txt.in:107596#: ../jobs/graphics.txt.in:106
591msgid ""597msgid "Check that VESA drivers are not in use"
592"PURPOSE:\n"
593" This test checks the detected video modes\n"
594"STEPS:\n"
595" 1. The following screens and video modes have been detected on your "
596"system\n"
597"INFO:\n"
598" $output\n"
599"VERIFICATION:\n"
600" Are those correct?"
601msgstr ""598msgstr ""
602599
603#. description600#. description
@@ -612,8 +609,13 @@
612msgstr ""609msgstr ""
613610
614#. description611#. description
612#: ../jobs/graphics.txt.in:126
613msgid "Check that hardware is able to run compiz"
614msgstr ""
615
616#. description
615#: ../jobs/graphics.txt.in:133617#: ../jobs/graphics.txt.in:133
616msgid "Check that the hardware is able to run compiz."618msgid "Check that hardware is able to run Unity 3D"
617msgstr ""619msgstr ""
618620
619#. description621#. description
@@ -631,6 +633,55 @@
631msgstr ""633msgstr ""
632634
633#. description635#. description
636#: ../jobs/graphics.txt.in:159
637msgid ""
638"PURPOSE:\n"
639" Do some challenging operations and check for lockup on the GPU\n"
640"STEPS:\n"
641" 1. Create 2 glxgears windows and move them quickly\n"
642" 2. Switch workspaces/viewports with wmctrl\n"
643" 3. Launch a Flash playback in firefox\n"
644" 4. Suspend/resume\n"
645"VERIFICATION:\n"
646" 1. Atfer a 60s workload, check kern.log for reported GPU errors"
647msgstr ""
648
649#. description
650#: ../jobs/graphics.txt.in:174
651msgid ""
652"PURPOSE:\n"
653" Take a screengrab of the current screen (logged on Unity desktop)\n"
654"STEPS:\n"
655" 1. Take picture using USB webcam\n"
656"VERIFICATION:\n"
657" 1. Review attachment manually later"
658msgstr ""
659
660#. description
661#: ../jobs/graphics.txt.in:186 ../jobs/suspend.txt.in:316
662msgid "Attaches the screenshot captured in graphics/screenshot."
663msgstr ""
664
665#. description
666#: ../jobs/graphics.txt.in:194
667msgid ""
668"PURPOSE:\n"
669" Take a screengrab of the current screen during fullscreen video "
670"playback\n"
671"STEPS:\n"
672" 1. Start a fullscreen video playback\n"
673" 2. Take picture using USB webcam after a few seconds\n"
674"VERIFICATION:\n"
675" 1. Review attachment manually later"
676msgstr ""
677
678#. description
679#: ../jobs/graphics.txt.in:207
680msgid ""
681"Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
682msgstr ""
683
684#. description
634#: ../jobs/hibernate.txt.in:7685#: ../jobs/hibernate.txt.in:7
635msgid ""686msgid ""
636"PURPOSE:\n"687"PURPOSE:\n"
@@ -715,52 +766,42 @@
715msgstr ""766msgstr ""
716767
717#. description768#. description
718#: ../jobs/info.txt.in:85769#: ../jobs/info.txt.in:82
719msgid "Captures a screenshot."
720msgstr ""
721
722#. description
723#: ../jobs/info.txt.in:91
724msgid "Attaches the screenshot captured in info/screenshot."
725msgstr ""
726
727#. description
728#: ../jobs/info.txt.in:96
729msgid "Gather log from the Firmware Test Suite run."770msgid "Gather log from the Firmware Test Suite run."
730msgstr ""771msgstr ""
731772
732#. description773#. description
733#: ../jobs/info.txt.in:103774#: ../jobs/info.txt.in:89
734msgid "Attaches the contents of /proc/acpi/sleep if it exists."775msgid "Attaches the contents of /proc/acpi/sleep if it exists."
735msgstr ""776msgstr ""
736777
737#. description778#. description
738#: ../jobs/info.txt.in:107779#: ../jobs/info.txt.in:93
739msgid "Bootchart information."780msgid "Bootchart information."
740msgstr ""781msgstr ""
741782
742#. description783#. description
743#: ../jobs/info.txt.in:116784#: ../jobs/info.txt.in:102
744msgid "SATA/IDE device information."785msgid "SATA/IDE device information."
745msgstr ""786msgstr ""
746787
747#. description788#. description
748#: ../jobs/info.txt.in:133789#: ../jobs/info.txt.in:119
749msgid "Attaches the bootchart png file for bootchart runs"790msgid "Attaches the bootchart png file for bootchart runs"
750msgstr ""791msgstr ""
751792
752#. description793#. description
753#: ../jobs/info.txt.in:142794#: ../jobs/info.txt.in:128
754msgid "Attaches the bootchart log for bootchart test runs."795msgid "Attaches the bootchart log for bootchart test runs."
755msgstr ""796msgstr ""
756797
757#. description798#. description
758#: ../jobs/info.txt.in:150799#: ../jobs/info.txt.in:136
759msgid "installs the installer bootchart tarball if it exists."800msgid "installs the installer bootchart tarball if it exists."
760msgstr ""801msgstr ""
761802
762#. description803#. description
763#: ../jobs/info.txt.in:155804#: ../jobs/info.txt.in:141
764msgid "Attaches the installer debug log if it exists."805msgid "Attaches the installer debug log if it exists."
765msgstr ""806msgstr ""
766807
@@ -865,16 +906,14 @@
865msgstr ""906msgstr ""
866907
867#. description908#. description
868#: ../jobs/keys.txt.in:76909#: ../jobs/keys.txt.in:74
869msgid ""910msgid ""
870"PURPOSE:\n"911"PURPOSE:\n"
871" This test will test the media keys of your keyboard\n"912" This test will test the media keys of your keyboard\n"
872"STEPS:\n"913"STEPS:\n"
873" 1. Click test to launch the media player\n"914" 1. Click test to open a window on which to test the media control keys.\n"
874" 2. Press the play/pause key on the keyboard\n"915" 2. If all the keys work, the test will be marked as passed.\n"
875" 3. Press the forward key on the keyboard\n"916" 3. If your computer has no media control keys, Skip this test.\n"
876" 4. Press the backward key on the keyboard\n"
877" 5. Press stop key on the keyboard\n"
878"VERIFICATION:\n"917"VERIFICATION:\n"
879" Do the keys work as expected?"918" Do the keys work as expected?"
880msgstr ""919msgstr ""
@@ -1084,191 +1123,308 @@
1084msgstr ""1123msgstr ""
10851124
1086#. description1125#. description
1087#: ../jobs/mediacard.txt.in:31126#: ../jobs/mediacard.txt.in:4
1088msgid ""1127msgid ""
1089"PURPOSE:\n"1128"PURPOSE:\n"
1090" This test will check your system Secure Digital (SD) media card support\n"1129" This test will check that the systems media card reader can\n"
1091"STEPS:\n"1130" detect the insertion of a Multimedia Card (MMC) media\n"
1092" 1. Plug a SD media card into the computer\n"1131"STEPS:\n"
1093" 2. An icon should appear on the Launcher\n"1132" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1094" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1133" (Note: this test will time-out after 10 seconds.)\n"
1095" 4. The icon should disappear from the Launcher\n"1134" 2. Do not unplug the device after the test.\n"
1096"VERIFICATION:\n"1135"VERIFICATION:\n"
1097" Does the icon automatically appear/disappear?"1136" The verification of this test is automated. Do not change the\n"
1098msgstr ""1137" automatically selected result."
10991138msgstr ""
1100#. description1139
1101#: ../jobs/mediacard.txt.in:171140#. description
1102msgid ""1141#: ../jobs/mediacard.txt.in:20
1103"PURPOSE:\n"1142msgid ""
1104" This test will check your system Secure Digital (SD) media card support "1143"This test is automated and executes after the mediacard/mmc-insert test is "
1105"after suspend\n"1144"run. It tests reading and writing to the MMC card."
1106"STEPS:\n"1145msgstr ""
1107" 1. Plug a SD media card into the computer\n"1146
1108" 2. An icon should appear on the Launcher\n"1147#. description
1109" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1148#: ../jobs/mediacard.txt.in:28
1110" 4. The icon should disappear from the Launcher\n"1149msgid ""
1111"VERIFICATION:\n"1150"PURPOSE:\n"
1112" Does the icon automatically appear/disappear?"1151" This test will check that the system correctly detects\n"
1113msgstr ""1152" the removal of the MMC card from the systems card reader.\n"
11141153"STEPS:\n"
1115#. description1154" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1116#: ../jobs/mediacard.txt.in:301155" (Note: this test will time-out after 10 seconds.)\n"
1117msgid ""1156"VERIFICATION:\n"
1118"PURPOSE:\n"1157" The verification of this test is automated. Do not change the\n"
1119" This test will check your system Secure Digital High Capacity (SDHC) "1158" automatically selected result."
1120"media card support\n"1159msgstr ""
1121"STEPS:\n"1160
1122" 1. Plug a SDHC media card into the computer\n"1161#. description
1123" 2. An icon should appear on the Launcher\n"1162#: ../jobs/mediacard.txt.in:43
1124" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1163msgid ""
1125" 4. The icon should disappear from the Launcher\n"1164"PURPOSE:\n"
1126"VERIFICATION:\n"1165" This test will check that the systems media card reader can\n"
1127" Does the icon automatically appear/disappear?"1166" detect the insertion of an MMC card after the system has been suspended\n"
1128msgstr ""1167"STEPS:\n"
11291168" 1. Click \"Test\" and insert an MMC card into the reader.\n"
1130#. description1169" (Note: this test will time-out after 10 seconds.)\n"
1131#: ../jobs/mediacard.txt.in:441170" 2. Do not unplug the device after the test.\n"
1132msgid ""1171"VERIFICATION:\n"
1133" This test will check your system Secure Digital High Capacity (SDHC) "1172" The verification of this test is automated. Do not change the\n"
1134"media card support after suspend\n"1173" automatically selected result."
1135"STEPS:\n"1174msgstr ""
1136" 1. Plug a SDHC media card into the computer\n"1175
1137" 2. An icon should appear on the Launcher\n"1176#. description
1138" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1177#: ../jobs/mediacard.txt.in:59
1139" 4. The icon should disappear from the Launcher\n"1178msgid ""
1140"VERIFICATION:\n"1179"This test is automated and executes after the mediacard/mmc-insert-after-"
1141" Does the icon automatically appear/disappear?"1180"suspend test is run. It tests reading and writing to the MMC card after the "
1142msgstr ""1181"system has been suspended."
11431182msgstr ""
1144#. description1183
1145#: ../jobs/mediacard.txt.in:561184#. description
1146msgid ""1185#: ../jobs/mediacard.txt.in:67
1147"PURPOSE:\n"1186msgid ""
1148" This test will check your system Multi Media Card (MMC) media card "1187"PURPOSE:\n"
1149"support\n"1188" This test will check that the system correctly detects the removal\n"
1150"STEPS:\n"1189" of an MMC card from the systems card reader after the system has been "
1151" 1. Plug a MMC media card into the computer\n"1190"suspended.\n"
1152" 2. An icon should appear on the Launcher\n"1191"STEPS:\n"
1153" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1192" 1. Click \"Test\" and remove the MMC card from the reader.\n"
1154" 4. The icon should disappear from the Launcher\n"1193" (Note: this test will time-out after 10 seconds.)\n"
1155"VERIFICATION:\n"1194"VERIFICATION:\n"
1156" Does the icon automatically appear/disappear?"1195" The verification of this test is automated. Do not change the\n"
1157msgstr ""1196" automatically selected result."
11581197msgstr ""
1159#. description1198
1160#: ../jobs/mediacard.txt.in:701199#. description
1161msgid ""1200#: ../jobs/mediacard.txt.in:81
1162"PURPOSE:\n"1201msgid ""
1163" This test will check your system Multi Media Card (MMC) media card "1202"PURPOSE:\n"
1164"support after suspend\n"1203" This test will check that the systems media card reader can\n"
1165"STEPS:\n"1204" detect the insertion of a Secure Digital (SD) media card\n"
1166" 1. Plug a MMC media card into the computer\n"1205"STEPS:\n"
1167" 2. An icon should appear on the Launcher\n"1206" 1. Click \"Test\" and insert an SD card into the reader.\n"
1168" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1207" (Note: this test will time-out after 10 seconds.)\n"
1169" 4. The icon should disappear from the Launcher\n"1208" 2. Do not unplug the device after the test.\n"
1170"VERIFICATION:\n"1209"VERIFICATION:\n"
1171" Does the icon automatically appear/disappear?"1210" The verification of this test is automated. Do not change the\n"
1172msgstr ""1211" automatically selected result."
1173
1174#. description
1175#: ../jobs/mediacard.txt.in:83
1176msgid ""
1177"PURPOSE:\n"
1178" This test will check your system Memory Stick (MS) media card support\n"
1179"STEPS:\n"
1180" 1. Plug a MS media card into the computer\n"
1181" 2. An icon should appear on the Launcher\n"
1182" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"
1183" 4. The icon should disappear from the Launcher\n"
1184"VERIFICATION:\n"
1185" Does the icon automatically appear/disappear?"
1186msgstr ""1212msgstr ""
11871213
1188#. description1214#. description
1189#: ../jobs/mediacard.txt.in:971215#: ../jobs/mediacard.txt.in:97
1190msgid ""1216msgid ""
1191"PURPOSE:\n"1217"This test is automated and executes after the mediacard/sd-insert test is "
1192" This test will check your system Memory Stick (MS) media card support "1218"run. It tests reading and writing to the SD card."
1193"after suspend\n"1219msgstr ""
1194"STEPS:\n"1220
1195" 1. Plug a MS media card into the computer\n"1221#. description
1196" 2. An icon should appear on the Launcher\n"1222#: ../jobs/mediacard.txt.in:105
1197" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1223msgid ""
1198" 4. The icon should disappear from the Launcher\n"1224"PURPOSE:\n"
1199"VERIFICATION:\n"1225" This test will check that the system correctly detects\n"
1200" Does the icon automatically appear/disappear?"1226" the removal of an SD card from the systems card reader.\n"
1201msgstr ""1227"STEPS:\n"
12021228" 1. Click \"Test\" and remove the SD card from the reader.\n"
1203#. description1229" (Note: this test will time-out after 10 seconds.)\n"
1204#: ../jobs/mediacard.txt.in:1101230"VERIFICATION:\n"
1205msgid ""1231" The verification of this test is automated. Do not change the\n"
1206"PURPOSE:\n"1232" automatically selected result."
1207" This test will check your system Memory Stick Pro (MSP) media card "1233msgstr ""
1208"support\n"1234
1209"STEPS:\n"1235#. description
1210" 1. Plug a MSP media card into the computer\n"1236#: ../jobs/mediacard.txt.in:120
1211" 2. An icon should appear on the Launcher\n"1237msgid ""
1212" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1238"PURPOSE:\n"
1213" 4. The icon should disappear from the Launcher\n"1239" This test will check that the systems media card reader can\n"
1214"VERIFICATION:\n"1240" detect the insertion of an SD card after the system has been suspended\n"
1215" Does the icon automatically appear/disappear?"1241"STEPS:\n"
1216msgstr ""1242" 1. Click \"Test\" and insert an SD card into the reader.\n"
12171243" (Note: this test will time-out after 10 seconds.)\n"
1218#. description1244" 2. Do not unplug the device after the test.\n"
1219#: ../jobs/mediacard.txt.in:1241245"VERIFICATION:\n"
1220msgid ""1246" The verification of this test is automated. Do not change the\n"
1221"PURPOSE:\n"1247" automatically selected result."
1222" This test will check your system Memory Stick Pro (MSP) media card "1248msgstr ""
1223"support after suspend\n"1249
1224"STEPS:\n"1250#. description
1225" 1. Plug a MSP media card into the computer\n"1251#: ../jobs/mediacard.txt.in:136
1226" 2. An icon should appear on the Launcher\n"1252msgid ""
1227" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1253"This test is automated and executes after the mediacard/sd-insert-after-"
1228" 4. The icon should disappear from the Launcher\n"1254"suspend test is run. It tests reading and writing to the SD card after the "
1229"VERIFICATION:\n"1255"system has been suspended."
1230" Does the icon automatically appear/disappear?"1256msgstr ""
1231msgstr ""1257
12321258#. description
1233#. description1259#: ../jobs/mediacard.txt.in:144
1234#: ../jobs/mediacard.txt.in:1371260msgid ""
1235msgid ""1261"PURPOSE:\n"
1236"PURPOSE:\n"1262" This test will check that the system correctly detects\n"
1237" This test will check your system Compact Flash (CF) media card support\n"1263" the removal of an SD card from the systems card reader after the system "
1238"STEPS:\n"1264"has been suspended.\n"
1239" 1. Plug a CF media card into the computer\n"1265"STEPS:\n"
1240" 2. An icon should appear on the Launcher\n"1266" 1. Click \"Test\" and remove the SD card from the reader.\n"
1241" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1267" (Note: this test will time-out after 10 seconds.)\n"
1242" 4. The icon should disappear from the Launcher\n"1268"VERIFICATION:\n"
1243"VERIFICATION:\n"1269" The verification of this test is automated. Do not change the\n"
1244" Does the icon automatically appear/disappear?"1270" automatically selected result."
1245msgstr ""1271msgstr ""
12461272
1247#. description1273#. description
1248#: ../jobs/mediacard.txt.in:1511274#: ../jobs/mediacard.txt.in:158
1249msgid ""1275msgid ""
1250" This test will check your system Compact Flash (CF) media card support "1276"PURPOSE:\n"
1251"after suspend\n"1277" This test will check that the systems media card reader can\n"
1252"STEPS:\n"1278" detect the insertion of a Secure Digital High-Capacity (SDHC) media "
1253" 1. Plug a CF media card into the computer\n"1279"card\n"
1254" 2. An icon should appear on the Launcher\n"1280"STEPS:\n"
1255" 3. Right click on the Launcher icon and select \"Safely Remove Drive\"\n"1281" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1256" 4. The icon should disappear from the Launcher\n"1282" (Note: this test will time-out after 10 seconds.)\n"
1257"VERIFICATION:\n"1283" 2. Do not unplug the device after the test.\n"
1258" Does the icon automatically appear/disappear?"1284"VERIFICATION:\n"
1259msgstr ""1285" The verification of this test is automated. Do not change the\n"
12601286" automatically selected result."
1261#. description1287msgstr ""
1262#: ../jobs/memory.txt.in:41288
1263msgid ""1289#. description
1264"PURPOSE:\n"1290#: ../jobs/mediacard.txt.in:174
1265" This test checks the amount of memory that is detected\n"1291msgid ""
1266"STEPS:\n"1292"This test is automated and executes after the mediacard/sdhc-insert test is "
1267" 1. Click Test to see the amount of detected memory\n"1293"run. It tests reading and writing to the SDHC card."
1268"INFO:\n"1294msgstr ""
1269" $output\n"1295
1270"VERIFICATION:\n"1296#. description
1271" Is the amount of detected memory correct?"1297#: ../jobs/mediacard.txt.in:182
1298msgid ""
1299"PURPOSE:\n"
1300" This test will check that the system correctly detects\n"
1301" the removal of an SDHC card from the systems card reader.\n"
1302"STEPS:\n"
1303" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1304" (Note: this test will time-out after 10 seconds.)\n"
1305"VERIFICATION:\n"
1306" The verification of this test is automated. Do not change the\n"
1307" automatically selected result."
1308msgstr ""
1309
1310#. description
1311#: ../jobs/mediacard.txt.in:197
1312msgid ""
1313"PURPOSE:\n"
1314" This test will check that the systems media card reader can\n"
1315" detect the insertion of an SDHC media card after the system has been "
1316"suspended\n"
1317"STEPS:\n"
1318" 1. Click \"Test\" and insert an SDHC card into the reader.\n"
1319" (Note: this test will time-out after 10 seconds.)\n"
1320" 2. Do not unplug the device after the test.\n"
1321"VERIFICATION:\n"
1322" The verification of this test is automated. Do not change the\n"
1323" automatically selected result."
1324msgstr ""
1325
1326#. description
1327#: ../jobs/mediacard.txt.in:213
1328msgid ""
1329"This test is automated and executes after the mediacard/sdhc-insert-after-"
1330"suspend test is run. It tests reading and writing to the SDHC card after the "
1331"system has been suspended."
1332msgstr ""
1333
1334#. description
1335#: ../jobs/mediacard.txt.in:221
1336msgid ""
1337"PURPOSE:\n"
1338" This test will check that the system correctly detects the removal\n"
1339" of an SDHC card from the systems card reader after the system has been "
1340"suspended.\n"
1341"STEPS:\n"
1342" 1. Click \"Test\" and remove the SDHC card from the reader.\n"
1343" (Note: this test will time-out after 10 seconds.)\n"
1344"VERIFICATION:\n"
1345" The verification of this test is automated. Do not change the\n"
1346" automatically selected result."
1347msgstr ""
1348
1349#. description
1350#: ../jobs/mediacard.txt.in:235
1351msgid ""
1352"PURPOSE:\n"
1353" This test will check that the systems media card reader can\n"
1354" detect the insertion of a Compact Flash (CF) media card\n"
1355"STEPS:\n"
1356" 1. Click \"Test\" and insert a CF card into the reader.\n"
1357" (Note: this test will time-out after 10 seconds.)\n"
1358" 2. Do not unplug the device after the test.\n"
1359"VERIFICATION:\n"
1360" The verification of this test is automated. Do not change the\n"
1361" automatically selected result."
1362msgstr ""
1363
1364#. description
1365#: ../jobs/mediacard.txt.in:251
1366msgid ""
1367"This test is automated and executes after the mediacard/cf-insert test is "
1368"run. It tests reading and writing to the CF card."
1369msgstr ""
1370
1371#. description
1372#: ../jobs/mediacard.txt.in:259
1373msgid ""
1374"PURPOSE:\n"
1375" This test will check that the system correctly detects\n"
1376" the removal of a CF card from the systems card reader.\n"
1377"STEPS:\n"
1378" 1. Click \"Test\" and remove the CF card from the reader.\n"
1379" (Note: this test will time-out after 10 seconds.)\n"
1380"VERIFICATION:\n"
1381" The verification of this test is automated. Do not change the\n"
1382" automatically selected result."
1383msgstr ""
1384
1385#. description
1386#: ../jobs/mediacard.txt.in:274
1387msgid ""
1388"PURPOSE:\n"
1389" This test will check that the systems media card reader can\n"
1390" detect the insertion of a CF card after the system has been suspended\n"
1391"STEPS:\n"
1392" 1. Click \"Test\" and insert a CF card into the reader.\n"
1393" (Note: this test will time-out after 10 seconds.)\n"
1394" 2. Do not unplug the device after the test.\n"
1395"VERIFICATION:\n"
1396" The verification of this test is automated. Do not change the\n"
1397" automatically selected result."
1398msgstr ""
1399
1400#. description
1401#: ../jobs/mediacard.txt.in:290
1402msgid ""
1403"This test is automated and executes after the mediacard/cf-insert-after-"
1404"suspend test is run. It tests reading and writing to the CF card after the "
1405"system has been suspended."
1406msgstr ""
1407
1408#. description
1409#: ../jobs/mediacard.txt.in:298
1410msgid ""
1411"PURPOSE:\n"
1412" This test will check that the system correctly detects the removal\n"
1413" of a CF card from the systems card reader after the system has been "
1414"suspended.\n"
1415"STEPS:\n"
1416" 1. Click \"Test\" and remove the CF card from the reader.\n"
1417" (Note: this test will time-out after 10 seconds.)\n"
1418"VERIFICATION:\n"
1419" The verification of this test is automated. Do not change the\n"
1420" automatically selected result."
1421msgstr ""
1422
1423#. description
1424#: ../jobs/memory.txt.in:5
1425msgid ""
1426"This test checks the amount of memory which is reporting in meminfo against "
1427"the size of the memory modules detected by DMI."
1272msgstr ""1428msgstr ""
12731429
1274#. description1430#. description
@@ -1296,13 +1452,6 @@
1296msgstr ""1452msgstr ""
12971453
1298#. description1454#. description
1299#: ../jobs/miscellanea.txt.in:29
1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."
1303msgstr ""
1304
1305#. description
1306#: ../jobs/miscellanea.txt.in:311455#: ../jobs/miscellanea.txt.in:31
1307msgid ""1456msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1457"This will run some basic connectivity tests against a BMC, verifying that "
@@ -1317,14 +1466,18 @@
1317msgstr ""1466msgstr ""
13181467
1319#. description1468#. description
1320#: ../jobs/miscellanea.txt.in:511469#: ../jobs/miscellanea.txt.in:45
1321msgid ""1470msgid ""
1322"This test checks /var/crash to see if there are any crash reports present."1471"Test that the /var/crash directory doesn't contain anything. Lists the files "
1472"contained within if it does, or echoes the status of the directory (doesn't "
1473"exist/is empty)"
1323msgstr ""1474msgstr ""
13241475
1325#. description1476#. description
1326#: ../jobs/miscellanea.txt.in:511477#: ../jobs/miscellanea.txt.in:53
1327msgid "If there are, this test will fail."1478msgid ""
1479"Test to check that virtualization is supported and the test system has at "
1480"least a minimal amount of RAM to function as an OpenStack Compute Node"
1328msgstr ""1481msgstr ""
13291482
1330#. description1483#. description
@@ -1433,6 +1586,13 @@
1433msgstr ""1586msgstr ""
14341587
1435#. description1588#. description
1589#: ../jobs/networking.txt.in:40
1590msgid ""
1591"This is an automated test to gather some info on the current state of your "
1592"network devices. If no devices are found, the test will exit with an error."
1593msgstr ""
1594
1595#. description
1436#: ../jobs/networking.txt.in:461596#: ../jobs/networking.txt.in:46
1437msgid ""1597msgid ""
1438"PURPOSE:\n"1598"PURPOSE:\n"
@@ -1512,63 +1672,80 @@
1512msgstr ""1672msgstr ""
15131673
1514#. description1674#. description
1515#: ../jobs/optical.txt.in:181675#: ../jobs/optical.txt.in:16
1516msgid "Optical Storage device read tests"1676msgid ""
1517msgstr ""1677"PURPOSE:\n"
15181678" This test will check your optical devices ability to read CD media\n"
1519#. description1679"STEPS:\n"
1520#: ../jobs/optical.txt.in:351680" 1. Insert appropriate non-blank media into your optical drive(s). Movie "
1521msgid ""1681"and Audio Disks may not work. Self-created data disks have the greatest "
1522"PURPOSE:\n"1682"chance of working.\n"
1523" This test will check your system's CDROM writing capabilities. If your "1683" 2. If a file browser window opens, you can safely close or ignore that "
1524"drive does not support writing CDs or you do not have any blank CD media, "1684"window.\n"
1525"please skip this test.\n"1685" 3. Click \"Test\" to being the test.\n"
1526"STEPS:\n"1686" 4. When the test completes, proceed by clicking \"Next\"\n"
1527" 1. Enter a blank CDROM into your drive\n"1687"VERIFICATION:\n"
1528" 2. Write something in the CDROM\n"1688" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1529" 3. Read the newly written CDROM\n"1689"fails."
1530"VERIFICATION:\n"1690msgstr ""
1531" Was the data correctly written?"1691
1532msgstr ""1692#. description
15331693#: ../jobs/optical.txt.in:43
1534#. description1694msgid ""
1535#: ../jobs/optical.txt.in:471695"PURPOSE:\n"
1696" This test will check your system's CD writing capabilities. This test "
1697"requires a blank CD-R. If you do not have a blank CD-R, skip this test.\n"
1698"STEPS:\n"
1699" 1. Enter a blank CD-R into your drive\n"
1700" 2. Click \"Test\" to begin.\n"
1701" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1702"remove the disk, it is needed for the second portion of the test). Note, you "
1703"must close the drive within 10 seconds or the test will time out.\n"
1704" 4. When the test completes, proceed by clicking \"Next\"\n"
1705"VERIFICATION:\n"
1706" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1707"fails."
1708msgstr ""
1709
1710#. description
1711#: ../jobs/optical.txt.in:57
1536msgid ""1712msgid ""
1537"PURPOSE:\n"1713"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1714" This test will check your CD audio playback capabilities\n"
1539"STEPS:\n"1715"STEPS:\n"
1540" 1. Insert an audio CD in your optical drive\n"1716" 1. Insert an audio CD in your optical drive\n"
1541" 2. Open the Dash (click on the Ubuntu Circle of Friends button on the "1717" 2. When prompted, launch the Music Player\n"
1542"Launcher)\n"1718" 3. Locate the CD in the display of the Music Player\n"
1543" 3. Click \"Listen to Music\" to open Banshee\n"1719" 4. Select the CD in the Music Player\n"
1544" 4. Select the CD under \"Libraries\" in the left panel of Banshee\n"1720" 5. Click the Play button to listen to the music on the CD\n"
1545" 5. Click the Play button to listen to music\n"
1546" 6. Stop playing after some time\n"1721" 6. Stop playing after some time\n"
1547" 7. Right click on the CD icon under \"Libraries\" and select \"Eject "1722" 7. Right click on the CD icon and select \"Eject Disc\"\n"
1548"Disc\"\n"
1549" 8. The CD should be ejected\n"1723" 8. The CD should be ejected\n"
1550" 9. Close Banshee\n"1724" 9. Close the Music Player\n"
1551"VERIFICATION:\n"1725"VERIFICATION:\n"
1552" Did all the steps work?"1726" Did all the steps work?"
1553msgstr ""1727msgstr ""
15541728
1555#. description1729#. description
1556#: ../jobs/optical.txt.in:681730#: ../jobs/optical.txt.in:80
1557msgid ""1731msgid ""
1558"PURPOSE:\n"1732"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1733" This test will check your system's DVD writing capabilities. This test "
1560"drive does not support writing DVDs or you do not have any blank DVD media, "1734"requires a blank DVD-R. If you do not have a blank DVD-R, skip this test.\n"
1561"please skip this test.\n"
1562"STEPS:\n"1735"STEPS:\n"
1563" 1. Enter a blank DVD into your drive\n"1736" 1. Enter a blank DVD-R into your drive\n"
1564" 2. Write something in the DVD\n"1737" 2. Click \"Test\" to begin.\n"
1565" 3. Read the newly written DVD\n"1738" 3. When the CD tray ejects the media after burning, close it (DO NOT "
1739"remove the disk, it is needed for the second portion of the test). Note, you "
1740"must close the drive within 10 seconds or the test will time out.\n"
1741" 4. When the test completes, proceed by clicking \"Next\"\n"
1566"VERIFICATION:\n"1742"VERIFICATION:\n"
1567" Was the data correctly written?"1743" This test should automatically select \"Yes\" if it passes, \"No\" if it "
1744"fails."
1568msgstr ""1745msgstr ""
15691746
1570#. description1747#. description
1571#: ../jobs/optical.txt.in:841748#: ../jobs/optical.txt.in:94
1572msgid ""1749msgid ""
1573"PURPOSE:\n"1750"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1751" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1764,7 @@
1587msgstr ""1764msgstr ""
15881765
1589#. description1766#. description
1590#: ../jobs/optical.txt.in:1021767#: ../jobs/optical.txt.in:112
1591msgid ""1768msgid ""
1592"PURPOSE:\n"1769"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1770" This test will check your DVD playback capabilities\n"
@@ -1843,6 +2020,11 @@
1843msgstr ""2020msgstr ""
18442021
1845#. description2022#. description
2023#: ../jobs/suspend.txt.in:4
2024msgid "Record the current network before suspending."
2025msgstr ""
2026
2027#. description
1846#: ../jobs/suspend.txt.in:92028#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."2029msgid "Record the current resolution before suspending."
1848msgstr ""2030msgstr ""
@@ -1864,14 +2046,14 @@
1864msgstr ""2046msgstr ""
18652047
1866#. description2048#. description
1867#: ../jobs/suspend.txt.in:492049#: ../jobs/suspend.txt.in:40
1868msgid ""2050msgid ""
1869"This test disconnects all connections and then connects to the wireless "2051"This test disconnects all connections and then connects to the wireless "
1870"interface. It then checks the connection to confirm it's working as expected."2052"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""2053msgstr ""
18722054
1873#. description2055#. description
1874#: ../jobs/suspend.txt.in:832056#: ../jobs/suspend.txt.in:74
1875msgid ""2057msgid ""
1876"PURPOSE:\n"2058"PURPOSE:\n"
1877" This test will check suspend and resume\n"2059" This test will check suspend and resume\n"
@@ -1887,34 +2069,34 @@
1887msgstr ""2069msgstr ""
18882070
1889#. description2071#. description
1890#: ../jobs/suspend.txt.in:962072#: ../jobs/suspend.txt.in:87
1891msgid "Test the network after resuming."2073msgid "Test the network after resuming."
1892msgstr ""2074msgstr ""
18932075
1894#. description2076#. description
2077#: ../jobs/suspend.txt.in:93
2078msgid ""
2079"Test to see that we have the same resolution after resuming as before."
2080msgstr ""
2081
2082#. description
1895#: ../jobs/suspend.txt.in:1022083#: ../jobs/suspend.txt.in:102
1896msgid ""2084msgid ""
1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""
1899
1900#. description
1901#: ../jobs/suspend.txt.in:111
1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."2085"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""2086msgstr ""
19052087
1906#. description2088#. description
1907#: ../jobs/suspend.txt.in:1272089#: ../jobs/suspend.txt.in:118
1908msgid "Verify that all CPUs are online after resuming."2090msgid "Verify that all CPUs are online after resuming."
1909msgstr ""2091msgstr ""
19102092
1911#. description2093#. description
2094#: ../jobs/suspend.txt.in:135
2095msgid "Verify that all memory is available after resuming from suspend."
2096msgstr ""
2097
2098#. description
1912#: ../jobs/suspend.txt.in:1442099#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""
1915
1916#. description
1917#: ../jobs/suspend.txt.in:153
1918msgid ""2100msgid ""
1919"PURPOSE:\n"2101"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "2102" This test will check that the display is correct after suspend and "
@@ -1924,7 +2106,7 @@
1924msgstr ""2106msgstr ""
19252107
1926#. description2108#. description
1927#: ../jobs/suspend.txt.in:1742109#: ../jobs/suspend.txt.in:155
1928msgid ""2110msgid ""
1929"This test checks that the wireless interface is working after suspending the "2111"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "2112"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +2114,49 @@
1932msgstr ""2114msgstr ""
19332115
1934#. description2116#. description
1935#: ../jobs/suspend.txt.in:1862117#: ../jobs/suspend.txt.in:167
2118msgid ""
2119"Tests that the systems wireless hardware can connect to a router using WPA "
2120"security and the 802.11b/g protocols after the system has been suspended."
2121msgstr ""
2122
2123#. description
2124#: ../jobs/suspend.txt.in:178
2125msgid ""
2126"Tests that the systems wireless hardware can connect to a router using no "
2127"security and the 802.11b/g protocols after the system has been suspended."
2128msgstr ""
2129
2130#. description
2131#: ../jobs/suspend.txt.in:189
2132msgid ""
2133"Tests that the systems wireless hardware can connect to a router using WPA "
2134"security and the 802.11n protocol after the system has been suspended."
2135msgstr ""
2136
2137#. description
2138#: ../jobs/suspend.txt.in:200
2139msgid ""
2140"Tests that the systems wireless hardware can connect to a router using no "
2141"security and the 802.11n protocol after the system has been suspended."
2142msgstr ""
2143
2144#. description
2145#: ../jobs/suspend.txt.in:211
1936msgid ""2146msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "2147"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."2148"and compares it to the address grabbed before suspend."
1939msgstr ""2149msgstr ""
19402150
1941#. description2151#. description
1942#: ../jobs/suspend.txt.in:1962152#: ../jobs/suspend.txt.in:221
1943msgid ""2153msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "2154"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."2155"device specified by the BTDEVADDR environment variable."
1946msgstr ""2156msgstr ""
19472157
1948#. description2158#. description
1949#: ../jobs/suspend.txt.in:2062159#: ../jobs/suspend.txt.in:231
1950msgid ""2160msgid ""
1951"PURPOSE:\n"2161"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "2162" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +2171,7 @@
1961msgstr ""2171msgstr ""
19622172
1963#. description2173#. description
1964#: ../jobs/suspend.txt.in:2202174#: ../jobs/suspend.txt.in:245
1965msgid ""2175msgid ""
1966"PURPOSE:\n"2176"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"2177" This test will cycle through the detected display modes\n"
@@ -1972,7 +2182,7 @@
1972msgstr ""2182msgstr ""
19732183
1974#. description2184#. description
1975#: ../jobs/suspend.txt.in:2322185#: ../jobs/suspend.txt.in:257
1976msgid ""2186msgid ""
1977"This test will check to make sure supported video modes work after a suspend "2187"This test will check to make sure supported video modes work after a suspend "
1978"and resume. This is done automatically by taking screenshots and uploading "2188"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,28 +2190,14 @@
1980msgstr ""2190msgstr ""
19812191
1982#. description2192#. description
1983#: ../jobs/suspend.txt.in:2412193#: ../jobs/suspend.txt.in:266
1984msgid ""2194msgid ""
1985"This attaches screenshots from the "2195"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."2196"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
1987msgstr ""2197msgstr ""
19882198
1989#. description2199#. description
1990#: ../jobs/suspend.txt.in:2312200#: ../jobs/suspend.txt.in:276
1991msgid ""
1992"PURPOSE:\n"
1993" This will test that USB functionality is restored after a suspend and "
1994"resume cycle\n"
1995"STEPS:\n"
1996" 1. Plug in at least one USB storage device if one is not already "
1997"connected\n"
1998" 2. Click \"Test\" to start\n"
1999"VERIFICATION:\n"
2000" Automatically verified"
2001msgstr ""
2002
2003#. description
2004#: ../jobs/suspend.txt.in:251
2005msgid ""2201msgid ""
2006"This will check to make sure that your audio device works properly after a "2202"This will check to make sure that your audio device works properly after a "
2007"suspend and resume. This may work fine with speakers and onboard "2203"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2206,12 @@
2010msgstr ""2206msgstr ""
20112207
2012#. description2208#. description
2013#: ../jobs/suspend.txt.in:2602209#: ../jobs/suspend.txt.in:285
2014msgid "This is the automated version of suspend/suspend_advanced."2210msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2211msgstr ""
20162212
2017#. description2213#. description
2018#: ../jobs/suspend.txt.in:2692214#: ../jobs/suspend.txt.in:294
2019msgid ""2215msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2216"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2217"configured server. During this process the system will suspend, then "
@@ -2023,6 +2219,18 @@
2023msgstr ""2219msgstr ""
20242220
2025#. description2221#. description
2222#: ../jobs/suspend.txt.in:304
2223msgid ""
2224"PURPOSE:\n"
2225" Take a screengrab of the current screen after suspend (logged on Unity "
2226"desktop)\n"
2227"STEPS:\n"
2228" 1. Take picture using USB webcam\n"
2229"VERIFICATION:\n"
2230" 1. Review attachment manually later"
2231msgstr ""
2232
2233#. description
2026#: ../jobs/unity.txt.in:62234#: ../jobs/unity.txt.in:6
2027msgid ""2235msgid ""
2028"Xlib is required for unity testing. This checks for Xlib and installs it if "2236"Xlib is required for unity testing. This checks for Xlib and installs it if "
@@ -2045,7 +2253,7 @@
2045#: ../jobs/usb.txt.in:122253#: ../jobs/usb.txt.in:12
2046msgid ""2254msgid ""
2047"PURPOSE:\n"2255"PURPOSE:\n"
2048" This test will check your USB connection.\n"2256" This test will check that your system detects USB storage devices.\n"
2049"STEPS:\n"2257"STEPS:\n"
2050" 1. Plug in one or more USB keys or hard drives.\n"2258" 1. Plug in one or more USB keys or hard drives.\n"
2051" 2. Click on \"Test\".\n"2259" 2. Click on \"Test\".\n"
@@ -2083,28 +2291,33 @@
2083#: ../jobs/usb.txt.in:552291#: ../jobs/usb.txt.in:55
2084msgid ""2292msgid ""
2085"PURPOSE:\n"2293"PURPOSE:\n"
2086" This test will check your USB connection.\n"2294" This test will check that the system correctly detects the insertion of\n"
2295" a USB storage device\n"
2087"STEPS:\n"2296"STEPS:\n"
2088" 1. Click \"Test\" and insert a USB device within 5 seconds.\n"2297" 1. Click \"Test\" and insert a USB storage device (pen-drive/HDD).\n"
2298" (Note: this test will time-out after 10 seconds.)\n"
2089" 2. Do not unplug the device after the test.\n"2299" 2. Do not unplug the device after the test.\n"
2090"VERIFICATION:\n"2300"VERIFICATION:\n"
2091" The verification of this test is automated."2301" The verification of this test is automated. Do not change the\n"
2302" automatically selected result."
2092msgstr ""2303msgstr ""
20932304
2094#. description2305#. description
2095#: ../jobs/usb.txt.in:692306#: ../jobs/usb.txt.in:72
2096msgid ""2307msgid ""
2097"PURPOSE:\n"2308"PURPOSE:\n"
2098" This test will check your USB connection.\n"2309" This test will check that the system correctly detects the removal of\n"
2310" a USB storage device\n"
2099"STEPS:\n"2311"STEPS:\n"
2100" 1. Click \"Test\" and remove the USB device within 5 seconds.\n"2312" 1. Click \"Test\" and remove the USB device.\n"
2101" 2. Do not unplug the device after the test.\n"2313" (Note: this test will time-out after 10 seconds.)\n"
2102"VERIFICATION:\n"2314"VERIFICATION:\n"
2103" The verification of this test is automated."2315" The verification of this test is automated. Do not change the\n"
2316" automatically selected result."
2104msgstr ""2317msgstr ""
21052318
2106#. description2319#. description
2107#: ../jobs/usb.txt.in:822320#: ../jobs/usb.txt.in:88
2108msgid ""2321msgid ""
2109"PURPOSE:\n"2322"PURPOSE:\n"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches