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

Proposed by Daniel Manrique
Status: Merged
Merged at revision: 41
Proposed branch: lp:~roadmr/ubuntu/precise/checkbox/0.13.5
Merge into: lp:ubuntu/precise/checkbox
Diff against target: 101688 lines (+21514/-14618)
123 files modified
checkbox/application.py (+1/-1)
checkbox/user_interface.py (+15/-34)
checkbox_qt/qt_interface.py (+25/-12)
debian/changelog (+57/-0)
debian/po/cs.po (+2/-2)
debian/po/de.po (+2/-2)
debian/po/en_AU.po (+2/-2)
debian/po/en_GB.po (+2/-2)
debian/po/es.po (+2/-2)
debian/po/fr.po (+2/-2)
debian/po/he.po (+2/-2)
debian/po/hu.po (+2/-2)
debian/po/it.po (+2/-2)
debian/po/ja.po (+2/-2)
debian/po/nl.po (+2/-2)
debian/po/oc.po (+2/-2)
debian/po/pl.po (+2/-2)
debian/po/pt_BR.po (+2/-2)
debian/po/ro.po (+2/-2)
debian/po/ru.po (+2/-2)
debian/po/uk.po (+2/-2)
debian/po/zh_TW.po (+2/-2)
jobs/keys.txt.in (+1/-1)
jobs/mediacard.txt.in (+16/-16)
jobs/optical.txt.in (+10/-9)
jobs/suspend.txt.in (+1/-1)
plugins/apport_prompt.py (+3/-4)
plugins/user_interface.py (+23/-0)
po/ace.po (+146/-144)
po/af.po (+146/-144)
po/am.po (+148/-146)
po/ar.po (+146/-144)
po/ast.po (+164/-157)
po/az.po (+95/-93)
po/be.po (+146/-144)
po/bg.po (+146/-144)
po/bn.po (+146/-144)
po/bo.po (+146/-144)
po/br.po (+146/-144)
po/bs.po (+146/-144)
po/ca.po (+230/-180)
po/ca@valencia.po (+146/-144)
po/ckb.po (+120/-93)
po/cs.po (+1030/-200)
po/cy.po (+148/-146)
po/da.po (+346/-148)
po/de.po (+742/-667)
po/dv.po (+148/-146)
po/el.po (+68/-66)
po/en_AU.po (+733/-685)
po/en_CA.po (+146/-144)
po/en_GB.po (+719/-717)
po/eo.po (+146/-144)
po/es.po (+505/-189)
po/et.po (+146/-144)
po/eu.po (+146/-144)
po/fa.po (+148/-146)
po/fi.po (+196/-145)
po/fr.po (+254/-144)
po/ga.po (+148/-146)
po/gd.po (+146/-144)
po/gl.po (+147/-145)
po/he.po (+146/-144)
po/hi.po (+146/-144)
po/hr.po (+146/-144)
po/hu.po (+211/-145)
po/hy.po (+148/-146)
po/id.po (+148/-146)
po/is.po (+146/-144)
po/it.po (+1158/-205)
po/ja.po (+146/-144)
po/jbo.po (+148/-146)
po/ka.po (+148/-146)
po/kk.po (+146/-144)
po/km.po (+148/-146)
po/kn.po (+148/-146)
po/ko.po (+195/-165)
po/ku.po (+148/-146)
po/ky.po (+148/-146)
po/lt.po (+146/-144)
po/lv.po (+146/-144)
po/mk.po (+148/-146)
po/ml.po (+148/-146)
po/mr.po (+148/-146)
po/ms.po (+95/-93)
po/my.po (+146/-144)
po/nb.po (+146/-144)
po/nds.po (+148/-146)
po/ne.po (+146/-144)
po/nl.po (+44/-44)
po/nn.po (+146/-144)
po/oc.po (+147/-145)
po/pl.po (+146/-144)
po/ps.po (+148/-146)
po/pt.po (+146/-144)
po/pt_BR.po (+199/-149)
po/ro.po (+1349/-239)
po/ru.po (+44/-44)
po/sd.po (+44/-44)
po/shn.po (+148/-146)
po/si.po (+148/-146)
po/sk.po (+68/-66)
po/sl.po (+799/-173)
po/sq.po (+146/-144)
po/sr.po (+148/-146)
po/sv.po (+146/-144)
po/ta.po (+152/-145)
po/te.po (+152/-150)
po/th.po (+146/-144)
po/tr.po (+1102/-199)
po/ug.po (+1309/-191)
po/uk.po (+45/-45)
po/ur.po (+148/-146)
po/uz.po (+148/-146)
po/vi.po (+146/-144)
po/zh_CN.po (+147/-145)
po/zh_HK.po (+146/-144)
po/zh_TW.po (+146/-144)
qt/frontend/qtfront.cpp (+75/-35)
qt/frontend/qtfront.h (+12/-7)
qt/frontend/qtfront.ui (+102/-35)
scripts/removable_storage_test (+3/-2)
scripts/removable_storage_watcher (+11/-11)
To merge this branch: bzr merge lp:~roadmr/ubuntu/precise/checkbox/0.13.5
Reviewer Review Type Date Requested Status
Ubuntu Sponsors Pending
Review via email: mp+98565@code.launchpad.net

Description of the change

New version of Checkbox, contains several bug fixes and two new features, these are described in bug 959452 and bug 957090, both have received Freeze exceptions.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'bin/checkbox-qt' (properties changed: -x to +x)
=== modified file 'checkbox/application.py'
--- checkbox/application.py 2011-11-18 12:46:21 +0000
+++ checkbox/application.py 2012-03-21 03:20:56 +0000
@@ -60,7 +60,7 @@
60 application_factory = Application60 application_factory = Application
6161
62 default_log = os.path.join(get_variable("CHECKBOX_DATA", "."), "checkbox.log")62 default_log = os.path.join(get_variable("CHECKBOX_DATA", "."), "checkbox.log")
63 default_log_level = "debug"63 default_log_level = "info"
6464
65 def parse_options(self, args):65 def parse_options(self, args):
66 usage = _("Usage: checkbox [OPTIONS]")66 usage = _("Usage: checkbox [OPTIONS]")
6767
=== modified file 'checkbox/user_interface.py'
--- checkbox/user_interface.py 2012-02-23 11:56:50 +0000
+++ checkbox/user_interface.py 2012-03-21 03:20:56 +0000
@@ -67,6 +67,7 @@
67 def __init__(self, title, data_path=None):67 def __init__(self, title, data_path=None):
68 self.title = title68 self.title = title
69 self.data_path = data_path69 self.data_path = data_path
70 self.ui_flags = {}
7071
71 self.report_url = None72 self.report_url = None
72 self.direction = NEXT73 self.direction = NEXT
@@ -129,25 +130,6 @@
129130
130 Display an error dialog if everything fails."""131 Display an error dialog if everything fails."""
131132
132 (r, w) = os.pipe()
133 if os.fork() > 0:
134 os.close(w)
135 (pid, status) = os.wait()
136 if status:
137 text = _("Unable to start web browser to open %s.") % url
138 message = os.fdopen(r).readline()
139 if message:
140 text += "\n" + message
141 self.show_error(text)
142 try:
143 os.close(r)
144 except OSError:
145 pass
146 return
147
148 os.setsid()
149 os.close(r)
150
151 # If we are called through sudo, determine the real user id and run the133 # If we are called through sudo, determine the real user id and run the
152 # browser with it to get the user's web browser settings.134 # browser with it to get the user's web browser settings.
153 try:135 try:
@@ -166,8 +148,8 @@
166 if os.getenv("DISPLAY") and \148 if os.getenv("DISPLAY") and \
167 subprocess.call(["pgrep", "-x", "-u", str(uid), "ksmserver"],149 subprocess.call(["pgrep", "-x", "-u", str(uid), "ksmserver"],
168 stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0:150 stdout=subprocess.PIPE, stderr=subprocess.PIPE) == 0:
169 subprocess.call(sudo_prefix + ["kfmclient", "openURL", url])151 subprocess.Popen(sudo_prefix + ["kfmclient", "openURL", url])
170 sys.exit(0)152 return
171 except OSError:153 except OSError:
172 pass154 pass
173155
@@ -185,19 +167,19 @@
185 preferred_browser = preferred_xml_app.get_executable()167 preferred_browser = preferred_xml_app.get_executable()
186 browser = re.match("((firefox|seamonkey|flock)[^\s]*)", preferred_browser)168 browser = re.match("((firefox|seamonkey|flock)[^\s]*)", preferred_browser)
187 if browser:169 if browser:
188 subprocess.call(sudo_prefix + [browser.group(0), "-new-window", url])170 subprocess.Popen(sudo_prefix + [browser.group(0), "-new-window", url])
189 sys.exit(0)171 return
190172
191 browser = re.match("(epiphany[^\s]*)", preferred_browser)173 browser = re.match("(epiphany[^\s]*)", preferred_browser)
192 if browser:174 if browser:
193 subprocess.call(sudo_prefix + [browser.group(0), "--new-window", url])175 subprocess.Popen(sudo_prefix + [browser.group(0), "--new-window", url])
194 sys.exit(0)176 return
195177
196 subprocess.call(sudo_prefix + [preferred_browser % url], shell=True)178 subprocess.Popen(sudo_prefix + [preferred_browser % url], shell=True)
197 sys.exit(0)179 return
198180
199 if subprocess.call(sudo_prefix + ["gnome-open", url]) == 0:181 subprocess.Popen(sudo_prefix + ["gnome-open", url])
200 sys.exit(0)182 return
201 except OSError:183 except OSError:
202 pass184 pass
203185
@@ -210,11 +192,10 @@
210 add_variable("HOME", pwd.getpwuid(uid).pw_dir)192 add_variable("HOME", pwd.getpwuid(uid).pw_dir)
211193
212 webbrowser.open(url, new=True, autoraise=True)194 webbrowser.open(url, new=True, autoraise=True)
213 sys.exit(0)195 return
214196
215 except Exception, e:197 except Exception, e:
216 os.write(w, str(e))198 pass
217 sys.exit(1)
218199
219 def show_report(self, text, results):200 def show_report(self, text, results):
220 """201 """
221202
=== modified file 'checkbox_qt/qt_interface.py'
--- checkbox_qt/qt_interface.py 2012-02-23 11:56:50 +0000
+++ checkbox_qt/qt_interface.py 2012-03-21 03:20:56 +0000
@@ -26,7 +26,7 @@
26from gettext import gettext as _26from gettext import gettext as _
27from string import Template27from string import Template
2828
29from checkbox.job import UNINITIATED29from checkbox.job import PASS
30from checkbox.user_interface import (UserInterface,30from checkbox.user_interface import (UserInterface,
31 NEXT, PREV, YES_ANSWER, NO_ANSWER, SKIP_ANSWER,31 NEXT, PREV, YES_ANSWER, NO_ANSWER, SKIP_ANSWER,
32 ANSWER_TO_STATUS, STATUS_TO_ANSWER)32 ANSWER_TO_STATUS, STATUS_TO_ANSWER)
@@ -55,20 +55,24 @@
55 notReady = False55 notReady = False
56 except:56 except:
57 time.sleep(0.5)57 time.sleep(0.5)
58 self.bus.add_signal_receiver(self.onWelcomeScreenRequested, "welcomeScreenRequested")
59 self.bus.add_signal_receiver(self.onClosedFrontend, "closedFrontend")58 self.bus.add_signal_receiver(self.onClosedFrontend, "closedFrontend")
60 self.bus.add_signal_receiver(self.onReviewTestsClicked, "reviewTestsClicked")59 self.bus.add_signal_receiver(self.onReviewTestsClicked, "reviewTestsClicked")
60 self.bus.add_signal_receiver(self.onWelcomeCheckboxToggled, "welcomeCheckboxToggled")
61
61 self.qtiface.setInitialState();62 self.qtiface.setInitialState();
62 self._set_main_title()63 self._set_main_title()
6364
64 def onReviewTestsClicked(self):65 def onReviewTestsClicked(self):
65 self.show_url(self.report_url) 66 self.show_url(self.report_url)
6667
67 def onWelcomeScreenRequested(self):68 def onWelcomeCheckboxToggled(self, checked):
68 pass69 self.ui_flags["show_welcome_message"] = bool(checked)
6970
70 def onClosedFrontend(self):71 def onClosedFrontend(self, finished):
71 self.direction = KeyboardInterrupt72 if bool(finished):
73 self.direction = NEXT
74 else:
75 self.direction = KeyboardInterrupt
72 self.loop.quit()76 self.loop.quit()
7377
74 def _set_main_title(self, test_name=None):78 def _set_main_title(self, test_name=None):
@@ -96,6 +100,9 @@
96 #Reset window title100 #Reset window title
97 self._set_main_title()101 self._set_main_title()
98102
103 if not self.ui_flags == {}:
104 self.qtiface.setUiFlags(self.ui_flags)
105
99 self.qtiface.showText(text)106 self.qtiface.showText(text)
100 self.wait_on_signals(fullTestsClicked=onFullTestsClicked)107 self.wait_on_signals(fullTestsClicked=onFullTestsClicked)
101108
@@ -138,8 +145,7 @@
138145
139 self.qtiface.showTree(text, newOptions)146 self.qtiface.showTree(text, newOptions)
140 self.wait_on_signals(147 self.wait_on_signals(
141 startTestsClicked=onStartTestsClicked,148 startTestsClicked=onStartTestsClicked)
142 welcomeClicked=onWelcomeClicked)
143149
144 newOptions = {}150 newOptions = {}
145 testsFromInterface = self.qtiface.getTestsToRun()151 testsFromInterface = self.qtiface.getTestsToRun()
@@ -153,7 +159,10 @@
153 return newOptions159 return newOptions
154160
155 def _run_test(self, test, runner):161 def _run_test(self, test, runner):
162 self.qtiface.showTestControls(False)
156 (status, data, duration) = runner(test)163 (status, data, duration) = runner(test)
164 self.qtiface.setFocusTestYesNo(True if status == PASS else False)
165 self.qtiface.showTestControls(True)
157166
158 return Template(test["info"]).substitute({167 return Template(test["info"]).substitute({
159 "output": data.strip()})168 "output": data.strip()})
@@ -181,16 +190,20 @@
181 self.direction = NEXT190 self.direction = NEXT
182 self.loop.quit()191 self.loop.quit()
183192
184 enableTestButton = True193 enableTestButton = False
185 self._set_main_title(test["name"])194 self._set_main_title(test["name"])
186 if test["info"] and "$output" in test["info"]:195 if test["info"] and "$output" in test["info"]:
187 info = self._run_test(test, runner)196 info = self._run_test(test, runner)
188 enableTestButton = False
189 else:197 else:
190 info = ""198 info = ""
191199
200 if not "data" in test:
201 test["data"] = ""
202 if "command" in test:
203 enableTestButton = True
204
192 self.qtiface.showTest(205 self.qtiface.showTest(
193 test["purpose"], test["steps"], test["verification"], info,206 test["purpose"], test["steps"], test["verification"], info, test["data"],
194 test["suite"], test["name"], enableTestButton)207 test["suite"], test["name"], enableTestButton)
195 self.wait_on_signals(208 self.wait_on_signals(
196 startTestClicked=onStartTestClicked,209 startTestClicked=onStartTestClicked,
@@ -199,7 +212,7 @@
199 noTestClicked=onNoTestClicked,212 noTestClicked=onNoTestClicked,
200 yesTestClicked=onYesTestClicked)213 yesTestClicked=onYesTestClicked)
201214
202 test["data"] = ""215 test["data"] = self.qtiface.getTestComment()
203 return False216 return False
204217
205 def show_info(self, text, options=[], default=None):218 def show_info(self, text, options=[], default=None):
206219
=== modified file 'debian/changelog'
--- debian/changelog 2012-03-07 19:46:29 +0000
+++ debian/changelog 2012-03-21 03:20:56 +0000
@@ -1,3 +1,60 @@
1checkbox (0.13.5) precise; urgency=low
2
3 * New upstream release (LP: #960633)
4
5 * Automated translation file updates from Launchpad
6
7 [Tiago Salem Herrmann]
8 * qt/frontend/qtfront.ui: If the test text is too long, then it is cut off
9 (LP: #950111)
10 * checkbox_qt/qt_interface.py, qt/frontend/qtfront.cpp,
11 qt/frontend/qtfront.h, qt/frontend/qtfront.ui: add a popup comment box
12 for each test under the "Run" tab. (LP: #959452)
13 * checkbox/user_interface.py, qt/frontend/qtfront.cpp,
14 qt/frontend/qtfront.h, checkbox_qt/qt_interface.py: Set
15 interface.direction to NEXT if all the tests were executed and the user
16 either analyzed or submitted the results. (LP: #956329)
17 * checkbox/user_interface.py, plugins/user_interface.py,
18 qt/frontend/qtfront.cpp, qt/frontend/qtfront.h,
19 checkbox_qt/qt_interface.py: Use the ui persistent storage to keep some ui
20 configuration values. (LP: #937626)
21 * checkbox/user_interface.py: Avoid using fork() + call() to run a web
22 browser. Use Popen instead.(LP: #956307)
23 * qt/frontend/qtfront.ui, qt/frontend/qtfront.cpp, qt/frontend/qtfront.h:
24 Removed welcome tab (LP: #957090)
25
26 [Jeff Lane]
27 * Reset default checkbox log level to INFO from DEBUG to make logs less
28 confusing and verbose. (LP: #949745)
29 * Removed dependency on bluetooth/detect-output on the
30 suspend/suspend_advanced job. (LP: #955375)
31 * jobs/mediacard.txt.in, scripts/removable_storage_test,
32 scripts/removable_storage_watcher: Modified removable_storage_watcher and
33 removable_storage_test to accept list of busses to watch to resolve
34 problems on systems with MMC readers that present themselves as USB
35 devices rather than SDIO (LP: #953160)
36 * jobs/optical.txt.in: Fixed the job descriptions for optical/read and
37 optical/cdrom-audio-playback to account for changes in Precise and make
38 them less confusing (LP: #954606)
39
40 [Marc Tardif]
41 * Linted qt_interface which had a few syntax errors (LP: #949957)
42 * plugins/apport_prompt.py: Fixed apport integration was producing a trace
43 (LP: #959463)
44
45 [Daniel Manrique]
46 * Bumped revision number to 0.13.5 in trunk
47 * jobs/keys.txt.in: Fix definition for keys/media-keys test which failed to
48 run (LP: #954480)
49
50 [Sylvain Pineau]
51 * Show the UF invalidation warning if all test cases are unchecked from the
52 right click menu (LP: #956757)
53 * checkbox_qt/qt_interface.py, qt/frontend/qtfront.cpp,
54 qt/frontend/qtfront.h: Tests now select Yes on PASS status (LP: #954556)
55
56 -- Daniel Manrique <roadmr@ubuntu.com> Tue, 20 Mar 2012 17:33:17 -0400
57
1checkbox (0.13.4) precise; urgency=low58checkbox (0.13.4) precise; urgency=low
259
3 * New upstream release (LP: #949983)60 * New upstream release (LP: #949983)
461
=== modified file 'debian/po/cs.po'
--- debian/po/cs.po 2012-03-07 19:46:29 +0000
+++ debian/po/cs.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-06 04:34+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14900)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/de.po'
--- debian/po/de.po 2012-02-15 00:11:21 +0000
+++ debian/po/de.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/en_AU.po'
--- debian/po/en_AU.po 2012-02-15 00:11:21 +0000
+++ debian/po/en_AU.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:38+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/en_GB.po'
--- debian/po/en_GB.po 2012-02-15 00:11:21 +0000
+++ debian/po/en_GB.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/es.po'
--- debian/po/es.po 2012-02-23 11:56:50 +0000
+++ debian/po/es.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/fr.po'
--- debian/po/fr.po 2012-02-15 00:11:21 +0000
+++ debian/po/fr.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/he.po'
--- debian/po/he.po 2012-02-15 00:11:21 +0000
+++ debian/po/he.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/hu.po'
--- debian/po/hu.po 2012-02-15 00:11:21 +0000
+++ debian/po/hu.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/it.po'
--- debian/po/it.po 2012-02-15 00:11:21 +0000
+++ debian/po/it.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/ja.po'
--- debian/po/ja.po 2012-02-23 11:56:50 +0000
+++ debian/po/ja.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/nl.po'
--- debian/po/nl.po 2012-02-15 00:11:21 +0000
+++ debian/po/nl.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/oc.po'
--- debian/po/oc.po 2012-03-07 19:46:29 +0000
+++ debian/po/oc.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-25 04:41+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14860)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/pl.po'
--- debian/po/pl.po 2012-02-15 00:11:21 +0000
+++ debian/po/pl.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/pt_BR.po'
--- debian/po/pt_BR.po 2012-02-15 00:11:21 +0000
+++ debian/po/pt_BR.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/ro.po'
--- debian/po/ro.po 2012-02-15 00:11:21 +0000
+++ debian/po/ro.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/ru.po'
--- debian/po/ru.po 2012-02-15 00:11:21 +0000
+++ debian/po/ru.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/uk.po'
--- debian/po/uk.po 2012-02-15 00:11:21 +0000
+++ debian/po/uk.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:37+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:34+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'debian/po/zh_TW.po'
--- debian/po/zh_TW.po 2012-02-23 11:56:50 +0000
+++ debian/po/zh_TW.po 2012-03-21 03:20:56 +0000
@@ -15,8 +15,8 @@
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-02-07 04:38+0000\n"18"X-Launchpad-Export-Date: 2012-03-15 04:35+0000\n"
19"X-Generator: Launchpad (build 14747)\n"19"X-Generator: Launchpad (build 14933)\n"
2020
21#. Type: boolean21#. Type: boolean
22#. Description22#. Description
2323
=== modified file 'jobs/keys.txt.in'
--- jobs/keys.txt.in 2012-02-10 11:19:05 +0000
+++ jobs/keys.txt.in 2012-03-21 03:20:56 +0000
@@ -78,5 +78,5 @@
78 1. Click test to open a window on which to test the media control keys.78 1. Click test to open a window on which to test the media control keys.
79 2. If all the keys work, the test will be marked as passed.79 2. If all the keys work, the test will be marked as passed.
80 3. If your computer has no media control keys, Skip this test.80 3. If your computer has no media control keys, Skip this test.
81 VERIFICATION:81 VERIFICATION:
82 Do the keys work as expected?82 Do the keys work as expected?
8383
=== modified file 'jobs/mediacard.txt.in'
--- jobs/mediacard.txt.in 2012-02-15 00:11:21 +0000
+++ jobs/mediacard.txt.in 2012-03-21 03:20:56 +0000
@@ -1,6 +1,6 @@
1plugin: manual1plugin: manual
2name: mediacard/mmc-insert2name: mediacard/mmc-insert
3command: removable_storage_watcher insert sdio3command: removable_storage_watcher insert sdio usb scsi
4_description:4_description:
5 PURPOSE:5 PURPOSE:
6 This test will check that the systems media card reader can6 This test will check that the systems media card reader can
@@ -24,7 +24,7 @@
24plugin: manual24plugin: manual
25name: mediacard/mmc-remove25name: mediacard/mmc-remove
26depends: mediacard/mmc-storage26depends: mediacard/mmc-storage
27command: removable_storage_watcher remove sdio27command: removable_storage_watcher remove sdio usb scsi
28_description:28_description:
29 PURPOSE:29 PURPOSE:
30 This test will check that the system correctly detects 30 This test will check that the system correctly detects
@@ -39,7 +39,7 @@
39plugin: manual39plugin: manual
40name: mediacard/mmc-insert-after-suspend40name: mediacard/mmc-insert-after-suspend
41depends: suspend/suspend_advanced41depends: suspend/suspend_advanced
42command: removable_storage_watcher insert sdio42command: removable_storage_watcher insert sdio usb scsi
43_description:43_description:
44 PURPOSE:44 PURPOSE:
45 This test will check that the systems media card reader can45 This test will check that the systems media card reader can
@@ -63,7 +63,7 @@
63plugin: manual63plugin: manual
64name: mediacard/mmc-remove-after-suspend64name: mediacard/mmc-remove-after-suspend
65depends: mediacard/mmc-storage-after-suspend65depends: mediacard/mmc-storage-after-suspend
66command: removable_storage_watcher remove sdio66command: removable_storage_watcher remove sdio usb scsi
67_description:67_description:
68 PURPOSE:68 PURPOSE:
69 This test will check that the system correctly detects the removal69 This test will check that the system correctly detects the removal
@@ -77,7 +77,7 @@
7777
78plugin: manual78plugin: manual
79name: mediacard/sd-insert79name: mediacard/sd-insert
80command: removable_storage_watcher insert sdio80command: removable_storage_watcher insert sdio usb scsi
81_description:81_description:
82 PURPOSE:82 PURPOSE:
83 This test will check that the systems media card reader can83 This test will check that the systems media card reader can
@@ -101,7 +101,7 @@
101plugin: manual101plugin: manual
102name: mediacard/sd-remove102name: mediacard/sd-remove
103depends: mediacard/sd-storage103depends: mediacard/sd-storage
104command: removable_storage_watcher remove sdio104command: removable_storage_watcher remove sdio usb scsi
105_description:105_description:
106 PURPOSE:106 PURPOSE:
107 This test will check that the system correctly detects 107 This test will check that the system correctly detects
@@ -116,7 +116,7 @@
116plugin: manual116plugin: manual
117name: mediacard/sd-insert-after-suspend117name: mediacard/sd-insert-after-suspend
118depends: suspend/suspend_advanced118depends: suspend/suspend_advanced
119command: removable_storage_watcher insert sdio119command: removable_storage_watcher insert sdio usb scsi
120_description:120_description:
121 PURPOSE:121 PURPOSE:
122 This test will check that the systems media card reader can122 This test will check that the systems media card reader can
@@ -140,7 +140,7 @@
140plugin: manual140plugin: manual
141name: mediacard/sd-remove-after-suspend141name: mediacard/sd-remove-after-suspend
142depends: mediacard/sd-storage-after-suspend142depends: mediacard/sd-storage-after-suspend
143command: removable_storage_watcher remove sdio143command: removable_storage_watcher remove sdio usb scsi
144_description:144_description:
145 PURPOSE:145 PURPOSE:
146 This test will check that the system correctly detects 146 This test will check that the system correctly detects
@@ -154,7 +154,7 @@
154154
155plugin: manual155plugin: manual
156name: mediacard/sdhc-insert156name: mediacard/sdhc-insert
157command: removable_storage_watcher insert sdio157command: removable_storage_watcher insert sdio usb scsi
158_description:158_description:
159 PURPOSE:159 PURPOSE:
160 This test will check that the systems media card reader can160 This test will check that the systems media card reader can
@@ -178,7 +178,7 @@
178plugin: manual178plugin: manual
179name: mediacard/sdhc-remove179name: mediacard/sdhc-remove
180depends: mediacard/sdhc-storage180depends: mediacard/sdhc-storage
181command: removable_storage_watcher remove sdio181command: removable_storage_watcher remove sdio usb scsi
182_description:182_description:
183 PURPOSE:183 PURPOSE:
184 This test will check that the system correctly detects 184 This test will check that the system correctly detects
@@ -193,7 +193,7 @@
193plugin: manual193plugin: manual
194name: mediacard/sdhc-insert-after-suspend194name: mediacard/sdhc-insert-after-suspend
195depends: suspend/suspend_advanced195depends: suspend/suspend_advanced
196command: removable_storage_watcher insert sdio196command: removable_storage_watcher insert sdio usb scsi
197_description:197_description:
198 PURPOSE:198 PURPOSE:
199 This test will check that the systems media card reader can199 This test will check that the systems media card reader can
@@ -217,7 +217,7 @@
217plugin: manual217plugin: manual
218name: mediacard/sdhc-remove-after-suspend218name: mediacard/sdhc-remove-after-suspend
219depends: mediacard/sdhc-storage-after-suspend219depends: mediacard/sdhc-storage-after-suspend
220command: removable_storage_watcher remove sdio220command: removable_storage_watcher remove sdio usb scsi
221_description:221_description:
222 PURPOSE:222 PURPOSE:
223 This test will check that the system correctly detects the removal223 This test will check that the system correctly detects the removal
@@ -231,7 +231,7 @@
231231
232plugin: manual232plugin: manual
233name: mediacard/cf-insert233name: mediacard/cf-insert
234command: removable_storage_watcher insert sdio234command: removable_storage_watcher insert sdio usb scsi
235_description:235_description:
236 PURPOSE:236 PURPOSE:
237 This test will check that the systems media card reader can237 This test will check that the systems media card reader can
@@ -255,7 +255,7 @@
255plugin: manual255plugin: manual
256name: mediacard/cf-remove256name: mediacard/cf-remove
257depends: mediacard/cf-storage257depends: mediacard/cf-storage
258command: removable_storage_watcher remove sdio258command: removable_storage_watcher remove sdio usb scsi
259_description:259_description:
260 PURPOSE:260 PURPOSE:
261 This test will check that the system correctly detects 261 This test will check that the system correctly detects
@@ -270,7 +270,7 @@
270plugin: manual270plugin: manual
271name: mediacard/cf-insert-after-suspend271name: mediacard/cf-insert-after-suspend
272depends: suspend/suspend_advanced272depends: suspend/suspend_advanced
273command: removable_storage_watcher insert sdio273command: removable_storage_watcher insert sdio usb scsi
274_description:274_description:
275 PURPOSE:275 PURPOSE:
276 This test will check that the systems media card reader can276 This test will check that the systems media card reader can
@@ -294,7 +294,7 @@
294plugin: manual294plugin: manual
295name: mediacard/cf-remove-after-suspend295name: mediacard/cf-remove-after-suspend
296depends: mediacard/cf-storage-after-suspend296depends: mediacard/cf-storage-after-suspend
297command: removable_storage_watcher remove sdio297command: removable_storage_watcher remove sdio usb scsi
298_description:298_description:
299 PURPOSE:299 PURPOSE:
300 This test will check that the system correctly detects the removal300 This test will check that the system correctly detects the removal
301301
=== modified file 'jobs/optical.txt.in'
--- jobs/optical.txt.in 2012-02-15 00:11:21 +0000
+++ jobs/optical.txt.in 2012-03-21 03:20:56 +0000
@@ -18,10 +18,11 @@
18 This test will check your optical devices ability to read CD media18 This test will check your optical devices ability to read CD media
19 STEPS:19 STEPS:
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 does not open automatically, open the file browser and access the disk.21 2. If a file browser window opens, you can safely close or ignore that window.
22 3. Attempt to open a text file on the disk, or copy a file from the disk to your home directory.22 3. Click "Test" to being the test.
23 4. When the test completes, proceed by clicking "Next"
23 VERIFICATION:24 VERIFICATION:
24 Were you able to view files on the disk and either open a file to read or copy a file to your home directory?25 This test should automatically select "Yes" if it passes, "No" if it fails.
2526
26plugin: manual27plugin: manual
27name: optical/cdrom-write28name: optical/cdrom-write
@@ -49,14 +50,14 @@
49 This test will check your CD audio playback capabilities50 This test will check your CD audio playback capabilities
50 STEPS:51 STEPS:
51 1. Insert an audio CD in your optical drive52 1. Insert an audio CD in your optical drive
52 2. Open the Dash (click on the Ubuntu Circle of Friends button on the Launcher)53 2. When prompted, launch the Music Player
53 3. Click "Listen to Music" to open Banshee54 3. Locate the CD in the display of the Music Player
54 4. Select the CD under "Libraries" in the left panel of Banshee55 4. Select the CD in the Music Player
55 5. Click the Play button to listen to music56 5. Click the Play button to listen to the music on the CD
56 6. Stop playing after some time57 6. Stop playing after some time
57 7. Right click on the CD icon under "Libraries" and select "Eject Disc"58 7. Right click on the CD icon and select "Eject Disc"
58 8. The CD should be ejected59 8. The CD should be ejected
59 9. Close Banshee60 9. Close the Music Player
60 VERIFICATION:61 VERIFICATION:
61 Did all the steps work?62 Did all the steps work?
6263
6364
=== modified file 'jobs/suspend.txt.in'
--- jobs/suspend.txt.in 2012-02-23 11:56:50 +0000
+++ jobs/suspend.txt.in 2012-03-21 03:20:56 +0000
@@ -76,7 +76,7 @@
7676
77plugin: manual77plugin: manual
78name: suspend/suspend_advanced78name: suspend/suspend_advanced
79depends: power-management/rtc suspend/network_before_suspend suspend/resolution_before_suspend suspend/wireless_before_suspend bluetooth/detect-output suspend/cpu_before_suspend suspend/memory_before_suspend79depends: power-management/rtc suspend/network_before_suspend suspend/resolution_before_suspend suspend/wireless_before_suspend suspend/cpu_before_suspend suspend/memory_before_suspend
80requires: package.name == 'pm-utils'80requires: package.name == 'pm-utils'
81user: root81user: root
82command: sleep_test -d82command: sleep_test -d
8383
=== modified file 'plugins/apport_prompt.py'
--- plugins/apport_prompt.py 2012-02-10 11:19:05 +0000
+++ plugins/apport_prompt.py 2012-03-21 03:20:56 +0000
@@ -125,7 +125,7 @@
125 self.interface.show_progress_stop()125 self.interface.show_progress_stop()
126126
127 def ui_present_report_details(self, *args):127 def ui_present_report_details(self, *args):
128 return "full"128 return dict(report=1)
129129
130 def ui_question_choice(self, text, options, multiple):130 def ui_question_choice(self, text, options, multiple):
131 self.interface.show_progress_stop()131 self.interface.show_progress_stop()
@@ -224,9 +224,8 @@
224 return224 return
225225
226 if test.get("suite"):226 if test.get("suite"):
227 failed_test_message = _("Test %(name)s from suite %(suite)s failed.") % {227 failed_test_message = _("Test %(name)s failed.") % {
228 'name' : test["name"], 228 'name' : test["name"]}
229 'suite:' : test["suite"]}
230 else:229 else:
231 failed_test_message = _("Test %s failed.") % test["name"]230 failed_test_message = _("Test %s failed.") % test["name"]
232 failed_test_message += "\n" + _("Do you want to report a bug?")231 failed_test_message += "\n" + _("Do you want to report a bug?")
233232
=== modified file 'plugins/user_interface.py'
--- plugins/user_interface.py 2012-02-15 00:11:21 +0000
+++ plugins/user_interface.py 2012-03-21 03:20:56 +0000
@@ -16,6 +16,7 @@
16# You should have received a copy of the GNU General Public License16# You should have received a copy of the GNU General Public License
17# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.17# along with Checkbox. If not, see <http://www.gnu.org/licenses/>.
18#18#
19from checkbox.contrib.persist import Persist, MemoryBackend
19from checkbox.plugin import Plugin20from checkbox.plugin import Plugin
20from checkbox.properties import Path, String21from checkbox.properties import Path, String
21from checkbox.user_interface import PREV22from checkbox.user_interface import PREV
@@ -44,12 +45,34 @@
44 # Path where data files are stored.45 # Path where data files are stored.
45 data_path = Path(required=False)46 data_path = Path(required=False)
4647
48 @property
49 def persist(self):
50 if self._persist is None:
51 self._persist = Persist(backend=MemoryBackend())
52
53 return self._persist.root_at("user_interface")
54
47 def register(self, manager):55 def register(self, manager):
48 super(UserInterface, self).register(manager)56 super(UserInterface, self).register(manager)
4957
58 self._persist = None
59
60 self._manager.reactor.call_on("prompt-begin", self.prompt_begin)
61 self._manager.reactor.call_on("stop", self.save_persist)
62 self._manager.reactor.call_on("begin-persist", self.begin_persist)
50 self._manager.reactor.call_on("run", self.run)63 self._manager.reactor.call_on("run", self.run)
51 self._manager.reactor.call_on("launchpad-report", self.launchpad_report)64 self._manager.reactor.call_on("launchpad-report", self.launchpad_report)
5265
66 def begin_persist(self, persist):
67 self._persist = persist
68
69 def prompt_begin(self, interface):
70 self._interface.ui_flags = self.persist.get("ui_flags", {})
71
72 def save_persist(self, *args):
73 self.persist.set("ui_flags", self._interface.ui_flags)
74 self.persist.save()
75
53 def run(self):76 def run(self):
54 interface_module = __import__(self.interface_module,77 interface_module = __import__(self.interface_module,
55 None, None, [''])78 None, None, [''])
5679
=== modified file 'po/ace.po'
--- po/ace.po 2012-02-15 00:11:21 +0000
+++ po/ace.po 2012-03-21 03:20:56 +0000
@@ -14,33 +14,33 @@
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-02-07 04:33+0000\n"17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"
18"X-Generator: Launchpad (build 14747)\n"18"X-Generator: Launchpad (build 14933)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:35120#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26121#: ../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:225#: ../gtk/checkbox-gtk.ui.h:10
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:3 ../gtk/checkbox-gtk.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4031#: ../plugins/user_interface.py:42
32msgid "System Testing"32msgid "System Testing"
33msgstr "Neu uji Sistem"33msgstr "Neu uji Sistem"
3434
35#: ../gtk/checkbox-gtk.ui.h:435#: ../gtk/checkbox-gtk.ui.h:8
36msgid "_Deselect All"36msgid "_Deselect All"
37msgstr "Peug_adoh Bandum"37msgstr "Peug_adoh Bandum"
3838
39#: ../gtk/checkbox-gtk.ui.h:539#: ../gtk/checkbox-gtk.ui.h:4
40msgid "_No"40msgid "_No"
41msgstr "_Kon"41msgstr "_Kon"
4242
43#: ../gtk/checkbox-gtk.ui.h:643#: ../gtk/checkbox-gtk.ui.h:9
44msgid "_Previous"44msgid "_Previous"
45msgstr "_Sigohlom jih"45msgstr "_Sigohlom jih"
4646
@@ -48,19 +48,19 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr "_Pileeh Bandum"49msgstr "_Pileeh Bandum"
5050
51#: ../gtk/checkbox-gtk.ui.h:851#: ../gtk/checkbox-gtk.ui.h:5
52msgid "_Skip this test"52msgid "_Skip this test"
53msgstr "_Neupeuliwat uji nyoe"53msgstr "_Neupeuliwat uji nyoe"
5454
55#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:53555#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:538
56msgid "_Test"56msgid "_Test"
57msgstr "_Uji"57msgstr "_Uji"
5858
59#: ../gtk/checkbox-gtk.ui.h:1059#: ../gtk/checkbox-gtk.ui.h:3
60msgid "_Yes"60msgid "_Yes"
61msgstr "Ny_oe"61msgstr "Ny_oe"
6262
63#: ../gtk/checkbox-gtk.desktop.in.h:263#: ../qt/checkbox-qt.desktop.in.h:2
64msgid "Test your system and submit results to the Ubuntu Friendly project"64msgid "Test your system and submit results to the Ubuntu Friendly project"
65msgstr ""65msgstr ""
6666
@@ -141,7 +141,7 @@
141msgstr ""141msgstr ""
142142
143#. description143#. description
144#: ../jobs/audio.txt.in:102144#: ../jobs/audio.txt.in:99
145msgid ""145msgid ""
146"Play back a sound on the default output and listen for it on the default "146"Play back a sound on the default output and listen for it on the default "
147"input. This makes the most sense when the output and input are directly "147"input. This makes the most sense when the output and input are directly "
@@ -164,13 +164,13 @@
164msgstr ""164msgstr ""
165165
166#. description166#. description
167#: ../jobs/bluetooth.txt.in:16167#: ../jobs/bluetooth.txt.in:8
168msgid ""168msgid ""
169"Automated test to store bluetooth device information in checkbox report"169"Automated test to store bluetooth device information in checkbox report"
170msgstr ""170msgstr ""
171171
172#. description172#. description
173#: ../jobs/bluetooth.txt.in:22173#: ../jobs/bluetooth.txt.in:14
174msgid ""174msgid ""
175"PURPOSE:\n"175"PURPOSE:\n"
176" This test will check that bluetooth connection works correctly\n"176" This test will check that bluetooth connection works correctly\n"
@@ -189,7 +189,7 @@
189msgstr ""189msgstr ""
190190
191#. description191#. description
192#: ../jobs/bluetooth.txt.in:41192#: ../jobs/bluetooth.txt.in:33
193msgid ""193msgid ""
194"PURPOSE:\n"194"PURPOSE:\n"
195" This test will check that you can transfer information through a "195" This test will check that you can transfer information through a "
@@ -203,7 +203,7 @@
203msgstr ""203msgstr ""
204204
205#. description205#. description
206#: ../jobs/bluetooth.txt.in:55206#: ../jobs/bluetooth.txt.in:47
207msgid ""207msgid ""
208"PURPOSE:\n"208"PURPOSE:\n"
209" This test will check that you can record and hear audio using a "209" This test will check that you can record and hear audio using a "
@@ -222,7 +222,7 @@
222msgstr ""222msgstr ""
223223
224#. description224#. description
225#: ../jobs/bluetooth.txt.in:73225#: ../jobs/bluetooth.txt.in:65
226msgid ""226msgid ""
227"PURPOSE:\n"227"PURPOSE:\n"
228" This test will check that you can use a bluetooth keyboard\n"228" This test will check that you can use a bluetooth keyboard\n"
@@ -238,7 +238,7 @@
238msgstr ""238msgstr ""
239239
240#. description240#. description
241#: ../jobs/bluetooth.txt.in:89241#: ../jobs/bluetooth.txt.in:81
242msgid ""242msgid ""
243"PURPOSE:\n"243"PURPOSE:\n"
244" This test will check that you can use a bluetooth mouse\n"244" This test will check that you can use a bluetooth mouse\n"
@@ -410,22 +410,22 @@
410msgstr ""410msgstr ""
411411
412#. description412#. description
413#: ../jobs/disk.txt.in:26413#: ../jobs/disk.txt.in:40
414msgid "SMART test"414msgid "SMART test"
415msgstr ""415msgstr ""
416416
417#. description417#. description
418#: ../jobs/disk.txt.in:42418#: ../jobs/disk.txt.in:56
419msgid "Maximum disk space used during a default installation test"419msgid "Maximum disk space used during a default installation test"
420msgstr ""420msgstr ""
421421
422#. description422#. description
423#: ../jobs/disk.txt.in:57423#: ../jobs/disk.txt.in:71
424msgid "Verify system storage performs at or above baseline performance"424msgid "Verify system storage performs at or above baseline performance"
425msgstr ""425msgstr ""
426426
427#. description427#. description
428#: ../jobs/disk.txt.in:74428#: ../jobs/disk.txt.in:88
429msgid ""429msgid ""
430"Verify that storage devices, such as Fibre Channel and RAID can be detected "430"Verify that storage devices, such as Fibre Channel and RAID can be detected "
431"and perform under stress."431"and perform under stress."
@@ -601,7 +601,7 @@
601msgstr ""601msgstr ""
602602
603#. description603#. description
604#: ../jobs/graphics.txt.in:122604#: ../jobs/graphics.txt.in:113
605msgid ""605msgid ""
606"PURPOSE:\n"606"PURPOSE:\n"
607" This test cycles through the detected video modes\n"607" This test cycles through the detected video modes\n"
@@ -617,7 +617,7 @@
617msgstr ""617msgstr ""
618618
619#. description619#. description
620#: ../jobs/graphics.txt.in:140620#: ../jobs/graphics.txt.in:139
621msgid ""621msgid ""
622"PURPOSE:\n"622"PURPOSE:\n"
623" This test tests the basic 3D capabilities of your video card\n"623" This test tests the basic 3D capabilities of your video card\n"
@@ -885,187 +885,187 @@
885msgstr "Uji su"885msgstr "Uji su"
886886
887#. description887#. description
888#: ../jobs/local.txt.in:8888#: ../jobs/local.txt.in:10
889msgid "Autotest Suite tests"889msgid "Autotest Suite tests"
890msgstr ""890msgstr ""
891891
892#. description892#. description
893#: ../jobs/local.txt.in:13893#: ../jobs/local.txt.in:17
894msgid "Bluetooth tests"894msgid "Bluetooth tests"
895msgstr ""895msgstr ""
896896
897#. description897#. description
898#: ../jobs/local.txt.in:18898#: ../jobs/local.txt.in:24
899msgid "Camera tests"899msgid "Camera tests"
900msgstr ""900msgstr ""
901901
902#. description902#. description
903#: ../jobs/local.txt.in:23903#: ../jobs/local.txt.in:31
904msgid "Codec tests"904msgid "Codec tests"
905msgstr ""905msgstr ""
906906
907#. description907#. description
908#: ../jobs/local.txt.in:28908#: ../jobs/local.txt.in:38
909msgid "CPU tests"909msgid "CPU tests"
910msgstr ""910msgstr ""
911911
912#. description912#. description
913#: ../jobs/local.txt.in:33913#: ../jobs/local.txt.in:45
914msgid "System Daemon tests"914msgid "System Daemon tests"
915msgstr ""915msgstr ""
916916
917#. description917#. description
918#: ../jobs/local.txt.in:38918#: ../jobs/local.txt.in:52
919msgid "Disk tests"919msgid "Disk tests"
920msgstr "Uji Disk"920msgstr "Uji Disk"
921921
922#. description922#. description
923#: ../jobs/local.txt.in:43923#: ../jobs/local.txt.in:59
924msgid "Fingerprint reader tests"924msgid "Fingerprint reader tests"
925msgstr ""925msgstr ""
926926
927#. description927#. description
928#: ../jobs/local.txt.in:48928#: ../jobs/local.txt.in:66
929msgid "Firewire disk tests"929msgid "Firewire disk tests"
930msgstr ""930msgstr ""
931931
932#. description932#. description
933#: ../jobs/local.txt.in:53933#: ../jobs/local.txt.in:73
934msgid "Floppy disk tests"934msgid "Floppy disk tests"
935msgstr ""935msgstr ""
936936
937#. description937#. description
938#: ../jobs/local.txt.in:58938#: ../jobs/local.txt.in:80
939msgid "Graphics tests"939msgid "Graphics tests"
940msgstr ""940msgstr ""
941941
942#. description942#. description
943#: ../jobs/local.txt.in:63943#: ../jobs/local.txt.in:87
944msgid "Hibernation tests"944msgid "Hibernation tests"
945msgstr ""945msgstr ""
946946
947#. description947#. description
948#: ../jobs/local.txt.in:68948#: ../jobs/local.txt.in:94
949msgid "Informational tests"949msgid "Informational tests"
950msgstr ""950msgstr ""
951951
952#. description952#. description
953#: ../jobs/local.txt.in:73953#: ../jobs/local.txt.in:101
954msgid "Input Devices tests"954msgid "Input Devices tests"
955msgstr ""955msgstr ""
956956
957#. description957#. description
958#: ../jobs/local.txt.in:78958#: ../jobs/local.txt.in:108
959msgid "Software Installation tests"959msgid "Software Installation tests"
960msgstr ""960msgstr ""
961961
962#. description962#. description
963#: ../jobs/local.txt.in:83963#: ../jobs/local.txt.in:115
964msgid "Hotkey tests"964msgid "Hotkey tests"
965msgstr ""965msgstr ""
966966
967#. description967#. description
968#: ../jobs/local.txt.in:88968#: ../jobs/local.txt.in:122
969msgid "Linux Test Project tests"969msgid "Linux Test Project tests"
970msgstr ""970msgstr ""
971971
972#. description972#. description
973#: ../jobs/local.txt.in:93973#: ../jobs/local.txt.in:129
974msgid "Mago Automated Desktop Testing"974msgid "Mago Automated Desktop Testing"
975msgstr ""975msgstr ""
976976
977#. description977#. description
978#: ../jobs/local.txt.in:98978#: ../jobs/local.txt.in:136
979msgid "Media Card tests"979msgid "Media Card tests"
980msgstr ""980msgstr ""
981981
982#. description982#. description
983#: ../jobs/local.txt.in:103983#: ../jobs/local.txt.in:143
984msgid "Memory tests"984msgid "Memory tests"
985msgstr ""985msgstr ""
986986
987#. description987#. description
988#: ../jobs/local.txt.in:108988#: ../jobs/local.txt.in:150
989msgid "Miscellaneous tests"989msgid "Miscellaneous tests"
990msgstr ""990msgstr ""
991991
992#. description992#. description
993#: ../jobs/local.txt.in:113993#: ../jobs/local.txt.in:157
994msgid "Monitor tests"994msgid "Monitor tests"
995msgstr "Uji Monitor"995msgstr "Uji Monitor"
996996
997#. description997#. description
998#: ../jobs/local.txt.in:118998#: ../jobs/local.txt.in:164
999msgid "Networking tests"999msgid "Networking tests"
1000msgstr ""1000msgstr ""
10011001
1002#. description1002#. description
1003#: ../jobs/local.txt.in:1231003#: ../jobs/local.txt.in:171
1004msgid "Optical Drive tests"1004msgid "Optical Drive tests"
1005msgstr ""1005msgstr ""
10061006
1007#. description1007#. description
1008#: ../jobs/local.txt.in:1281008#: ../jobs/local.txt.in:178
1009msgid "Panel Clock Verification tests"1009msgid "Panel Clock Verification tests"
1010msgstr ""1010msgstr ""
10111011
1012#. description1012#. description
1013#: ../jobs/local.txt.in:1331013#: ../jobs/local.txt.in:185
1014msgid "PCMCIA/PCIX Card tests"1014msgid "PCMCIA/PCIX Card tests"
1015msgstr ""1015msgstr ""
10161016
1017#. description1017#. description
1018#: ../jobs/local.txt.in:1381018#: ../jobs/local.txt.in:192
1019msgid "Peripheral tests"1019msgid "Peripheral tests"
1020msgstr ""1020msgstr ""
10211021
1022#. description1022#. description
1023#: ../jobs/local.txt.in:1431023#: ../jobs/local.txt.in:199
1024msgid "Phoronix Test Suite tests"1024msgid "Phoronix Test Suite tests"
1025msgstr ""1025msgstr ""
10261026
1027#. description1027#. description
1028#: ../jobs/local.txt.in:1481028#: ../jobs/local.txt.in:206
1029msgid "Power Management tests"1029msgid "Power Management tests"
1030msgstr ""1030msgstr ""
10311031
1032#. description1032#. description
1033#: ../jobs/local.txt.in:1531033#: ../jobs/local.txt.in:213
1034msgid "QA Regression tests"1034msgid "QA Regression tests"
1035msgstr ""1035msgstr ""
10361036
1037#. description1037#. description
1038#: ../jobs/local.txt.in:1581038#: ../jobs/local.txt.in:220
1039msgid "Server Services checks"1039msgid "Server Services checks"
1040msgstr ""1040msgstr ""
10411041
1042#. description1042#. description
1043#: ../jobs/local.txt.in:1631043#: ../jobs/local.txt.in:227
1044msgid "Suspend tests"1044msgid "Suspend tests"
1045msgstr ""1045msgstr ""
10461046
1047#. description1047#. description
1048#: ../jobs/local.txt.in:1681048#: ../jobs/local.txt.in:234
1049msgid "Unity tests"1049msgid "Unity tests"
1050msgstr ""1050msgstr ""
10511051
1052#. description1052#. description
1053#: ../jobs/local.txt.in:1731053#: ../jobs/local.txt.in:241
1054msgid "USB tests"1054msgid "USB tests"
1055msgstr ""1055msgstr ""
10561056
1057#. description1057#. description
1058#: ../jobs/local.txt.in:1781058#: ../jobs/local.txt.in:248
1059msgid "User Applications"1059msgid "User Applications"
1060msgstr ""1060msgstr ""
10611061
1062#. description1062#. description
1063#: ../jobs/local.txt.in:1831063#: ../jobs/local.txt.in:255
1064msgid "Wireless networking tests"1064msgid "Wireless networking tests"
1065msgstr ""1065msgstr ""
10661066
1067#. description1067#. description
1068#: ../jobs/local.txt.in:1881068#: ../jobs/local.txt.in:262
1069msgid "Stress tests"1069msgid "Stress tests"
1070msgstr ""1070msgstr ""
10711071
@@ -1272,7 +1272,7 @@
1272msgstr ""1272msgstr ""
12731273
1274#. description1274#. description
1275#: ../jobs/memory.txt.in:191275#: ../jobs/memory.txt.in:14
1276msgid "Test and exercise memory."1276msgid "Test and exercise memory."
1277msgstr ""1277msgstr ""
12781278
@@ -1296,21 +1296,21 @@
1296msgstr ""1296msgstr ""
12971297
1298#. description1298#. description
1299#: ../jobs/miscellanea.txt.in:301299#: ../jobs/miscellanea.txt.in:29
1300msgid ""1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."1302"it if not available."
1303msgstr ""1303msgstr ""
13041304
1305#. description1305#. description
1306#: ../jobs/miscellanea.txt.in:371306#: ../jobs/miscellanea.txt.in:31
1307msgid ""1307msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1308"This will run some basic connectivity tests against a BMC, verifying that "
1309"IPMI works."1309"IPMI works."
1310msgstr ""1310msgstr ""
13111311
1312#. description1312#. description
1313#: ../jobs/miscellanea.txt.in:431313#: ../jobs/miscellanea.txt.in:37
1314msgid ""1314msgid ""
1315" Determine if we need to run tests specific to portable computers that may "1315" Determine if we need to run tests specific to portable computers that may "
1316"not apply to desktops."1316"not apply to desktops."
@@ -1328,7 +1328,7 @@
1328msgstr ""1328msgstr ""
13291329
1330#. description1330#. description
1331#: ../jobs/monitor.txt.in:31331#: ../jobs/monitor.txt.in:4
1332msgid ""1332msgid ""
1333"PURPOSE:\n"1333"PURPOSE:\n"
1334" This test will check your VGA port. Skip if your system does not have a "1334" This test will check your VGA port. Skip if your system does not have a "
@@ -1341,7 +1341,7 @@
1341msgstr ""1341msgstr ""
13421342
1343#. description1343#. description
1344#: ../jobs/monitor.txt.in:131344#: ../jobs/monitor.txt.in:15
1345msgid ""1345msgid ""
1346"PURPOSE:\n"1346"PURPOSE:\n"
1347" This test will check your DVI port. Skip if your system does not have a "1347" This test will check your DVI port. Skip if your system does not have a "
@@ -1354,7 +1354,7 @@
1354msgstr ""1354msgstr ""
13551355
1356#. description1356#. description
1357#: ../jobs/monitor.txt.in:231357#: ../jobs/monitor.txt.in:26
1358msgid ""1358msgid ""
1359"PURPOSE:\n"1359"PURPOSE:\n"
1360" This test will check your DisplayPort port. Skip if your system does not "1360" This test will check your DisplayPort port. Skip if your system does not "
@@ -1367,7 +1367,7 @@
1367msgstr ""1367msgstr ""
13681368
1369#. description1369#. description
1370#: ../jobs/monitor.txt.in:331370#: ../jobs/monitor.txt.in:37
1371msgid ""1371msgid ""
1372"PURPOSE:\n"1372"PURPOSE:\n"
1373" This test will check your HDMI port. Skip if your system does not have a "1373" This test will check your HDMI port. Skip if your system does not have a "
@@ -1380,7 +1380,7 @@
1380msgstr ""1380msgstr ""
13811381
1382#. description1382#. description
1383#: ../jobs/monitor.txt.in:431383#: ../jobs/monitor.txt.in:48
1384msgid ""1384msgid ""
1385"PURPOSE:\n"1385"PURPOSE:\n"
1386" This test will check your S-VIDEO port. Skip if your system does not "1386" This test will check your S-VIDEO port. Skip if your system does not "
@@ -1393,7 +1393,7 @@
1393msgstr ""1393msgstr ""
13941394
1395#. description1395#. description
1396#: ../jobs/monitor.txt.in:531396#: ../jobs/monitor.txt.in:59
1397msgid ""1397msgid ""
1398"PURPOSE:\n"1398"PURPOSE:\n"
1399" This test will check your RCA port. Skip if your system does not have a "1399" This test will check your RCA port. Skip if your system does not have a "
@@ -1406,7 +1406,7 @@
1406msgstr ""1406msgstr ""
14071407
1408#. description1408#. description
1409#: ../jobs/monitor.txt.in:641409#: ../jobs/monitor.txt.in:70
1410msgid ""1410msgid ""
1411"PURPOSE:\n"1411"PURPOSE:\n"
1412" This test will check your monitor power saving capabilities\n"1412" This test will check your monitor power saving capabilities\n"
@@ -1433,7 +1433,7 @@
1433msgstr ""1433msgstr ""
14341434
1435#. description1435#. description
1436#: ../jobs/networking.txt.in:361436#: ../jobs/networking.txt.in:46
1437msgid ""1437msgid ""
1438"PURPOSE:\n"1438"PURPOSE:\n"
1439" This test will check your wired connection\n"1439" This test will check your wired connection\n"
@@ -1447,7 +1447,7 @@
1447msgstr ""1447msgstr ""
14481448
1449#. description1449#. description
1450#: ../jobs/networking.txt.in:491450#: ../jobs/networking.txt.in:59
1451msgid ""1451msgid ""
1452"PURPOSE:\n"1452"PURPOSE:\n"
1453" This test will check that a DSL modem can be configured and connected.\n"1453" This test will check that a DSL modem can be configured and connected.\n"
@@ -1465,44 +1465,44 @@
1465msgstr ""1465msgstr ""
14661466
1467#. description1467#. description
1468#: ../jobs/networking.txt.in:661468#: ../jobs/networking.txt.in:76
1469msgid ""1469msgid ""
1470"Automated test case to verify availability of some system on the network "1470"Automated test case to verify availability of some system on the network "
1471"using ICMP ECHO packets."1471"using ICMP ECHO packets."
1472msgstr ""1472msgstr ""
14731473
1474#. description1474#. description
1475#: ../jobs/networking.txt.in:73 ../jobs/peripheral.txt.in:371475#: ../jobs/networking.txt.in:83 ../jobs/peripheral.txt.in:37
1476msgid ""1476msgid ""
1477"Automated test case to make sure that it's possible to download files "1477"Automated test case to make sure that it's possible to download files "
1478"through HTTP"1478"through HTTP"
1479msgstr ""1479msgstr ""
14801480
1481#. description1481#. description
1482#: ../jobs/networking.txt.in:811482#: ../jobs/networking.txt.in:91
1483msgid "Test to see if we can sync local clock to an NTP server"1483msgid "Test to see if we can sync local clock to an NTP server"
1484msgstr ""1484msgstr ""
14851485
1486#. description1486#. description
1487#: ../jobs/networking.txt.in:871487#: ../jobs/networking.txt.in:97
1488msgid ""1488msgid ""
1489"Verify that an installation of checkbox-server on the network can be reached "1489"Verify that an installation of checkbox-server on the network can be reached "
1490"over SSH."1490"over SSH."
1491msgstr ""1491msgstr ""
14921492
1493#. description1493#. description
1494#: ../jobs/networking.txt.in:931494#: ../jobs/networking.txt.in:103
1495msgid "Try to enable a remote printer on the network and print a test page."1495msgid "Try to enable a remote printer on the network and print a test page."
1496msgstr ""1496msgstr ""
14971497
1498#. description1498#. description
1499#: ../jobs/networking.txt.in:981499#: ../jobs/networking.txt.in:108
1500msgid ""1500msgid ""
1501"Automated test to walk multiple network cards and test each one in sequence."1501"Automated test to walk multiple network cards and test each one in sequence."
1502msgstr ""1502msgstr ""
15031503
1504#. description1504#. description
1505#: ../jobs/networking.txt.in:1181505#: ../jobs/networking.txt.in:128
1506msgid "Test to measure the network bandwidth"1506msgid "Test to measure the network bandwidth"
1507msgstr ""1507msgstr ""
15081508
@@ -1512,12 +1512,12 @@
1512msgstr ""1512msgstr ""
15131513
1514#. description1514#. description
1515#: ../jobs/optical.txt.in:131515#: ../jobs/optical.txt.in:18
1516msgid "Optical Storage device read tests"1516msgid "Optical Storage device read tests"
1517msgstr ""1517msgstr ""
15181518
1519#. description1519#. description
1520#: ../jobs/optical.txt.in:361520#: ../jobs/optical.txt.in:35
1521msgid ""1521msgid ""
1522"PURPOSE:\n"1522"PURPOSE:\n"
1523" This test will check your system's CDROM writing capabilities. If your "1523" This test will check your system's CDROM writing capabilities. If your "
@@ -1532,7 +1532,7 @@
1532msgstr ""1532msgstr ""
15331533
1534#. description1534#. description
1535#: ../jobs/optical.txt.in:491535#: ../jobs/optical.txt.in:47
1536msgid ""1536msgid ""
1537"PURPOSE:\n"1537"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1538" This test will check your CD audio playback capabilities\n"
@@ -1553,7 +1553,7 @@
1553msgstr ""1553msgstr ""
15541554
1555#. description1555#. description
1556#: ../jobs/optical.txt.in:691556#: ../jobs/optical.txt.in:68
1557msgid ""1557msgid ""
1558"PURPOSE:\n"1558"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1559" This test will check your system's DVD writing capabilities. If your "
@@ -1568,7 +1568,7 @@
1568msgstr ""1568msgstr ""
15691569
1570#. description1570#. description
1571#: ../jobs/optical.txt.in:821571#: ../jobs/optical.txt.in:84
1572msgid ""1572msgid ""
1573"PURPOSE:\n"1573"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1574" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1587,7 @@
1587msgstr ""1587msgstr ""
15881588
1589#. description1589#. description
1590#: ../jobs/optical.txt.in:1001590#: ../jobs/optical.txt.in:102
1591msgid ""1591msgid ""
1592"PURPOSE:\n"1592"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1593" This test will check your DVD playback capabilities\n"
@@ -1843,35 +1843,35 @@
1843msgstr ""1843msgstr ""
18441844
1845#. description1845#. description
1846#: ../jobs/suspend.txt.in:31846#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."1847msgid "Record the current resolution before suspending."
1848msgstr ""1848msgstr ""
18491849
1850#. description1850#. description
1851#: ../jobs/suspend.txt.in:111851#: ../jobs/suspend.txt.in:17
1852msgid "Record mixer settings before suspending."1852msgid "Record mixer settings before suspending."
1853msgstr ""1853msgstr ""
18541854
1855#. description1855#. description
1856#: ../jobs/suspend.txt.in:181856#: ../jobs/suspend.txt.in:24
1857msgid "Verify that all the CPUs are online before suspending"1857msgid "Verify that all the CPUs are online before suspending"
1858msgstr ""1858msgstr ""
18591859
1860#. description1860#. description
1861#: ../jobs/suspend.txt.in:251861#: ../jobs/suspend.txt.in:31
1862msgid ""1862msgid ""
1863"Dumps memory info to a file for comparison after suspend test has been run"1863"Dumps memory info to a file for comparison after suspend test has been run"
1864msgstr ""1864msgstr ""
18651865
1866#. description1866#. description
1867#: ../jobs/suspend.txt.in:431867#: ../jobs/suspend.txt.in:49
1868msgid ""1868msgid ""
1869"This test disconnects all connections and then connects to the wireless "1869"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."1870"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""1871msgstr ""
18721872
1873#. description1873#. description
1874#: ../jobs/suspend.txt.in:731874#: ../jobs/suspend.txt.in:83
1875msgid ""1875msgid ""
1876"PURPOSE:\n"1876"PURPOSE:\n"
1877" This test will check suspend and resume\n"1877" This test will check suspend and resume\n"
@@ -1887,34 +1887,34 @@
1887msgstr ""1887msgstr ""
18881888
1889#. description1889#. description
1890#: ../jobs/suspend.txt.in:861890#: ../jobs/suspend.txt.in:96
1891msgid "Test the network after resuming."1891msgid "Test the network after resuming."
1892msgstr ""1892msgstr ""
18931893
1894#. description1894#. description
1895#: ../jobs/suspend.txt.in:921895#: ../jobs/suspend.txt.in:102
1896msgid ""1896msgid ""
1897"Test to see that we have the same resolution after resuming as before."1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""1898msgstr ""
18991899
1900#. description1900#. description
1901#: ../jobs/suspend.txt.in:1011901#: ../jobs/suspend.txt.in:111
1902msgid ""1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."1903"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""1904msgstr ""
19051905
1906#. description1906#. description
1907#: ../jobs/suspend.txt.in:1171907#: ../jobs/suspend.txt.in:127
1908msgid "Verify that all CPUs are online after resuming."1908msgid "Verify that all CPUs are online after resuming."
1909msgstr ""1909msgstr ""
19101910
1911#. description1911#. description
1912#: ../jobs/suspend.txt.in:1341912#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""1914msgstr ""
19151915
1916#. description1916#. description
1917#: ../jobs/suspend.txt.in:1431917#: ../jobs/suspend.txt.in:153
1918msgid ""1918msgid ""
1919"PURPOSE:\n"1919"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "1920" This test will check that the display is correct after suspend and "
@@ -1924,7 +1924,7 @@
1924msgstr ""1924msgstr ""
19251925
1926#. description1926#. description
1927#: ../jobs/suspend.txt.in:1641927#: ../jobs/suspend.txt.in:174
1928msgid ""1928msgid ""
1929"This test checks that the wireless interface is working after suspending the "1929"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "1930"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +1932,21 @@
1932msgstr ""1932msgstr ""
19331933
1934#. description1934#. description
1935#: ../jobs/suspend.txt.in:1741935#: ../jobs/suspend.txt.in:186
1936msgid ""1936msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "1937"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."1938"and compares it to the address grabbed before suspend."
1939msgstr ""1939msgstr ""
19401940
1941#. description1941#. description
1942#: ../jobs/suspend.txt.in:1821942#: ../jobs/suspend.txt.in:196
1943msgid ""1943msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "1944"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."1945"device specified by the BTDEVADDR environment variable."
1946msgstr ""1946msgstr ""
19471947
1948#. description1948#. description
1949#: ../jobs/suspend.txt.in:1901949#: ../jobs/suspend.txt.in:206
1950msgid ""1950msgid ""
1951"PURPOSE:\n"1951"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +1961,7 @@
1961msgstr ""1961msgstr ""
19621962
1963#. description1963#. description
1964#: ../jobs/suspend.txt.in:2041964#: ../jobs/suspend.txt.in:220
1965msgid ""1965msgid ""
1966"PURPOSE:\n"1966"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"1967" This test will cycle through the detected display modes\n"
@@ -1972,7 +1972,7 @@
1972msgstr ""1972msgstr ""
19731973
1974#. description1974#. description
1975#: ../jobs/suspend.txt.in:2161975#: ../jobs/suspend.txt.in:232
1976msgid ""1976msgid ""
1977"This test will check to make sure supported video modes work after a suspend "1977"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 "1978"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,7 +1980,7 @@
1980msgstr ""1980msgstr ""
19811981
1982#. description1982#. description
1983#: ../jobs/suspend.txt.in:2251983#: ../jobs/suspend.txt.in:241
1984msgid ""1984msgid ""
1985"This attaches screenshots from the "1985"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -2001,7 +2001,7 @@
2001msgstr ""2001msgstr ""
20022002
2003#. description2003#. description
2004#: ../jobs/suspend.txt.in:2482004#: ../jobs/suspend.txt.in:251
2005msgid ""2005msgid ""
2006"This will check to make sure that your audio device works properly after a "2006"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 "2007"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2010,12 @@
2010msgstr ""2010msgstr ""
20112011
2012#. description2012#. description
2013#: ../jobs/suspend.txt.in:2552013#: ../jobs/suspend.txt.in:260
2014msgid "This is the automated version of suspend/suspend_advanced."2014msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2015msgstr ""
20162016
2017#. description2017#. description
2018#: ../jobs/suspend.txt.in:2642018#: ../jobs/suspend.txt.in:269
2019msgid ""2019msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2021"configured server. During this process the system will suspend, then "
@@ -2117,14 +2117,14 @@
2117msgstr ""2117msgstr ""
21182118
2119#. description2119#. description
2120#: ../jobs/usb.txt.in:962120#: ../jobs/usb.txt.in:80
2121msgid ""2121msgid ""
2122"This test is automated and requires that you plug in at least one usb "2122"This test is automated and requires that you plug in at least one usb "
2123"storage device before running checkbox."2123"storage device before running checkbox."
2124msgstr ""2124msgstr ""
21252125
2126#. description2126#. description
2127#: ../jobs/usb.txt.in:1022127#: ../jobs/usb.txt.in:119
2128msgid ""2128msgid ""
2129"PURPOSE:\n"2129"PURPOSE:\n"
2130" This test will check your USB connection.\n"2130" This test will check your USB connection.\n"
@@ -2738,17 +2738,17 @@
2738msgstr ""2738msgstr ""
27392739
2740#: ../checkbox_cli/cli_interface.py:312740#: ../checkbox_cli/cli_interface.py:31
2741#: ../checkbox_urwid/urwid_interface.py:6842741#: ../checkbox_urwid/urwid_interface.py:917
2742msgid "yes"2742msgid "yes"
2743msgstr ""2743msgstr ""
27442744
2745#: ../checkbox_cli/cli_interface.py:322745#: ../checkbox_cli/cli_interface.py:32
2746#: ../checkbox_urwid/urwid_interface.py:6852746#: ../checkbox_urwid/urwid_interface.py:918
2747msgid "no"2747msgid "no"
2748msgstr ""2748msgstr ""
27492749
2750#: ../checkbox_cli/cli_interface.py:332750#: ../checkbox_cli/cli_interface.py:33
2751#: ../checkbox_urwid/urwid_interface.py:6862751#: ../checkbox_urwid/urwid_interface.py:919
2752msgid "skip"2752msgid "skip"
2753msgstr ""2753msgstr ""
27542754
@@ -2756,73 +2756,75 @@
2756msgid "Press any key to continue..."2756msgid "Press any key to continue..."
2757msgstr ""2757msgstr ""
27582758
2759#: ../checkbox_cli/cli_interface.py:1352759#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
2760#, python-format2760#, python-format
2761msgid "Please choose (%s): "2761msgid "Please choose (%s): "
2762msgstr ""2762msgstr ""
27632763
2764#: ../checkbox_cli/cli_interface.py:3232764#: ../checkbox_cli/cli_interface.py:416
2765msgid "test"2765msgid "test"
2766msgstr ""2766msgstr ""
27672767
2768#: ../checkbox_cli/cli_interface.py:3472768#: ../checkbox_cli/cli_interface.py:440
2769msgid "test again"2769msgid "test again"
2770msgstr ""2770msgstr ""
27712771
2772#: ../checkbox_cli/cli_interface.py:3532772#: ../checkbox_cli/cli_interface.py:446
2773msgid "Please type here and press Ctrl-D when finished:\n"2773msgid "Please type here and press Ctrl-D when finished:\n"
2774msgstr ""2774msgstr ""
27752775
2776#: ../checkbox_urwid/urwid_interface.py:602776#: ../checkbox_urwid/urwid_interface.py:66
2777msgid "Checkbox System Testing"2777msgid "Checkbox System Testing"
2778msgstr ""2778msgstr ""
27792779
2780#: ../checkbox_urwid/urwid_interface.py:992780#: ../checkbox_urwid/urwid_interface.py:105
2781msgid "Continue"2781msgid "Continue"
2782msgstr ""2782msgstr ""
27832783
2784#: ../checkbox_urwid/urwid_interface.py:1922784#: ../checkbox_urwid/urwid_interface.py:198
2785#: ../checkbox_urwid/urwid_interface.py:2682785#: ../checkbox_urwid/urwid_interface.py:274
2786#: ../checkbox_urwid/urwid_interface.py:4162786#: ../checkbox_urwid/urwid_interface.py:425
2787#: ../checkbox_urwid/urwid_interface.py:547
2787msgid "Previous"2788msgid "Previous"
2788msgstr ""2789msgstr ""
27892790
2790#: ../checkbox_urwid/urwid_interface.py:1932791#: ../checkbox_urwid/urwid_interface.py:199
2791#: ../checkbox_urwid/urwid_interface.py:2692792#: ../checkbox_urwid/urwid_interface.py:275
2792#: ../checkbox_urwid/urwid_interface.py:4172793#: ../checkbox_urwid/urwid_interface.py:426
2794#: ../checkbox_urwid/urwid_interface.py:548
2793msgid "Next"2795msgid "Next"
2794msgstr ""2796msgstr ""
27952797
2796#. Show buttons2798#. Show buttons
2797#: ../checkbox_urwid/urwid_interface.py:4142799#: ../checkbox_urwid/urwid_interface.py:423
2798msgid "Select All"2800msgid "Select All"
2799msgstr ""2801msgstr ""
28002802
2801#: ../checkbox_urwid/urwid_interface.py:4152803#: ../checkbox_urwid/urwid_interface.py:424
2802msgid "Deselect All"2804msgid "Deselect All"
2803msgstr ""2805msgstr ""
28042806
2805#: ../checkbox_urwid/urwid_interface.py:7722807#: ../checkbox_urwid/urwid_interface.py:1013
2806msgid "Test"2808msgid "Test"
2807msgstr ""2809msgstr ""
28082810
2809#: ../checkbox_urwid/urwid_interface.py:7872811#: ../checkbox_urwid/urwid_interface.py:1028
2810msgid "Test Again"2812msgid "Test Again"
2811msgstr ""2813msgstr ""
28122814
2813#: ../checkbox_gtk/gtk_interface.py:5002815#: ../checkbox_gtk/gtk_interface.py:503
2814msgid "_Test Again"2816msgid "_Test Again"
2815msgstr ""2817msgstr ""
28162818
2817#: ../checkbox_gtk/gtk_interface.py:5482819#: ../checkbox_gtk/gtk_interface.py:551
2818msgid "Info"2820msgid "Info"
2819msgstr ""2821msgstr ""
28202822
2821#: ../checkbox_gtk/gtk_interface.py:5672823#: ../checkbox_gtk/gtk_interface.py:575
2822msgid "Error"2824msgid "Error"
2823msgstr ""2825msgstr ""
28242826
2825#: ../checkbox/user_interface.py:1362827#: ../checkbox/user_interface.py:137
2826#, python-format2828#, python-format
2827msgid "Unable to start web browser to open %s."2829msgid "Unable to start web browser to open %s."
2828msgstr ""2830msgstr ""
@@ -2870,7 +2872,7 @@
2870msgid "Gathering information from your system..."2872msgid "Gathering information from your system..."
2871msgstr ""2873msgstr ""
28722874
2873#: ../plugins/intro_prompt.py:292875#: ../plugins/intro_prompt.py:28
2874msgid ""2876msgid ""
2875"Welcome to System Testing!\n"2877"Welcome to System Testing!\n"
2876"\n"2878"\n"
@@ -2879,7 +2881,7 @@
2879"your system."2881"your system."
2880msgstr ""2882msgstr ""
28812883
2882#: ../plugins/intro_prompt.py:342884#: ../plugins/intro_prompt.py:33
2883msgid ""2885msgid ""
2884"\n"2886"\n"
2885"\n"2887"\n"
@@ -2933,15 +2935,15 @@
2933msgid "No e-mail address provided, not submitting to Launchpad."2935msgid "No e-mail address provided, not submitting to Launchpad."
2934msgstr ""2936msgstr ""
29352937
2936#: ../plugins/launchpad_prompt.py:922938#: ../plugins/launchpad_prompt.py:93
2937msgid "Email address must be in a proper format."2939msgid "Email address must be in a proper format."
2938msgstr ""2940msgstr ""
29392941
2940#: ../plugins/launchpad_prompt.py:982942#: ../plugins/launchpad_prompt.py:99
2941msgid "Exchanging information with the server..."2943msgid "Exchanging information with the server..."
2942msgstr ""2944msgstr ""
29432945
2944#: ../plugins/launchpad_report.py:1512946#: ../plugins/launchpad_report.py:167
2945msgid ""2947msgid ""
2946"The generated report seems to have validation errors,\n"2948"The generated report seems to have validation errors,\n"
2947"so it might not be processed by Launchpad."2949"so it might not be processed by Launchpad."
@@ -2951,7 +2953,7 @@
2951msgid "There is another checkbox running. Please close it first."2953msgid "There is another checkbox running. Please close it first."
2952msgstr ""2954msgstr ""
29532955
2954#: ../plugins/recover_prompt.py:542956#: ../plugins/recover_prompt.py:56
2955msgid ""2957msgid ""
2956"Checkbox did not finish completely.\n"2958"Checkbox did not finish completely.\n"
2957"Do you want to recover from the previous run?"2959"Do you want to recover from the previous run?"
@@ -2967,7 +2969,7 @@
2967msgstr ""2969msgstr ""
29682970
2969#. Get results2971#. Get results
2970#: ../plugins/suites_prompt.py:1082972#: ../plugins/suites_prompt.py:110
2971msgid "Select the suites to test"2973msgid "Select the suites to test"
2972msgstr ""2974msgstr ""
29732975
29742976
=== modified file 'po/af.po'
--- po/af.po 2012-02-15 00:11:21 +0000
+++ po/af.po 2012-03-21 03:20:56 +0000
@@ -14,33 +14,33 @@
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-02-07 04:33+0000\n"17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"
18"X-Generator: Launchpad (build 14747)\n"18"X-Generator: Launchpad (build 14933)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:35120#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26121#: ../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:225#: ../gtk/checkbox-gtk.ui.h:10
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:3 ../gtk/checkbox-gtk.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4031#: ../plugins/user_interface.py:42
32msgid "System Testing"32msgid "System Testing"
33msgstr "Stelseltoetsing"33msgstr "Stelseltoetsing"
3434
35#: ../gtk/checkbox-gtk.ui.h:435#: ../gtk/checkbox-gtk.ui.h:8
36msgid "_Deselect All"36msgid "_Deselect All"
37msgstr "_Ontmerk alle"37msgstr "_Ontmerk alle"
3838
39#: ../gtk/checkbox-gtk.ui.h:539#: ../gtk/checkbox-gtk.ui.h:4
40msgid "_No"40msgid "_No"
41msgstr "_Nee"41msgstr "_Nee"
4242
43#: ../gtk/checkbox-gtk.ui.h:643#: ../gtk/checkbox-gtk.ui.h:9
44msgid "_Previous"44msgid "_Previous"
45msgstr "Vo_rige"45msgstr "Vo_rige"
4646
@@ -48,19 +48,19 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr "_Kies alle"49msgstr "_Kies alle"
5050
51#: ../gtk/checkbox-gtk.ui.h:851#: ../gtk/checkbox-gtk.ui.h:5
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:9 ../checkbox_gtk/gtk_interface.py:53555#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:538
56msgid "_Test"56msgid "_Test"
57msgstr "_Toets"57msgstr "_Toets"
5858
59#: ../gtk/checkbox-gtk.ui.h:1059#: ../gtk/checkbox-gtk.ui.h:3
60msgid "_Yes"60msgid "_Yes"
61msgstr "_Ja"61msgstr "_Ja"
6262
63#: ../gtk/checkbox-gtk.desktop.in.h:263#: ../qt/checkbox-qt.desktop.in.h:2
64msgid "Test your system and submit results to the Ubuntu Friendly project"64msgid "Test your system and submit results to the Ubuntu Friendly project"
65msgstr ""65msgstr ""
6666
@@ -141,7 +141,7 @@
141msgstr ""141msgstr ""
142142
143#. description143#. description
144#: ../jobs/audio.txt.in:102144#: ../jobs/audio.txt.in:99
145msgid ""145msgid ""
146"Play back a sound on the default output and listen for it on the default "146"Play back a sound on the default output and listen for it on the default "
147"input. This makes the most sense when the output and input are directly "147"input. This makes the most sense when the output and input are directly "
@@ -164,13 +164,13 @@
164msgstr ""164msgstr ""
165165
166#. description166#. description
167#: ../jobs/bluetooth.txt.in:16167#: ../jobs/bluetooth.txt.in:8
168msgid ""168msgid ""
169"Automated test to store bluetooth device information in checkbox report"169"Automated test to store bluetooth device information in checkbox report"
170msgstr ""170msgstr ""
171171
172#. description172#. description
173#: ../jobs/bluetooth.txt.in:22173#: ../jobs/bluetooth.txt.in:14
174msgid ""174msgid ""
175"PURPOSE:\n"175"PURPOSE:\n"
176" This test will check that bluetooth connection works correctly\n"176" This test will check that bluetooth connection works correctly\n"
@@ -189,7 +189,7 @@
189msgstr ""189msgstr ""
190190
191#. description191#. description
192#: ../jobs/bluetooth.txt.in:41192#: ../jobs/bluetooth.txt.in:33
193msgid ""193msgid ""
194"PURPOSE:\n"194"PURPOSE:\n"
195" This test will check that you can transfer information through a "195" This test will check that you can transfer information through a "
@@ -203,7 +203,7 @@
203msgstr ""203msgstr ""
204204
205#. description205#. description
206#: ../jobs/bluetooth.txt.in:55206#: ../jobs/bluetooth.txt.in:47
207msgid ""207msgid ""
208"PURPOSE:\n"208"PURPOSE:\n"
209" This test will check that you can record and hear audio using a "209" This test will check that you can record and hear audio using a "
@@ -222,7 +222,7 @@
222msgstr ""222msgstr ""
223223
224#. description224#. description
225#: ../jobs/bluetooth.txt.in:73225#: ../jobs/bluetooth.txt.in:65
226msgid ""226msgid ""
227"PURPOSE:\n"227"PURPOSE:\n"
228" This test will check that you can use a bluetooth keyboard\n"228" This test will check that you can use a bluetooth keyboard\n"
@@ -238,7 +238,7 @@
238msgstr ""238msgstr ""
239239
240#. description240#. description
241#: ../jobs/bluetooth.txt.in:89241#: ../jobs/bluetooth.txt.in:81
242msgid ""242msgid ""
243"PURPOSE:\n"243"PURPOSE:\n"
244" This test will check that you can use a bluetooth mouse\n"244" This test will check that you can use a bluetooth mouse\n"
@@ -410,22 +410,22 @@
410msgstr ""410msgstr ""
411411
412#. description412#. description
413#: ../jobs/disk.txt.in:26413#: ../jobs/disk.txt.in:40
414msgid "SMART test"414msgid "SMART test"
415msgstr ""415msgstr ""
416416
417#. description417#. description
418#: ../jobs/disk.txt.in:42418#: ../jobs/disk.txt.in:56
419msgid "Maximum disk space used during a default installation test"419msgid "Maximum disk space used during a default installation test"
420msgstr ""420msgstr ""
421421
422#. description422#. description
423#: ../jobs/disk.txt.in:57423#: ../jobs/disk.txt.in:71
424msgid "Verify system storage performs at or above baseline performance"424msgid "Verify system storage performs at or above baseline performance"
425msgstr ""425msgstr ""
426426
427#. description427#. description
428#: ../jobs/disk.txt.in:74428#: ../jobs/disk.txt.in:88
429msgid ""429msgid ""
430"Verify that storage devices, such as Fibre Channel and RAID can be detected "430"Verify that storage devices, such as Fibre Channel and RAID can be detected "
431"and perform under stress."431"and perform under stress."
@@ -601,7 +601,7 @@
601msgstr ""601msgstr ""
602602
603#. description603#. description
604#: ../jobs/graphics.txt.in:122604#: ../jobs/graphics.txt.in:113
605msgid ""605msgid ""
606"PURPOSE:\n"606"PURPOSE:\n"
607" This test cycles through the detected video modes\n"607" This test cycles through the detected video modes\n"
@@ -617,7 +617,7 @@
617msgstr ""617msgstr ""
618618
619#. description619#. description
620#: ../jobs/graphics.txt.in:140620#: ../jobs/graphics.txt.in:139
621msgid ""621msgid ""
622"PURPOSE:\n"622"PURPOSE:\n"
623" This test tests the basic 3D capabilities of your video card\n"623" This test tests the basic 3D capabilities of your video card\n"
@@ -885,187 +885,187 @@
885msgstr ""885msgstr ""
886886
887#. description887#. description
888#: ../jobs/local.txt.in:8888#: ../jobs/local.txt.in:10
889msgid "Autotest Suite tests"889msgid "Autotest Suite tests"
890msgstr ""890msgstr ""
891891
892#. description892#. description
893#: ../jobs/local.txt.in:13893#: ../jobs/local.txt.in:17
894msgid "Bluetooth tests"894msgid "Bluetooth tests"
895msgstr ""895msgstr ""
896896
897#. description897#. description
898#: ../jobs/local.txt.in:18898#: ../jobs/local.txt.in:24
899msgid "Camera tests"899msgid "Camera tests"
900msgstr ""900msgstr ""
901901
902#. description902#. description
903#: ../jobs/local.txt.in:23903#: ../jobs/local.txt.in:31
904msgid "Codec tests"904msgid "Codec tests"
905msgstr ""905msgstr ""
906906
907#. description907#. description
908#: ../jobs/local.txt.in:28908#: ../jobs/local.txt.in:38
909msgid "CPU tests"909msgid "CPU tests"
910msgstr ""910msgstr ""
911911
912#. description912#. description
913#: ../jobs/local.txt.in:33913#: ../jobs/local.txt.in:45
914msgid "System Daemon tests"914msgid "System Daemon tests"
915msgstr ""915msgstr ""
916916
917#. description917#. description
918#: ../jobs/local.txt.in:38918#: ../jobs/local.txt.in:52
919msgid "Disk tests"919msgid "Disk tests"
920msgstr ""920msgstr ""
921921
922#. description922#. description
923#: ../jobs/local.txt.in:43923#: ../jobs/local.txt.in:59
924msgid "Fingerprint reader tests"924msgid "Fingerprint reader tests"
925msgstr ""925msgstr ""
926926
927#. description927#. description
928#: ../jobs/local.txt.in:48928#: ../jobs/local.txt.in:66
929msgid "Firewire disk tests"929msgid "Firewire disk tests"
930msgstr ""930msgstr ""
931931
932#. description932#. description
933#: ../jobs/local.txt.in:53933#: ../jobs/local.txt.in:73
934msgid "Floppy disk tests"934msgid "Floppy disk tests"
935msgstr ""935msgstr ""
936936
937#. description937#. description
938#: ../jobs/local.txt.in:58938#: ../jobs/local.txt.in:80
939msgid "Graphics tests"939msgid "Graphics tests"
940msgstr ""940msgstr ""
941941
942#. description942#. description
943#: ../jobs/local.txt.in:63943#: ../jobs/local.txt.in:87
944msgid "Hibernation tests"944msgid "Hibernation tests"
945msgstr ""945msgstr ""
946946
947#. description947#. description
948#: ../jobs/local.txt.in:68948#: ../jobs/local.txt.in:94
949msgid "Informational tests"949msgid "Informational tests"
950msgstr ""950msgstr ""
951951
952#. description952#. description
953#: ../jobs/local.txt.in:73953#: ../jobs/local.txt.in:101
954msgid "Input Devices tests"954msgid "Input Devices tests"
955msgstr ""955msgstr ""
956956
957#. description957#. description
958#: ../jobs/local.txt.in:78958#: ../jobs/local.txt.in:108
959msgid "Software Installation tests"959msgid "Software Installation tests"
960msgstr ""960msgstr ""
961961
962#. description962#. description
963#: ../jobs/local.txt.in:83963#: ../jobs/local.txt.in:115
964msgid "Hotkey tests"964msgid "Hotkey tests"
965msgstr ""965msgstr ""
966966
967#. description967#. description
968#: ../jobs/local.txt.in:88968#: ../jobs/local.txt.in:122
969msgid "Linux Test Project tests"969msgid "Linux Test Project tests"
970msgstr ""970msgstr ""
971971
972#. description972#. description
973#: ../jobs/local.txt.in:93973#: ../jobs/local.txt.in:129
974msgid "Mago Automated Desktop Testing"974msgid "Mago Automated Desktop Testing"
975msgstr ""975msgstr ""
976976
977#. description977#. description
978#: ../jobs/local.txt.in:98978#: ../jobs/local.txt.in:136
979msgid "Media Card tests"979msgid "Media Card tests"
980msgstr ""980msgstr ""
981981
982#. description982#. description
983#: ../jobs/local.txt.in:103983#: ../jobs/local.txt.in:143
984msgid "Memory tests"984msgid "Memory tests"
985msgstr ""985msgstr ""
986986
987#. description987#. description
988#: ../jobs/local.txt.in:108988#: ../jobs/local.txt.in:150
989msgid "Miscellaneous tests"989msgid "Miscellaneous tests"
990msgstr ""990msgstr ""
991991
992#. description992#. description
993#: ../jobs/local.txt.in:113993#: ../jobs/local.txt.in:157
994msgid "Monitor tests"994msgid "Monitor tests"
995msgstr ""995msgstr ""
996996
997#. description997#. description
998#: ../jobs/local.txt.in:118998#: ../jobs/local.txt.in:164
999msgid "Networking tests"999msgid "Networking tests"
1000msgstr ""1000msgstr ""
10011001
1002#. description1002#. description
1003#: ../jobs/local.txt.in:1231003#: ../jobs/local.txt.in:171
1004msgid "Optical Drive tests"1004msgid "Optical Drive tests"
1005msgstr ""1005msgstr ""
10061006
1007#. description1007#. description
1008#: ../jobs/local.txt.in:1281008#: ../jobs/local.txt.in:178
1009msgid "Panel Clock Verification tests"1009msgid "Panel Clock Verification tests"
1010msgstr ""1010msgstr ""
10111011
1012#. description1012#. description
1013#: ../jobs/local.txt.in:1331013#: ../jobs/local.txt.in:185
1014msgid "PCMCIA/PCIX Card tests"1014msgid "PCMCIA/PCIX Card tests"
1015msgstr ""1015msgstr ""
10161016
1017#. description1017#. description
1018#: ../jobs/local.txt.in:1381018#: ../jobs/local.txt.in:192
1019msgid "Peripheral tests"1019msgid "Peripheral tests"
1020msgstr ""1020msgstr ""
10211021
1022#. description1022#. description
1023#: ../jobs/local.txt.in:1431023#: ../jobs/local.txt.in:199
1024msgid "Phoronix Test Suite tests"1024msgid "Phoronix Test Suite tests"
1025msgstr ""1025msgstr ""
10261026
1027#. description1027#. description
1028#: ../jobs/local.txt.in:1481028#: ../jobs/local.txt.in:206
1029msgid "Power Management tests"1029msgid "Power Management tests"
1030msgstr ""1030msgstr ""
10311031
1032#. description1032#. description
1033#: ../jobs/local.txt.in:1531033#: ../jobs/local.txt.in:213
1034msgid "QA Regression tests"1034msgid "QA Regression tests"
1035msgstr ""1035msgstr ""
10361036
1037#. description1037#. description
1038#: ../jobs/local.txt.in:1581038#: ../jobs/local.txt.in:220
1039msgid "Server Services checks"1039msgid "Server Services checks"
1040msgstr ""1040msgstr ""
10411041
1042#. description1042#. description
1043#: ../jobs/local.txt.in:1631043#: ../jobs/local.txt.in:227
1044msgid "Suspend tests"1044msgid "Suspend tests"
1045msgstr ""1045msgstr ""
10461046
1047#. description1047#. description
1048#: ../jobs/local.txt.in:1681048#: ../jobs/local.txt.in:234
1049msgid "Unity tests"1049msgid "Unity tests"
1050msgstr ""1050msgstr ""
10511051
1052#. description1052#. description
1053#: ../jobs/local.txt.in:1731053#: ../jobs/local.txt.in:241
1054msgid "USB tests"1054msgid "USB tests"
1055msgstr ""1055msgstr ""
10561056
1057#. description1057#. description
1058#: ../jobs/local.txt.in:1781058#: ../jobs/local.txt.in:248
1059msgid "User Applications"1059msgid "User Applications"
1060msgstr ""1060msgstr ""
10611061
1062#. description1062#. description
1063#: ../jobs/local.txt.in:1831063#: ../jobs/local.txt.in:255
1064msgid "Wireless networking tests"1064msgid "Wireless networking tests"
1065msgstr ""1065msgstr ""
10661066
1067#. description1067#. description
1068#: ../jobs/local.txt.in:1881068#: ../jobs/local.txt.in:262
1069msgid "Stress tests"1069msgid "Stress tests"
1070msgstr ""1070msgstr ""
10711071
@@ -1272,7 +1272,7 @@
1272msgstr ""1272msgstr ""
12731273
1274#. description1274#. description
1275#: ../jobs/memory.txt.in:191275#: ../jobs/memory.txt.in:14
1276msgid "Test and exercise memory."1276msgid "Test and exercise memory."
1277msgstr ""1277msgstr ""
12781278
@@ -1296,21 +1296,21 @@
1296msgstr ""1296msgstr ""
12971297
1298#. description1298#. description
1299#: ../jobs/miscellanea.txt.in:301299#: ../jobs/miscellanea.txt.in:29
1300msgid ""1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."1302"it if not available."
1303msgstr ""1303msgstr ""
13041304
1305#. description1305#. description
1306#: ../jobs/miscellanea.txt.in:371306#: ../jobs/miscellanea.txt.in:31
1307msgid ""1307msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1308"This will run some basic connectivity tests against a BMC, verifying that "
1309"IPMI works."1309"IPMI works."
1310msgstr ""1310msgstr ""
13111311
1312#. description1312#. description
1313#: ../jobs/miscellanea.txt.in:431313#: ../jobs/miscellanea.txt.in:37
1314msgid ""1314msgid ""
1315" Determine if we need to run tests specific to portable computers that may "1315" Determine if we need to run tests specific to portable computers that may "
1316"not apply to desktops."1316"not apply to desktops."
@@ -1328,7 +1328,7 @@
1328msgstr ""1328msgstr ""
13291329
1330#. description1330#. description
1331#: ../jobs/monitor.txt.in:31331#: ../jobs/monitor.txt.in:4
1332msgid ""1332msgid ""
1333"PURPOSE:\n"1333"PURPOSE:\n"
1334" This test will check your VGA port. Skip if your system does not have a "1334" This test will check your VGA port. Skip if your system does not have a "
@@ -1341,7 +1341,7 @@
1341msgstr ""1341msgstr ""
13421342
1343#. description1343#. description
1344#: ../jobs/monitor.txt.in:131344#: ../jobs/monitor.txt.in:15
1345msgid ""1345msgid ""
1346"PURPOSE:\n"1346"PURPOSE:\n"
1347" This test will check your DVI port. Skip if your system does not have a "1347" This test will check your DVI port. Skip if your system does not have a "
@@ -1354,7 +1354,7 @@
1354msgstr ""1354msgstr ""
13551355
1356#. description1356#. description
1357#: ../jobs/monitor.txt.in:231357#: ../jobs/monitor.txt.in:26
1358msgid ""1358msgid ""
1359"PURPOSE:\n"1359"PURPOSE:\n"
1360" This test will check your DisplayPort port. Skip if your system does not "1360" This test will check your DisplayPort port. Skip if your system does not "
@@ -1367,7 +1367,7 @@
1367msgstr ""1367msgstr ""
13681368
1369#. description1369#. description
1370#: ../jobs/monitor.txt.in:331370#: ../jobs/monitor.txt.in:37
1371msgid ""1371msgid ""
1372"PURPOSE:\n"1372"PURPOSE:\n"
1373" This test will check your HDMI port. Skip if your system does not have a "1373" This test will check your HDMI port. Skip if your system does not have a "
@@ -1380,7 +1380,7 @@
1380msgstr ""1380msgstr ""
13811381
1382#. description1382#. description
1383#: ../jobs/monitor.txt.in:431383#: ../jobs/monitor.txt.in:48
1384msgid ""1384msgid ""
1385"PURPOSE:\n"1385"PURPOSE:\n"
1386" This test will check your S-VIDEO port. Skip if your system does not "1386" This test will check your S-VIDEO port. Skip if your system does not "
@@ -1393,7 +1393,7 @@
1393msgstr ""1393msgstr ""
13941394
1395#. description1395#. description
1396#: ../jobs/monitor.txt.in:531396#: ../jobs/monitor.txt.in:59
1397msgid ""1397msgid ""
1398"PURPOSE:\n"1398"PURPOSE:\n"
1399" This test will check your RCA port. Skip if your system does not have a "1399" This test will check your RCA port. Skip if your system does not have a "
@@ -1406,7 +1406,7 @@
1406msgstr ""1406msgstr ""
14071407
1408#. description1408#. description
1409#: ../jobs/monitor.txt.in:641409#: ../jobs/monitor.txt.in:70
1410msgid ""1410msgid ""
1411"PURPOSE:\n"1411"PURPOSE:\n"
1412" This test will check your monitor power saving capabilities\n"1412" This test will check your monitor power saving capabilities\n"
@@ -1433,7 +1433,7 @@
1433msgstr ""1433msgstr ""
14341434
1435#. description1435#. description
1436#: ../jobs/networking.txt.in:361436#: ../jobs/networking.txt.in:46
1437msgid ""1437msgid ""
1438"PURPOSE:\n"1438"PURPOSE:\n"
1439" This test will check your wired connection\n"1439" This test will check your wired connection\n"
@@ -1447,7 +1447,7 @@
1447msgstr ""1447msgstr ""
14481448
1449#. description1449#. description
1450#: ../jobs/networking.txt.in:491450#: ../jobs/networking.txt.in:59
1451msgid ""1451msgid ""
1452"PURPOSE:\n"1452"PURPOSE:\n"
1453" This test will check that a DSL modem can be configured and connected.\n"1453" This test will check that a DSL modem can be configured and connected.\n"
@@ -1465,44 +1465,44 @@
1465msgstr ""1465msgstr ""
14661466
1467#. description1467#. description
1468#: ../jobs/networking.txt.in:661468#: ../jobs/networking.txt.in:76
1469msgid ""1469msgid ""
1470"Automated test case to verify availability of some system on the network "1470"Automated test case to verify availability of some system on the network "
1471"using ICMP ECHO packets."1471"using ICMP ECHO packets."
1472msgstr ""1472msgstr ""
14731473
1474#. description1474#. description
1475#: ../jobs/networking.txt.in:73 ../jobs/peripheral.txt.in:371475#: ../jobs/networking.txt.in:83 ../jobs/peripheral.txt.in:37
1476msgid ""1476msgid ""
1477"Automated test case to make sure that it's possible to download files "1477"Automated test case to make sure that it's possible to download files "
1478"through HTTP"1478"through HTTP"
1479msgstr ""1479msgstr ""
14801480
1481#. description1481#. description
1482#: ../jobs/networking.txt.in:811482#: ../jobs/networking.txt.in:91
1483msgid "Test to see if we can sync local clock to an NTP server"1483msgid "Test to see if we can sync local clock to an NTP server"
1484msgstr ""1484msgstr ""
14851485
1486#. description1486#. description
1487#: ../jobs/networking.txt.in:871487#: ../jobs/networking.txt.in:97
1488msgid ""1488msgid ""
1489"Verify that an installation of checkbox-server on the network can be reached "1489"Verify that an installation of checkbox-server on the network can be reached "
1490"over SSH."1490"over SSH."
1491msgstr ""1491msgstr ""
14921492
1493#. description1493#. description
1494#: ../jobs/networking.txt.in:931494#: ../jobs/networking.txt.in:103
1495msgid "Try to enable a remote printer on the network and print a test page."1495msgid "Try to enable a remote printer on the network and print a test page."
1496msgstr ""1496msgstr ""
14971497
1498#. description1498#. description
1499#: ../jobs/networking.txt.in:981499#: ../jobs/networking.txt.in:108
1500msgid ""1500msgid ""
1501"Automated test to walk multiple network cards and test each one in sequence."1501"Automated test to walk multiple network cards and test each one in sequence."
1502msgstr ""1502msgstr ""
15031503
1504#. description1504#. description
1505#: ../jobs/networking.txt.in:1181505#: ../jobs/networking.txt.in:128
1506msgid "Test to measure the network bandwidth"1506msgid "Test to measure the network bandwidth"
1507msgstr ""1507msgstr ""
15081508
@@ -1512,12 +1512,12 @@
1512msgstr ""1512msgstr ""
15131513
1514#. description1514#. description
1515#: ../jobs/optical.txt.in:131515#: ../jobs/optical.txt.in:18
1516msgid "Optical Storage device read tests"1516msgid "Optical Storage device read tests"
1517msgstr ""1517msgstr ""
15181518
1519#. description1519#. description
1520#: ../jobs/optical.txt.in:361520#: ../jobs/optical.txt.in:35
1521msgid ""1521msgid ""
1522"PURPOSE:\n"1522"PURPOSE:\n"
1523" This test will check your system's CDROM writing capabilities. If your "1523" This test will check your system's CDROM writing capabilities. If your "
@@ -1532,7 +1532,7 @@
1532msgstr ""1532msgstr ""
15331533
1534#. description1534#. description
1535#: ../jobs/optical.txt.in:491535#: ../jobs/optical.txt.in:47
1536msgid ""1536msgid ""
1537"PURPOSE:\n"1537"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1538" This test will check your CD audio playback capabilities\n"
@@ -1553,7 +1553,7 @@
1553msgstr ""1553msgstr ""
15541554
1555#. description1555#. description
1556#: ../jobs/optical.txt.in:691556#: ../jobs/optical.txt.in:68
1557msgid ""1557msgid ""
1558"PURPOSE:\n"1558"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1559" This test will check your system's DVD writing capabilities. If your "
@@ -1568,7 +1568,7 @@
1568msgstr ""1568msgstr ""
15691569
1570#. description1570#. description
1571#: ../jobs/optical.txt.in:821571#: ../jobs/optical.txt.in:84
1572msgid ""1572msgid ""
1573"PURPOSE:\n"1573"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1574" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1587,7 @@
1587msgstr ""1587msgstr ""
15881588
1589#. description1589#. description
1590#: ../jobs/optical.txt.in:1001590#: ../jobs/optical.txt.in:102
1591msgid ""1591msgid ""
1592"PURPOSE:\n"1592"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1593" This test will check your DVD playback capabilities\n"
@@ -1843,35 +1843,35 @@
1843msgstr ""1843msgstr ""
18441844
1845#. description1845#. description
1846#: ../jobs/suspend.txt.in:31846#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."1847msgid "Record the current resolution before suspending."
1848msgstr ""1848msgstr ""
18491849
1850#. description1850#. description
1851#: ../jobs/suspend.txt.in:111851#: ../jobs/suspend.txt.in:17
1852msgid "Record mixer settings before suspending."1852msgid "Record mixer settings before suspending."
1853msgstr ""1853msgstr ""
18541854
1855#. description1855#. description
1856#: ../jobs/suspend.txt.in:181856#: ../jobs/suspend.txt.in:24
1857msgid "Verify that all the CPUs are online before suspending"1857msgid "Verify that all the CPUs are online before suspending"
1858msgstr ""1858msgstr ""
18591859
1860#. description1860#. description
1861#: ../jobs/suspend.txt.in:251861#: ../jobs/suspend.txt.in:31
1862msgid ""1862msgid ""
1863"Dumps memory info to a file for comparison after suspend test has been run"1863"Dumps memory info to a file for comparison after suspend test has been run"
1864msgstr ""1864msgstr ""
18651865
1866#. description1866#. description
1867#: ../jobs/suspend.txt.in:431867#: ../jobs/suspend.txt.in:49
1868msgid ""1868msgid ""
1869"This test disconnects all connections and then connects to the wireless "1869"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."1870"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""1871msgstr ""
18721872
1873#. description1873#. description
1874#: ../jobs/suspend.txt.in:731874#: ../jobs/suspend.txt.in:83
1875msgid ""1875msgid ""
1876"PURPOSE:\n"1876"PURPOSE:\n"
1877" This test will check suspend and resume\n"1877" This test will check suspend and resume\n"
@@ -1887,34 +1887,34 @@
1887msgstr ""1887msgstr ""
18881888
1889#. description1889#. description
1890#: ../jobs/suspend.txt.in:861890#: ../jobs/suspend.txt.in:96
1891msgid "Test the network after resuming."1891msgid "Test the network after resuming."
1892msgstr ""1892msgstr ""
18931893
1894#. description1894#. description
1895#: ../jobs/suspend.txt.in:921895#: ../jobs/suspend.txt.in:102
1896msgid ""1896msgid ""
1897"Test to see that we have the same resolution after resuming as before."1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""1898msgstr ""
18991899
1900#. description1900#. description
1901#: ../jobs/suspend.txt.in:1011901#: ../jobs/suspend.txt.in:111
1902msgid ""1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."1903"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""1904msgstr ""
19051905
1906#. description1906#. description
1907#: ../jobs/suspend.txt.in:1171907#: ../jobs/suspend.txt.in:127
1908msgid "Verify that all CPUs are online after resuming."1908msgid "Verify that all CPUs are online after resuming."
1909msgstr ""1909msgstr ""
19101910
1911#. description1911#. description
1912#: ../jobs/suspend.txt.in:1341912#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""1914msgstr ""
19151915
1916#. description1916#. description
1917#: ../jobs/suspend.txt.in:1431917#: ../jobs/suspend.txt.in:153
1918msgid ""1918msgid ""
1919"PURPOSE:\n"1919"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "1920" This test will check that the display is correct after suspend and "
@@ -1924,7 +1924,7 @@
1924msgstr ""1924msgstr ""
19251925
1926#. description1926#. description
1927#: ../jobs/suspend.txt.in:1641927#: ../jobs/suspend.txt.in:174
1928msgid ""1928msgid ""
1929"This test checks that the wireless interface is working after suspending the "1929"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "1930"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +1932,21 @@
1932msgstr ""1932msgstr ""
19331933
1934#. description1934#. description
1935#: ../jobs/suspend.txt.in:1741935#: ../jobs/suspend.txt.in:186
1936msgid ""1936msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "1937"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."1938"and compares it to the address grabbed before suspend."
1939msgstr ""1939msgstr ""
19401940
1941#. description1941#. description
1942#: ../jobs/suspend.txt.in:1821942#: ../jobs/suspend.txt.in:196
1943msgid ""1943msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "1944"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."1945"device specified by the BTDEVADDR environment variable."
1946msgstr ""1946msgstr ""
19471947
1948#. description1948#. description
1949#: ../jobs/suspend.txt.in:1901949#: ../jobs/suspend.txt.in:206
1950msgid ""1950msgid ""
1951"PURPOSE:\n"1951"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +1961,7 @@
1961msgstr ""1961msgstr ""
19621962
1963#. description1963#. description
1964#: ../jobs/suspend.txt.in:2041964#: ../jobs/suspend.txt.in:220
1965msgid ""1965msgid ""
1966"PURPOSE:\n"1966"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"1967" This test will cycle through the detected display modes\n"
@@ -1972,7 +1972,7 @@
1972msgstr ""1972msgstr ""
19731973
1974#. description1974#. description
1975#: ../jobs/suspend.txt.in:2161975#: ../jobs/suspend.txt.in:232
1976msgid ""1976msgid ""
1977"This test will check to make sure supported video modes work after a suspend "1977"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 "1978"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,7 +1980,7 @@
1980msgstr ""1980msgstr ""
19811981
1982#. description1982#. description
1983#: ../jobs/suspend.txt.in:2251983#: ../jobs/suspend.txt.in:241
1984msgid ""1984msgid ""
1985"This attaches screenshots from the "1985"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -2001,7 +2001,7 @@
2001msgstr ""2001msgstr ""
20022002
2003#. description2003#. description
2004#: ../jobs/suspend.txt.in:2482004#: ../jobs/suspend.txt.in:251
2005msgid ""2005msgid ""
2006"This will check to make sure that your audio device works properly after a "2006"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 "2007"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2010,12 @@
2010msgstr ""2010msgstr ""
20112011
2012#. description2012#. description
2013#: ../jobs/suspend.txt.in:2552013#: ../jobs/suspend.txt.in:260
2014msgid "This is the automated version of suspend/suspend_advanced."2014msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2015msgstr ""
20162016
2017#. description2017#. description
2018#: ../jobs/suspend.txt.in:2642018#: ../jobs/suspend.txt.in:269
2019msgid ""2019msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2021"configured server. During this process the system will suspend, then "
@@ -2117,14 +2117,14 @@
2117msgstr ""2117msgstr ""
21182118
2119#. description2119#. description
2120#: ../jobs/usb.txt.in:962120#: ../jobs/usb.txt.in:80
2121msgid ""2121msgid ""
2122"This test is automated and requires that you plug in at least one usb "2122"This test is automated and requires that you plug in at least one usb "
2123"storage device before running checkbox."2123"storage device before running checkbox."
2124msgstr ""2124msgstr ""
21252125
2126#. description2126#. description
2127#: ../jobs/usb.txt.in:1022127#: ../jobs/usb.txt.in:119
2128msgid ""2128msgid ""
2129"PURPOSE:\n"2129"PURPOSE:\n"
2130" This test will check your USB connection.\n"2130" This test will check your USB connection.\n"
@@ -2738,17 +2738,17 @@
2738msgstr ""2738msgstr ""
27392739
2740#: ../checkbox_cli/cli_interface.py:312740#: ../checkbox_cli/cli_interface.py:31
2741#: ../checkbox_urwid/urwid_interface.py:6842741#: ../checkbox_urwid/urwid_interface.py:917
2742msgid "yes"2742msgid "yes"
2743msgstr ""2743msgstr ""
27442744
2745#: ../checkbox_cli/cli_interface.py:322745#: ../checkbox_cli/cli_interface.py:32
2746#: ../checkbox_urwid/urwid_interface.py:6852746#: ../checkbox_urwid/urwid_interface.py:918
2747msgid "no"2747msgid "no"
2748msgstr ""2748msgstr ""
27492749
2750#: ../checkbox_cli/cli_interface.py:332750#: ../checkbox_cli/cli_interface.py:33
2751#: ../checkbox_urwid/urwid_interface.py:6862751#: ../checkbox_urwid/urwid_interface.py:919
2752msgid "skip"2752msgid "skip"
2753msgstr ""2753msgstr ""
27542754
@@ -2756,73 +2756,75 @@
2756msgid "Press any key to continue..."2756msgid "Press any key to continue..."
2757msgstr ""2757msgstr ""
27582758
2759#: ../checkbox_cli/cli_interface.py:1352759#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
2760#, python-format2760#, python-format
2761msgid "Please choose (%s): "2761msgid "Please choose (%s): "
2762msgstr ""2762msgstr ""
27632763
2764#: ../checkbox_cli/cli_interface.py:3232764#: ../checkbox_cli/cli_interface.py:416
2765msgid "test"2765msgid "test"
2766msgstr ""2766msgstr ""
27672767
2768#: ../checkbox_cli/cli_interface.py:3472768#: ../checkbox_cli/cli_interface.py:440
2769msgid "test again"2769msgid "test again"
2770msgstr ""2770msgstr ""
27712771
2772#: ../checkbox_cli/cli_interface.py:3532772#: ../checkbox_cli/cli_interface.py:446
2773msgid "Please type here and press Ctrl-D when finished:\n"2773msgid "Please type here and press Ctrl-D when finished:\n"
2774msgstr ""2774msgstr ""
27752775
2776#: ../checkbox_urwid/urwid_interface.py:602776#: ../checkbox_urwid/urwid_interface.py:66
2777msgid "Checkbox System Testing"2777msgid "Checkbox System Testing"
2778msgstr ""2778msgstr ""
27792779
2780#: ../checkbox_urwid/urwid_interface.py:992780#: ../checkbox_urwid/urwid_interface.py:105
2781msgid "Continue"2781msgid "Continue"
2782msgstr ""2782msgstr ""
27832783
2784#: ../checkbox_urwid/urwid_interface.py:1922784#: ../checkbox_urwid/urwid_interface.py:198
2785#: ../checkbox_urwid/urwid_interface.py:2682785#: ../checkbox_urwid/urwid_interface.py:274
2786#: ../checkbox_urwid/urwid_interface.py:4162786#: ../checkbox_urwid/urwid_interface.py:425
2787#: ../checkbox_urwid/urwid_interface.py:547
2787msgid "Previous"2788msgid "Previous"
2788msgstr ""2789msgstr ""
27892790
2790#: ../checkbox_urwid/urwid_interface.py:1932791#: ../checkbox_urwid/urwid_interface.py:199
2791#: ../checkbox_urwid/urwid_interface.py:2692792#: ../checkbox_urwid/urwid_interface.py:275
2792#: ../checkbox_urwid/urwid_interface.py:4172793#: ../checkbox_urwid/urwid_interface.py:426
2794#: ../checkbox_urwid/urwid_interface.py:548
2793msgid "Next"2795msgid "Next"
2794msgstr ""2796msgstr ""
27952797
2796#. Show buttons2798#. Show buttons
2797#: ../checkbox_urwid/urwid_interface.py:4142799#: ../checkbox_urwid/urwid_interface.py:423
2798msgid "Select All"2800msgid "Select All"
2799msgstr ""2801msgstr ""
28002802
2801#: ../checkbox_urwid/urwid_interface.py:4152803#: ../checkbox_urwid/urwid_interface.py:424
2802msgid "Deselect All"2804msgid "Deselect All"
2803msgstr ""2805msgstr ""
28042806
2805#: ../checkbox_urwid/urwid_interface.py:7722807#: ../checkbox_urwid/urwid_interface.py:1013
2806msgid "Test"2808msgid "Test"
2807msgstr ""2809msgstr ""
28082810
2809#: ../checkbox_urwid/urwid_interface.py:7872811#: ../checkbox_urwid/urwid_interface.py:1028
2810msgid "Test Again"2812msgid "Test Again"
2811msgstr ""2813msgstr ""
28122814
2813#: ../checkbox_gtk/gtk_interface.py:5002815#: ../checkbox_gtk/gtk_interface.py:503
2814msgid "_Test Again"2816msgid "_Test Again"
2815msgstr ""2817msgstr ""
28162818
2817#: ../checkbox_gtk/gtk_interface.py:5482819#: ../checkbox_gtk/gtk_interface.py:551
2818msgid "Info"2820msgid "Info"
2819msgstr ""2821msgstr ""
28202822
2821#: ../checkbox_gtk/gtk_interface.py:5672823#: ../checkbox_gtk/gtk_interface.py:575
2822msgid "Error"2824msgid "Error"
2823msgstr ""2825msgstr ""
28242826
2825#: ../checkbox/user_interface.py:1362827#: ../checkbox/user_interface.py:137
2826#, python-format2828#, python-format
2827msgid "Unable to start web browser to open %s."2829msgid "Unable to start web browser to open %s."
2828msgstr ""2830msgstr ""
@@ -2870,7 +2872,7 @@
2870msgid "Gathering information from your system..."2872msgid "Gathering information from your system..."
2871msgstr ""2873msgstr ""
28722874
2873#: ../plugins/intro_prompt.py:292875#: ../plugins/intro_prompt.py:28
2874msgid ""2876msgid ""
2875"Welcome to System Testing!\n"2877"Welcome to System Testing!\n"
2876"\n"2878"\n"
@@ -2879,7 +2881,7 @@
2879"your system."2881"your system."
2880msgstr ""2882msgstr ""
28812883
2882#: ../plugins/intro_prompt.py:342884#: ../plugins/intro_prompt.py:33
2883msgid ""2885msgid ""
2884"\n"2886"\n"
2885"\n"2887"\n"
@@ -2933,15 +2935,15 @@
2933msgid "No e-mail address provided, not submitting to Launchpad."2935msgid "No e-mail address provided, not submitting to Launchpad."
2934msgstr ""2936msgstr ""
29352937
2936#: ../plugins/launchpad_prompt.py:922938#: ../plugins/launchpad_prompt.py:93
2937msgid "Email address must be in a proper format."2939msgid "Email address must be in a proper format."
2938msgstr ""2940msgstr ""
29392941
2940#: ../plugins/launchpad_prompt.py:982942#: ../plugins/launchpad_prompt.py:99
2941msgid "Exchanging information with the server..."2943msgid "Exchanging information with the server..."
2942msgstr ""2944msgstr ""
29432945
2944#: ../plugins/launchpad_report.py:1512946#: ../plugins/launchpad_report.py:167
2945msgid ""2947msgid ""
2946"The generated report seems to have validation errors,\n"2948"The generated report seems to have validation errors,\n"
2947"so it might not be processed by Launchpad."2949"so it might not be processed by Launchpad."
@@ -2951,7 +2953,7 @@
2951msgid "There is another checkbox running. Please close it first."2953msgid "There is another checkbox running. Please close it first."
2952msgstr ""2954msgstr ""
29532955
2954#: ../plugins/recover_prompt.py:542956#: ../plugins/recover_prompt.py:56
2955msgid ""2957msgid ""
2956"Checkbox did not finish completely.\n"2958"Checkbox did not finish completely.\n"
2957"Do you want to recover from the previous run?"2959"Do you want to recover from the previous run?"
@@ -2967,7 +2969,7 @@
2967msgstr ""2969msgstr ""
29682970
2969#. Get results2971#. Get results
2970#: ../plugins/suites_prompt.py:1082972#: ../plugins/suites_prompt.py:110
2971msgid "Select the suites to test"2973msgid "Select the suites to test"
2972msgstr ""2974msgstr ""
29732975
29742976
=== modified file 'po/am.po'
--- po/am.po 2012-02-15 00:11:21 +0000
+++ po/am.po 2012-03-21 03:20:56 +0000
@@ -14,33 +14,33 @@
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-02-07 04:33+0000\n"17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"
18"X-Generator: Launchpad (build 14747)\n"18"X-Generator: Launchpad (build 14933)\n"
1919
20#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:35120#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
21#: ../checkbox_urwid/urwid_interface.py:26121#: ../checkbox_urwid/urwid_interface.py:267
22msgid "Further information:"22msgid "Further information:"
23msgstr "በበለጠ ለመረዳት:"23msgstr "በበለጠ ለመረዳት:"
2424
25#: ../gtk/checkbox-gtk.ui.h:225#: ../gtk/checkbox-gtk.ui.h:10
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:3 ../gtk/checkbox-gtk.desktop.in.h:130#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
31#: ../plugins/user_interface.py:4031#: ../plugins/user_interface.py:42
32msgid "System Testing"32msgid "System Testing"
33msgstr "ስርአቱን በመሞከር ላይ"33msgstr "ስርአቱን በመሞከር ላይ"
3434
35#: ../gtk/checkbox-gtk.ui.h:8
36msgid "_Deselect All"
37msgstr ""
38
35#: ../gtk/checkbox-gtk.ui.h:439#: ../gtk/checkbox-gtk.ui.h:4
36msgid "_Deselect All"
37msgstr ""
38
39#: ../gtk/checkbox-gtk.ui.h:5
40msgid "_No"40msgid "_No"
41msgstr "_አይ"41msgstr "_አይ"
4242
43#: ../gtk/checkbox-gtk.ui.h:643#: ../gtk/checkbox-gtk.ui.h:9
44msgid "_Previous"44msgid "_Previous"
45msgstr ""45msgstr ""
4646
@@ -48,19 +48,19 @@
48msgid "_Select All"48msgid "_Select All"
49msgstr ""49msgstr ""
5050
51#: ../gtk/checkbox-gtk.ui.h:851#: ../gtk/checkbox-gtk.ui.h:5
52msgid "_Skip this test"52msgid "_Skip this test"
53msgstr "_ይህን ሙከራ መዝለል"53msgstr "_ይህን ሙከራ መዝለል"
5454
55#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:53555#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:538
56msgid "_Test"56msgid "_Test"
57msgstr "_ሙከራ"57msgstr "_ሙከራ"
5858
59#: ../gtk/checkbox-gtk.ui.h:1059#: ../gtk/checkbox-gtk.ui.h:3
60msgid "_Yes"60msgid "_Yes"
61msgstr "_አዎ"61msgstr "_አዎ"
6262
63#: ../gtk/checkbox-gtk.desktop.in.h:263#: ../qt/checkbox-qt.desktop.in.h:2
64msgid "Test your system and submit results to the Ubuntu Friendly project"64msgid "Test your system and submit results to the Ubuntu Friendly project"
65msgstr ""65msgstr ""
6666
@@ -141,7 +141,7 @@
141msgstr ""141msgstr ""
142142
143#. description143#. description
144#: ../jobs/audio.txt.in:102144#: ../jobs/audio.txt.in:99
145msgid ""145msgid ""
146"Play back a sound on the default output and listen for it on the default "146"Play back a sound on the default output and listen for it on the default "
147"input. This makes the most sense when the output and input are directly "147"input. This makes the most sense when the output and input are directly "
@@ -164,13 +164,13 @@
164msgstr ""164msgstr ""
165165
166#. description166#. description
167#: ../jobs/bluetooth.txt.in:16167#: ../jobs/bluetooth.txt.in:8
168msgid ""168msgid ""
169"Automated test to store bluetooth device information in checkbox report"169"Automated test to store bluetooth device information in checkbox report"
170msgstr ""170msgstr ""
171171
172#. description172#. description
173#: ../jobs/bluetooth.txt.in:22173#: ../jobs/bluetooth.txt.in:14
174msgid ""174msgid ""
175"PURPOSE:\n"175"PURPOSE:\n"
176" This test will check that bluetooth connection works correctly\n"176" This test will check that bluetooth connection works correctly\n"
@@ -189,7 +189,7 @@
189msgstr ""189msgstr ""
190190
191#. description191#. description
192#: ../jobs/bluetooth.txt.in:41192#: ../jobs/bluetooth.txt.in:33
193msgid ""193msgid ""
194"PURPOSE:\n"194"PURPOSE:\n"
195" This test will check that you can transfer information through a "195" This test will check that you can transfer information through a "
@@ -203,7 +203,7 @@
203msgstr ""203msgstr ""
204204
205#. description205#. description
206#: ../jobs/bluetooth.txt.in:55206#: ../jobs/bluetooth.txt.in:47
207msgid ""207msgid ""
208"PURPOSE:\n"208"PURPOSE:\n"
209" This test will check that you can record and hear audio using a "209" This test will check that you can record and hear audio using a "
@@ -222,7 +222,7 @@
222msgstr ""222msgstr ""
223223
224#. description224#. description
225#: ../jobs/bluetooth.txt.in:73225#: ../jobs/bluetooth.txt.in:65
226msgid ""226msgid ""
227"PURPOSE:\n"227"PURPOSE:\n"
228" This test will check that you can use a bluetooth keyboard\n"228" This test will check that you can use a bluetooth keyboard\n"
@@ -238,7 +238,7 @@
238msgstr ""238msgstr ""
239239
240#. description240#. description
241#: ../jobs/bluetooth.txt.in:89241#: ../jobs/bluetooth.txt.in:81
242msgid ""242msgid ""
243"PURPOSE:\n"243"PURPOSE:\n"
244" This test will check that you can use a bluetooth mouse\n"244" This test will check that you can use a bluetooth mouse\n"
@@ -410,22 +410,22 @@
410msgstr ""410msgstr ""
411411
412#. description412#. description
413#: ../jobs/disk.txt.in:26413#: ../jobs/disk.txt.in:40
414msgid "SMART test"414msgid "SMART test"
415msgstr ""415msgstr ""
416416
417#. description417#. description
418#: ../jobs/disk.txt.in:42418#: ../jobs/disk.txt.in:56
419msgid "Maximum disk space used during a default installation test"419msgid "Maximum disk space used during a default installation test"
420msgstr ""420msgstr ""
421421
422#. description422#. description
423#: ../jobs/disk.txt.in:57423#: ../jobs/disk.txt.in:71
424msgid "Verify system storage performs at or above baseline performance"424msgid "Verify system storage performs at or above baseline performance"
425msgstr ""425msgstr ""
426426
427#. description427#. description
428#: ../jobs/disk.txt.in:74428#: ../jobs/disk.txt.in:88
429msgid ""429msgid ""
430"Verify that storage devices, such as Fibre Channel and RAID can be detected "430"Verify that storage devices, such as Fibre Channel and RAID can be detected "
431"and perform under stress."431"and perform under stress."
@@ -601,7 +601,7 @@
601msgstr ""601msgstr ""
602602
603#. description603#. description
604#: ../jobs/graphics.txt.in:122604#: ../jobs/graphics.txt.in:113
605msgid ""605msgid ""
606"PURPOSE:\n"606"PURPOSE:\n"
607" This test cycles through the detected video modes\n"607" This test cycles through the detected video modes\n"
@@ -617,7 +617,7 @@
617msgstr ""617msgstr ""
618618
619#. description619#. description
620#: ../jobs/graphics.txt.in:140620#: ../jobs/graphics.txt.in:139
621msgid ""621msgid ""
622"PURPOSE:\n"622"PURPOSE:\n"
623" This test tests the basic 3D capabilities of your video card\n"623" This test tests the basic 3D capabilities of your video card\n"
@@ -885,187 +885,187 @@
885msgstr "የድምጽ ሙከራ"885msgstr "የድምጽ ሙከራ"
886886
887#. description887#. description
888#: ../jobs/local.txt.in:8888#: ../jobs/local.txt.in:10
889msgid "Autotest Suite tests"889msgid "Autotest Suite tests"
890msgstr ""890msgstr ""
891891
892#. description892#. description
893#: ../jobs/local.txt.in:13893#: ../jobs/local.txt.in:17
894msgid "Bluetooth tests"894msgid "Bluetooth tests"
895msgstr ""895msgstr ""
896896
897#. description897#. description
898#: ../jobs/local.txt.in:18898#: ../jobs/local.txt.in:24
899msgid "Camera tests"899msgid "Camera tests"
900msgstr ""900msgstr ""
901901
902#. description902#. description
903#: ../jobs/local.txt.in:23903#: ../jobs/local.txt.in:31
904msgid "Codec tests"904msgid "Codec tests"
905msgstr ""905msgstr ""
906906
907#. description907#. description
908#: ../jobs/local.txt.in:28908#: ../jobs/local.txt.in:38
909msgid "CPU tests"909msgid "CPU tests"
910msgstr ""910msgstr ""
911911
912#. description912#. description
913#: ../jobs/local.txt.in:33913#: ../jobs/local.txt.in:45
914msgid "System Daemon tests"914msgid "System Daemon tests"
915msgstr ""915msgstr ""
916916
917#. description917#. description
918#: ../jobs/local.txt.in:38918#: ../jobs/local.txt.in:52
919msgid "Disk tests"919msgid "Disk tests"
920msgstr "የዲስክ ሙከራ"920msgstr "የዲስክ ሙከራ"
921921
922#. description922#. description
923#: ../jobs/local.txt.in:43923#: ../jobs/local.txt.in:59
924msgid "Fingerprint reader tests"924msgid "Fingerprint reader tests"
925msgstr ""925msgstr ""
926926
927#. description927#. description
928#: ../jobs/local.txt.in:48928#: ../jobs/local.txt.in:66
929msgid "Firewire disk tests"929msgid "Firewire disk tests"
930msgstr ""930msgstr ""
931931
932#. description932#. description
933#: ../jobs/local.txt.in:53933#: ../jobs/local.txt.in:73
934msgid "Floppy disk tests"934msgid "Floppy disk tests"
935msgstr ""935msgstr ""
936936
937#. description937#. description
938#: ../jobs/local.txt.in:58938#: ../jobs/local.txt.in:80
939msgid "Graphics tests"939msgid "Graphics tests"
940msgstr ""940msgstr ""
941941
942#. description942#. description
943#: ../jobs/local.txt.in:63943#: ../jobs/local.txt.in:87
944msgid "Hibernation tests"944msgid "Hibernation tests"
945msgstr ""945msgstr ""
946946
947#. description947#. description
948#: ../jobs/local.txt.in:68948#: ../jobs/local.txt.in:94
949msgid "Informational tests"949msgid "Informational tests"
950msgstr ""950msgstr ""
951951
952#. description952#. description
953#: ../jobs/local.txt.in:73953#: ../jobs/local.txt.in:101
954msgid "Input Devices tests"954msgid "Input Devices tests"
955msgstr ""955msgstr ""
956956
957#. description957#. description
958#: ../jobs/local.txt.in:78958#: ../jobs/local.txt.in:108
959msgid "Software Installation tests"959msgid "Software Installation tests"
960msgstr ""960msgstr ""
961961
962#. description962#. description
963#: ../jobs/local.txt.in:83963#: ../jobs/local.txt.in:115
964msgid "Hotkey tests"964msgid "Hotkey tests"
965msgstr ""965msgstr ""
966966
967#. description967#. description
968#: ../jobs/local.txt.in:88968#: ../jobs/local.txt.in:122
969msgid "Linux Test Project tests"969msgid "Linux Test Project tests"
970msgstr ""970msgstr ""
971971
972#. description972#. description
973#: ../jobs/local.txt.in:93973#: ../jobs/local.txt.in:129
974msgid "Mago Automated Desktop Testing"974msgid "Mago Automated Desktop Testing"
975msgstr ""975msgstr ""
976976
977#. description977#. description
978#: ../jobs/local.txt.in:98978#: ../jobs/local.txt.in:136
979msgid "Media Card tests"979msgid "Media Card tests"
980msgstr ""980msgstr ""
981981
982#. description982#. description
983#: ../jobs/local.txt.in:103983#: ../jobs/local.txt.in:143
984msgid "Memory tests"984msgid "Memory tests"
985msgstr ""985msgstr ""
986986
987#. description987#. description
988#: ../jobs/local.txt.in:108988#: ../jobs/local.txt.in:150
989msgid "Miscellaneous tests"989msgid "Miscellaneous tests"
990msgstr ""990msgstr ""
991991
992#. description992#. description
993#: ../jobs/local.txt.in:113993#: ../jobs/local.txt.in:157
994msgid "Monitor tests"994msgid "Monitor tests"
995msgstr ""995msgstr ""
996996
997#. description997#. description
998#: ../jobs/local.txt.in:118998#: ../jobs/local.txt.in:164
999msgid "Networking tests"999msgid "Networking tests"
1000msgstr ""1000msgstr ""
10011001
1002#. description1002#. description
1003#: ../jobs/local.txt.in:1231003#: ../jobs/local.txt.in:171
1004msgid "Optical Drive tests"1004msgid "Optical Drive tests"
1005msgstr ""1005msgstr ""
10061006
1007#. description1007#. description
1008#: ../jobs/local.txt.in:1281008#: ../jobs/local.txt.in:178
1009msgid "Panel Clock Verification tests"1009msgid "Panel Clock Verification tests"
1010msgstr ""1010msgstr ""
10111011
1012#. description1012#. description
1013#: ../jobs/local.txt.in:1331013#: ../jobs/local.txt.in:185
1014msgid "PCMCIA/PCIX Card tests"1014msgid "PCMCIA/PCIX Card tests"
1015msgstr ""1015msgstr ""
10161016
1017#. description1017#. description
1018#: ../jobs/local.txt.in:1381018#: ../jobs/local.txt.in:192
1019msgid "Peripheral tests"1019msgid "Peripheral tests"
1020msgstr ""1020msgstr ""
10211021
1022#. description1022#. description
1023#: ../jobs/local.txt.in:1431023#: ../jobs/local.txt.in:199
1024msgid "Phoronix Test Suite tests"1024msgid "Phoronix Test Suite tests"
1025msgstr ""1025msgstr ""
10261026
1027#. description1027#. description
1028#: ../jobs/local.txt.in:1481028#: ../jobs/local.txt.in:206
1029msgid "Power Management tests"1029msgid "Power Management tests"
1030msgstr ""1030msgstr ""
10311031
1032#. description1032#. description
1033#: ../jobs/local.txt.in:1531033#: ../jobs/local.txt.in:213
1034msgid "QA Regression tests"1034msgid "QA Regression tests"
1035msgstr ""1035msgstr ""
10361036
1037#. description1037#. description
1038#: ../jobs/local.txt.in:1581038#: ../jobs/local.txt.in:220
1039msgid "Server Services checks"1039msgid "Server Services checks"
1040msgstr ""1040msgstr ""
10411041
1042#. description1042#. description
1043#: ../jobs/local.txt.in:1631043#: ../jobs/local.txt.in:227
1044msgid "Suspend tests"1044msgid "Suspend tests"
1045msgstr ""1045msgstr ""
10461046
1047#. description1047#. description
1048#: ../jobs/local.txt.in:1681048#: ../jobs/local.txt.in:234
1049msgid "Unity tests"1049msgid "Unity tests"
1050msgstr ""1050msgstr ""
10511051
1052#. description1052#. description
1053#: ../jobs/local.txt.in:1731053#: ../jobs/local.txt.in:241
1054msgid "USB tests"1054msgid "USB tests"
1055msgstr ""1055msgstr ""
10561056
1057#. description1057#. description
1058#: ../jobs/local.txt.in:1781058#: ../jobs/local.txt.in:248
1059msgid "User Applications"1059msgid "User Applications"
1060msgstr ""1060msgstr ""
10611061
1062#. description1062#. description
1063#: ../jobs/local.txt.in:1831063#: ../jobs/local.txt.in:255
1064msgid "Wireless networking tests"1064msgid "Wireless networking tests"
1065msgstr ""1065msgstr ""
10661066
1067#. description1067#. description
1068#: ../jobs/local.txt.in:1881068#: ../jobs/local.txt.in:262
1069msgid "Stress tests"1069msgid "Stress tests"
1070msgstr ""1070msgstr ""
10711071
@@ -1272,7 +1272,7 @@
1272msgstr ""1272msgstr ""
12731273
1274#. description1274#. description
1275#: ../jobs/memory.txt.in:191275#: ../jobs/memory.txt.in:14
1276msgid "Test and exercise memory."1276msgid "Test and exercise memory."
1277msgstr ""1277msgstr ""
12781278
@@ -1296,21 +1296,21 @@
1296msgstr ""1296msgstr ""
12971297
1298#. description1298#. description
1299#: ../jobs/miscellanea.txt.in:301299#: ../jobs/miscellanea.txt.in:29
1300msgid ""1300msgid ""
1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "1301"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1302"it if not available."1302"it if not available."
1303msgstr ""1303msgstr ""
13041304
1305#. description1305#. description
1306#: ../jobs/miscellanea.txt.in:371306#: ../jobs/miscellanea.txt.in:31
1307msgid ""1307msgid ""
1308"This will run some basic connectivity tests against a BMC, verifying that "1308"This will run some basic connectivity tests against a BMC, verifying that "
1309"IPMI works."1309"IPMI works."
1310msgstr ""1310msgstr ""
13111311
1312#. description1312#. description
1313#: ../jobs/miscellanea.txt.in:431313#: ../jobs/miscellanea.txt.in:37
1314msgid ""1314msgid ""
1315" Determine if we need to run tests specific to portable computers that may "1315" Determine if we need to run tests specific to portable computers that may "
1316"not apply to desktops."1316"not apply to desktops."
@@ -1328,7 +1328,7 @@
1328msgstr ""1328msgstr ""
13291329
1330#. description1330#. description
1331#: ../jobs/monitor.txt.in:31331#: ../jobs/monitor.txt.in:4
1332msgid ""1332msgid ""
1333"PURPOSE:\n"1333"PURPOSE:\n"
1334" This test will check your VGA port. Skip if your system does not have a "1334" This test will check your VGA port. Skip if your system does not have a "
@@ -1341,7 +1341,7 @@
1341msgstr ""1341msgstr ""
13421342
1343#. description1343#. description
1344#: ../jobs/monitor.txt.in:131344#: ../jobs/monitor.txt.in:15
1345msgid ""1345msgid ""
1346"PURPOSE:\n"1346"PURPOSE:\n"
1347" This test will check your DVI port. Skip if your system does not have a "1347" This test will check your DVI port. Skip if your system does not have a "
@@ -1354,7 +1354,7 @@
1354msgstr ""1354msgstr ""
13551355
1356#. description1356#. description
1357#: ../jobs/monitor.txt.in:231357#: ../jobs/monitor.txt.in:26
1358msgid ""1358msgid ""
1359"PURPOSE:\n"1359"PURPOSE:\n"
1360" This test will check your DisplayPort port. Skip if your system does not "1360" This test will check your DisplayPort port. Skip if your system does not "
@@ -1367,7 +1367,7 @@
1367msgstr ""1367msgstr ""
13681368
1369#. description1369#. description
1370#: ../jobs/monitor.txt.in:331370#: ../jobs/monitor.txt.in:37
1371msgid ""1371msgid ""
1372"PURPOSE:\n"1372"PURPOSE:\n"
1373" This test will check your HDMI port. Skip if your system does not have a "1373" This test will check your HDMI port. Skip if your system does not have a "
@@ -1380,7 +1380,7 @@
1380msgstr ""1380msgstr ""
13811381
1382#. description1382#. description
1383#: ../jobs/monitor.txt.in:431383#: ../jobs/monitor.txt.in:48
1384msgid ""1384msgid ""
1385"PURPOSE:\n"1385"PURPOSE:\n"
1386" This test will check your S-VIDEO port. Skip if your system does not "1386" This test will check your S-VIDEO port. Skip if your system does not "
@@ -1393,7 +1393,7 @@
1393msgstr ""1393msgstr ""
13941394
1395#. description1395#. description
1396#: ../jobs/monitor.txt.in:531396#: ../jobs/monitor.txt.in:59
1397msgid ""1397msgid ""
1398"PURPOSE:\n"1398"PURPOSE:\n"
1399" This test will check your RCA port. Skip if your system does not have a "1399" This test will check your RCA port. Skip if your system does not have a "
@@ -1406,7 +1406,7 @@
1406msgstr ""1406msgstr ""
14071407
1408#. description1408#. description
1409#: ../jobs/monitor.txt.in:641409#: ../jobs/monitor.txt.in:70
1410msgid ""1410msgid ""
1411"PURPOSE:\n"1411"PURPOSE:\n"
1412" This test will check your monitor power saving capabilities\n"1412" This test will check your monitor power saving capabilities\n"
@@ -1433,7 +1433,7 @@
1433msgstr ""1433msgstr ""
14341434
1435#. description1435#. description
1436#: ../jobs/networking.txt.in:361436#: ../jobs/networking.txt.in:46
1437msgid ""1437msgid ""
1438"PURPOSE:\n"1438"PURPOSE:\n"
1439" This test will check your wired connection\n"1439" This test will check your wired connection\n"
@@ -1447,7 +1447,7 @@
1447msgstr ""1447msgstr ""
14481448
1449#. description1449#. description
1450#: ../jobs/networking.txt.in:491450#: ../jobs/networking.txt.in:59
1451msgid ""1451msgid ""
1452"PURPOSE:\n"1452"PURPOSE:\n"
1453" This test will check that a DSL modem can be configured and connected.\n"1453" This test will check that a DSL modem can be configured and connected.\n"
@@ -1465,44 +1465,44 @@
1465msgstr ""1465msgstr ""
14661466
1467#. description1467#. description
1468#: ../jobs/networking.txt.in:661468#: ../jobs/networking.txt.in:76
1469msgid ""1469msgid ""
1470"Automated test case to verify availability of some system on the network "1470"Automated test case to verify availability of some system on the network "
1471"using ICMP ECHO packets."1471"using ICMP ECHO packets."
1472msgstr ""1472msgstr ""
14731473
1474#. description1474#. description
1475#: ../jobs/networking.txt.in:73 ../jobs/peripheral.txt.in:371475#: ../jobs/networking.txt.in:83 ../jobs/peripheral.txt.in:37
1476msgid ""1476msgid ""
1477"Automated test case to make sure that it's possible to download files "1477"Automated test case to make sure that it's possible to download files "
1478"through HTTP"1478"through HTTP"
1479msgstr ""1479msgstr ""
14801480
1481#. description1481#. description
1482#: ../jobs/networking.txt.in:811482#: ../jobs/networking.txt.in:91
1483msgid "Test to see if we can sync local clock to an NTP server"1483msgid "Test to see if we can sync local clock to an NTP server"
1484msgstr ""1484msgstr ""
14851485
1486#. description1486#. description
1487#: ../jobs/networking.txt.in:871487#: ../jobs/networking.txt.in:97
1488msgid ""1488msgid ""
1489"Verify that an installation of checkbox-server on the network can be reached "1489"Verify that an installation of checkbox-server on the network can be reached "
1490"over SSH."1490"over SSH."
1491msgstr ""1491msgstr ""
14921492
1493#. description1493#. description
1494#: ../jobs/networking.txt.in:931494#: ../jobs/networking.txt.in:103
1495msgid "Try to enable a remote printer on the network and print a test page."1495msgid "Try to enable a remote printer on the network and print a test page."
1496msgstr ""1496msgstr ""
14971497
1498#. description1498#. description
1499#: ../jobs/networking.txt.in:981499#: ../jobs/networking.txt.in:108
1500msgid ""1500msgid ""
1501"Automated test to walk multiple network cards and test each one in sequence."1501"Automated test to walk multiple network cards and test each one in sequence."
1502msgstr ""1502msgstr ""
15031503
1504#. description1504#. description
1505#: ../jobs/networking.txt.in:1181505#: ../jobs/networking.txt.in:128
1506msgid "Test to measure the network bandwidth"1506msgid "Test to measure the network bandwidth"
1507msgstr ""1507msgstr ""
15081508
@@ -1512,12 +1512,12 @@
1512msgstr ""1512msgstr ""
15131513
1514#. description1514#. description
1515#: ../jobs/optical.txt.in:131515#: ../jobs/optical.txt.in:18
1516msgid "Optical Storage device read tests"1516msgid "Optical Storage device read tests"
1517msgstr ""1517msgstr ""
15181518
1519#. description1519#. description
1520#: ../jobs/optical.txt.in:361520#: ../jobs/optical.txt.in:35
1521msgid ""1521msgid ""
1522"PURPOSE:\n"1522"PURPOSE:\n"
1523" This test will check your system's CDROM writing capabilities. If your "1523" This test will check your system's CDROM writing capabilities. If your "
@@ -1532,7 +1532,7 @@
1532msgstr ""1532msgstr ""
15331533
1534#. description1534#. description
1535#: ../jobs/optical.txt.in:491535#: ../jobs/optical.txt.in:47
1536msgid ""1536msgid ""
1537"PURPOSE:\n"1537"PURPOSE:\n"
1538" This test will check your CD audio playback capabilities\n"1538" This test will check your CD audio playback capabilities\n"
@@ -1553,7 +1553,7 @@
1553msgstr ""1553msgstr ""
15541554
1555#. description1555#. description
1556#: ../jobs/optical.txt.in:691556#: ../jobs/optical.txt.in:68
1557msgid ""1557msgid ""
1558"PURPOSE:\n"1558"PURPOSE:\n"
1559" This test will check your system's DVD writing capabilities. If your "1559" This test will check your system's DVD writing capabilities. If your "
@@ -1568,7 +1568,7 @@
1568msgstr ""1568msgstr ""
15691569
1570#. description1570#. description
1571#: ../jobs/optical.txt.in:821571#: ../jobs/optical.txt.in:84
1572msgid ""1572msgid ""
1573"PURPOSE:\n"1573"PURPOSE:\n"
1574" This test will check your DVD movie playback capabilities. Note that "1574" This test will check your DVD movie playback capabilities. Note that "
@@ -1587,7 +1587,7 @@
1587msgstr ""1587msgstr ""
15881588
1589#. description1589#. description
1590#: ../jobs/optical.txt.in:1001590#: ../jobs/optical.txt.in:102
1591msgid ""1591msgid ""
1592"PURPOSE:\n"1592"PURPOSE:\n"
1593" This test will check your DVD playback capabilities\n"1593" This test will check your DVD playback capabilities\n"
@@ -1843,35 +1843,35 @@
1843msgstr ""1843msgstr ""
18441844
1845#. description1845#. description
1846#: ../jobs/suspend.txt.in:31846#: ../jobs/suspend.txt.in:9
1847msgid "Record the current resolution before suspending."1847msgid "Record the current resolution before suspending."
1848msgstr ""1848msgstr ""
18491849
1850#. description1850#. description
1851#: ../jobs/suspend.txt.in:111851#: ../jobs/suspend.txt.in:17
1852msgid "Record mixer settings before suspending."1852msgid "Record mixer settings before suspending."
1853msgstr ""1853msgstr ""
18541854
1855#. description1855#. description
1856#: ../jobs/suspend.txt.in:181856#: ../jobs/suspend.txt.in:24
1857msgid "Verify that all the CPUs are online before suspending"1857msgid "Verify that all the CPUs are online before suspending"
1858msgstr ""1858msgstr ""
18591859
1860#. description1860#. description
1861#: ../jobs/suspend.txt.in:251861#: ../jobs/suspend.txt.in:31
1862msgid ""1862msgid ""
1863"Dumps memory info to a file for comparison after suspend test has been run"1863"Dumps memory info to a file for comparison after suspend test has been run"
1864msgstr ""1864msgstr ""
18651865
1866#. description1866#. description
1867#: ../jobs/suspend.txt.in:431867#: ../jobs/suspend.txt.in:49
1868msgid ""1868msgid ""
1869"This test disconnects all connections and then connects to the wireless "1869"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."1870"interface. It then checks the connection to confirm it's working as expected."
1871msgstr ""1871msgstr ""
18721872
1873#. description1873#. description
1874#: ../jobs/suspend.txt.in:731874#: ../jobs/suspend.txt.in:83
1875msgid ""1875msgid ""
1876"PURPOSE:\n"1876"PURPOSE:\n"
1877" This test will check suspend and resume\n"1877" This test will check suspend and resume\n"
@@ -1887,34 +1887,34 @@
1887msgstr ""1887msgstr ""
18881888
1889#. description1889#. description
1890#: ../jobs/suspend.txt.in:861890#: ../jobs/suspend.txt.in:96
1891msgid "Test the network after resuming."1891msgid "Test the network after resuming."
1892msgstr ""1892msgstr ""
18931893
1894#. description1894#. description
1895#: ../jobs/suspend.txt.in:921895#: ../jobs/suspend.txt.in:102
1896msgid ""1896msgid ""
1897"Test to see that we have the same resolution after resuming as before."1897"Test to see that we have the same resolution after resuming as before."
1898msgstr ""1898msgstr ""
18991899
1900#. description1900#. description
1901#: ../jobs/suspend.txt.in:1011901#: ../jobs/suspend.txt.in:111
1902msgid ""1902msgid ""
1903"Verify that mixer settings after suspend are the same as before suspend."1903"Verify that mixer settings after suspend are the same as before suspend."
1904msgstr ""1904msgstr ""
19051905
1906#. description1906#. description
1907#: ../jobs/suspend.txt.in:1171907#: ../jobs/suspend.txt.in:127
1908msgid "Verify that all CPUs are online after resuming."1908msgid "Verify that all CPUs are online after resuming."
1909msgstr ""1909msgstr ""
19101910
1911#. description1911#. description
1912#: ../jobs/suspend.txt.in:1341912#: ../jobs/suspend.txt.in:144
1913msgid "Verify that all memory is available after resuming from suspend."1913msgid "Verify that all memory is available after resuming from suspend."
1914msgstr ""1914msgstr ""
19151915
1916#. description1916#. description
1917#: ../jobs/suspend.txt.in:1431917#: ../jobs/suspend.txt.in:153
1918msgid ""1918msgid ""
1919"PURPOSE:\n"1919"PURPOSE:\n"
1920" This test will check that the display is correct after suspend and "1920" This test will check that the display is correct after suspend and "
@@ -1924,7 +1924,7 @@
1924msgstr ""1924msgstr ""
19251925
1926#. description1926#. description
1927#: ../jobs/suspend.txt.in:1641927#: ../jobs/suspend.txt.in:174
1928msgid ""1928msgid ""
1929"This test checks that the wireless interface is working after suspending the "1929"This test checks that the wireless interface is working after suspending the "
1930"system. It disconnects all interfaces and then connects to the wireless "1930"system. It disconnects all interfaces and then connects to the wireless "
@@ -1932,21 +1932,21 @@
1932msgstr ""1932msgstr ""
19331933
1934#. description1934#. description
1935#: ../jobs/suspend.txt.in:1741935#: ../jobs/suspend.txt.in:186
1936msgid ""1936msgid ""
1937"This test grabs the hardware address of the bluetooth adapter after suspend "1937"This test grabs the hardware address of the bluetooth adapter after suspend "
1938"and compares it to the address grabbed before suspend."1938"and compares it to the address grabbed before suspend."
1939msgstr ""1939msgstr ""
19401940
1941#. description1941#. description
1942#: ../jobs/suspend.txt.in:1821942#: ../jobs/suspend.txt.in:196
1943msgid ""1943msgid ""
1944"This is an automated Bluetooth file transfer test. It sends an image to the "1944"This is an automated Bluetooth file transfer test. It sends an image to the "
1945"device specified by the BTDEVADDR environment variable."1945"device specified by the BTDEVADDR environment variable."
1946msgstr ""1946msgstr ""
19471947
1948#. description1948#. description
1949#: ../jobs/suspend.txt.in:1901949#: ../jobs/suspend.txt.in:206
1950msgid ""1950msgid ""
1951"PURPOSE:\n"1951"PURPOSE:\n"
1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "1952" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -1961,7 +1961,7 @@
1961msgstr ""1961msgstr ""
19621962
1963#. description1963#. description
1964#: ../jobs/suspend.txt.in:2041964#: ../jobs/suspend.txt.in:220
1965msgid ""1965msgid ""
1966"PURPOSE:\n"1966"PURPOSE:\n"
1967" This test will cycle through the detected display modes\n"1967" This test will cycle through the detected display modes\n"
@@ -1972,7 +1972,7 @@
1972msgstr ""1972msgstr ""
19731973
1974#. description1974#. description
1975#: ../jobs/suspend.txt.in:2161975#: ../jobs/suspend.txt.in:232
1976msgid ""1976msgid ""
1977"This test will check to make sure supported video modes work after a suspend "1977"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 "1978"and resume. This is done automatically by taking screenshots and uploading "
@@ -1980,7 +1980,7 @@
1980msgstr ""1980msgstr ""
19811981
1982#. description1982#. description
1983#: ../jobs/suspend.txt.in:2251983#: ../jobs/suspend.txt.in:241
1984msgid ""1984msgid ""
1985"This attaches screenshots from the "1985"This attaches screenshots from the "
1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."1986"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -2001,7 +2001,7 @@
2001msgstr ""2001msgstr ""
20022002
2003#. description2003#. description
2004#: ../jobs/suspend.txt.in:2482004#: ../jobs/suspend.txt.in:251
2005msgid ""2005msgid ""
2006"This will check to make sure that your audio device works properly after a "2006"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 "2007"suspend and resume. This may work fine with speakers and onboard "
@@ -2010,12 +2010,12 @@
2010msgstr ""2010msgstr ""
20112011
2012#. description2012#. description
2013#: ../jobs/suspend.txt.in:2552013#: ../jobs/suspend.txt.in:260
2014msgid "This is the automated version of suspend/suspend_advanced."2014msgid "This is the automated version of suspend/suspend_advanced."
2015msgstr ""2015msgstr ""
20162016
2017#. description2017#. description
2018#: ../jobs/suspend.txt.in:2642018#: ../jobs/suspend.txt.in:269
2019msgid ""2019msgid ""
2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "2020"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2021"configured server. During this process the system will suspend, then "2021"configured server. During this process the system will suspend, then "
@@ -2117,14 +2117,14 @@
2117msgstr ""2117msgstr ""
21182118
2119#. description2119#. description
2120#: ../jobs/usb.txt.in:962120#: ../jobs/usb.txt.in:80
2121msgid ""2121msgid ""
2122"This test is automated and requires that you plug in at least one usb "2122"This test is automated and requires that you plug in at least one usb "
2123"storage device before running checkbox."2123"storage device before running checkbox."
2124msgstr ""2124msgstr ""
21252125
2126#. description2126#. description
2127#: ../jobs/usb.txt.in:1022127#: ../jobs/usb.txt.in:119
2128msgid ""2128msgid ""
2129"PURPOSE:\n"2129"PURPOSE:\n"
2130" This test will check your USB connection.\n"2130" This test will check your USB connection.\n"
@@ -2738,17 +2738,17 @@
2738msgstr ""2738msgstr ""
27392739
2740#: ../checkbox_cli/cli_interface.py:312740#: ../checkbox_cli/cli_interface.py:31
2741#: ../checkbox_urwid/urwid_interface.py:6842741#: ../checkbox_urwid/urwid_interface.py:917
2742msgid "yes"2742msgid "yes"
2743msgstr ""2743msgstr ""
27442744
2745#: ../checkbox_cli/cli_interface.py:322745#: ../checkbox_cli/cli_interface.py:32
2746#: ../checkbox_urwid/urwid_interface.py:6852746#: ../checkbox_urwid/urwid_interface.py:918
2747msgid "no"2747msgid "no"
2748msgstr ""2748msgstr ""
27492749
2750#: ../checkbox_cli/cli_interface.py:332750#: ../checkbox_cli/cli_interface.py:33
2751#: ../checkbox_urwid/urwid_interface.py:6862751#: ../checkbox_urwid/urwid_interface.py:919
2752msgid "skip"2752msgid "skip"
2753msgstr ""2753msgstr ""
27542754
@@ -2756,73 +2756,75 @@
2756msgid "Press any key to continue..."2756msgid "Press any key to continue..."
2757msgstr ""2757msgstr ""
27582758
2759#: ../checkbox_cli/cli_interface.py:1352759#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
2760#, python-format2760#, python-format
2761msgid "Please choose (%s): "2761msgid "Please choose (%s): "
2762msgstr ""2762msgstr ""
27632763
2764#: ../checkbox_cli/cli_interface.py:3232764#: ../checkbox_cli/cli_interface.py:416
2765msgid "test"2765msgid "test"
2766msgstr ""2766msgstr ""
27672767
2768#: ../checkbox_cli/cli_interface.py:3472768#: ../checkbox_cli/cli_interface.py:440
2769msgid "test again"2769msgid "test again"
2770msgstr ""2770msgstr ""
27712771
2772#: ../checkbox_cli/cli_interface.py:3532772#: ../checkbox_cli/cli_interface.py:446
2773msgid "Please type here and press Ctrl-D when finished:\n"2773msgid "Please type here and press Ctrl-D when finished:\n"
2774msgstr ""2774msgstr ""
27752775
2776#: ../checkbox_urwid/urwid_interface.py:602776#: ../checkbox_urwid/urwid_interface.py:66
2777msgid "Checkbox System Testing"2777msgid "Checkbox System Testing"
2778msgstr ""2778msgstr ""
27792779
2780#: ../checkbox_urwid/urwid_interface.py:992780#: ../checkbox_urwid/urwid_interface.py:105
2781msgid "Continue"2781msgid "Continue"
2782msgstr ""2782msgstr ""
27832783
2784#: ../checkbox_urwid/urwid_interface.py:1922784#: ../checkbox_urwid/urwid_interface.py:198
2785#: ../checkbox_urwid/urwid_interface.py:2682785#: ../checkbox_urwid/urwid_interface.py:274
2786#: ../checkbox_urwid/urwid_interface.py:4162786#: ../checkbox_urwid/urwid_interface.py:425
2787#: ../checkbox_urwid/urwid_interface.py:547
2787msgid "Previous"2788msgid "Previous"
2788msgstr ""2789msgstr ""
27892790
2790#: ../checkbox_urwid/urwid_interface.py:1932791#: ../checkbox_urwid/urwid_interface.py:199
2791#: ../checkbox_urwid/urwid_interface.py:2692792#: ../checkbox_urwid/urwid_interface.py:275
2792#: ../checkbox_urwid/urwid_interface.py:4172793#: ../checkbox_urwid/urwid_interface.py:426
2794#: ../checkbox_urwid/urwid_interface.py:548
2793msgid "Next"2795msgid "Next"
2794msgstr ""2796msgstr ""
27952797
2796#. Show buttons2798#. Show buttons
2797#: ../checkbox_urwid/urwid_interface.py:4142799#: ../checkbox_urwid/urwid_interface.py:423
2798msgid "Select All"2800msgid "Select All"
2799msgstr ""2801msgstr ""
28002802
2801#: ../checkbox_urwid/urwid_interface.py:4152803#: ../checkbox_urwid/urwid_interface.py:424
2802msgid "Deselect All"2804msgid "Deselect All"
2803msgstr ""2805msgstr ""
28042806
2805#: ../checkbox_urwid/urwid_interface.py:7722807#: ../checkbox_urwid/urwid_interface.py:1013
2806msgid "Test"2808msgid "Test"
2807msgstr ""2809msgstr ""
28082810
2809#: ../checkbox_urwid/urwid_interface.py:7872811#: ../checkbox_urwid/urwid_interface.py:1028
2810msgid "Test Again"2812msgid "Test Again"
2811msgstr ""2813msgstr ""
28122814
2813#: ../checkbox_gtk/gtk_interface.py:5002815#: ../checkbox_gtk/gtk_interface.py:503
2814msgid "_Test Again"2816msgid "_Test Again"
2815msgstr ""2817msgstr ""
28162818
2817#: ../checkbox_gtk/gtk_interface.py:5482819#: ../checkbox_gtk/gtk_interface.py:551
2818msgid "Info"2820msgid "Info"
2819msgstr ""2821msgstr ""
28202822
2821#: ../checkbox_gtk/gtk_interface.py:5672823#: ../checkbox_gtk/gtk_interface.py:575
2822msgid "Error"2824msgid "Error"
2823msgstr ""2825msgstr ""
28242826
2825#: ../checkbox/user_interface.py:1362827#: ../checkbox/user_interface.py:137
2826#, python-format2828#, python-format
2827msgid "Unable to start web browser to open %s."2829msgid "Unable to start web browser to open %s."
2828msgstr ""2830msgstr ""
@@ -2870,7 +2872,7 @@
2870msgid "Gathering information from your system..."2872msgid "Gathering information from your system..."
2871msgstr ""2873msgstr ""
28722874
2873#: ../plugins/intro_prompt.py:292875#: ../plugins/intro_prompt.py:28
2874msgid ""2876msgid ""
2875"Welcome to System Testing!\n"2877"Welcome to System Testing!\n"
2876"\n"2878"\n"
@@ -2879,7 +2881,7 @@
2879"your system."2881"your system."
2880msgstr ""2882msgstr ""
28812883
2882#: ../plugins/intro_prompt.py:342884#: ../plugins/intro_prompt.py:33
2883msgid ""2885msgid ""
2884"\n"2886"\n"
2885"\n"2887"\n"
@@ -2933,15 +2935,15 @@
2933msgid "No e-mail address provided, not submitting to Launchpad."2935msgid "No e-mail address provided, not submitting to Launchpad."
2934msgstr ""2936msgstr ""
29352937
2936#: ../plugins/launchpad_prompt.py:922938#: ../plugins/launchpad_prompt.py:93
2937msgid "Email address must be in a proper format."2939msgid "Email address must be in a proper format."
2938msgstr ""2940msgstr ""
29392941
2940#: ../plugins/launchpad_prompt.py:982942#: ../plugins/launchpad_prompt.py:99
2941msgid "Exchanging information with the server..."2943msgid "Exchanging information with the server..."
2942msgstr ""2944msgstr ""
29432945
2944#: ../plugins/launchpad_report.py:1512946#: ../plugins/launchpad_report.py:167
2945msgid ""2947msgid ""
2946"The generated report seems to have validation errors,\n"2948"The generated report seems to have validation errors,\n"
2947"so it might not be processed by Launchpad."2949"so it might not be processed by Launchpad."
@@ -2951,7 +2953,7 @@
2951msgid "There is another checkbox running. Please close it first."2953msgid "There is another checkbox running. Please close it first."
2952msgstr ""2954msgstr ""
29532955
2954#: ../plugins/recover_prompt.py:542956#: ../plugins/recover_prompt.py:56
2955msgid ""2957msgid ""
2956"Checkbox did not finish completely.\n"2958"Checkbox did not finish completely.\n"
2957"Do you want to recover from the previous run?"2959"Do you want to recover from the previous run?"
@@ -2967,7 +2969,7 @@
2967msgstr ""2969msgstr ""
29682970
2969#. Get results2971#. Get results
2970#: ../plugins/suites_prompt.py:1082972#: ../plugins/suites_prompt.py:110
2971msgid "Select the suites to test"2973msgid "Select the suites to test"
2972msgstr ""2974msgstr ""
29732975
29742976
=== modified file 'po/ar.po'
--- po/ar.po 2012-02-15 00:11:21 +0000
+++ po/ar.po 2012-03-21 03:20:56 +0000
@@ -14,20 +14,20 @@
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-02-07 04:33+0000\n"17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"
18"X-Generator: Launchpad (build 14747)\n"18"X-Generator: Launchpad (build 14933)\n"
1919
20#. Title of the user interface20#. Title of the user interface
21#: ../gtk/checkbox-gtk.ui.h:3 ../gtk/checkbox-gtk.desktop.in.h:121#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
22#: ../plugins/user_interface.py:4022#: ../plugins/user_interface.py:42
23msgid "System Testing"23msgid "System Testing"
24msgstr "اختبار النظام"24msgstr "اختبار النظام"
2525
26#: ../gtk/checkbox-gtk.ui.h:626#: ../gtk/checkbox-gtk.ui.h:9
27msgid "_Previous"27msgid "_Previous"
28msgstr "_السابق"28msgstr "_السابق"
2929
30#: ../gtk/checkbox-gtk.ui.h:9 ../checkbox_gtk/gtk_interface.py:53530#: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:538
31msgid "_Test"31msgid "_Test"
32msgstr "_اختبر"32msgstr "_اختبر"
3333
@@ -35,15 +35,15 @@
35msgid "Usage: checkbox [OPTIONS]"35msgid "Usage: checkbox [OPTIONS]"
36msgstr "استخدام: checkbox [خيارات]"36msgstr "استخدام: checkbox [خيارات]"
3737
38#: ../checkbox_cli/cli_interface.py:32338#: ../checkbox_cli/cli_interface.py:416
39msgid "test"39msgid "test"
40msgstr "إختبار"40msgstr "إختبار"
4141
42#: ../checkbox_cli/cli_interface.py:34742#: ../checkbox_cli/cli_interface.py:440
43msgid "test again"43msgid "test again"
44msgstr "اختبر مجددا"44msgstr "اختبر مجددا"
4545
46#: ../checkbox_cli/cli_interface.py:35346#: ../checkbox_cli/cli_interface.py:446
47msgid "Please type here and press Ctrl-D when finished:\n"47msgid "Please type here and press Ctrl-D when finished:\n"
48msgstr "الرجاء الكتابة هنا و الضغط على Ctrl-D عند الانتهاء:\n"48msgstr "الرجاء الكتابة هنا و الضغط على Ctrl-D عند الانتهاء:\n"
4949
@@ -70,20 +70,20 @@
70#~ msgid "$output"70#~ msgid "$output"
71#~ msgstr "$مخرجات"71#~ msgstr "$مخرجات"
7272
73#: ../gtk/checkbox-gtk.ui.h:1 ../checkbox_cli/cli_interface.py:35173#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
74#: ../checkbox_urwid/urwid_interface.py:26174#: ../checkbox_urwid/urwid_interface.py:267
75msgid "Further information:"75msgid "Further information:"
76msgstr "مزيد من المعلومات:"76msgstr "مزيد من المعلومات:"
7777
78#: ../gtk/checkbox-gtk.ui.h:278#: ../gtk/checkbox-gtk.ui.h:10
79msgid "Ne_xt"79msgid "Ne_xt"
80msgstr "ال_تالي"80msgstr "ال_تالي"
8181
82#: ../gtk/checkbox-gtk.ui.h:482#: ../gtk/checkbox-gtk.ui.h:8
83msgid "_Deselect All"83msgid "_Deselect All"
84msgstr "_أزل تحديد الكل"84msgstr "_أزل تحديد الكل"
8585
86#: ../gtk/checkbox-gtk.ui.h:586#: ../gtk/checkbox-gtk.ui.h:4
87msgid "_No"87msgid "_No"
88msgstr "_لا"88msgstr "_لا"
8989
@@ -91,15 +91,15 @@
91msgid "_Select All"91msgid "_Select All"
92msgstr "_حدّد الكل"92msgstr "_حدّد الكل"
9393
94#: ../gtk/checkbox-gtk.ui.h:894#: ../gtk/checkbox-gtk.ui.h:5
95msgid "_Skip this test"95msgid "_Skip this test"
96msgstr "_تخطى هذا الاختبار"96msgstr "_تخطى هذا الاختبار"
9797
98#: ../gtk/checkbox-gtk.ui.h:1098#: ../gtk/checkbox-gtk.ui.h:3
99msgid "_Yes"99msgid "_Yes"
100msgstr "_نعم"100msgstr "_نعم"
101101
102#: ../gtk/checkbox-gtk.desktop.in.h:2102#: ../qt/checkbox-qt.desktop.in.h:2
103msgid "Test your system and submit results to the Ubuntu Friendly project"103msgid "Test your system and submit results to the Ubuntu Friendly project"
104msgstr ""104msgstr ""
105105
@@ -180,7 +180,7 @@
180msgstr ""180msgstr ""
181181
182#. description182#. description
183#: ../jobs/audio.txt.in:102183#: ../jobs/audio.txt.in:99
184msgid ""184msgid ""
185"Play back a sound on the default output and listen for it on the default "185"Play back a sound on the default output and listen for it on the default "
186"input. This makes the most sense when the output and input are directly "186"input. This makes the most sense when the output and input are directly "
@@ -203,13 +203,13 @@
203msgstr ""203msgstr ""
204204
205#. description205#. description
206#: ../jobs/bluetooth.txt.in:16206#: ../jobs/bluetooth.txt.in:8
207msgid ""207msgid ""
208"Automated test to store bluetooth device information in checkbox report"208"Automated test to store bluetooth device information in checkbox report"
209msgstr ""209msgstr ""
210210
211#. description211#. description
212#: ../jobs/bluetooth.txt.in:22212#: ../jobs/bluetooth.txt.in:14
213msgid ""213msgid ""
214"PURPOSE:\n"214"PURPOSE:\n"
215" This test will check that bluetooth connection works correctly\n"215" This test will check that bluetooth connection works correctly\n"
@@ -228,7 +228,7 @@
228msgstr ""228msgstr ""
229229
230#. description230#. description
231#: ../jobs/bluetooth.txt.in:41231#: ../jobs/bluetooth.txt.in:33
232msgid ""232msgid ""
233"PURPOSE:\n"233"PURPOSE:\n"
234" This test will check that you can transfer information through a "234" This test will check that you can transfer information through a "
@@ -242,7 +242,7 @@
242msgstr ""242msgstr ""
243243
244#. description244#. description
245#: ../jobs/bluetooth.txt.in:55245#: ../jobs/bluetooth.txt.in:47
246msgid ""246msgid ""
247"PURPOSE:\n"247"PURPOSE:\n"
248" This test will check that you can record and hear audio using a "248" This test will check that you can record and hear audio using a "
@@ -261,7 +261,7 @@
261msgstr ""261msgstr ""
262262
263#. description263#. description
264#: ../jobs/bluetooth.txt.in:73264#: ../jobs/bluetooth.txt.in:65
265msgid ""265msgid ""
266"PURPOSE:\n"266"PURPOSE:\n"
267" This test will check that you can use a bluetooth keyboard\n"267" This test will check that you can use a bluetooth keyboard\n"
@@ -277,7 +277,7 @@
277msgstr ""277msgstr ""
278278
279#. description279#. description
280#: ../jobs/bluetooth.txt.in:89280#: ../jobs/bluetooth.txt.in:81
281msgid ""281msgid ""
282"PURPOSE:\n"282"PURPOSE:\n"
283" This test will check that you can use a bluetooth mouse\n"283" This test will check that you can use a bluetooth mouse\n"
@@ -449,22 +449,22 @@
449msgstr ""449msgstr ""
450450
451#. description451#. description
452#: ../jobs/disk.txt.in:26452#: ../jobs/disk.txt.in:40
453msgid "SMART test"453msgid "SMART test"
454msgstr ""454msgstr ""
455455
456#. description456#. description
457#: ../jobs/disk.txt.in:42457#: ../jobs/disk.txt.in:56
458msgid "Maximum disk space used during a default installation test"458msgid "Maximum disk space used during a default installation test"
459msgstr ""459msgstr ""
460460
461#. description461#. description
462#: ../jobs/disk.txt.in:57462#: ../jobs/disk.txt.in:71
463msgid "Verify system storage performs at or above baseline performance"463msgid "Verify system storage performs at or above baseline performance"
464msgstr ""464msgstr ""
465465
466#. description466#. description
467#: ../jobs/disk.txt.in:74467#: ../jobs/disk.txt.in:88
468msgid ""468msgid ""
469"Verify that storage devices, such as Fibre Channel and RAID can be detected "469"Verify that storage devices, such as Fibre Channel and RAID can be detected "
470"and perform under stress."470"and perform under stress."
@@ -640,7 +640,7 @@
640msgstr ""640msgstr ""
641641
642#. description642#. description
643#: ../jobs/graphics.txt.in:122643#: ../jobs/graphics.txt.in:113
644msgid ""644msgid ""
645"PURPOSE:\n"645"PURPOSE:\n"
646" This test cycles through the detected video modes\n"646" This test cycles through the detected video modes\n"
@@ -656,7 +656,7 @@
656msgstr "تأكد من أن عتاد جهازك قادر على تشغيل كومبيز."656msgstr "تأكد من أن عتاد جهازك قادر على تشغيل كومبيز."
657657
658#. description658#. description
659#: ../jobs/graphics.txt.in:140659#: ../jobs/graphics.txt.in:139
660msgid ""660msgid ""
661"PURPOSE:\n"661"PURPOSE:\n"
662" This test tests the basic 3D capabilities of your video card\n"662" This test tests the basic 3D capabilities of your video card\n"
@@ -924,187 +924,187 @@
924msgstr "اختبارات الصوت"924msgstr "اختبارات الصوت"
925925
926#. description926#. description
927#: ../jobs/local.txt.in:8927#: ../jobs/local.txt.in:10
928msgid "Autotest Suite tests"928msgid "Autotest Suite tests"
929msgstr ""929msgstr ""
930930
931#. description931#. description
932#: ../jobs/local.txt.in:13932#: ../jobs/local.txt.in:17
933msgid "Bluetooth tests"933msgid "Bluetooth tests"
934msgstr ""934msgstr ""
935935
936#. description936#. description
937#: ../jobs/local.txt.in:18937#: ../jobs/local.txt.in:24
938msgid "Camera tests"938msgid "Camera tests"
939msgstr ""939msgstr ""
940940
941#. description941#. description
942#: ../jobs/local.txt.in:23942#: ../jobs/local.txt.in:31
943msgid "Codec tests"943msgid "Codec tests"
944msgstr ""944msgstr ""
945945
946#. description946#. description
947#: ../jobs/local.txt.in:28947#: ../jobs/local.txt.in:38
948msgid "CPU tests"948msgid "CPU tests"
949msgstr ""949msgstr ""
950950
951#. description951#. description
952#: ../jobs/local.txt.in:33952#: ../jobs/local.txt.in:45
953msgid "System Daemon tests"953msgid "System Daemon tests"
954msgstr ""954msgstr ""
955955
956#. description956#. description
957#: ../jobs/local.txt.in:38957#: ../jobs/local.txt.in:52
958msgid "Disk tests"958msgid "Disk tests"
959msgstr "اختبارات القرص"959msgstr "اختبارات القرص"
960960
961#. description961#. description
962#: ../jobs/local.txt.in:43962#: ../jobs/local.txt.in:59
963msgid "Fingerprint reader tests"963msgid "Fingerprint reader tests"
964msgstr "اختبارات قارئ البصمة"964msgstr "اختبارات قارئ البصمة"
965965
966#. description966#. description
967#: ../jobs/local.txt.in:48967#: ../jobs/local.txt.in:66
968msgid "Firewire disk tests"968msgid "Firewire disk tests"
969msgstr "اختبارات قرص السلك الناري"969msgstr "اختبارات قرص السلك الناري"
970970
971#. description971#. description
972#: ../jobs/local.txt.in:53972#: ../jobs/local.txt.in:73
973msgid "Floppy disk tests"973msgid "Floppy disk tests"
974msgstr ""974msgstr ""
975975
976#. description976#. description
977#: ../jobs/local.txt.in:58977#: ../jobs/local.txt.in:80
978msgid "Graphics tests"978msgid "Graphics tests"
979msgstr ""979msgstr ""
980980
981#. description981#. description
982#: ../jobs/local.txt.in:63982#: ../jobs/local.txt.in:87
983msgid "Hibernation tests"983msgid "Hibernation tests"
984msgstr ""984msgstr ""
985985
986#. description986#. description
987#: ../jobs/local.txt.in:68987#: ../jobs/local.txt.in:94
988msgid "Informational tests"988msgid "Informational tests"
989msgstr ""989msgstr ""
990990
991#. description991#. description
992#: ../jobs/local.txt.in:73992#: ../jobs/local.txt.in:101
993msgid "Input Devices tests"993msgid "Input Devices tests"
994msgstr ""994msgstr ""
995995
996#. description996#. description
997#: ../jobs/local.txt.in:78997#: ../jobs/local.txt.in:108
998msgid "Software Installation tests"998msgid "Software Installation tests"
999msgstr ""999msgstr ""
10001000
1001#. description1001#. description
1002#: ../jobs/local.txt.in:831002#: ../jobs/local.txt.in:115
1003msgid "Hotkey tests"1003msgid "Hotkey tests"
1004msgstr ""1004msgstr ""
10051005
1006#. description1006#. description
1007#: ../jobs/local.txt.in:881007#: ../jobs/local.txt.in:122
1008msgid "Linux Test Project tests"1008msgid "Linux Test Project tests"
1009msgstr ""1009msgstr ""
10101010
1011#. description1011#. description
1012#: ../jobs/local.txt.in:931012#: ../jobs/local.txt.in:129
1013msgid "Mago Automated Desktop Testing"1013msgid "Mago Automated Desktop Testing"
1014msgstr ""1014msgstr ""
10151015
1016#. description1016#. description
1017#: ../jobs/local.txt.in:981017#: ../jobs/local.txt.in:136
1018msgid "Media Card tests"1018msgid "Media Card tests"
1019msgstr ""1019msgstr ""
10201020
1021#. description1021#. description
1022#: ../jobs/local.txt.in:1031022#: ../jobs/local.txt.in:143
1023msgid "Memory tests"1023msgid "Memory tests"
1024msgstr ""1024msgstr ""
10251025
1026#. description1026#. description
1027#: ../jobs/local.txt.in:1081027#: ../jobs/local.txt.in:150
1028msgid "Miscellaneous tests"1028msgid "Miscellaneous tests"
1029msgstr ""1029msgstr ""
10301030
1031#. description1031#. description
1032#: ../jobs/local.txt.in:1131032#: ../jobs/local.txt.in:157
1033msgid "Monitor tests"1033msgid "Monitor tests"
1034msgstr "اختبارات الشاشة"1034msgstr "اختبارات الشاشة"
10351035
1036#. description1036#. description
1037#: ../jobs/local.txt.in:1181037#: ../jobs/local.txt.in:164
1038msgid "Networking tests"1038msgid "Networking tests"
1039msgstr ""1039msgstr ""
10401040
1041#. description1041#. description
1042#: ../jobs/local.txt.in:1231042#: ../jobs/local.txt.in:171
1043msgid "Optical Drive tests"1043msgid "Optical Drive tests"
1044msgstr ""1044msgstr ""
10451045
1046#. description1046#. description
1047#: ../jobs/local.txt.in:1281047#: ../jobs/local.txt.in:178
1048msgid "Panel Clock Verification tests"1048msgid "Panel Clock Verification tests"
1049msgstr ""1049msgstr ""
10501050
1051#. description1051#. description
1052#: ../jobs/local.txt.in:1331052#: ../jobs/local.txt.in:185
1053msgid "PCMCIA/PCIX Card tests"1053msgid "PCMCIA/PCIX Card tests"
1054msgstr ""1054msgstr ""
10551055
1056#. description1056#. description
1057#: ../jobs/local.txt.in:1381057#: ../jobs/local.txt.in:192
1058msgid "Peripheral tests"1058msgid "Peripheral tests"
1059msgstr "اختبارات الملحقات"1059msgstr "اختبارات الملحقات"
10601060
1061#. description1061#. description
1062#: ../jobs/local.txt.in:1431062#: ../jobs/local.txt.in:199
1063msgid "Phoronix Test Suite tests"1063msgid "Phoronix Test Suite tests"
1064msgstr ""1064msgstr ""
10651065
1066#. description1066#. description
1067#: ../jobs/local.txt.in:1481067#: ../jobs/local.txt.in:206
1068msgid "Power Management tests"1068msgid "Power Management tests"
1069msgstr ""1069msgstr ""
10701070
1071#. description1071#. description
1072#: ../jobs/local.txt.in:1531072#: ../jobs/local.txt.in:213
1073msgid "QA Regression tests"1073msgid "QA Regression tests"
1074msgstr ""1074msgstr ""
10751075
1076#. description1076#. description
1077#: ../jobs/local.txt.in:1581077#: ../jobs/local.txt.in:220
1078msgid "Server Services checks"1078msgid "Server Services checks"
1079msgstr ""1079msgstr ""
10801080
1081#. description1081#. description
1082#: ../jobs/local.txt.in:1631082#: ../jobs/local.txt.in:227
1083msgid "Suspend tests"1083msgid "Suspend tests"
1084msgstr ""1084msgstr ""
10851085
1086#. description1086#. description
1087#: ../jobs/local.txt.in:1681087#: ../jobs/local.txt.in:234
1088msgid "Unity tests"1088msgid "Unity tests"
1089msgstr ""1089msgstr ""
10901090
1091#. description1091#. description
1092#: ../jobs/local.txt.in:1731092#: ../jobs/local.txt.in:241
1093msgid "USB tests"1093msgid "USB tests"
1094msgstr ""1094msgstr ""
10951095
1096#. description1096#. description
1097#: ../jobs/local.txt.in:1781097#: ../jobs/local.txt.in:248
1098msgid "User Applications"1098msgid "User Applications"
1099msgstr "تطبيقات المستخدم"1099msgstr "تطبيقات المستخدم"
11001100
1101#. description1101#. description
1102#: ../jobs/local.txt.in:1831102#: ../jobs/local.txt.in:255
1103msgid "Wireless networking tests"1103msgid "Wireless networking tests"
1104msgstr ""1104msgstr ""
11051105
1106#. description1106#. description
1107#: ../jobs/local.txt.in:1881107#: ../jobs/local.txt.in:262
1108msgid "Stress tests"1108msgid "Stress tests"
1109msgstr ""1109msgstr ""
11101110
@@ -1311,7 +1311,7 @@
1311msgstr ""1311msgstr ""
13121312
1313#. description1313#. description
1314#: ../jobs/memory.txt.in:191314#: ../jobs/memory.txt.in:14
1315msgid "Test and exercise memory."1315msgid "Test and exercise memory."
1316msgstr ""1316msgstr ""
13171317
@@ -1335,21 +1335,21 @@
1335msgstr ""1335msgstr ""
13361336
1337#. description1337#. description
1338#: ../jobs/miscellanea.txt.in:301338#: ../jobs/miscellanea.txt.in:29
1339msgid ""1339msgid ""
1340"ipmitool is required for ipmi testing. This checks for ipmitool and installs "1340"ipmitool is required for ipmi testing. This checks for ipmitool and installs "
1341"it if not available."1341"it if not available."
1342msgstr ""1342msgstr ""
13431343
1344#. description1344#. description
1345#: ../jobs/miscellanea.txt.in:371345#: ../jobs/miscellanea.txt.in:31
1346msgid ""1346msgid ""
1347"This will run some basic connectivity tests against a BMC, verifying that "1347"This will run some basic connectivity tests against a BMC, verifying that "
1348"IPMI works."1348"IPMI works."
1349msgstr ""1349msgstr ""
13501350
1351#. description1351#. description
1352#: ../jobs/miscellanea.txt.in:431352#: ../jobs/miscellanea.txt.in:37
1353msgid ""1353msgid ""
1354" Determine if we need to run tests specific to portable computers that may "1354" Determine if we need to run tests specific to portable computers that may "
1355"not apply to desktops."1355"not apply to desktops."
@@ -1367,7 +1367,7 @@
1367msgstr ""1367msgstr ""
13681368
1369#. description1369#. description
1370#: ../jobs/monitor.txt.in:31370#: ../jobs/monitor.txt.in:4
1371msgid ""1371msgid ""
1372"PURPOSE:\n"1372"PURPOSE:\n"
1373" This test will check your VGA port. Skip if your system does not have a "1373" This test will check your VGA port. Skip if your system does not have a "
@@ -1380,7 +1380,7 @@
1380msgstr ""1380msgstr ""
13811381
1382#. description1382#. description
1383#: ../jobs/monitor.txt.in:131383#: ../jobs/monitor.txt.in:15
1384msgid ""1384msgid ""
1385"PURPOSE:\n"1385"PURPOSE:\n"
1386" This test will check your DVI port. Skip if your system does not have a "1386" This test will check your DVI port. Skip if your system does not have a "
@@ -1393,7 +1393,7 @@
1393msgstr ""1393msgstr ""
13941394
1395#. description1395#. description
1396#: ../jobs/monitor.txt.in:231396#: ../jobs/monitor.txt.in:26
1397msgid ""1397msgid ""
1398"PURPOSE:\n"1398"PURPOSE:\n"
1399" This test will check your DisplayPort port. Skip if your system does not "1399" This test will check your DisplayPort port. Skip if your system does not "
@@ -1406,7 +1406,7 @@
1406msgstr ""1406msgstr ""
14071407
1408#. description1408#. description
1409#: ../jobs/monitor.txt.in:331409#: ../jobs/monitor.txt.in:37
1410msgid ""1410msgid ""
1411"PURPOSE:\n"1411"PURPOSE:\n"
1412" This test will check your HDMI port. Skip if your system does not have a "1412" This test will check your HDMI port. Skip if your system does not have a "
@@ -1419,7 +1419,7 @@
1419msgstr ""1419msgstr ""
14201420
1421#. description1421#. description
1422#: ../jobs/monitor.txt.in:431422#: ../jobs/monitor.txt.in:48
1423msgid ""1423msgid ""
1424"PURPOSE:\n"1424"PURPOSE:\n"
1425" This test will check your S-VIDEO port. Skip if your system does not "1425" This test will check your S-VIDEO port. Skip if your system does not "
@@ -1432,7 +1432,7 @@
1432msgstr ""1432msgstr ""
14331433
1434#. description1434#. description
1435#: ../jobs/monitor.txt.in:531435#: ../jobs/monitor.txt.in:59
1436msgid ""1436msgid ""
1437"PURPOSE:\n"1437"PURPOSE:\n"
1438" This test will check your RCA port. Skip if your system does not have a "1438" This test will check your RCA port. Skip if your system does not have a "
@@ -1445,7 +1445,7 @@
1445msgstr ""1445msgstr ""
14461446
1447#. description1447#. description
1448#: ../jobs/monitor.txt.in:641448#: ../jobs/monitor.txt.in:70
1449msgid ""1449msgid ""
1450"PURPOSE:\n"1450"PURPOSE:\n"
1451" This test will check your monitor power saving capabilities\n"1451" This test will check your monitor power saving capabilities\n"
@@ -1472,7 +1472,7 @@
1472msgstr ""1472msgstr ""
14731473
1474#. description1474#. description
1475#: ../jobs/networking.txt.in:361475#: ../jobs/networking.txt.in:46
1476msgid ""1476msgid ""
1477"PURPOSE:\n"1477"PURPOSE:\n"
1478" This test will check your wired connection\n"1478" This test will check your wired connection\n"
@@ -1486,7 +1486,7 @@
1486msgstr ""1486msgstr ""
14871487
1488#. description1488#. description
1489#: ../jobs/networking.txt.in:491489#: ../jobs/networking.txt.in:59
1490msgid ""1490msgid ""
1491"PURPOSE:\n"1491"PURPOSE:\n"
1492" This test will check that a DSL modem can be configured and connected.\n"1492" This test will check that a DSL modem can be configured and connected.\n"
@@ -1504,44 +1504,44 @@
1504msgstr ""1504msgstr ""
15051505
1506#. description1506#. description
1507#: ../jobs/networking.txt.in:661507#: ../jobs/networking.txt.in:76
1508msgid ""1508msgid ""
1509"Automated test case to verify availability of some system on the network "1509"Automated test case to verify availability of some system on the network "
1510"using ICMP ECHO packets."1510"using ICMP ECHO packets."
1511msgstr ""1511msgstr ""
15121512
1513#. description1513#. description
1514#: ../jobs/networking.txt.in:73 ../jobs/peripheral.txt.in:371514#: ../jobs/networking.txt.in:83 ../jobs/peripheral.txt.in:37
1515msgid ""1515msgid ""
1516"Automated test case to make sure that it's possible to download files "1516"Automated test case to make sure that it's possible to download files "
1517"through HTTP"1517"through HTTP"
1518msgstr ""1518msgstr ""
15191519
1520#. description1520#. description
1521#: ../jobs/networking.txt.in:811521#: ../jobs/networking.txt.in:91
1522msgid "Test to see if we can sync local clock to an NTP server"1522msgid "Test to see if we can sync local clock to an NTP server"
1523msgstr ""1523msgstr ""
15241524
1525#. description1525#. description
1526#: ../jobs/networking.txt.in:871526#: ../jobs/networking.txt.in:97
1527msgid ""1527msgid ""
1528"Verify that an installation of checkbox-server on the network can be reached "1528"Verify that an installation of checkbox-server on the network can be reached "
1529"over SSH."1529"over SSH."
1530msgstr ""1530msgstr ""
15311531
1532#. description1532#. description
1533#: ../jobs/networking.txt.in:931533#: ../jobs/networking.txt.in:103
1534msgid "Try to enable a remote printer on the network and print a test page."1534msgid "Try to enable a remote printer on the network and print a test page."
1535msgstr ""1535msgstr ""
15361536
1537#. description1537#. description
1538#: ../jobs/networking.txt.in:981538#: ../jobs/networking.txt.in:108
1539msgid ""1539msgid ""
1540"Automated test to walk multiple network cards and test each one in sequence."1540"Automated test to walk multiple network cards and test each one in sequence."
1541msgstr ""1541msgstr ""
15421542
1543#. description1543#. description
1544#: ../jobs/networking.txt.in:1181544#: ../jobs/networking.txt.in:128
1545msgid "Test to measure the network bandwidth"1545msgid "Test to measure the network bandwidth"
1546msgstr ""1546msgstr ""
15471547
@@ -1551,12 +1551,12 @@
1551msgstr ""1551msgstr ""
15521552
1553#. description1553#. description
1554#: ../jobs/optical.txt.in:131554#: ../jobs/optical.txt.in:18
1555msgid "Optical Storage device read tests"1555msgid "Optical Storage device read tests"
1556msgstr ""1556msgstr ""
15571557
1558#. description1558#. description
1559#: ../jobs/optical.txt.in:361559#: ../jobs/optical.txt.in:35
1560msgid ""1560msgid ""
1561"PURPOSE:\n"1561"PURPOSE:\n"
1562" This test will check your system's CDROM writing capabilities. If your "1562" This test will check your system's CDROM writing capabilities. If your "
@@ -1571,7 +1571,7 @@
1571msgstr ""1571msgstr ""
15721572
1573#. description1573#. description
1574#: ../jobs/optical.txt.in:491574#: ../jobs/optical.txt.in:47
1575msgid ""1575msgid ""
1576"PURPOSE:\n"1576"PURPOSE:\n"
1577" This test will check your CD audio playback capabilities\n"1577" This test will check your CD audio playback capabilities\n"
@@ -1592,7 +1592,7 @@
1592msgstr ""1592msgstr ""
15931593
1594#. description1594#. description
1595#: ../jobs/optical.txt.in:691595#: ../jobs/optical.txt.in:68
1596msgid ""1596msgid ""
1597"PURPOSE:\n"1597"PURPOSE:\n"
1598" This test will check your system's DVD writing capabilities. If your "1598" This test will check your system's DVD writing capabilities. If your "
@@ -1607,7 +1607,7 @@
1607msgstr ""1607msgstr ""
16081608
1609#. description1609#. description
1610#: ../jobs/optical.txt.in:821610#: ../jobs/optical.txt.in:84
1611msgid ""1611msgid ""
1612"PURPOSE:\n"1612"PURPOSE:\n"
1613" This test will check your DVD movie playback capabilities. Note that "1613" This test will check your DVD movie playback capabilities. Note that "
@@ -1626,7 +1626,7 @@
1626msgstr ""1626msgstr ""
16271627
1628#. description1628#. description
1629#: ../jobs/optical.txt.in:1001629#: ../jobs/optical.txt.in:102
1630msgid ""1630msgid ""
1631"PURPOSE:\n"1631"PURPOSE:\n"
1632" This test will check your DVD playback capabilities\n"1632" This test will check your DVD playback capabilities\n"
@@ -1882,35 +1882,35 @@
1882msgstr ""1882msgstr ""
18831883
1884#. description1884#. description
1885#: ../jobs/suspend.txt.in:31885#: ../jobs/suspend.txt.in:9
1886msgid "Record the current resolution before suspending."1886msgid "Record the current resolution before suspending."
1887msgstr "سَجِّل أبعاد حيِّز العرض قبل التعليق."1887msgstr "سَجِّل أبعاد حيِّز العرض قبل التعليق."
18881888
1889#. description1889#. description
1890#: ../jobs/suspend.txt.in:111890#: ../jobs/suspend.txt.in:17
1891msgid "Record mixer settings before suspending."1891msgid "Record mixer settings before suspending."
1892msgstr ""1892msgstr ""
18931893
1894#. description1894#. description
1895#: ../jobs/suspend.txt.in:181895#: ../jobs/suspend.txt.in:24
1896msgid "Verify that all the CPUs are online before suspending"1896msgid "Verify that all the CPUs are online before suspending"
1897msgstr ""1897msgstr ""
18981898
1899#. description1899#. description
1900#: ../jobs/suspend.txt.in:251900#: ../jobs/suspend.txt.in:31
1901msgid ""1901msgid ""
1902"Dumps memory info to a file for comparison after suspend test has been run"1902"Dumps memory info to a file for comparison after suspend test has been run"
1903msgstr ""1903msgstr ""
19041904
1905#. description1905#. description
1906#: ../jobs/suspend.txt.in:431906#: ../jobs/suspend.txt.in:49
1907msgid ""1907msgid ""
1908"This test disconnects all connections and then connects to the wireless "1908"This test disconnects all connections and then connects to the wireless "
1909"interface. It then checks the connection to confirm it's working as expected."1909"interface. It then checks the connection to confirm it's working as expected."
1910msgstr ""1910msgstr ""
19111911
1912#. description1912#. description
1913#: ../jobs/suspend.txt.in:731913#: ../jobs/suspend.txt.in:83
1914msgid ""1914msgid ""
1915"PURPOSE:\n"1915"PURPOSE:\n"
1916" This test will check suspend and resume\n"1916" This test will check suspend and resume\n"
@@ -1926,34 +1926,34 @@
1926msgstr ""1926msgstr ""
19271927
1928#. description1928#. description
1929#: ../jobs/suspend.txt.in:861929#: ../jobs/suspend.txt.in:96
1930msgid "Test the network after resuming."1930msgid "Test the network after resuming."
1931msgstr ""1931msgstr ""
19321932
1933#. description1933#. description
1934#: ../jobs/suspend.txt.in:921934#: ../jobs/suspend.txt.in:102
1935msgid ""1935msgid ""
1936"Test to see that we have the same resolution after resuming as before."1936"Test to see that we have the same resolution after resuming as before."
1937msgstr ""1937msgstr ""
19381938
1939#. description1939#. description
1940#: ../jobs/suspend.txt.in:1011940#: ../jobs/suspend.txt.in:111
1941msgid ""1941msgid ""
1942"Verify that mixer settings after suspend are the same as before suspend."1942"Verify that mixer settings after suspend are the same as before suspend."
1943msgstr ""1943msgstr ""
19441944
1945#. description1945#. description
1946#: ../jobs/suspend.txt.in:1171946#: ../jobs/suspend.txt.in:127
1947msgid "Verify that all CPUs are online after resuming."1947msgid "Verify that all CPUs are online after resuming."
1948msgstr ""1948msgstr ""
19491949
1950#. description1950#. description
1951#: ../jobs/suspend.txt.in:1341951#: ../jobs/suspend.txt.in:144
1952msgid "Verify that all memory is available after resuming from suspend."1952msgid "Verify that all memory is available after resuming from suspend."
1953msgstr ""1953msgstr ""
19541954
1955#. description1955#. description
1956#: ../jobs/suspend.txt.in:1431956#: ../jobs/suspend.txt.in:153
1957msgid ""1957msgid ""
1958"PURPOSE:\n"1958"PURPOSE:\n"
1959" This test will check that the display is correct after suspend and "1959" This test will check that the display is correct after suspend and "
@@ -1963,7 +1963,7 @@
1963msgstr ""1963msgstr ""
19641964
1965#. description1965#. description
1966#: ../jobs/suspend.txt.in:1641966#: ../jobs/suspend.txt.in:174
1967msgid ""1967msgid ""
1968"This test checks that the wireless interface is working after suspending the "1968"This test checks that the wireless interface is working after suspending the "
1969"system. It disconnects all interfaces and then connects to the wireless "1969"system. It disconnects all interfaces and then connects to the wireless "
@@ -1971,21 +1971,21 @@
1971msgstr ""1971msgstr ""
19721972
1973#. description1973#. description
1974#: ../jobs/suspend.txt.in:1741974#: ../jobs/suspend.txt.in:186
1975msgid ""1975msgid ""
1976"This test grabs the hardware address of the bluetooth adapter after suspend "1976"This test grabs the hardware address of the bluetooth adapter after suspend "
1977"and compares it to the address grabbed before suspend."1977"and compares it to the address grabbed before suspend."
1978msgstr ""1978msgstr ""
19791979
1980#. description1980#. description
1981#: ../jobs/suspend.txt.in:1821981#: ../jobs/suspend.txt.in:196
1982msgid ""1982msgid ""
1983"This is an automated Bluetooth file transfer test. It sends an image to the "1983"This is an automated Bluetooth file transfer test. It sends an image to the "
1984"device specified by the BTDEVADDR environment variable."1984"device specified by the BTDEVADDR environment variable."
1985msgstr ""1985msgstr ""
19861986
1987#. description1987#. description
1988#: ../jobs/suspend.txt.in:1901988#: ../jobs/suspend.txt.in:206
1989msgid ""1989msgid ""
1990"PURPOSE:\n"1990"PURPOSE:\n"
1991" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "1991" This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2000,7 +2000,7 @@
2000msgstr ""2000msgstr ""
20012001
2002#. description2002#. description
2003#: ../jobs/suspend.txt.in:2042003#: ../jobs/suspend.txt.in:220
2004msgid ""2004msgid ""
2005"PURPOSE:\n"2005"PURPOSE:\n"
2006" This test will cycle through the detected display modes\n"2006" This test will cycle through the detected display modes\n"
@@ -2011,7 +2011,7 @@
2011msgstr ""2011msgstr ""
20122012
2013#. description2013#. description
2014#: ../jobs/suspend.txt.in:2162014#: ../jobs/suspend.txt.in:232
2015msgid ""2015msgid ""
2016"This test will check to make sure supported video modes work after a suspend "2016"This test will check to make sure supported video modes work after a suspend "
2017"and resume. This is done automatically by taking screenshots and uploading "2017"and resume. This is done automatically by taking screenshots and uploading "
@@ -2019,7 +2019,7 @@
2019msgstr ""2019msgstr ""
20202020
2021#. description2021#. description
2022#: ../jobs/suspend.txt.in:2252022#: ../jobs/suspend.txt.in:241
2023msgid ""2023msgid ""
2024"This attaches screenshots from the "2024"This attaches screenshots from the "
2025"suspend/cycle_resolutions_after_suspend_auto test to the results submission."2025"suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -2040,7 +2040,7 @@
2040msgstr ""2040msgstr ""
20412041
2042#. description2042#. description
2043#: ../jobs/suspend.txt.in:2482043#: ../jobs/suspend.txt.in:251
2044msgid ""2044msgid ""
2045"This will check to make sure that your audio device works properly after a "2045"This will check to make sure that your audio device works properly after a "
2046"suspend and resume. This may work fine with speakers and onboard "2046"suspend and resume. This may work fine with speakers and onboard "
@@ -2049,12 +2049,12 @@
2049msgstr ""2049msgstr ""
20502050
2051#. description2051#. description
2052#: ../jobs/suspend.txt.in:2552052#: ../jobs/suspend.txt.in:260
2053msgid "This is the automated version of suspend/suspend_advanced."2053msgid "This is the automated version of suspend/suspend_advanced."
2054msgstr ""2054msgstr ""
20552055
2056#. description2056#. description
2057#: ../jobs/suspend.txt.in:2642057#: ../jobs/suspend.txt.in:269
2058msgid ""2058msgid ""
2059"This automatically tests Wake-on-LAN capability with the aid of a suitably "2059"This automatically tests Wake-on-LAN capability with the aid of a suitably "
2060"configured server. During this process the system will suspend, then "2060"configured server. During this process the system will suspend, then "
@@ -2156,14 +2156,14 @@
2156msgstr ""2156msgstr ""
21572157
2158#. description2158#. description
2159#: ../jobs/usb.txt.in:962159#: ../jobs/usb.txt.in:80
2160msgid ""2160msgid ""
2161"This test is automated and requires that you plug in at least one usb "2161"This test is automated and requires that you plug in at least one usb "
2162"storage device before running checkbox."2162"storage device before running checkbox."
2163msgstr ""2163msgstr ""
21642164
2165#. description2165#. description
2166#: ../jobs/usb.txt.in:1022166#: ../jobs/usb.txt.in:119
2167msgid ""2167msgid ""
2168"PURPOSE:\n"2168"PURPOSE:\n"
2169" This test will check your USB connection.\n"2169" This test will check your USB connection.\n"
@@ -2773,17 +2773,17 @@
2773msgstr "إشارة مجهولة"2773msgstr "إشارة مجهولة"
27742774
2775#: ../checkbox_cli/cli_interface.py:312775#: ../checkbox_cli/cli_interface.py:31
2776#: ../checkbox_urwid/urwid_interface.py:6842776#: ../checkbox_urwid/urwid_interface.py:917
2777msgid "yes"2777msgid "yes"
2778msgstr "نعم"2778msgstr "نعم"
27792779
2780#: ../checkbox_cli/cli_interface.py:322780#: ../checkbox_cli/cli_interface.py:32
2781#: ../checkbox_urwid/urwid_interface.py:6852781#: ../checkbox_urwid/urwid_interface.py:918
2782msgid "no"2782msgid "no"
2783msgstr "لا"2783msgstr "لا"
27842784
2785#: ../checkbox_cli/cli_interface.py:332785#: ../checkbox_cli/cli_interface.py:33
2786#: ../checkbox_urwid/urwid_interface.py:6862786#: ../checkbox_urwid/urwid_interface.py:919
2787msgid "skip"2787msgid "skip"
2788msgstr "تخطى"2788msgstr "تخطى"
27892789
@@ -2791,61 +2791,63 @@
2791msgid "Press any key to continue..."2791msgid "Press any key to continue..."
2792msgstr "اضغط على أي مفتاح للمواصلة..."2792msgstr "اضغط على أي مفتاح للمواصلة..."
27932793
2794#: ../checkbox_cli/cli_interface.py:1352794#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
2795#, python-format2795#, python-format
2796msgid "Please choose (%s): "2796msgid "Please choose (%s): "
2797msgstr "من فضلك اختر (%s): "2797msgstr "من فضلك اختر (%s): "
27982798
2799#: ../checkbox_urwid/urwid_interface.py:602799#: ../checkbox_urwid/urwid_interface.py:66
2800msgid "Checkbox System Testing"2800msgid "Checkbox System Testing"
2801msgstr ""2801msgstr ""
28022802
2803#: ../checkbox_urwid/urwid_interface.py:992803#: ../checkbox_urwid/urwid_interface.py:105
2804msgid "Continue"2804msgid "Continue"
2805msgstr ""2805msgstr ""
28062806
2807#: ../checkbox_urwid/urwid_interface.py:1922807#: ../checkbox_urwid/urwid_interface.py:198
2808#: ../checkbox_urwid/urwid_interface.py:2682808#: ../checkbox_urwid/urwid_interface.py:274
2809#: ../checkbox_urwid/urwid_interface.py:4162809#: ../checkbox_urwid/urwid_interface.py:425
2810#: ../checkbox_urwid/urwid_interface.py:547
2810msgid "Previous"2811msgid "Previous"
2811msgstr ""2812msgstr ""
28122813
2813#: ../checkbox_urwid/urwid_interface.py:1932814#: ../checkbox_urwid/urwid_interface.py:199
2814#: ../checkbox_urwid/urwid_interface.py:2692815#: ../checkbox_urwid/urwid_interface.py:275
2815#: ../checkbox_urwid/urwid_interface.py:4172816#: ../checkbox_urwid/urwid_interface.py:426
2817#: ../checkbox_urwid/urwid_interface.py:548
2816msgid "Next"2818msgid "Next"
2817msgstr ""2819msgstr ""
28182820
2819#. Show buttons2821#. Show buttons
2820#: ../checkbox_urwid/urwid_interface.py:4142822#: ../checkbox_urwid/urwid_interface.py:423
2821msgid "Select All"2823msgid "Select All"
2822msgstr ""2824msgstr ""
28232825
2824#: ../checkbox_urwid/urwid_interface.py:4152826#: ../checkbox_urwid/urwid_interface.py:424
2825msgid "Deselect All"2827msgid "Deselect All"
2826msgstr ""2828msgstr ""
28272829
2828#: ../checkbox_urwid/urwid_interface.py:7722830#: ../checkbox_urwid/urwid_interface.py:1013
2829msgid "Test"2831msgid "Test"
2830msgstr ""2832msgstr ""
28312833
2832#: ../checkbox_urwid/urwid_interface.py:7872834#: ../checkbox_urwid/urwid_interface.py:1028
2833msgid "Test Again"2835msgid "Test Again"
2834msgstr ""2836msgstr ""
28352837
2836#: ../checkbox_gtk/gtk_interface.py:5002838#: ../checkbox_gtk/gtk_interface.py:503
2837msgid "_Test Again"2839msgid "_Test Again"
2838msgstr "أ_عد الاختبار"2840msgstr "أ_عد الاختبار"
28392841
2840#: ../checkbox_gtk/gtk_interface.py:5482842#: ../checkbox_gtk/gtk_interface.py:551
2841msgid "Info"2843msgid "Info"
2842msgstr "بيان"2844msgstr "بيان"
28432845
2844#: ../checkbox_gtk/gtk_interface.py:5672846#: ../checkbox_gtk/gtk_interface.py:575
2845msgid "Error"2847msgid "Error"
2846msgstr "عطل"2848msgstr "عطل"
28472849
2848#: ../checkbox/user_interface.py:1362850#: ../checkbox/user_interface.py:137
2849#, python-format2851#, python-format
2850msgid "Unable to start web browser to open %s."2852msgid "Unable to start web browser to open %s."
2851msgstr "تعذّر تشغيل المتصفح لفتح %s."2853msgstr "تعذّر تشغيل المتصفح لفتح %s."
@@ -2893,7 +2895,7 @@
2893msgid "Gathering information from your system..."2895msgid "Gathering information from your system..."
2894msgstr "يجري جمع المعلومات عن نظامك..."2896msgstr "يجري جمع المعلومات عن نظامك..."
28952897
2896#: ../plugins/intro_prompt.py:292898#: ../plugins/intro_prompt.py:28
2897msgid ""2899msgid ""
2898"Welcome to System Testing!\n"2900"Welcome to System Testing!\n"
2899"\n"2901"\n"
@@ -2905,7 +2907,7 @@
2905"يوفر هذا البرنامج اختبارات لتتحقق من عمل النظام بكفاءة. بعد انتهاء "2907"يوفر هذا البرنامج اختبارات لتتحقق من عمل النظام بكفاءة. بعد انتهاء "
2906"الاختبارات، تستطيع الاطلاع على تقرير ملخص عن نظامك."2908"الاختبارات، تستطيع الاطلاع على تقرير ملخص عن نظامك."
29072909
2908#: ../plugins/intro_prompt.py:342910#: ../plugins/intro_prompt.py:33
2909msgid ""2911msgid ""
2910"\n"2912"\n"
2911"\n"2913"\n"
@@ -2962,15 +2964,15 @@
2962msgid "No e-mail address provided, not submitting to Launchpad."2964msgid "No e-mail address provided, not submitting to Launchpad."
2963msgstr "لم يُعطى أي عنوان بريد إلكتروني، لذا لن يُرسل إلى لنشباد."2965msgstr "لم يُعطى أي عنوان بريد إلكتروني، لذا لن يُرسل إلى لنشباد."
29642966
2965#: ../plugins/launchpad_prompt.py:922967#: ../plugins/launchpad_prompt.py:93
2966msgid "Email address must be in a proper format."2968msgid "Email address must be in a proper format."
2967msgstr "عنوان البريد الإلكتروني يجب أن يكون بنسق سليم."2969msgstr "عنوان البريد الإلكتروني يجب أن يكون بنسق سليم."
29682970
2969#: ../plugins/launchpad_prompt.py:982971#: ../plugins/launchpad_prompt.py:99
2970msgid "Exchanging information with the server..."2972msgid "Exchanging information with the server..."
2971msgstr "يجري تبادل المعلومات مع الخادوم..."2973msgstr "يجري تبادل المعلومات مع الخادوم..."
29722974
2973#: ../plugins/launchpad_report.py:1512975#: ../plugins/launchpad_report.py:167
2974msgid ""2976msgid ""
2975"The generated report seems to have validation errors,\n"2977"The generated report seems to have validation errors,\n"
2976"so it might not be processed by Launchpad."2978"so it might not be processed by Launchpad."
@@ -2980,7 +2982,7 @@
2980msgid "There is another checkbox running. Please close it first."2982msgid "There is another checkbox running. Please close it first."
2981msgstr "يعمل صندوق اختبار آخر. أغلقه أولا."2983msgstr "يعمل صندوق اختبار آخر. أغلقه أولا."
29822984
2983#: ../plugins/recover_prompt.py:542985#: ../plugins/recover_prompt.py:56
2984msgid ""2986msgid ""
2985"Checkbox did not finish completely.\n"2987"Checkbox did not finish completely.\n"
2986"Do you want to recover from the previous run?"2988"Do you want to recover from the previous run?"
@@ -2998,7 +3000,7 @@
2998msgstr "تنفيذ %s..."3000msgstr "تنفيذ %s..."
29993001
3000#. Get results3002#. Get results
3001#: ../plugins/suites_prompt.py:1083003#: ../plugins/suites_prompt.py:110
3002msgid "Select the suites to test"3004msgid "Select the suites to test"
3003msgstr "اختر حزمة اختبارات"3005msgstr "اختر حزمة اختبارات"
30043006
30053007
=== modified file 'po/ast.po'
--- po/ast.po 2012-02-23 11:56:50 +0000
+++ po/ast.po 2012-03-21 03:20:56 +0000
@@ -14,11 +14,11 @@
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-02-22 04:51+0000\n"17"X-Launchpad-Export-Date: 2012-03-15 04:31+0000\n"
18"X-Generator: Launchpad (build 14838)\n"18"X-Generator: Launchpad (build 14933)\n"
1919
20#. Title of the user interface20#. Title of the user interface
21#: ../gtk/checkbox-gtk.ui.h:1 ../gtk/checkbox-gtk.desktop.in.h:121#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
22#: ../plugins/user_interface.py:4222#: ../plugins/user_interface.py:42
23msgid "System Testing"23msgid "System Testing"
24msgstr "Prebes del Sistema"24msgstr "Prebes del Sistema"
@@ -39,12 +39,12 @@
39msgid "Press any key to continue..."39msgid "Press any key to continue..."
40msgstr "Calque una tecla pa siguir..."40msgstr "Calque una tecla pa siguir..."
4141
42#: ../checkbox_cli/cli_interface.py:13542#: ../checkbox_cli/cli_interface.py:135 ../checkbox_cli/cli_interface.py:234
43#, python-format43#, python-format
44msgid "Please choose (%s): "44msgid "Please choose (%s): "
45msgstr "Por favor, escueya (%s): "45msgstr "Por favor, escueya (%s): "
4646
47#: ../checkbox_cli/cli_interface.py:35047#: ../checkbox_cli/cli_interface.py:446
48msgid "Please type here and press Ctrl-D when finished:\n"48msgid "Please type here and press Ctrl-D when finished:\n"
49msgstr "Por favor escriba equí y calque Ctrl-D cuando fine:\n"49msgstr "Por favor escriba equí y calque Ctrl-D cuando fine:\n"
5050
@@ -97,8 +97,8 @@
97#~ msgid "Running shell tests..."97#~ msgid "Running shell tests..."
98#~ msgstr "Executando prebes shell..."98#~ msgstr "Executando prebes shell..."
9999
100#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:348100#: ../gtk/checkbox-gtk.ui.h:6 ../checkbox_cli/cli_interface.py:444
101#: ../checkbox_urwid/urwid_interface.py:261101#: ../checkbox_urwid/urwid_interface.py:267
102msgid "Further information:"102msgid "Further information:"
103msgstr "Más información:"103msgstr "Más información:"
104104
@@ -134,7 +134,7 @@
134msgid "_Yes"134msgid "_Yes"
135msgstr "_Sí"135msgstr "_Sí"
136136
137#: ../gtk/checkbox-gtk.desktop.in.h:2137#: ../qt/checkbox-qt.desktop.in.h:2
138msgid "Test your system and submit results to the Ubuntu Friendly project"138msgid "Test your system and submit results to the Ubuntu Friendly project"
139msgstr ""139msgstr ""
140"Comprueba'l to sistema y unvia los resultaos al proyeutu Ubuntu Friendly"140"Comprueba'l to sistema y unvia los resultaos al proyeutu Ubuntu Friendly"
@@ -156,7 +156,7 @@
156"VERIFICATION:\n"156"VERIFICATION:\n"
157" Did you hear a tone?"157" Did you hear a tone?"
158msgstr ""158msgstr ""
159"PROPÓSITU:\n"159"OXETIVU:\n"
160" Esta prueba va verificar que los altavoces internos funcionen "160" Esta prueba va verificar que los altavoces internos funcionen "
161"correchamente\n"161"correchamente\n"
162"PASOS:\n"162"PASOS:\n"
@@ -181,7 +181,7 @@
181" Did you hear a sound through the headphones and did the sound play "181" Did you hear a sound through the headphones and did the sound play "
182"without any distortion, clicks or other strange noises from your headphones?"182"without any distortion, clicks or other strange noises from your headphones?"
183msgstr ""183msgstr ""
184"PROPÓSITU:\n"184"OXETIVU:\n"
185" Esta prueba verificará que los auriculares coneutaos funcionen correcho\n"185" Esta prueba verificará que los auriculares coneutaos funcionen correcho\n"
186"PASOS:\n"186"PASOS:\n"
187" 1. Coneuta un par d'auriculares al preséu d'audio.\n"187" 1. Coneuta un par d'auriculares al preséu d'audio.\n"
@@ -203,7 +203,7 @@
203"VERIFICATION:\n"203"VERIFICATION:\n"
204" Did you hear your speech played back?"204" Did you hear your speech played back?"
205msgstr ""205msgstr ""
206"PROPÓSITU:\n"206"OXETIVU:\n"
207"\n"207"\n"
208"Esta prueba comprueba que la grabación de soníu mediante'l micrófonu "208"Esta prueba comprueba que la grabación de soníu mediante'l micrófonu "
209"funciona correcho.\n"209"funciona correcho.\n"
@@ -229,7 +229,7 @@
229"VERIFICATION:\n"229"VERIFICATION:\n"
230" Did you hear your speech played back?"230" Did you hear your speech played back?"
231msgstr ""231msgstr ""
232"PROPÓSITU:\n"232"OXETIVU:\n"
233"\n"233"\n"
234"Esta prueba comprueba que'l grabador de soníu, usando un micrófonu esternu, "234"Esta prueba comprueba que'l grabador de soníu, usando un micrófonu esternu, "
235"funciona correcho.\n"235"funciona correcho.\n"
@@ -280,6 +280,9 @@
280"input. This makes the most sense when the output and input are directly "280"input. This makes the most sense when the output and input are directly "
281"connected, as with a patch cable."281"connected, as with a patch cable."
282msgstr ""282msgstr ""
283"Reproducir un soníu na salida predeterminada y escuchala na entrada "
284"predeterminada. Esto tien xacíu cuando la salida y la entrada tán "
285"direutamente coneutaes, como con un cable de conexón."
283286
284#. description287#. description
285#: ../jobs/autotest.txt.in:6288#: ../jobs/autotest.txt.in:6
@@ -288,7 +291,7 @@
288" This test will attempt to install and run the Autotest Suite. These "291" This test will attempt to install and run the Autotest Suite. These "
289"tests can be destructive, so this test is blacklisted by default."292"tests can be destructive, so this test is blacklisted by default."
290msgstr ""293msgstr ""
291"PROPÓSITU:\n"294"OXETIVU:\n"
292" Esta prueba intentará instalar y executar el Autotest Suit. Estes pruebes "295" Esta prueba intentará instalar y executar el Autotest Suit. Estes pruebes "
293"puen ser destructives, polo que tán na llista prieta de forma predefinida."296"puen ser destructives, polo que tán na llista prieta de forma predefinida."
294297
@@ -328,7 +331,7 @@
328"VERIFICATION:\n"331"VERIFICATION:\n"
329" Did all the steps work?"332" Did all the steps work?"
330msgstr ""333msgstr ""
331"PROPÓSITU:\n"334"OXETIVU:\n"
332" Esta prueba verifica que la conexón bluetooth funciona correchamente\n"335" Esta prueba verifica que la conexón bluetooth funciona correchamente\n"
333"PASOS:\n"336"PASOS:\n"
334" 1. Activar bluetooth en cualquier preséu móvil (PDA, smartphone, etc.).\n"337" 1. Activar bluetooth en cualquier preséu móvil (PDA, smartphone, etc.).\n"
@@ -357,7 +360,7 @@
357"VERIFICATION:\n"360"VERIFICATION:\n"
358" Were all files copied correctly?"361" Were all files copied correctly?"
359msgstr ""362msgstr ""
360"PROPÓSITU:\n"363"OXETIVU:\n"
361"Esta prueba comprueba que pues tresferir información a traviés de una "364"Esta prueba comprueba que pues tresferir información a traviés de una "
362"conexón Bluetooth\n"365"conexón Bluetooth\n"
363"PASOS:\n"366"PASOS:\n"
@@ -386,7 +389,7 @@
386"VERIFICATION:\n"389"VERIFICATION:\n"
387" Did you hear the sound you recorded in the bluetooth"390" Did you hear the sound you recorded in the bluetooth"
388msgstr ""391msgstr ""
389"PROPÓSITU:\n"392"OXETIVU:\n"
390"Esta prueba comprobará que pues grabar y escuchar audio con un preséu "393"Esta prueba comprobará que pues grabar y escuchar audio con un preséu "
391"d'audio Bluetooth\n"394"d'audio Bluetooth\n"
392"PASOS:\n"395"PASOS:\n"
@@ -416,7 +419,7 @@
416"VERIFICATION:\n"419"VERIFICATION:\n"
417" Were you able to enter some text with the bluetooth keyboard?"420" Were you able to enter some text with the bluetooth keyboard?"
418msgstr ""421msgstr ""
419"PROPÓSITU:\n"422"OXETIVU:\n"
420" Esta prueba verifica que se pue usar un tecláu bluetooth\n"423" Esta prueba verifica que se pue usar un tecláu bluetooth\n"
421"PASOS:\n"424"PASOS:\n"
422" 1. Activar el tecláu bluetooth\n"425" 1. Activar el tecláu bluetooth\n"
@@ -443,7 +446,7 @@
443"VERIFICATION:\n"446"VERIFICATION:\n"
444" Did the mouse work as expected?"447" Did the mouse work as expected?"
445msgstr ""448msgstr ""
446"PROPÓSITU:\n"449"OXETIVU:\n"
447" Esta prueba verifica que se pue usar un mur bluetooth\n"450" Esta prueba verifica que se pue usar un mur bluetooth\n"
448" PASOS:\n"451" PASOS:\n"
449" 1. Activar el mur bluetooth\n"452" 1. Activar el mur bluetooth\n"
@@ -488,7 +491,7 @@
488"VERIFICATION:\n"491"VERIFICATION:\n"
489" Did you see the image?"492" Did you see the image?"
490msgstr ""493msgstr ""
491"PROPÓSITU:\n"494"OXETIVU:\n"
492" Esta prueba verifica que funciona la cámara incorporada\n"495" Esta prueba verifica que funciona la cámara incorporada\n"
493"PASOS:\n"496"PASOS:\n"
494" 1. Primi en prueba p'amosar una imaxe fixa de la cámara\n"497" 1. Primi en prueba p'amosar una imaxe fixa de la cámara\n"
@@ -527,7 +530,7 @@
527"VERIFICATION:\n"530"VERIFICATION:\n"
528" Did the sample play correctly?"531" Did the sample play correctly?"
529msgstr ""532msgstr ""
530"PROPÓSITU:\n"533"OXETIVU:\n"
531" Esta prueba verifica la capacidá del sistema pa reproducir ficheros "534" Esta prueba verifica la capacidá del sistema pa reproducir ficheros "
532"d'audio Ogg Vorbis.\n"535"d'audio Ogg Vorbis.\n"
533"PASOS:\n"536"PASOS:\n"
@@ -547,7 +550,7 @@
547"VERIFICATION:\n"550"VERIFICATION:\n"
548" Did the sample play correctly?"551" Did the sample play correctly?"
549msgstr ""552msgstr ""
550"PROPÓSITU:\n"553"OXETIVU:\n"
551" Esta prueba verifica la capacidá del sistema pa reproducir ficheros "554" Esta prueba verifica la capacidá del sistema pa reproducir ficheros "
552"d'audio Wave.\n"555"d'audio Wave.\n"
553"PASOS:\n"556"PASOS:\n"
@@ -701,7 +704,7 @@
701"VERIFICATION:\n"704"VERIFICATION:\n"
702" Did the authentication procedure work correctly?"705" Did the authentication procedure work correctly?"
703msgstr ""706msgstr ""
704"PROPÓSITU:\n"707"OXETIVU:\n"
705" Esta prueba verifica qu'un llector de buelgues dactilares funcionará "708" Esta prueba verifica qu'un llector de buelgues dactilares funcionará "
706"correutamente p'aniciar sesión nel sistema.\n"709"correutamente p'aniciar sesión nel sistema.\n"
707"REQUISITOS PREVIOS:\n"710"REQUISITOS PREVIOS:\n"
@@ -736,7 +739,7 @@
736"VERIFICATION:\n"739"VERIFICATION:\n"
737" Did the authentication procedure work correctly?"740" Did the authentication procedure work correctly?"
738msgstr ""741msgstr ""
739"PROPÓSITU:\n"742"OXETIVU:\n"
740" Esta prueba verificará que se pue usar un llector de buelgues dixitales "743" Esta prueba verificará que se pue usar un llector de buelgues dixitales "
741"pa desbloquiar la pantalla.\n"744"pa desbloquiar la pantalla.\n"
742"PASOS:\n"745"PASOS:\n"
@@ -810,7 +813,7 @@
810"VERIFICATION:\n"813"VERIFICATION:\n"
811" Did the resolution change as expected?"814" Did the resolution change as expected?"
812msgstr ""815msgstr ""
813"PROPÓSITU:\n"816"OXETIVU:\n"
814" Esta prueba va comprobar que la interfaz gráfica d'usuariu pue "817" Esta prueba va comprobar que la interfaz gráfica d'usuariu pue "
815"utilizase dempués de camudar manualmente la resolución de la pantalla\n"818"utilizase dempués de camudar manualmente la resolución de la pantalla\n"
816"PASOS:\n"819"PASOS:\n"
@@ -837,7 +840,7 @@
837"VERIFICATION:\n"840"VERIFICATION:\n"
838" Did the display rotation change as expected?"841" Did the display rotation change as expected?"
839msgstr ""842msgstr ""
840"PROPÓSITU:\n"843"OXETIVU:\n"
841" Esta prueba va comprobar la rotación de la pantalla\n"844" Esta prueba va comprobar la rotación de la pantalla\n"
842"PASOS:\n"845"PASOS:\n"
843" 1. Abri l'aplicación de Pantalles\n"846" 1. Abri l'aplicación de Pantalles\n"
@@ -880,7 +883,7 @@
880"VERIFICATION:\n"883"VERIFICATION:\n"
881" Is this acceptable for your display?"884" Is this acceptable for your display?"
882msgstr ""885msgstr ""
883"PROPÓSITU:\n"886"OXETIVU:\n"
884" Esta prueba verifica la resolución predeterminada de la pantalla\n"887" Esta prueba verifica la resolución predeterminada de la pantalla\n"
885"PASOS:\n"888"PASOS:\n"
886" 1. Esta pantalla usa la siguiente resolución:\n"889" 1. Esta pantalla usa la siguiente resolución:\n"
@@ -913,7 +916,7 @@
913"VERIFICATION:\n"916"VERIFICATION:\n"
914" Do you see color bars and static?"917" Do you see color bars and static?"
915msgstr ""918msgstr ""
916"PROPÓSITU:\n"919"OXETIVU:\n"
917" Esta prueba verificará la pantalla predeterminada\n"920" Esta prueba verificará la pantalla predeterminada\n"
918"PASOS:\n"921"PASOS:\n"
919" 1. Primi en Prueba p'amosar una prueba de videu.\n"922" 1. Primi en Prueba p'amosar una prueba de videu.\n"
@@ -952,7 +955,7 @@
952"VERIFICATION:\n"955"VERIFICATION:\n"
953" Did the screen appear to be working for each mode?"956" Did the screen appear to be working for each mode?"
954msgstr ""957msgstr ""
955"PROPÓSITU:\n"958"OXETIVU:\n"
956" Esta prueba pasa polos diferentes moos de videu deteutaos\n"959" Esta prueba pasa polos diferentes moos de videu deteutaos\n"
957"PASOS:\n"960"PASOS:\n"
958" 1. Primi «Prueba» pa entamar a comprobar los diferentes moos de videu\n"961" 1. Primi «Prueba» pa entamar a comprobar los diferentes moos de videu\n"
@@ -1004,7 +1007,7 @@
1004" Did the system successfully hibernate and did it work properly after "1007" Did the system successfully hibernate and did it work properly after "
1005"waking up?"1008"waking up?"
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches