← Back to team overview

opencompute-developers team mailing list archive

[Merge] lp:~bladernr/opencompute/update-checkbox-trunk into lp:opencompute/checkbox

 

Jeff Marcom has proposed merging lp:~bladernr/opencompute/update-checkbox-trunk into lp:opencompute/checkbox.

Commit message:
Update checkbox based on lp:checkbox version 16.11 by Jeff Lane

Requested reviews:
  Open Compute Developers (opencompute-developers)

For more details, see:
https://code.launchpad.net/~bladernr/opencompute/update-checkbox-trunk/+merge/187130

Proposing on Jeff's behalf...previous merge proposal was set to wrong target branch.
-- 
The attached diff has been truncated due to its size.
https://code.launchpad.net/~bladernr/opencompute/update-checkbox-trunk/+merge/187130
Your team Open Compute Developers is requested to review the proposed merge of lp:~bladernr/opencompute/update-checkbox-trunk into lp:opencompute/checkbox.
=== removed file 'checkbox/scripts/tests/test_audio_settings.py'
--- checkbox/scripts/tests/test_audio_settings.py	2013-07-05 16:43:48 +0000
+++ checkbox/scripts/tests/test_audio_settings.py	1970-01-01 00:00:00 +0000
@@ -1,151 +0,0 @@
-#
-# This file is part of Checkbox.
-#
-# Copyright 2013 Canonical Ltd.
-#
-# Checkbox is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Checkbox is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
-#
-import os
-import unittest
-
-from checkbox.scripts.audio_settings import _guess_hdmi_profile
-from checkbox.parsers.tests.test_pactl import PactlDataMixIn
-
-
-class SetProfileTest(unittest.TestCase, PactlDataMixIn):
-
-    def test_desktop_precise_xps1340(self):
-        """
-        Precise system with a Nvidia chipset.
-        HDMI is present in the card ports list but not shown in the sinks list.
-        The port availability cannot be determined, in that case the expected
-        value is the first stereo profile listed in the identified port.
-        Meaningful lines:
-
-        Card #0
-        [...]
-            Ports:
-        [...]
-                hdmi-output-0: HDMI / DisplayPort (priority 5900)
-                    Part of profile(s): output:hdmi-stereo, output:hdmi-stereo+input:analog-stereo, output:hdmi-surround, output:hdmi-surround+input:analog-stereo
-        """
-        self.assertEqual(
-            _guess_hdmi_profile(self.get_text("desktop-precise-xps1340")),
-            ('0', 'output:hdmi-stereo'))
-
-    def test_desktop_precise_radeon_not_available(self):
-        """
-        Home-made system running Precise with a Radeon card.
-        HDMI is present in the card ports list and shown in the sinks list.
-        But the port is "not available", both card and profile should be set
-        to None.
-        Meaningful lines:
-
-        Sink #0
-        [...]
-            Ports:
-                hdmi-output-0: HDMI / DisplayPort (priority: 5900, not available)
-        [...]
-        Card #0
-        [...]
-            Ports:
-                hdmi-output-0: HDMI / DisplayPort (priority 5900)
-                    Part of profile(s): output:hdmi-stereo
-        """
-        self.assertEqual(
-            _guess_hdmi_profile(self.get_text("desktop-precise-radeon")),
-            (None, None))
-
-    def test_desktop_precise_radeon_available(self):
-        """
-        Home-made system running Precise with a Radeon card.
-        HDMI is present in the card ports list, shown in the sinks list and
-        marked as "available", in that case the expected value is the first
-        stereo profile listed in the identified port.
-        Meaningful lines:
-
-        Sink #0
-        [...]
-            Ports:
-                hdmi-output-0: HDMI / DisplayPort (priority: 5900, available)
-        [...]
-        Card #0
-        [...]
-            Ports:
-                hdmi-output-0: HDMI / DisplayPort (priority 5900)
-                    Part of profile(s): output:hdmi-stereo
-        """
-        self.assertEqual(
-            _guess_hdmi_profile(self.get_text(
-                "desktop-precise-radeon-hdmi-available")),
-            ('0', 'output:hdmi-stereo'))
-
-    def test_desktop_raring_t430s_not_available(self):
-        """
-        Raring system with a Mini-DisplayPort.
-        DisplayPort is present in the card ports list but marked as
-        "not available". Thus both card and profile should be set
-        to None.
-        Meaningful lines:
-
-        Card #2
-        [...]
-            Ports:
-        [...]
-                hdmi-output-0: HDMI / DisplayPort (priority: 5900, latency offset: 0 usec, not available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo, output:hdmi-stereo+input:analog-stereo
-                hdmi-output-1: HDMI / DisplayPort 2 (priority: 5800, latency offset: 0 usec, not available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo-extra1, output:hdmi-stereo-extra1+input:analog-stereo, output:hdmi-surround-extra1, output:hdmi-surround-extra1+input:analog-stereo
-                hdmi-output-2: HDMI / DisplayPort 3 (priority: 5700, latency offset: 0 usec, not available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo-extra2, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2, output:hdmi-surround-extra2+input:analog-stereo
-        """
-        self.assertEqual(
-            _guess_hdmi_profile(self.get_text("desktop-raring-t430s")),
-            (None, None))
-
-    def test_desktop_raring_t430s_available(self):
-        """
-        Raring system with a Mini-DisplayPort.
-        DisplayPort is present in the card ports list and marked as
-        "available", in that case the expected value is the first stereo
-        profile listed in the identified port.
-        Meaningful lines:
-
-        Card #2
-        [...]
-            Ports:
-        [...]
-                hdmi-output-0: HDMI / DisplayPort (priority: 5900, latency offset: 0 usec, available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo, output:hdmi-stereo+input:analog-stereo
-                hdmi-output-1: HDMI / DisplayPort 2 (priority: 5800, latency offset: 0 usec, not available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo-extra1, output:hdmi-stereo-extra1+input:analog-stereo, output:hdmi-surround-extra1, output:hdmi-surround-extra1+input:analog-stereo
-                hdmi-output-2: HDMI / DisplayPort 3 (priority: 5700, latency offset: 0 usec, not available)
-                    Properties:
-                        device.icon_name = "video-display"
-                    Part of profile(s): output:hdmi-stereo-extra2, output:hdmi-stereo-extra2+input:analog-stereo, output:hdmi-surround-extra2, output:hdmi-surround-extra2+input:analog-stereo
-        """
-        self.assertEqual(
-            _guess_hdmi_profile(self.get_text(
-                "desktop-raring-t430s-dp-available")),
-            ('2', 'output:hdmi-stereo'))

=== removed file 'checkbox/scripts/tests/test_gputest_benchmark.py'
--- checkbox/scripts/tests/test_gputest_benchmark.py	2013-07-05 16:43:48 +0000
+++ checkbox/scripts/tests/test_gputest_benchmark.py	1970-01-01 00:00:00 +0000
@@ -1,79 +0,0 @@
-#
-# This file is part of Checkbox.
-#
-# Copyright 2013 Canonical Ltd.
-#
-# Checkbox is free software: you can redistribute it and/or modify
-# it under the terms of the GNU General Public License as published by
-# the Free Software Foundation, either version 3 of the License, or
-# (at your option) any later version.
-#
-# Checkbox is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with Checkbox.  If not, see <http://www.gnu.org/licenses/>.
-#
-import os
-import unittest
-
-from mock import patch
-from tempfile import NamedTemporaryFile
-
-from checkbox.scripts.gputest_benchmark import check_log
-
-
-class LogParserTest(unittest.TestCase):
-
-    def setUp(self):
-        self.logfile = NamedTemporaryFile(delete=False)
-        self.devnull = open(os.devnull, 'w')
-
-    def test_logfile_not_found(self):
-        os.unlink(self.logfile.name)
-        with self.assertRaises(SystemExit) as cm:
-            check_log(self.logfile.name)
-        self.assertEqual(
-            "[Errno 2] No such file or directory: "
-            "'{}'".format(self.logfile.name),
-            str(cm.exception))
-
-    def test_logfile_with_score(self):
-        with open(self.logfile.name, 'wt') as f:
-            f.write('FurMark : init OK.\n')
-            f.write('[Benchmark_Score] - module: FurMark - Score: 8 points'
-                    '(800x600 windowed, duration:2000 ms).')
-        with patch('sys.stdout', self.devnull):
-            self.assertFalse(check_log(self.logfile.name))
-        os.unlink(self.logfile.name)
-
-    def test_logfile_without_score(self):
-        with open(self.logfile.name, 'wt') as f:
-            f.write('FurMark : init OK.\n')
-            f.write('[No_Score] - module: FurMark - Score: _ points'
-                    '(800x600 windowed, duration:2000 ms).')
-        with patch('sys.stdout', self.devnull):
-            with self.assertRaises(SystemExit) as cm:
-                check_log(self.logfile.name)
-            self.assertEqual(
-                'Benchmark score not found, check the log for errors',
-                str(cm.exception))
-        os.unlink(self.logfile.name)
-
-    def test_logfile_with_encoding_error(self):
-        with open(self.logfile.name, 'wb') as f:
-            f.write(b'\x80abc\n')
-            f.write(b'FurMark : init OK.\n')
-            f.write(b'[Benchmark_Score] - module: FurMark - Score: 116 points'
-                    b'(800x600 windowed, duration:2000 ms).')
-        with patch('sys.stdout', self.devnull):
-            self.assertFalse(check_log(self.logfile.name))
-        os.unlink(self.logfile.name)
-
-    def tearDown(self):
-        try:
-            os.unlink(self.logfile.name)
-        except OSError:
-            pass

=== modified file 'data/whitelists/default.whitelist'
--- data/whitelists/default.whitelist	2012-10-23 21:52:31 +0000
+++ data/whitelists/default.whitelist	2013-09-24 01:09:17 +0000
@@ -23,6 +23,7 @@
 dmesg_attachment
 dmi_attachment
 dmidecode_attachment
+lshw_attachment
 efi_attachment
 lsmod_attachment
 lspci_attachment

=== modified file 'data/whitelists/opencompute-ready-local.whitelist'
--- data/whitelists/opencompute-ready-local.whitelist	2013-08-06 16:41:25 +0000
+++ data/whitelists/opencompute-ready-local.whitelist	2013-09-24 01:09:17 +0000
@@ -29,6 +29,7 @@
 dmidecode_attachment
 efi_attachment
 lspci_attachment
+lshw_attachment
 meminfo_attachment
 modprobe_attachment
 modules_attachment

=== modified file 'data/whitelists/server-cert.whitelist'
--- data/whitelists/server-cert.whitelist	2013-05-16 20:16:06 +0000
+++ data/whitelists/server-cert.whitelist	2013-09-24 01:09:17 +0000
@@ -29,6 +29,7 @@
 dmidecode_attachment
 efi_attachment
 lspci_attachment
+lshw_attachment
 meminfo_attachment
 modprobe_attachment
 modules_attachment

=== modified file 'debian/changelog'
--- debian/changelog	2013-09-13 17:07:37 +0000
+++ debian/changelog	2013-09-24 01:09:17 +0000
@@ -1,9 +1,11 @@
-
-checkbox (1.16.7~OCP) UNRELEASED; urgency=low
+checkbox (1.16.12~OCP) UNRELEASED; urgency=low
 
   [ Jeff Marcom ]
   * Updated plainbox based on version 0.4.dev in lp:checkbox (16.12)
 
+  [ Jeff Lane ]
+  * Updated OCP Checkbox to latest checkbox trunk, 0.16.11 revno 2353
+
  -- Jeff Marcom <jeff.marcom@xxxxxxxxxxxxx>  Fri, 13 Sept 2013 10:13:04 -0400
 
 
@@ -33,4 +35,3 @@
     and their references in po/POTFILES.in
     checkbox/tests/ - Cleaned up unit tests that were looking for things
     removed in this merge.
-

=== modified file 'debian/po/ast.po'
--- debian/po/ast.po	2013-07-05 16:43:48 +0000
+++ debian/po/ast.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/cs.po'
--- debian/po/cs.po	2013-07-05 16:43:48 +0000
+++ debian/po/cs.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/de.po'
--- debian/po/de.po	2013-07-05 16:43:48 +0000
+++ debian/po/de.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/en_AU.po'
--- debian/po/en_AU.po	2013-07-05 16:43:48 +0000
+++ debian/po/en_AU.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/en_GB.po'
--- debian/po/en_GB.po	2013-07-05 16:43:48 +0000
+++ debian/po/en_GB.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/es.po'
--- debian/po/es.po	2013-07-05 16:43:48 +0000
+++ debian/po/es.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/fr.po'
--- debian/po/fr.po	2013-07-05 16:43:48 +0000
+++ debian/po/fr.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/gl.po'
--- debian/po/gl.po	2013-07-05 16:43:48 +0000
+++ debian/po/gl.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/he.po'
--- debian/po/he.po	2013-07-05 16:43:48 +0000
+++ debian/po/he.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/hu.po'
--- debian/po/hu.po	2013-07-05 16:43:48 +0000
+++ debian/po/hu.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/id.po'
--- debian/po/id.po	2013-07-05 16:43:48 +0000
+++ debian/po/id.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/it.po'
--- debian/po/it.po	2013-07-05 16:43:48 +0000
+++ debian/po/it.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/ja.po'
--- debian/po/ja.po	2013-07-05 16:43:48 +0000
+++ debian/po/ja.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/nl.po'
--- debian/po/nl.po	2013-07-05 16:43:48 +0000
+++ debian/po/nl.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/oc.po'
--- debian/po/oc.po	2013-07-05 16:43:48 +0000
+++ debian/po/oc.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/pl.po'
--- debian/po/pl.po	2013-07-05 16:43:48 +0000
+++ debian/po/pl.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/pt_BR.po'
--- debian/po/pt_BR.po	2013-07-05 16:43:48 +0000
+++ debian/po/pt_BR.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/ro.po'
--- debian/po/ro.po	2013-07-05 16:43:48 +0000
+++ debian/po/ro.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/ru.po'
--- debian/po/ru.po	2013-07-05 16:43:48 +0000
+++ debian/po/ru.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/tr.po'
--- debian/po/tr.po	2013-07-05 16:43:48 +0000
+++ debian/po/tr.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/uk.po'
--- debian/po/uk.po	2013-07-05 16:43:48 +0000
+++ debian/po/uk.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/zh_CN.po'
--- debian/po/zh_CN.po	2013-07-05 16:43:48 +0000
+++ debian/po/zh_CN.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'debian/po/zh_TW.po'
--- debian/po/zh_TW.po	2013-07-05 16:43:48 +0000
+++ debian/po/zh_TW.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Type: string
 #. Description

=== modified file 'jobs/benchmarks.txt.in'
--- jobs/benchmarks.txt.in	2013-04-11 11:38:26 +0000
+++ jobs/benchmarks.txt.in	2013-09-24 01:09:17 +0000
@@ -31,6 +31,7 @@
 depends: graphics/xorg-version
 requires: package.name == 'gtkperf'
 command: python3 -c 'import re,sys,subprocess; (s, o) = subprocess.getstatusoutput("gtkperf -a"); [sys.exit(1) for i in [s] if s]; m = re.search("Total time:\s+(.*)\n", o); [print(i.group(1)+" Seconds") for i in [m] if m]'
+estimated_duration: 30.000
 _description:
  Run gtkperf to make sure that GTK based test cases work
 
@@ -38,30 +39,35 @@
 name: benchmarks/graphics/render-bench
 requires: package.name == 'render-bench'
 command: /usr/bin/time -f "%e Seconds" render_bench 2>&1 >/dev/null
+estimated_duration: 52.000
 _description: Run Render-Bench XRender/Imlib2 benchmark
 
 plugin: shell
 name: benchmarks/graphics/qgears2-Xrender-gearsfancy
 requires: package.name == 'phoronix-test-suite'
 command: PRESET_OPTIONS="qgears2.render-backend=1; qgears2.test-mode=0" pts_run qgears2
+estimated_duration: 180.000
 _description: Run Qgears2 XRender Extension gearsfancy benchmark
 
 plugin: shell
 name: benchmarks/graphics/qgears2-Xrender-compo
 requires: package.name == 'phoronix-test-suite'
 command: PRESET_OPTIONS="qgears2.render-backend=1; qgears2.test-mode=2" pts_run qgears2
+estimated_duration: 31.500
 _description: Run Qgears2 XRender Extension image scaling benchmark
 
 plugin: shell
 name: benchmarks/graphics/qgears2-gl-gearsfancy
 requires: package.name == 'phoronix-test-suite'
 command: PRESET_OPTIONS="qgears2.render-backend=2; qgears2.test-mode=0" pts_run qgears2
+estimated_duration: 52.000
 _description: Run Qgears2 OpenGL gearsfancy benchmark
 
 plugin: shell
 name: benchmarks/graphics/qgears2-gl-compo
 requires: package.name == 'phoronix-test-suite'
 command: PRESET_OPTIONS="qgears2.render-backend=2; qgears2.test-mode=2" pts_run qgears2
+estimated_duration: 23.000
 _description: Run Qgears2 OpenGL image scaling benchmark
 
 plugin: shell
@@ -80,6 +86,7 @@
  cpuinfo.platform in ("i386", "x86_64")
 command:
  glmark2 2>&1 | sed -e :a -e '$!N;s/\n/ /;ta' | sed -E 's/.*(Score:\s+[0-9]+).*/\1/'
+estimated_duration: 306.000
 _description: Run GLmark2 benchmark
 
 plugin: shell
@@ -88,6 +95,7 @@
  package.name == 'globs'
  cpuinfo.platform in ("i386", "x86_64")
 command: glob_test --min-fps=26 --ignore-problems
+estimated_duration: 53.500
 _description: Run globs benchmark
 
 plugin: shell
@@ -160,6 +168,7 @@
 name: benchmarks/network/network-loopback
 requires: package.name == 'phoronix-test-suite'
 command: pts_run network-loopback
+estimated_duration: 85.0
 _description: Run Network Loopback benchmark
 
 plugin: shell
@@ -228,6 +237,7 @@
  package.name == 'gputest'
  cpuinfo.platform == 'x86_64'
 command: gputest_benchmark fur --width 1920 --height 1080 -f
+estimated_duration: 75.000
 _description:
  Run a stress test based on FurMark (OpenGL 2.1 or 3.2)
  Fullscreen 1920x1080 no antialiasing
@@ -238,6 +248,7 @@
  package.name == 'gputest'
  cpuinfo.platform == 'x86_64'
 command: gputest_benchmark fur
+estimated_duration: 75.000
 _description:
  Run a stress test based on FurMark (OpenGL 2.1 or 3.2)
  Windowed 1024x640 no antialiasing
@@ -248,6 +259,7 @@
  package.name == 'gputest'
  cpuinfo.platform == 'x86_64'
 command: gputest_benchmark gi --width 1920 --height 1080 -f
+estimated_duration: 75.00
 _description:
  Run GiMark, a geometry instancing test (OpenGL 3.3)
  Fullscreen 1920x1080 no antialiasing
@@ -258,6 +270,7 @@
  package.name == 'gputest'
  cpuinfo.platform == 'x86_64'
 command: gputest_benchmark gi
+estimated_duration: 75.500
 _description:
  Run GiMark, a geometry instancing test (OpenGL 3.3)
  Windowed 1024x640 no antialiasing
@@ -268,6 +281,7 @@
  package.name == 'gputest'
  cpuinfo.platform == 'x86_64'
 command: gputest_benchmark tess --width 1920 --height 1080 -f
+estimated_duration: 75.000
 _description:
  Run a tessellation test based on TessMark (OpenGL 4.0)
  Fullscreen 1920x1080 no antialiasing

=== modified file 'jobs/info.txt.in'
--- jobs/info.txt.in	2013-07-05 16:43:48 +0000
+++ jobs/info.txt.in	2013-09-24 01:09:17 +0000
@@ -2,43 +2,59 @@
 plugin: attachment
 requires: device.driver == 'snd_hda_intel'
 command: cat /proc/asound/card*/codec#*
+estimated_duration: 0.023
 _description: Attaches a report of installed codecs for Intel HDA
 
 name: cpuinfo_attachment
 plugin: attachment
 command: cat /proc/cpuinfo
+estimated_duration: 0.006
 _description: Attaches a report of CPU information
 
 name: dmesg_attachment
 plugin: attachment
 command: cat /var/log/dmesg | ansi_parser
+estimated_duration: 0.640
 _description: Attaches a copy of /var/log/dmesg to the test results
 
 name: dmi_attachment
 plugin: attachment
 command: grep -r . /sys/class/dmi/id/ 2>/dev/null
+estimated_duration: 0.044 
 _description: Attaches info on DMI
 
 name: dmidecode_attachment
 plugin: attachment
+requires: package.name == 'dmidecode'
 user: root
 command: dmidecode | iconv -t 'utf-8' -c
+estimated_duration: 0.030
 _description: Attaches dmidecode output
 
+name: lshw_attachment
+plugin: attachment
+requires: package.name == 'lshw'
+user: root
+command: lshw | iconv -t 'utf-8' -c
+_description: Attaches lshw output
+
 name: efi_attachment
 plugin: attachment
 user: root
 command: [ -d /sys/firmware/efi ] && grep -m 1 -o --color=never 'EFI v.*' /var/log/kern.log* || true
+estimated_duration: 0.5
 _description: Attaches the firmware version
 
 name: lspci_attachment
 plugin: attachment
 command: lspci -vvnn | iconv -t 'utf-8' -c
+estimated_duration: 0.042
 _description: Attaches very verbose lspci output.
 
 name: lspci_network_attachment
 plugin: attachment
 command: lspci -vvnnQ | iconv -t 'utf-8' -c
+estimated_duration: 1.322
 _description: Attaches very verbose lspci output (with central database Query).
 
 name: lsusb_attachment
@@ -46,25 +62,30 @@
 requires: package.name == 'usbutils'
 user: root
 command: lsusb -vv | iconv -t 'utf-8' -c
+estimated_duration: 0.700
 _description: List USB devices
 
 name: meminfo_attachment
 plugin: attachment
 command: cat /proc/meminfo
+estimated_duration: 0.043
 
 name: modprobe_attachment
 plugin: attachment
 command: find /etc/modprobe.* -name \*.conf | xargs cat
+estimated_duration: 0.015
 _description: Attaches the contents of the various modprobe conf files.
 
 name: modules_attachment
 plugin: attachment
 command: cat /etc/modules
+estimated_duration: 0.004
 _description: Attaches the contents of the /etc/modules file.
 
 name: sysctl_attachment
 plugin: attachment
 command: find /etc/sysctl.* -name \*.conf | xargs cat
+estimated_duration: 0.014
 _description: attaches the contents of various sysctl config files.
 
 name: sysfs_attachment
@@ -76,15 +97,18 @@
   udevadm info --attribute-walk --path=/sys$i 2>/dev/null | sed -n 's/    ATTR{\(.*\)}=="\(.*\)"/A: \1=\2/p'
   echo
  done
+estimated_duration: 6.344
 
 name: udev_attachment
 plugin: attachment
 command: udevadm info --export-db | xml_sanitize
+estimated_duration: 1.465
 _description: Attaches a dump of the udev database showing system hardware information.
 
 name: udev_resource_attachment
 plugin: attachment
 command: udev_resource
+estimated_duration: 0.432
 _description: Attaches the output of udev_resource, for debugging purposes
 
 name: gcov_attachment
@@ -97,11 +121,13 @@
 name: lsmod_attachment
 plugin: attachment
 command: lsmod_info
+estimated_duration: 0.5
 _description: Attaches a list of the currently running kernel modules.
 
 plugin: attachment
 name: acpi_sleep_attachment
 command: [ -e /proc/acpi/sleep ] && cat /proc/acpi/sleep
+estimated_duration: 0.5
 _description: Attaches the contents of /proc/acpi/sleep if it exists.
 
 plugin: local
@@ -156,12 +182,14 @@
 plugin: attachment
 name: installer_debug.gz
 command: [ -e /var/log/installer/debug ] && gzip -9 -c /var/log/installer/debug
+estimated_duration: 0.1
 _description: Attaches the installer debug log if it exists.
 
 plugin: attachment
 name: info/touchpad_driver
-requires: device.category == 'TOUCH'
+requires: device.category == 'TOUCHPAD'
 command: touchpad_driver_info
+estimated_duration: 0.384
 _description:
  Returns the name, driver name and driver version of any touchpad discovered on
  the system.
@@ -173,6 +201,7 @@
  package.name == 'module-init-tools'
  device.category == 'AUDIO'
 command: audio_driver_info
+estimated_duration: 0.177
 _description: Lists the device driver and version for all audio devices.
 
 plugin: attachment
@@ -182,6 +211,7 @@
  package.name == 'module-init-tools'
  package.name == 'pciutils'
 command: network_device_info
+estimated_duration: 0.550
 _description: Provides information about network devices
 
 plugin: attachment

=== modified file 'jobs/miscellanea.txt.in'
--- jobs/miscellanea.txt.in	2013-04-15 09:24:25 +0000
+++ jobs/miscellanea.txt.in	2013-09-24 01:09:17 +0000
@@ -117,6 +117,6 @@
  STEPS:
   1. Prior to running the test, you should have configured and used the Dedicated Management Port to remotely power off/on this sytem.
  VERIFICATION:
+  Skip this test if this system ONLY uses shared management/ethernet ports OR if this system does not have a BMC (Management Console)
   1. Select Yes if you successfully used IPMI to remotely power this system off and on using the dedicated management port.
   2. Select No if you attempted to use the dedicated management port to remotely power this system off/on and it failed for some reason.
-  3. Skip this test if this system ONLY uses shared management/ethernet ports OR if this system does not have a BMC (Management Console)

=== modified file 'jobs/networking.txt.in'
--- jobs/networking.txt.in	2013-04-25 20:23:34 +0000
+++ jobs/networking.txt.in	2013-09-24 01:09:17 +0000
@@ -5,12 +5,14 @@
  package.name == 'module-init-tools'
  package.name == 'pciutils'
 command: network_device_info
+estimated_duration: 1.2
 _description: Test to detect the available network controllers
 
 plugin: shell 
 name: networking/internet
 depends: networking/detect
 command: internet_test
+estimated_duration: 2.000
 _description: Tests whether the system has a working Internet connection.
 
 plugin: local
@@ -40,6 +42,7 @@
  package.name == 'network-manager'
  device.category == 'NETWORK'
 command: udev_resource | filter_templates -w "category=WIRELESS" -w "category=NETWORK"| awk "/path: / { print \$2 }"| xargs -n 1 sh -c "for i in \`ls /sys\$0/net 2>/dev/null\`; do network_info \$i; done"
+estimated_duration: 1.1
 _description:
  This is an automated test to gather some info on the current state of your network devices. If no devices are found, the test will exit with an error.
 

=== modified file 'jobs/optical.txt.in'
--- jobs/optical.txt.in	2013-07-05 16:43:48 +0000
+++ jobs/optical.txt.in	2013-09-24 01:09:17 +0000
@@ -61,8 +61,9 @@
  command: set -o pipefail; optical_write_test /dev/`ls /sys$path/block` | ansi_parser
  description:
   PURPOSE:
-      This test will check your system's $product CD writing capabilities. This test requires a blank CD-R or CD+R. If you do not have a blank disk, skip this test.
+      This test will check your system's $product CD writing capabilities. This test requires a blank CD-R or CD+R.
   STEPS:
+      Skip this test if you do not have a blank CD disk.
       1. Insert a blank CD-R or CD+R into your drive
       2. Click "Test" to begin.
       3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 5 minutes or the test will time out.
@@ -121,8 +122,9 @@
  command: set -o pipefail; optical_write_test /dev/`ls /sys$path/block` | ansi_parser
  description:
   PURPOSE:
-      This test will check your system's $product writing capabilities. This test requires a blank DVD-R or DVD+R. If you do not have a blank DVD disk, skip this test.
+      This test will check your system's $product writing capabilities. This test requires a blank DVD-R or DVD+R.
   STEPS:
+      Skip this test if you do not have a blank DVD disk.
       1. Enter a blank DVD-R or DVD+R into your drive
       2. Click "Test" to begin.
       3. When the CD tray ejects the media after burning, close it (DO NOT remove the disk, it is needed for the second portion of the test). Note, you must close the drive within 5 minutes or the test will time out.

=== modified file 'jobs/power-management.txt.in'
--- jobs/power-management.txt.in	2013-04-09 22:07:01 +0000
+++ jobs/power-management.txt.in	2013-09-24 01:09:17 +0000
@@ -17,7 +17,7 @@
 _description: Test ACPI Wakealarm (fwts wakealarm)
 requires:
  package.name == 'fwts'
-command: fwts_test -w -l $CHECKBOX_DATA/fwts-wakealarm.log
+command: fwts_test -f aborted -w -l $CHECKBOX_DATA/fwts-wakealarm.log
 
 plugin: attachment
 name: power-management/fwts_wakealarm-log-attach
@@ -132,6 +132,7 @@
 name: power-management/rtc
 command:
  test -e /dev/rtc || ( echo "ERROR: Real Time Clock not found" >&2 && exit 1 )
+estimated_duration: 0.02
 _description:
  Make sure that the RTC (Real-Time Clock) device exists.
 

=== modified file 'jobs/resource.txt.in'
--- jobs/resource.txt.in	2013-07-05 16:43:48 +0000
+++ jobs/resource.txt.in	2013-09-24 01:09:17 +0000
@@ -1,45 +1,53 @@
 name: cpuinfo
 plugin: resource
 command: cpuinfo_resource
+estimated_duration: 0.08
 description: Gets CPU resource info from /proc/cpuinfo
 
 name: cdimage
 plugin: resource
 user: root
 command: cdimage_resource
+estimated_duration: 0.5
 description: Gets installation info from casper.log and media-info
 
 name: dpkg
 plugin: resource
 command: dpkg_resource
+estimated_duration: 0.5
 requires: package.name == "dpkg"
 description: Gets info on the version of dpkg installed
 
 name: gconf
 plugin: resource
 command: gconf_resource | filter_templates -w 'name=.*proxy.*'
+estimated_duration: 0.6
 requires: package.name == "gconf2"
 description: Generates resource info from gconf settings
 
 name: lsb
 plugin: resource
 command: lsb_resource
+estimated_duration: 1.0
 requires: package.name == "lsb-release"
 description: Generates release info based on /etc/lsb-release
 
 name: meminfo
 plugin: resource
 command: meminfo_resource
+estimated_duration: 0.12
 description: Generates resource info based on /proc/meminfo
 
 name: module
 plugin: resource
 command: module_resource
+estimated_duration: 0.4
 description: Generates resources info on running kernel modules
 
 name: package
 plugin: resource
 command: dpkg-query -W -f='name: ${Package}\nversion: ${Version}\n\n'
+estimated_duration: 4.0
 description: Generates a list of packages
 
 name: executable
@@ -51,6 +59,7 @@
 name: device
 plugin: resource
 command: udev_resource
+estimated_duration: 0.36
 requires: package.name == "udev"
 description: Creates resource info from udev 
 
@@ -59,21 +68,25 @@
 user: root
 requires: package.name == "dmidecode"
 command: dmi_resource
+estimated_duration: 0.5
 
 name: efi
 plugin: resource
 user: root
 command: efi_resource
+estimated_duration: 0.3
 
 name: uname
 plugin: resource
 command: uname_resource
+estimated_duration: 0.04
 description: Creates resource info from uname output
 
 name: sleep
 plugin: resource
 command: for state in `cat /sys/power/state`; do echo "$state: supported"; done
 description: Create resource info for supported sleep states
+estimated_duration: 0.100
 
 name: optical_drive
 plugin: resource
@@ -85,17 +98,20 @@
              echo "$media: readonly"
      fi
  done
+estimated_duration: 36.0
 requires: package.name == "wodim"
 description: Create resource info for supported optical actions
 
 name: block_device
 plugin: resource
 command: block_device_resource
+estimated_duration: 0.060
 description: Create resource info for removable block devices 
 
 name: display
 plugin: resource
 command: display_resource
+estimated_duration: 0.3
 requires: package.name == "x11-xserver-utils"
 description: Creates display resource info from xrandr output
 
@@ -107,6 +123,7 @@
      echo -n "usb$version: "
      lsusb |grep -q "Linux Foundation ${version}.0 root hub" && echo "supported" || echo "unsupported"
  done
+estimated_duration: 0.15
 
 name: xinput
 plugin: resource

=== modified file 'jobs/stress.txt.in'
--- jobs/stress.txt.in	2013-07-05 16:43:48 +0000
+++ jobs/stress.txt.in	2013-09-24 01:09:17 +0000
@@ -133,30 +133,32 @@
 requires:
  package.name == 'upstart'
  package.name == 'fwts'
-command: pm_test -r 100 --silent --log-level=notset reboot
+command: pm_test -r 100 --silent --log-level=notset reboot --log-dir=$CHECKBOX_DATA
 user: root
+environ: CHECKBOX_DATA
 _description:
  Stress reboot system (100 cycles)
 
 plugin: attachment
 name: stress/reboot_log
 depends: stress/reboot
-command: tar cvfz stress_reboot.tgz $CHECKBOX_DATA/*reboot.100.log && cat $CHECKBOX_DATA/stress_reboot.tgz
+command: tar cvfz $CHECKBOX_DATA/stress_reboot.tgz $CHECKBOX_DATA/*reboot.100.log && cat $CHECKBOX_DATA/stress_reboot.tgz
 
 plugin: shell
 name: stress/poweroff
 requires:
  package.name == 'upstart'
  package.name == 'fwts'
-command: pm_test -r 100 --silent --log-level=notset poweroff
+command: pm_test -r 100 --silent --log-level=notset poweroff --log-dir=$CHECKBOX_DATA
 user: root
+environ: CHECKBOX_DATA
 _description:
  Stress poweroff system (100 cycles)
 
 plugin: attachment
 name: stress/poweroff_log
 depends: stress/poweroff
-command: tar cvfz stress_poweroff.tgz $CHECKBOX_DATA/*poweroff.100.log && cat $CHECKBOX_DATA/stress_poweroff.tgz
+command: tar cvfz $CHECKBOX_DATA/stress_poweroff.tgz $CHECKBOX_DATA/*poweroff.100.log && cat $CHECKBOX_DATA/stress_poweroff.tgz
 
 plugin: shell
 name: stress/reboot_check
@@ -168,7 +170,7 @@
 name: stress/reboot_check_log
 depends: stress/reboot_check
 command:
- tar cvfz stress_reboot_check.tgz $CHECKBOX_DATA/pm_log_check_reboot.100.log && cat $CHECKBOX_DATA/stress_reboot_check.tgz
+ tar cvfz $CHECKBOX_DATA/stress_reboot_check.tgz $CHECKBOX_DATA/pm_log_check_reboot.100.log && cat $CHECKBOX_DATA/stress_reboot_check.tgz
 
 plugin: shell
 name: stress/poweroff_check
@@ -180,7 +182,7 @@
 name: stress/poweroff_check_log
 depends: stress/poweroff_check
 command:
- tar cvfz stress_poweroff_check.tgz $CHECKBOX_DATA/pm_log_check_poweroff.100.log && cat $CHECKBOX_DATA/stress_poweroff_check.tgz
+ tar cvfz $CHECKBOX_DATA/stress_poweroff_check.tgz $CHECKBOX_DATA/pm_log_check_poweroff.100.log && cat $CHECKBOX_DATA/stress_poweroff_check.tgz
 
 plugin: shell
 name: stress/graphics

=== modified file 'plugins/jobs_info.py'
--- plugins/jobs_info.py	2013-07-05 16:43:48 +0000
+++ plugins/jobs_info.py	2013-09-24 01:09:17 +0000
@@ -58,7 +58,7 @@
     "environ": List(String(), required=False),
     "requires": List(String(), separator=r"\n", required=False),
     "resources": List(String(), required=False),
-    "estimated_duration": Int(required=False),
+    "estimated_duration": Float(required=False),
     "timeout": Int(required=False),
     "user": String(required=False),
     "data": String(required=False)})

=== modified file 'po/ace.po'
--- po/ace.po	2013-07-05 16:43:48 +0000
+++ po/ace.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3475,7 +3475,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3521,7 +3521,7 @@
 msgid "Type Text"
 msgstr ""
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr ""
 
@@ -3529,7 +3529,7 @@
 msgid "Connection established lost a packet"
 msgstr ""
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr ""
 

=== modified file 'po/af.po'
--- po/af.po	2013-07-05 16:43:48 +0000
+++ po/af.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3475,7 +3475,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3521,7 +3521,7 @@
 msgid "Type Text"
 msgstr ""
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr ""
 
@@ -3529,7 +3529,7 @@
 msgid "Connection established lost a packet"
 msgstr ""
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr ""
 

=== modified file 'po/am.po'
--- po/am.po	2013-07-05 16:43:48 +0000
+++ po/am.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3475,7 +3475,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3521,7 +3521,7 @@
 msgid "Type Text"
 msgstr ""
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr ""
 
@@ -3529,7 +3529,7 @@
 msgid "Connection established lost a packet"
 msgstr ""
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr ""
 

=== modified file 'po/ar.po'
--- po/ar.po	2013-07-05 16:43:48 +0000
+++ po/ar.po	2013-09-24 01:09:17 +0000
@@ -8,20 +8,14 @@
 "Project-Id-Version: checkbox\n"
 "Report-Msgid-Bugs-To: \n"
 "POT-Creation-Date: 2012-07-12 16:08-0400\n"
-"PO-Revision-Date: 2012-11-13 18:41+0000\n"
+"PO-Revision-Date: 2013-08-12 05:25+0000\n"
 "Last-Translator: Ibrahim Saed <ibraheem5000@xxxxxxxxx>\n"
 "Language-Team: Arabic <ar@xxxxxx>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
-
-#. Title of the user interface
-#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
-#: ../plugins/user_interface.py:43
-msgid "System Testing"
-msgstr "اختبار النظام"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #: ../gtk/checkbox-gtk.ui.h:9
 msgid "_Previous"
@@ -66,6 +60,12 @@
 #~ msgid "$output"
 #~ msgstr "$مخرجات"
 
+#. Title of the user interface
+#: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
+#: ../plugins/user_interface.py:43
+msgid "System Testing"
+msgstr "اختبار النظام"
+
 #: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:561
 msgid "_Test"
 msgstr "ا_ختبر"
@@ -146,7 +146,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -167,7 +167,7 @@
 "أو أي أصوات أخرى غريبة؟"
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -190,7 +190,7 @@
 "    هل سمعت كلامك؟"
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -213,7 +213,7 @@
 "    هل سمعت كلامك؟"
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -242,7 +242,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -252,7 +252,7 @@
 "الصوت في الحاسوب ولإجراء اختبارات أكثر تفصيلًا في بيئة محكمة."
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr "يرفق سجل جمع بيانات عتاد الصوت في النتائج."
 
@@ -262,142 +262,142 @@
 msgstr "قياس الأداء لكل قرص"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -834,17 +834,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -876,12 +876,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -893,7 +893,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -906,19 +906,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -935,12 +935,12 @@
 "    هل ترى شرائط ألوان وسواكن؟"
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -951,17 +951,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -986,7 +986,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -1004,13 +1004,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -1028,113 +1028,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1495,7 +1495,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1503,7 +1503,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1533,14 +1533,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1569,7 +1569,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1608,14 +1608,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1645,7 +1645,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1653,7 +1653,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1683,14 +1683,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1719,7 +1719,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1727,7 +1727,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1912,29 +1912,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1946,9 +1946,17 @@
 "VERIFICATION:\n"
 "    Did a notification show and was the connection correctly established?"
 msgstr ""
+"الهدف:\n"
+"هذا الاختبار سيفحص اتصالك السلكي\n"
+"الخطواط:\n"
+"1. انقر على أيقونة الشبكة من على الشريط العلوي\n"
+"2. اختر شبكة من أسفل قسم \"الشبكة سلكية\"\n"
+"3. انقر \"اختبر\" لتتحقق من أنه بإمكانك إنشاء اتصال HTTP\n"
+"التحقق:\n"
+"هل ظهر لك تنبيه بأنك اتصلت بشبكة بالفعل وهل نشأ اتصال صحيح؟"
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1966,38 +1974,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -2047,7 +2055,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -2102,7 +2110,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2317,12 +2325,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2367,7 +2375,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2375,12 +2383,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2388,12 +2396,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2401,13 +2409,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2415,27 +2423,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2466,7 +2474,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2489,39 +2497,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2534,7 +2542,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2542,49 +2550,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2599,7 +2607,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2610,7 +2618,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2618,14 +2626,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2634,7 +2642,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2803,7 +2811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3240,12 +3248,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3259,42 +3267,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3655,7 +3663,7 @@
 msgid "Exchanging information with the server..."
 msgstr "يجري تبادل المعلومات مع الخادوم..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3709,7 +3717,7 @@
 msgid "Type Text"
 msgstr "اكتب نصا"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "لا اتصال بالإنترنت"
 
@@ -3717,7 +3725,7 @@
 msgid "Connection established lost a packet"
 msgstr "الاتصال المُؤسَّس انقطعت إشارته"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "أُسس الاتصال بالإنترنت"
 

=== modified file 'po/ast.po'
--- po/ast.po	2013-07-05 16:43:48 +0000
+++ po/ast.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 "Language: ast\n"
 
 #. Title of the user interface
@@ -199,7 +199,7 @@
 "   2. ¿Sentisti un soníu?"
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -220,7 +220,7 @@
 "clics u otros ruíos estraños?"
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -246,7 +246,7 @@
 "¿Escuchóse la grabación?"
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -272,7 +272,7 @@
 "¿Escuchóse la grabación?"
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -304,7 +304,7 @@
 "direutamente coneutaes, como con un cable de conexón."
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -315,7 +315,7 @@
 "detallaes baxo un entornu controláu."
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 "Amiesta'l rexistru de recoyida de datos del hardware de soníu a los "
@@ -327,142 +327,142 @@
 msgstr "Prueba comparativa de cada discu"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -950,19 +950,19 @@
 msgstr "Prueba de disquete"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr "Prueba p'amosar la versión de Xorg"
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 "Arranca gtkperf p'asegurase de que los casos de pruebes basaos en GTK "
 "funcionen"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -1016,12 +1016,12 @@
 "     ¿Camudó la rotación de la pantalla como s'esperaba?"
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Prueba que'l procesu de X ta n'execución."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr "Prueba que X nun ta funcionando en mou a prueba d'errores."
 
@@ -1035,7 +1035,7 @@
 "gráficos basaos ​​en Intel."
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -1056,7 +1056,7 @@
 "     ¿Ye esto aceutable pa la to pantalla?"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -1065,12 +1065,12 @@
 "mínima recomendada (800x600). Consulta equí pa más información:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -1087,12 +1087,12 @@
 "     ¿Vense les barres de color y la estática?"
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr "Verifica que los controladores VESA nun tean n'usu"
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -1109,17 +1109,17 @@
 "     ¿Paecióte ver que la pantalla trabayaba en cada ún de los moos de videu?"
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr "Verifica si'l hardware ye quien a correr Compiz"
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr "Verifica si'l Hardware ye quien a facer correr Unity 3D"
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -1153,7 +1153,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -1171,13 +1171,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -1209,67 +1209,67 @@
 "de salir de talu estáu?"
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr "Axunta un informe de los códecs instalaos pa Intel HDA"
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr "Axunta un informe de la CPU"
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr "Axunta una copia de /var/log/dmesg a los resultaos de la prueba"
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr "Información axunta en DMI"
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr "Axunta salida dmidecode"
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr "Axunta salida prolija de lspci"
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr "Axunta los conteníos de dellos ficheros de configuración modprobe."
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr "Axunta'l conteníu del ficheru /etc/modules."
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr "axunta los conteníos de dellos ficheros de configuración sysctl."
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr "Axunta un informe de los atributos de sysfs."
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
@@ -1277,49 +1277,49 @@
 "del sistema."
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr "Axunta un ficheru comprimíu de los datos gcov si ta presente."
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 "Axunta una llista de los módulos del nucleu que ta anguaño n'execución."
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr "Axunta'l conteníu de /proc/acpi/sleep si existe."
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Información de la tabla d'arranque."
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Información de preseos SATA/IDE."
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr "Axunta'l ficheru bootchart.png a les execuciones de bootchart"
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 "Axunta'l rexistru de bootchart a les execuciones de prueba de bootchart."
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr "instala l'instalador tarball bootchart si ye qu'esiste"
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr "Axunta'l rexistru de depuración del instalador si existe."
 
@@ -1738,7 +1738,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1749,7 +1749,7 @@
 "depués de que'l sistema se suspenda."
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1779,7 +1779,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
@@ -1788,7 +1788,7 @@
 "insert. Comprueba la llectura y escritura de la tarxeta SD."
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1817,7 +1817,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1859,7 +1859,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
@@ -1868,7 +1868,7 @@
 "Comprueba la llectura y escritura de la tarxeta SDHC."
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1898,7 +1898,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1909,7 +1909,7 @@
 "sistema."
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1939,7 +1939,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
@@ -1948,7 +1948,7 @@
 "Comprueba la llectura y escritura de la tarxeta CF."
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1977,7 +1977,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1988,7 +1988,7 @@
 "suspender el sistema."
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -2247,22 +2247,22 @@
 "    ¿El monitor quedó en negro y prendióse otra vuelta?"
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr "Prueba pa deteutar controladores de rede disponibles"
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Prueba si'l sistema tien una conexón d'Internet funcionando."
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Información de la rede"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
@@ -2271,7 +2271,7 @@
 "preseos de rede. Si nun los alcuentra, amuesa un fallu."
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -2293,7 +2293,7 @@
 "    ¿ Apaeció una notificación y la conexón afitóse correutamente?"
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -2323,7 +2323,7 @@
 "    ¿ Apaeció una notificación y la conexón afitóse correutamente?"
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -2332,7 +2332,7 @@
 "na rede usando paquetes ICMP ECHO."
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -2341,13 +2341,13 @@
 "aciu de HTTP"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "Prueba pa ver si se pues sincronizar el reló llocal con un sirvidor NTP"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -2356,13 +2356,13 @@
 "duana de SSH"
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "Intentar activar una imprentadora na rede ya imprentar una páxina de prueba."
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -2428,7 +2428,7 @@
 "\"No\" si falla."
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -2528,7 +2528,7 @@
 "    ¿Tolos pasos funcionaron?"
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2842,14 +2842,14 @@
 "    ¿El sistema reanudóse cuando s'abrió la tapa?"
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 "Asegúrate que'l preséu RTC (Reló de tiempu real n'inglés Real-Time Clock) "
 "esiste."
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2899,7 +2899,7 @@
 "prueba considérase superada si'l sistema nun se conxela."
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2907,12 +2907,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2920,12 +2920,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2933,13 +2933,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2947,27 +2947,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -3000,7 +3000,7 @@
 "d'haber executao la prueba de suspensión"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -3037,23 +3037,23 @@
 "    ¿Suspendióse y reanicióse'l sistema correutamente?"
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr "Esta ye la versión automatizada de suspensión/suspensión_avanzao."
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "Probar la rede dempués de reanudar."
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr "Prueba pa ver si tienes la mesma resolución dempués de reanudar."
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
@@ -3061,19 +3061,19 @@
 "son les mesmes qu'enantes de suspender."
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr "Verificar que toles CPUs tán en llinia dempués de reaniciar."
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 "Verifica que tola memoria ta disponible dempués de la reanudación de la "
 "suspensión."
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -3086,7 +3086,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -3097,35 +3097,35 @@
 "comprueba que la conexón funciona de la manera esperada."
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -3135,7 +3135,7 @@
 "suspensión."
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
@@ -3144,7 +3144,7 @@
 "Unvia una imaxe al preséu especificáu pola variable d'entornu BTDEVADDR."
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -3169,7 +3169,7 @@
 "    ¿Tresfiriéronse los datos correutamente?"
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -3186,7 +3186,7 @@
 "    ¿La pantalla amuésase correutamente nel mou deteutáu?"
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -3197,7 +3197,7 @@
 "tomando captures de pantalla y xubiéndolas como datos axuntos."
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -3206,7 +3206,7 @@
 "suspensión/ciclu_resoluciones_dempués_suspensión a los resultaos del test ."
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -3219,7 +3219,7 @@
 "coneuta'l jack de salida d'audio al jack d'entrada d'audio."
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -3421,7 +3421,7 @@
 msgstr "Esta prueba ye automática y execútase dempués de usb/insert."
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -4132,13 +4132,13 @@
 " ¿Funcionó too como s'esperaba?"
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 "Prueba d'esploración inalámbrica. Esplora ya informa de les AP descubiertes."
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -4160,7 +4160,7 @@
 "    ¿Amosóse una notificación y pudo afitase la conexón correutamente?"
 
 #. description
-#: ../jobs/wireless.txt.in:44
+#: ../jobs/wireless.txt.in:46
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11b/g protocols."
@@ -4169,7 +4169,7 @@
 "con seguridá WPA y protocolos 802.11b/g."
 
 #. description
-#: ../jobs/wireless.txt.in:56
+#: ../jobs/wireless.txt.in:58
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11b/g protocols."
@@ -4178,7 +4178,7 @@
 "ensin usar seguridá y colos protocolos 802.11b/g."
 
 #. description
-#: ../jobs/wireless.txt.in:68
+#: ../jobs/wireless.txt.in:70
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11n protocol."
@@ -4187,7 +4187,7 @@
 "ensin usar seguridá WPA y el protocolu 802.11n."
 
 #. description
-#: ../jobs/wireless.txt.in:80
+#: ../jobs/wireless.txt.in:82
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11n protocol."
@@ -4196,7 +4196,7 @@
 "ensin usar seguridá y el protocolu 802.11n."
 
 #. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
@@ -4204,7 +4204,7 @@
 "Comprueba la optimización d'una conexón inalámbrica cola ferramienta iperf."
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -4566,7 +4566,7 @@
 msgid "Exchanging information with the server..."
 msgstr "Intercambiando información col sirvidor..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -4617,7 +4617,7 @@
 msgid "Type Text"
 msgstr "Teclee'l testu"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "Nyn hai conexón a Internet"
 
@@ -4625,7 +4625,7 @@
 msgid "Connection established lost a packet"
 msgstr "La conexón actual perdió un paquete"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "Conexón a Internet afitada dafechu"
 

=== modified file 'po/az.po'
--- po/az.po	2013-07-05 16:43:48 +0000
+++ po/az.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:11+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -100,7 +100,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -113,7 +113,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -127,7 +127,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -141,7 +141,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -162,7 +162,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -170,7 +170,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -180,142 +180,142 @@
 msgstr "Hər bir disk üçün bençmark"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -668,17 +668,17 @@
 msgstr "Floppi testi"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr "Xorg versiyasının təyin edilməsi üçün test"
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -710,12 +710,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "X proccesin işlədiyini təyin etmək üçün test"
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -727,7 +727,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -740,19 +740,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -763,12 +763,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr "VESA idarəedicilərinin işlədilmədiyinin yoxlanılması"
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -779,17 +779,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr "Avadanlığın compiz-i işlədə biləcəyinin yoxla"
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr "Avadanlığın Unity 3D işlədə biləcəyini yoxla"
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -814,7 +814,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -832,13 +832,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -856,113 +856,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr "DMİ-da qoşulmuş məlumat"
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1323,7 +1323,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1331,7 +1331,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1361,14 +1361,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1397,7 +1397,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1436,14 +1436,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1473,7 +1473,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1481,7 +1481,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1511,14 +1511,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1547,7 +1547,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1555,7 +1555,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1740,29 +1740,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1776,7 +1776,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1794,38 +1794,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1875,7 +1875,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1930,7 +1930,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2145,12 +2145,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2195,7 +2195,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2203,12 +2203,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2216,12 +2216,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2229,13 +2229,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2243,27 +2243,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2294,7 +2294,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2317,39 +2317,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2362,7 +2362,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2370,49 +2370,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2427,7 +2427,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2438,7 +2438,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2446,14 +2446,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2462,7 +2462,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2631,7 +2631,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3058,12 +3058,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3077,42 +3077,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3478,7 +3478,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3524,7 +3524,7 @@
 msgid "Type Text"
 msgstr ""
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr ""
 
@@ -3532,7 +3532,7 @@
 msgid "Connection established lost a packet"
 msgstr ""
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr ""
 

=== modified file 'po/be.po'
--- po/be.po	2013-07-05 16:43:48 +0000
+++ po/be.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -670,17 +670,17 @@
 msgstr "Тэст дыскеты"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr "Выканаць gtkperf каб вызначыць працаздольнасць тэстаў на базе GTK"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -712,12 +712,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Праверка выканання працэсу X."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr "Праверка незадзейнічання працэсу X у бяспечным рэжыме."
 
@@ -729,7 +729,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -742,7 +742,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -751,12 +751,12 @@
 "мінімальнае вырашэнне (800x600). Дэталі:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -767,12 +767,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -783,17 +783,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -818,7 +818,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -836,13 +836,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -860,113 +860,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Інфармацыя Bootchart."
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Інфармацыя аб прыладах SATA / IDE."
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1327,7 +1327,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1335,7 +1335,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1365,14 +1365,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1401,7 +1401,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1440,14 +1440,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1477,7 +1477,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1485,7 +1485,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1515,14 +1515,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1551,7 +1551,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1559,7 +1559,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1746,29 +1746,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Праверка працаздольнасці злучэння з сеткай Інтэрнэт"
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Інфармацыя аб сетцы"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1782,7 +1782,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1800,7 +1800,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -1809,7 +1809,7 @@
 "некаторымі сістэмамі ў сетцы."
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -1817,13 +1817,13 @@
 "Аўтаматызаваная праверка магчымасці загрузкі файлаў з выкарыстаннем HTTP"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "Праверка магчымасці сінхранізацыі лакальнага гадзінніка з NTP серверам"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -1831,14 +1831,14 @@
 "Праверка магчымасці ўсталёўкі checkbox-сервера ў сетцы з выкарыстаннем SSH."
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "Паспрабаваць ўключыць аддалены прынтар у сетку і надрукаваць пробную "
 "старонку."
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1888,7 +1888,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1943,7 +1943,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2158,12 +2158,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr "Праверце даступнасць RTC прылады."
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2208,7 +2208,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2216,12 +2216,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2229,12 +2229,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2242,13 +2242,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2256,27 +2256,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2310,7 +2310,7 @@
 "рэжыму чакання"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2335,17 +2335,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "Праверка сеткі пасля выхаду з рэжыму паніжанага энергаспажывання."
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
@@ -2353,23 +2353,23 @@
 "паніжанага энергаспажывання."
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2382,7 +2382,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2393,35 +2393,35 @@
 "бесправаднога інтэрфейсу і правярае працаздольнасць злучэння."
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -2430,14 +2430,14 @@
 "чакання і параўноўвае яго з адрасам атрыманым да пераходу ў рэжым чакання."
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2452,7 +2452,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2463,7 +2463,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2474,14 +2474,14 @@
 "здымкаў экрана і перадачай іх ва ўкладанні."
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2494,7 +2494,7 @@
 "злучэння раздыма гукавога выхаду і раздыма гукавога ўваходу."
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2663,7 +2663,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3090,12 +3090,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3109,42 +3109,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3529,7 +3529,7 @@
 msgid "Exchanging information with the server..."
 msgstr "Абмен дадзенымі з серверам ..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3575,7 +3575,7 @@
 msgid "Type Text"
 msgstr "Надрукаваць тэкст"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "Няма падлучэння да Інтэрнэт"
 
@@ -3583,7 +3583,7 @@
 msgid "Connection established lost a packet"
 msgstr "Страта пакетаў на ўсталяваным злучэнні"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "Інтэрнэт-падлучэнне працуе цалкам"
 

=== modified file 'po/bg.po'
--- po/bg.po	2013-07-05 16:43:48 +0000
+++ po/bg.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -669,17 +669,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -711,12 +711,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -728,7 +728,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -741,19 +741,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -764,12 +764,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -780,17 +780,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -815,7 +815,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -833,13 +833,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -857,113 +857,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1324,7 +1324,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1332,7 +1332,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1362,14 +1362,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1398,7 +1398,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1437,14 +1437,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1474,7 +1474,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1482,7 +1482,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1512,14 +1512,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1548,7 +1548,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1556,7 +1556,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1741,29 +1741,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1777,7 +1777,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1795,38 +1795,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1876,7 +1876,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1931,7 +1931,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2146,12 +2146,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2196,7 +2196,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2204,12 +2204,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2217,12 +2217,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2230,13 +2230,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2244,27 +2244,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2295,7 +2295,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2318,39 +2318,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2363,7 +2363,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2371,49 +2371,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2428,7 +2428,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2439,7 +2439,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2447,14 +2447,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2463,7 +2463,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2632,7 +2632,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3059,12 +3059,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3078,42 +3078,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3499,7 +3499,7 @@
 msgid "Exchanging information with the server..."
 msgstr "Разменяне на информация със сървъра..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3546,7 +3546,7 @@
 msgid "Type Text"
 msgstr "Напишете текст"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "Няма Интернет връзка"
 
@@ -3554,7 +3554,7 @@
 msgid "Connection established lost a packet"
 msgstr "Връзката е осъществена, но беше изгубен пакет"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "Интернет връзката е осъществена"
 

=== modified file 'po/bn.po'
--- po/bn.po	2013-07-05 16:43:48 +0000
+++ po/bn.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -108,7 +108,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -130,7 +130,7 @@
 "শুনতে পাচ্ছেন?"
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -153,7 +153,7 @@
 "    আপনি কি আপনার বক্তৃতা পুনরায় শুনতে পেয়েছিলেন?"
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -176,7 +176,7 @@
 "    আপনি কি আপনার বক্তৃতা পুনরায় শুনতে পেয়েছিলেন?"
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -208,7 +208,7 @@
 "ক্যাবলের মত।"
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -216,7 +216,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -226,142 +226,142 @@
 msgstr "প্রতিটি ডিস্কের জন্য বেঞ্চমার্ক"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -844,17 +844,17 @@
 msgstr "ফ্লপি পরীক্ষা করুন"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr "Xorg সংস্করণ অাউটপুট করতে পরীক্ষা করুন"
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr "GTK ভিত্তিক পরীক্ষা ক্ষেত্রে কাজ নিশ্চত করতে gtkperf সচল করুন"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -908,12 +908,12 @@
 "    প্রদর্শনের ঘূর্ণন পরিবর্তন প্রত্যাশিত হয়েছে কি?"
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "X প্রক্রিয়া সচল কিনা পরীক্ষা করুন।"
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr "পরীক্ষা করুন যে এক্স failsafe মোডে চলমান নয়।"
 
@@ -927,7 +927,7 @@
 "প্রোগ্রাম চলমান হয়।"
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -948,7 +948,7 @@
 "    আপনার প্রদর্শনের জন্য এটা কি গ্রহণযোগ্য?"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -957,12 +957,12 @@
 "(800x600) ছাড়িয়ে গেছে। বিস্তারিত জানার জন্য এখানে দেখুন:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -979,12 +979,12 @@
 "    আপনি কি রঙ বার এবং স্ট্যাটিক দেখতে পাচ্ছেন?"
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr "পরীক্ষা করে দেখুন যে VESA ড্রাইভার ব্যবহৃত হয় না"
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -1001,17 +1001,17 @@
 "    প্রতিটি মোডের জন্য কাজ করার জন্য কি পর্দা প্রদর্শিত হয়েছিল?"
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr "পরীক্ষা করে দেখুন যে হার্ডওয়্যার compiz চালাতে সক্ষম"
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr "পরীক্ষা করে দেখুন যে হার্ডওয়্যার Unity 3D চালাতে সক্ষম কিনা"
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -1045,7 +1045,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -1063,13 +1063,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -1102,67 +1102,67 @@
 "সঠিকভাবে কাজ করছে?"
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr "ইন্টেল hda জন্য ইনস্টলকৃত codecs এর একটি রিপোর্ট সংযুক্ত করুন"
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr "CPU তথ্যের জন্য প্রতিবেদন সংযুক্ত করুন"
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr "পরীক্ষার ফলাফল থেকে / var / log / dmesg এর একটি কপি সংযুক্ত করুন"
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr "DMI তে তথ্য সংযুক্ত করুন"
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr "dmidecode অাউটপুট সংযুক্ত করুন"
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr "ভার্বোস lspci আউটপুট সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr "বিভিন্ন modprobe conf ফাইলের বিষয়বস্তু সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr "/ Etc / মডিউলের বিষয়বস্তু সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr "বিভিন্ন sysctl কনফিগ ফাইলের বিষয়বস্তু সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr "Sysfs গুণাবলীর একটি রিপোর্ট সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
@@ -1170,47 +1170,47 @@
 "করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr "gcov উপাত্ত এর একটি tarball সংযুক্ত করুন যদি বিদ্যমান থাকে।"
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr "বর্তমানে চলমান কার্নেল মডিউল তালিকা তা সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr "বিদ্যমান /proc/acpi/sleep এর বিষয়বস্তু সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Bootchart তথ্য"
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "SATA/IDE ডিভাইস তথ্য।"
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr "Bootchart চালানোর জন্য bootchart PNG ফাইল সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr "Bootchart পরীক্ষা রান জন্য bootchart লগ ফাইল সংযুক্ত করা হয়।"
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr "ইনস্টলার bootchart tarball রূপে ইনস্টল হয় যদি তা বিদ্যমান থাকে।"
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr "ইনস্টলার ডিবাগ লগ বিদ্যমান থাকলে সংযুক্ত করা হয়।"
 
@@ -1628,7 +1628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1639,7 +1639,7 @@
 "পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1669,7 +1669,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
@@ -1678,7 +1678,7 @@
 "পর কার্যকর করা হয়। এটি MMC কার্ডের পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1707,7 +1707,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1749,7 +1749,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
@@ -1758,7 +1758,7 @@
 "পর কার্যকর করা হয়। এটি SD কার্ডের পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1788,7 +1788,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1799,7 +1799,7 @@
 "কার্ডের পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1829,7 +1829,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
@@ -1838,7 +1838,7 @@
 "পর কার্যকর করা হয়। এটি সিএফ কার্ডের পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1867,7 +1867,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1878,7 +1878,7 @@
 "কার্ডের পড়া এবং লেখা পরীক্ষা করে।"
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -2138,22 +2138,22 @@
 "    মনিটরটি কি বন্ধ হয়ে গিয়েছিল এবং পুনরায় চালু হয়েছে?"
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr "অব্যবহৃত নেটওয়ার্ক কনট্রোলার সনাক্তকরণ পরীক্ষা করুন"
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "পরীক্ষা করুন সিস্টেমে ইন্টারনেট সংযোগ কাজ করছে কিনা।"
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "নেটওয়ার্কের তথ্য"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
@@ -2163,7 +2163,7 @@
 "কারণে প্রস্থান করবে।"
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -2187,7 +2187,7 @@
 "    একটি বিজ্ঞপ্তি কি প্রদর্শিত হয়েছে এবং সংযোগ কি সঠিকভাবে প্রতিষ্ঠিত হয়েছে?"
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -2219,7 +2219,7 @@
 "    একটি বিজ্ঞপ্তি কি প্রদর্শিত হয়েছে এবং সংযোগ কি সঠিকভাবে প্রতিষ্ঠিত হয়েছে?"
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -2228,7 +2228,7 @@
 "করতে স্বয়ংক্রিয় পরীক্ষা ক্ষেত্রে নিশ্চিত করা হয়েছে।"
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -2237,14 +2237,14 @@
 "ডাউনলোড করা সম্ভব"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "আমরা স্থানীয় ঘড়ি একটি NTP সার্ভারের সাথে সিঙ্ক করতে পারি কিনা তা দেখতে "
 "পরীক্ষা করি"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -2253,14 +2253,14 @@
 "যেতে পারে।"
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "নেটওয়ার্কে একটি দূরবর্তী প্রিন্টার সক্রিয় করার চেষ্টা করুন এবং একটি "
 "পরীক্ষামূলক পৃষ্ঠা প্রিন্ট করুন।"
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -2312,7 +2312,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -2381,7 +2381,7 @@
 "    সমস্ত ধাপ কি কাজ করছে?"
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2689,12 +2689,12 @@
 "    সিস্টেম পুনরাম্ভ করা হবে কি যখন লিড খোলা ছিল?"
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr "RTC (Real-Time Clock) ডিভাইস আছে কিনা তা নিশ্চিত করুন।"
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2744,7 +2744,7 @@
 "করা হবে যদি সিস্টেমটি নিশ্চল না হয়।"
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2752,12 +2752,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2765,12 +2765,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2778,13 +2778,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2792,27 +2792,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2844,7 +2844,7 @@
 "স্থগিত পরীক্ষা চালানোর পর তুলনার জন্য একটি ফাইলে মেমোরির তথ্য ডাম্প করা হয়"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2881,39 +2881,39 @@
 "    আপনার সিস্টেম সঠিকভাবে স্থগিত এবং পুনরারম্ভ করা হয়েছে কি?"
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr "এটি suspend/suspend_advanced এর স্বয়ংক্রিয় সংস্করণ।"
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "বিরত করার পর নেটওয়ার্ক পরীক্ষা করুন।"
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr "বিরত করার পরও রেজল্যুশন একই আছে তা দেখার জন্য পরীক্ষা করুন।"
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr "মিক্সার সেটিং বাতিল করার অাগে এবং পরে একই অাছে কিনা যাচাই করুন।"
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr "পুনরায় অরম্ভ করার অাগে সকল সিপিও অনলাইনে অাছে কিনা যাচাই করুন।"
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr "স্থগিত করা থেকে পুনরায় অারম্ভ করার অাগে সকল মেমোরি যাচাই করুন।"
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2926,7 +2926,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2937,35 +2937,35 @@
 "এবং সংযোগ প্রত্যাশিতভাবে কাজ করছে কিনা তা চেক করে।"
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -2974,7 +2974,7 @@
 "হওয়ার পূর্বের ঠিকানার সাথে মিলিয়ে দেখে।"
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
@@ -2983,7 +2983,7 @@
 "এনভায়রনমেন্ট ভেরিয়েবল দ্বারা উল্লিখিত ডিভাইসে একটি ছবি পাঠায়।"
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -3008,7 +3008,7 @@
 "    তথ্য কি সঠিকভাবে স্থানান্তরিত হয়েছিল?"
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -3026,7 +3026,7 @@
 "    আপনার প্রদর্শনটি কি সুন্দর দেখাচ্ছে না সনাক্তকৃত মোডের মাধ্যমে?"
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -3037,7 +3037,7 @@
 "আপলোডের মাধ্যমে স্বয়ংক্রিয়ভাবে সম্পন্ন হয়।"
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -3046,7 +3046,7 @@
 "results submission এ সংযুক্ত করে।"
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -3059,7 +3059,7 @@
 "কাজ করবে যদি  audio-out jack থেকে the audio-in jack এ একটি ক্যাবল সংযোগ থাকে।"
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -3263,7 +3263,7 @@
 "the usb/insert test সচল করার পর এই পরীক্ষা স্বয়ংক্রিয় এবং সম্পাদন করা হয়।"
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3969,14 +3969,14 @@
 " এই কর্ম সঞ্চালন কি প্রত্যাশিত ছিল?"
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 "ওয়্যারলেস স্ক্যানিং পরীক্ষা। এটি স্ক্যান করে এবং অনুসন্ধানকৃত APs এর উপর "
 "রিপোর্ট করে।"
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -4000,7 +4000,7 @@
 "    একটি বিজ্ঞপ্তি কি প্রদর্শিত হয়েছে এবং সংযোগ কি সঠিকভাবে প্রতিষ্ঠিত হয়েছে?"
 
 #. description
-#: ../jobs/wireless.txt.in:44
+#: ../jobs/wireless.txt.in:46
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11b/g protocols."
@@ -4009,7 +4009,7 @@
 "কিনা WPA নিরাপত্তা এবং 802.11b/g প্রটোকল ব্যবহার না করে।"
 
 #. description
-#: ../jobs/wireless.txt.in:56
+#: ../jobs/wireless.txt.in:58
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11b/g protocols."
@@ -4018,7 +4018,7 @@
 "কিনা কোন নিরাপত্তা ব্যতিত এবং 802.11b/g প্রটোকল ব্যবহার না করে।"
 
 #. description
-#: ../jobs/wireless.txt.in:68
+#: ../jobs/wireless.txt.in:70
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11n protocol."
@@ -4027,7 +4027,7 @@
 "কিনা WPA নিরাপত্তা এবং  802.11n প্রটোকল ব্যবহার না করে।"
 
 #. description
-#: ../jobs/wireless.txt.in:80
+#: ../jobs/wireless.txt.in:82
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11n protocol."
@@ -4036,7 +4036,7 @@
 "কিনা কোন নিরাপত্তা এবং  802.11n প্রটোকল ব্যবহার না করে।"
 
 #. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
@@ -4044,7 +4044,7 @@
 "একটি সিস্টেমের iperf টুলের মাধ্যমে বেতার সংযোগ কর্মক্ষমতা পরীক্ষা করা হয়।"
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -4446,7 +4446,7 @@
 msgid "Exchanging information with the server..."
 msgstr "সার্ভারের সাথে তথ্য আদান-প্রদান করা হচ্ছে..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -4494,7 +4494,7 @@
 msgid "Type Text"
 msgstr "টেক্সট টাইপ"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "কোনো ইন্টারনেট সংযোগ নেই"
 
@@ -4502,7 +4502,7 @@
 msgid "Connection established lost a packet"
 msgstr "সংযোগ স্থাপনার সময় প্যাকেট হারানো গেছে"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "সম্পূর্ণভাবে ইন্টারনেট সংযোগ স্থাপন"
 

=== modified file 'po/bo.po'
--- po/bo.po	2013-07-05 16:43:48 +0000
+++ po/bo.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:14+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:45+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3488,7 +3488,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3534,7 +3534,7 @@
 msgid "Type Text"
 msgstr "ཡི་གེ་འབྲི་བ"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "དྲ་བ་སྦྲེལ་མཐུད་བྱས་མི་འདུག"
 
@@ -3542,7 +3542,7 @@
 msgid "Connection established lost a packet"
 msgstr "སྦྲེལ་མཐུད་ཀྱིས་ཐུམ་བུ་ཞིག་བརླགས་ཚར་འདུག"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "དྲ་བ་སྦྲེལ་མཐུད་ཡོངས་སུ་རྩ་འཛུགས་བྱས་ཚར་བ"
 

=== modified file 'po/br.po'
--- po/br.po	2013-07-05 16:43:48 +0000
+++ po/br.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3495,7 +3495,7 @@
 msgid "Exchanging information with the server..."
 msgstr "Oc'h eskemm stlennoù gant an dafariad..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3541,7 +3541,7 @@
 msgid "Type Text"
 msgstr "Biziata an destenn"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "Kennask ouzh internet ebet"
 
@@ -3549,7 +3549,7 @@
 msgid "Connection established lost a packet"
 msgstr "Sevenet eo bet ar c'hennask, kollet ez eus bet ur pakad"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "Peursevenet eo bet ar c'hennask ouzh internet"
 

=== modified file 'po/bs.po'
--- po/bs.po	2013-07-05 16:43:48 +0000
+++ po/bs.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -118,7 +118,7 @@
 "   2. Da li ste čuli zvuk?"
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -139,7 +139,7 @@
 "ili druge čudne zvuke iz vaših slušalica?"
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -162,7 +162,7 @@
 "    Da li ste čuli vaš govor reprodukovan?"
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -185,7 +185,7 @@
 "    Da li ste čuli vaš govor reprodukovan?"
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -217,7 +217,7 @@
 "direktno povezani, kao sa patch kablom."
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -228,7 +228,7 @@
 "detaljnijih ispitivanja pod kontroliranim uvjetima."
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr "Dodaje zapisnik audio uređaja rezultatima."
 
@@ -238,147 +238,147 @@
 msgstr "Mjerenje za svaki disk"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr "Pokrenite Render-Bench XRender/Imlib2 mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 "Pokrenite Qgears2 XRender Extension gearsfancy mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 "Pokrenite Qgears2 XRender Extension mjerenje mogućnosti računara za "
 "skaliranje slika"
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr "Pokrenite Qgears2 OpenGL gearsfancy mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 "Pokrenite Qgears2 OpenGL mjerenje mogućnosti računara za skaliranje slika"
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr "Pokrenite GLmark2-ES2 mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr "Pokrenite GLmark2 mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr "Pokrenite Unigine Santuary mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr "Pokrenite Unigine Tropics mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr "Pokrenite Unigine Heaven mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr "Pokrenite Lightsmark mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr "Pokrenite Cachebench Read mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr "Pokrenite Cachebench Write mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 "Pokrenite Cachebench Read / Modify / Write mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr "Pokrenite Stream Copy mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr "Pokrenite Stream Scale mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr "Pokrenite Stream Add mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr "Pokrenite Stream Triad mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr "Pokrenite Network Loopback mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr "Pokrenite Encode MP3 mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr "Pokrenite x264 H.264/AVC encoder mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr "Pokrenite GnuPG mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr "Pokrenite Compress PBZIP2 mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr "Pokrenite Compress 7ZIP mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr "Pokrenite N-Queens mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr "Pokrenite Himeno mjerenje mogućnosti računara"
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr "Upotreba CPJ dok sistem miruje."
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr "Upotreba diska dok sistem miruje."
 
@@ -884,17 +884,17 @@
 msgstr "Test flopi diska"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr "Testza izlaz Xorg verzije"
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr "Pokreni gtkperf kako bi GTK bazirani testovi radili"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -948,12 +948,12 @@
 "    Da li je rotacija ekrana imala promjene kao što je očekivano?"
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Test da li X proces radi."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr "Test da  X ne radi u režimu za slučaj grešaka."
 
@@ -967,7 +967,7 @@
 "Intelovom grafikom."
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -988,7 +988,7 @@
 "    Je li ovo prihvatljivo za vaš ekran?"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -997,12 +997,12 @@
 "minimalnu rezoluciju (800x600). Pogledaj ovdje za detalje:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -1019,12 +1019,12 @@
 "    Da li vidite šipke boja i statiku?"
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr "Provjera da VESA drajveri nisu u upotrebi"
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -1041,17 +1041,17 @@
 "    Da li ekran izgleda da radi za svaki režim?"
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr "Provjera da li je hardver sposoban da pokrene compiz"
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr "Provjera da li je hardver sposoban da pokrene Unity 3D"
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -1094,7 +1094,7 @@
 "    1. Pregledajte dodatke ručno kasnije"
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr "Dodavanje snimke ekrana napravljene u slikama/snimkama ekrana."
 
@@ -1120,14 +1120,14 @@
 "    1. Pregledajte dodatke ručno kasnije"
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 "Dodaje sliku ekrana memorisanu u grafika/slikeekrana_cijeliekran_video"
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -1159,114 +1159,114 @@
 "Dali je sistem uspješno hibernirao, i dali je radio ispravno nakon buđenja?"
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr "Dodaje izvještaj o instaliranim kodecima za Intel HDA"
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr "Prilaže izvještaj o procesoru"
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr "Prilaže kopiju /var/log/dmesg na testne rezultate"
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr "Prilaže informacije o DMI"
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr "Prilaže dmidecode izlaz"
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr "Prilaže vrlo detaljan lspci izlaz."
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr "Dodaje jako rječit lspci izlaz (sa centralnim Upitom)."
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr "Lista USB uređaja"
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr "Prilaže sadržaj raznih modprobe coniguracionih datoteka."
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr "Prilaže sadržaj /etc/modules datoteke."
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr "Prilaže sadržaj raznih sysctl config datoteka."
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr "Prilaže izvještaj o sysfs atributima."
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 "Prilaže ispis udev baze prikazujući sistemske hardverske informacije."
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr "Prilaže tar datoteku gcov podataka ako ih ima."
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr "Prilaže listu trenutno izvršavanih kernel modula."
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr "Prilaže sadržaj /proc/acpi/sleep ako postoji."
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Informacije o dijagramu podizanja."
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Informacija o SATA/IDE uređaju."
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr "Prilaže  bootchart png datoteku prilikom pokretanja bootchart"
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr "Prilaže bootchart dnevnik prilikom pokretanja bootchart testova."
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr "installira instalersku bootchart tar datoteku ako postoji."
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr "Prilaže instalerski debug dnevnik ako postoji."
 
@@ -1732,7 +1732,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1743,7 +1743,7 @@
 "suspendovan."
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1793,7 +1793,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
@@ -1802,7 +1802,7 @@
 "insert. On testira pisanje i čitanje prema  SD kartici."
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1850,7 +1850,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1912,7 +1912,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
@@ -1921,7 +1921,7 @@
 "insert. On testira pisanje i čitanje prema  SDHC kartici."
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1970,7 +1970,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1981,7 +1981,7 @@
 "nakon što je sistem bio suspendovan."
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -2031,7 +2031,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
@@ -2040,7 +2040,7 @@
 "insert. On testira pisanje i čitanje prema CF kartici."
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -2088,7 +2088,7 @@
 "    automatski izabran rezultat."
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -2099,7 +2099,7 @@
 "je sistem bio suspendovan."
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -2379,22 +2379,22 @@
 "    Da li je monitor se ugasio i uključio ponovo?"
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr "Test za detekciju dostupnih mrežnih kontrolera"
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Provjerava da li sistem ima ispravnu Internet vezu"
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Podaci o mreži"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
@@ -2403,7 +2403,7 @@
 "vaših mrežnih uređaja. Ako nema uređaji nađenih, test će izaći sa greškom."
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -2426,7 +2426,7 @@
 "    Da li se obaveštenja prikazala i da li je veza uspostavljena ispravno?"
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -2458,7 +2458,7 @@
 "    Da li se obaveštenja prikazala i da li je veza uspostavljena ispravno?"
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -2467,7 +2467,7 @@
 "koristeći ICMP EHO pakete"
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -2475,13 +2475,13 @@
 "Automatizovani test da se uvjerite da li moguće preuzeti datoteke kroz HTTP"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "Test kojim ćete videti da li možete da usaglasite sat sa NTP serverom"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -2490,13 +2490,13 @@
 "preko SSH-a."
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "Pokušaće da omogući udaljeni štampač na mreži i da otštampa probnu stranicu."
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -2560,7 +2560,7 @@
 "uspije."
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -2656,7 +2656,7 @@
 "    Da li su svi koraci radili?"
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -3001,12 +3001,12 @@
 "    Da li se sistem nastavio kada je poklopac otvoren?"
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr "Uvjerite se da RTC (sat realnog vremena) postoji."
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -3056,7 +3056,7 @@
 "sata. Test se smatra prošao ako sistem ne zamrzne."
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -3067,12 +3067,12 @@
 "hibernaciju/nastavak 30 ciklusa"
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr "Dodaje zapisnik iz 30 ciklusa Hibernacija/Nastavak testa ako postoji"
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -3083,12 +3083,12 @@
 "obustavu/nastavak 30 ciklusa"
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr "Dodaje zapisnik iz 30 ciklusa Obustava/Nastavak testa ako postoji"
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -3099,14 +3099,14 @@
 "hibernaciju/nastavak 250 ciklusa"
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 "Dodaje zapisnik iz 250 ciklusa Hibernacija/Nastavak testa ako postoji"
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -3117,28 +3117,28 @@
 "obustavu/nastavak 250 ciklusa"
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr "Dodaje zapisnik iz 250 ciklusa Obustava/Nastavak testa ako postoji"
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr "Restartovanje sistema pod pritiskom (100 ciklusa)"
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr "Isključivanje računara pod pritiskom (100 ciklusa)"
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 "Potražite u zapisniku arhivu testa restart pod pritiskom (100 ciklusa)"
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 "Potražite u zapisniku arhivu testa isključivanje pod pritiskom (100 ciklusa)"
@@ -3172,7 +3172,7 @@
 "suspendovanja"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -3209,39 +3209,39 @@
 "    Da li vaš sistem obustavitisuspendovao i nastavio pravilno?"
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr "Ovo je automatska verziaj suspenzije/napredne suspenzije."
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "Test mreže nakon povratka."
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr "Test da se vidi da li je ista rezolucija nakon buđenja,"
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr "Provjera da su postavke miksera iste kao prije suspenzije."
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr "Provjeri sa su svi procesori aktivni nakon povratka."
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr "Provjeri da li je sva memorija dostupna nakon povratka iz suspenzije"
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -3262,7 +3262,7 @@
 "    Da li ekran radi normalno nakon nastavka sa radom poslije obustave?"
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -3273,7 +3273,7 @@
 "i provjerava da veza funkcioniše kako je očekivano."
 
 #. description
-#: ../jobs/suspend.txt.in:388
+#: ../jobs/suspend.txt.in:392
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11b/g protocols after the system has been suspended."
@@ -3283,7 +3283,7 @@
 "obustavljen."
 
 #. description
-#: ../jobs/suspend.txt.in:401
+#: ../jobs/suspend.txt.in:405
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11b/g protocols after the system has been suspended."
@@ -3293,7 +3293,7 @@
 "obustavljen."
 
 #. description
-#: ../jobs/suspend.txt.in:414
+#: ../jobs/suspend.txt.in:418
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11n protocol after the system has been suspended."
@@ -3303,7 +3303,7 @@
 "obustavljen."
 
 #. description
-#: ../jobs/suspend.txt.in:427
+#: ../jobs/suspend.txt.in:431
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11n protocol after the system has been suspended."
@@ -3313,7 +3313,7 @@
 "obustavljen."
 
 #. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -3322,7 +3322,7 @@
 "poredi je s adresom dobavljenom prije suspenzije."
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
@@ -3331,7 +3331,7 @@
 "naveden BTDEVADDR varijablom okruženja."
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -3356,7 +3356,7 @@
 "    Su podaci ispravno preneti?"
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -3374,7 +3374,7 @@
 "    Da li vaš ekran izgleda dobro u detektovanog režimu?"
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -3385,7 +3385,7 @@
 "slanja kao prilog."
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
@@ -3394,7 +3394,7 @@
 "suspenzije na slanje rezultata."
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -3407,7 +3407,7 @@
 "izlaz na audio ulaz."
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr "Dodaje zapisnik iz jednog obustava/nastavak testa rezultatima"
 
@@ -3683,7 +3683,7 @@
 msgstr "Ova j test je automatizovan i izvršava se nakon testa ubaivnja USB."
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -4388,13 +4388,13 @@
 " Da li ovo radi kao što se očekuje?"
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 "Test bežičnog skaniranja, Skanira i prijavljuje otkrivene pristupne tačke-"
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -4417,7 +4417,7 @@
 "    Da li se obavještenja prikazala i da li je veza uspostavljena ispravno?"
 
 #. description
-#: ../jobs/wireless.txt.in:44
+#: ../jobs/wireless.txt.in:46
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11b/g protocols."
@@ -4426,7 +4426,7 @@
 "sigurnosti i  802.11b/g protokola."
 
 #. description
-#: ../jobs/wireless.txt.in:56
+#: ../jobs/wireless.txt.in:58
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11b/g protocols."
@@ -4435,7 +4435,7 @@
 "i  802.11b/g protokola."
 
 #. description
-#: ../jobs/wireless.txt.in:68
+#: ../jobs/wireless.txt.in:70
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using WPA "
 "security and the 802.11n protocol."
@@ -4444,7 +4444,7 @@
 "sigurnosti i  802.11n protokola."
 
 #. description
-#: ../jobs/wireless.txt.in:80
+#: ../jobs/wireless.txt.in:82
 msgid ""
 "Tests that the systems wireless hardware can connect to a router using no "
 "security and the 802.11n protocol."
@@ -4453,14 +4453,14 @@
 " 802.11n protokola."
 
 #. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr "Testovi performansi jednog sistema bežične veze preko iperf alata."
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -4861,7 +4861,7 @@
 msgid "Exchanging information with the server..."
 msgstr "Razmjenjivanje informacija sa serverom..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -4916,7 +4916,7 @@
 msgid "Type Text"
 msgstr "Kucajte tekst"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "Nema Internet veze"
 
@@ -4924,7 +4924,7 @@
 msgid "Connection established lost a packet"
 msgstr "Uspostavljena veza izgubila paket"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "Internet veza je u potpunosti uspostavljena"
 

=== modified file 'po/ca.po'
--- po/ca.po	2013-07-05 16:43:48 +0000
+++ po/ca.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:42+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #~ msgid "$output"
 #~ msgstr "$resultat"
@@ -103,7 +103,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -116,7 +116,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -130,7 +130,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -144,7 +144,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -165,7 +165,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -173,7 +173,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -183,142 +183,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -685,19 +685,19 @@
 msgstr "Comprovació del disquet"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 "Executeu el gtkpref per assegurar-vos que les comprovacions basades amb la "
 "GTK funcionen"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -729,12 +729,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Comproveu que s'estigui executant el procés de les X."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 "Comproveu que les X no s'estiguin executant en mode a prova de fallades."
@@ -747,7 +747,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -760,7 +760,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -769,12 +769,12 @@
 "recomanada (800x600). Podeu obtenir-ne més informació a:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -785,12 +785,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -801,17 +801,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -836,7 +836,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -854,13 +854,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -878,113 +878,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Informació del gràfic de procesos d'arrencada."
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Informació del dispositiu SATA/IDE."
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1345,7 +1345,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1353,7 +1353,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1383,14 +1383,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1419,7 +1419,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1458,14 +1458,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1495,7 +1495,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1503,7 +1503,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1533,14 +1533,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1569,7 +1569,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1577,7 +1577,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1764,29 +1764,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Comprova si el sistema té una connexió a Internet que funcioni."
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Informació de la xarxa"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1800,7 +1800,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1818,7 +1818,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -1827,7 +1827,7 @@
 "la xarxa utilitzant paquets ICMP ECHO."
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -1836,14 +1836,14 @@
 "través d'HTTP"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "Comprovació per veure si es pot sincronitzar el rellotge local amb un "
 "servidor NTP"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -1852,14 +1852,14 @@
 "mitjançant SSH."
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "Intenta habilitar una impressora remota de la xarxa i imprimir una pàgina de "
 "comprovació."
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1909,7 +1909,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1964,7 +1964,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2179,13 +2179,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 "Assegureu-vos que el dispositiu RTC (rellotge en temps real) existeix."
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2230,7 +2230,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2238,12 +2238,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2251,12 +2251,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2264,13 +2264,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2278,27 +2278,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2331,7 +2331,7 @@
 "s'hagi executat la comprovació d'aturada temporal"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2357,40 +2357,40 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "Comprovació de la xarxa després de reprendre."
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 "Comprovació per veure que hi ha la mateixa resolució després de reprendre."
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2403,7 +2403,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2415,35 +2415,35 @@
 "funcioni com s'esperava."
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -2453,14 +2453,14 @@
 "d'aturar temporalment."
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2475,7 +2475,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2486,7 +2486,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2498,14 +2498,14 @@
 "adjuntes."
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2518,7 +2518,7 @@
 "cable que connecti la sortida d'àudio amb l'entrada d'àudio."
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2687,7 +2687,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3114,12 +3114,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3133,42 +3133,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3560,7 +3560,7 @@
 msgid "Exchanging information with the server..."
 msgstr "S'està intercanviant informació amb el servidor..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3606,7 +3606,7 @@
 msgid "Type Text"
 msgstr "Escriviu el text"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "No hi ha connexió a Internet"
 
@@ -3614,7 +3614,7 @@
 msgid "Connection established lost a packet"
 msgstr "La connexió establerta ha perdut un paquet"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "S'ha establert completament la connexió a Internet"
 

=== modified file 'po/ca@xxxxxxxxxxx'
--- po/ca@xxxxxxxxxxx	2013-07-05 16:43:48 +0000
+++ po/ca@xxxxxxxxxxx	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -100,7 +100,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -113,7 +113,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -127,7 +127,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -141,7 +141,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -162,7 +162,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -170,7 +170,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -180,142 +180,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -682,19 +682,19 @@
 msgstr "Comprovació del disquet"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 "Executeu el gtkpref per assegurar-vos que les comprovacions basades amb la "
 "GTK funcionen"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -726,12 +726,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Comproveu que s'estiga executant el procés de les X."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 "Comproveu que les X no s'estiguen executant en mode a prova de fallades."
@@ -744,7 +744,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -757,7 +757,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -766,12 +766,12 @@
 "recomanada (800x600). Podeu obtindre'n més informació a:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -782,12 +782,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -798,17 +798,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -833,7 +833,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -851,13 +851,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -875,113 +875,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Informació del gràfic de procesos d'arrencada."
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Informació del dispositiu SATA/IDE."
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1342,7 +1342,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1350,7 +1350,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1380,14 +1380,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1416,7 +1416,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1455,14 +1455,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1492,7 +1492,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1500,7 +1500,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1530,14 +1530,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1566,7 +1566,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1574,7 +1574,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1761,29 +1761,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Comprova si el sistema té una connexió a Internet que funcione."
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Informació de la xarxa"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1797,7 +1797,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1815,7 +1815,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
@@ -1824,7 +1824,7 @@
 "la xarxa utilitzant paquets ICMP ECHO."
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
@@ -1833,14 +1833,14 @@
 "través d'HTTP"
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 "Comprovació per veure si es pot sincronitzar el rellotge local amb un "
 "servidor NTP"
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
@@ -1849,14 +1849,14 @@
 "mitjançant SSH."
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 "Intenta habilitar una impressora remota de la xarxa i imprimir una pàgina de "
 "comprovació."
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1906,7 +1906,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1961,7 +1961,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2176,13 +2176,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 "Assegureu-vos que el dispositiu RTC (rellotge en temps real) existeix."
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2227,7 +2227,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2235,12 +2235,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2248,12 +2248,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2261,13 +2261,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2275,27 +2275,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2328,7 +2328,7 @@
 "s'haja executat la comprovació d'parada temporal"
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2354,40 +2354,40 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr "Comprovació de la xarxa després de reprendre."
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 "Comprovació per veure que hi ha la mateixa resolució després de reprendre."
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2400,7 +2400,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2412,35 +2412,35 @@
 "com s'esperava."
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
@@ -2450,14 +2450,14 @@
 "d'parar temporalment."
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2472,7 +2472,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2483,7 +2483,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2494,14 +2494,14 @@
 "realitzant captures de pantalla i pujant-les com a dades adjuntes."
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2514,7 +2514,7 @@
 "connecte l'eixida d'àudio amb l'entrada d'àudio."
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2683,7 +2683,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3110,12 +3110,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3129,42 +3129,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3556,7 +3556,7 @@
 msgid "Exchanging information with the server..."
 msgstr "S'està intercanviant informació amb el servidor..."
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3602,7 +3602,7 @@
 msgid "Type Text"
 msgstr "Escriviu el text"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "No hi ha connexió a Internet"
 
@@ -3610,7 +3610,7 @@
 msgid "Connection established lost a packet"
 msgstr "La connexió establerta ha perdut un paquet"
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr "S'ha establit completament la connexió a Internet"
 

=== modified file 'po/ckb.po'
--- po/ckb.po	2013-07-05 16:43:48 +0000
+++ po/ckb.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:15+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:46+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #. Title of the user interface
 #: ../gtk/checkbox-gtk.ui.h:1 ../qt/checkbox-qt.desktop.in.h:1
@@ -99,7 +99,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -112,7 +112,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -126,7 +126,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -140,7 +140,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -161,7 +161,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -169,7 +169,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -179,142 +179,142 @@
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr ""
 
@@ -665,17 +665,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -707,12 +707,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr ""
 
@@ -724,7 +724,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -737,19 +737,19 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -760,12 +760,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -776,17 +776,17 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -811,7 +811,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -829,13 +829,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -853,113 +853,113 @@
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr ""
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr ""
 
@@ -1320,7 +1320,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1328,7 +1328,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1358,14 +1358,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1394,7 +1394,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1433,14 +1433,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1470,7 +1470,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1478,7 +1478,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1508,14 +1508,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1544,7 +1544,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -1552,7 +1552,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1737,29 +1737,29 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -1773,7 +1773,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -1791,38 +1791,38 @@
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of some system on the network "
 "using ICMP ECHO packets."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:86 ../jobs/peripheral.txt.in:37
+#: ../jobs/networking.txt.in:89 ../jobs/peripheral.txt.in:37
 msgid ""
 "Automated test case to make sure that it's possible to download files "
 "through HTTP"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:94
+#: ../jobs/networking.txt.in:97
 msgid "Test to see if we can sync local clock to an NTP server"
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:100
+#: ../jobs/networking.txt.in:103
 msgid ""
 "Verify that an installation of checkbox-server on the network can be reached "
 "over SSH."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:106
+#: ../jobs/networking.txt.in:109
 msgid "Try to enable a remote printer on the network and print a test page."
 msgstr ""
 
 #. description
-#: ../jobs/networking.txt.in:111
+#: ../jobs/networking.txt.in:114
 msgid ""
 "Automated test to walk multiple network cards and test each one in sequence."
 msgstr ""
@@ -1872,7 +1872,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:93
+#: ../jobs/optical.txt.in:94
 msgid ""
 "PURPOSE:\n"
 "    This test will check your CD audio playback capabilities\n"
@@ -1927,7 +1927,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/optical.txt.in:156
+#: ../jobs/optical.txt.in:158
 msgid ""
 "PURPOSE:\n"
 "    This test will check your DVD  playback capabilities\n"
@@ -2142,12 +2142,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:135
+#: ../jobs/power-management.txt.in:136
 msgid "Make sure that the RTC (Real-Time Clock) device exists."
 msgstr ""
 
 #. description
-#: ../jobs/power-management.txt.in:140
+#: ../jobs/power-management.txt.in:141
 msgid ""
 "Check to see if CONFIG_NO_HZ is set in the kernel (this is just a simple "
 "regression check)"
@@ -2192,7 +2192,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:24
+#: ../jobs/stress.txt.in:26
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2200,12 +2200,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:37
+#: ../jobs/stress.txt.in:39
 msgid "Attaches the log from the 30 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:53
+#: ../jobs/stress.txt.in:57
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2213,12 +2213,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:66
+#: ../jobs/stress.txt.in:70
 msgid "Attaches the log from the 30 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:88
+#: ../jobs/stress.txt.in:92
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2226,13 +2226,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:95
+#: ../jobs/stress.txt.in:99
 msgid ""
 "Attaches the log from the 250 cycle Hibernate/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:111
+#: ../jobs/stress.txt.in:115
 msgid ""
 "PURPOSE:\n"
 "   This is an automated stress test that will force the system to "
@@ -2240,27 +2240,27 @@
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:118
+#: ../jobs/stress.txt.in:122
 msgid "Attaches the log from the 250 cycle Suspend/Resume test if it exists"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:134
+#: ../jobs/stress.txt.in:139
 msgid "Stress reboot system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:149
+#: ../jobs/stress.txt.in:155
 msgid "Stress poweroff system (100 cycles)"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:161
+#: ../jobs/stress.txt.in:167
 msgid "Check logs for the stress reboot (100 cycles) test case"
 msgstr ""
 
 #. description
-#: ../jobs/stress.txt.in:173
+#: ../jobs/stress.txt.in:179
 msgid "Check logs for the stress poweroff (100 cycles) test case"
 msgstr ""
 
@@ -2291,7 +2291,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:36
+#: ../jobs/suspend.txt.in:37
 msgid ""
 "This test disconnects all connections and then connects to the wireless "
 "interface. It then checks the connection to confirm it's working as expected."
@@ -2314,39 +2314,39 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:193
+#: ../jobs/suspend.txt.in:195
 msgid "This is the automated version of suspend/suspend_advanced."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:250
+#: ../jobs/suspend.txt.in:253
 msgid "Test the network after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:256
+#: ../jobs/suspend.txt.in:259
 msgid ""
 "Test to see that we have the same resolution after resuming as before."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:275
+#: ../jobs/suspend.txt.in:278
 msgid ""
 "Verify that mixer settings after suspend are the same as before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:288
+#: ../jobs/suspend.txt.in:291
 msgid "Verify that all CPUs are online after resuming."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:301
+#: ../jobs/suspend.txt.in:304
 msgid "Verify that all memory is available after resuming from suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:308
+#: ../jobs/suspend.txt.in:311
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the display is correct after suspend and "
@@ -2359,7 +2359,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:322
+#: ../jobs/suspend.txt.in:326
 msgid ""
 "This test checks that the wireless interface is working after suspending the "
 "system. It disconnects all interfaces and then connects to the wireless "
@@ -2367,49 +2367,49 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:388
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:401
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:414
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:427
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol after the system has been suspended."
-msgstr ""
-
-#. description
-#: ../jobs/suspend.txt.in:540
+#: ../jobs/suspend.txt.in:392
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:405
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:418
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:431
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol after the system has been suspended."
+msgstr ""
+
+#. description
+#: ../jobs/suspend.txt.in:544
 msgid ""
 "This test grabs the hardware address of the bluetooth adapter after suspend "
 "and compares it to the address grabbed before suspend."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:648
+#: ../jobs/suspend.txt.in:652
 msgid ""
 "This is an automated Bluetooth file transfer test. It sends an image to the "
 "device specified by the BTDEVADDR environment variable."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:767
+#: ../jobs/suspend.txt.in:771
 msgid ""
 "PURPOSE:\n"
 "    This test will send the image 'JPEG_Color_Image_Ubuntu.jpg' to a "
@@ -2424,7 +2424,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:781
+#: ../jobs/suspend.txt.in:785
 msgid ""
 "PURPOSE:\n"
 "    This test will cycle through the detected display modes\n"
@@ -2435,7 +2435,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:793
+#: ../jobs/suspend.txt.in:797
 msgid ""
 "This test will check to make sure supported video modes work after a suspend "
 "and resume. This is done automatically by taking screenshots and uploading "
@@ -2443,14 +2443,14 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:802
+#: ../jobs/suspend.txt.in:806
 msgid ""
 "This attaches screenshots from the "
 "suspend/cycle_resolutions_after_suspend_auto test to the results submission."
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:823
+#: ../jobs/suspend.txt.in:835
 msgid ""
 "This will check to make sure that your audio device works properly after a "
 "suspend and resume.  This may work fine with speakers and onboard "
@@ -2459,7 +2459,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/suspend.txt.in:829
+#: ../jobs/suspend.txt.in:841
 msgid "Attaches the log from the single suspend/resume test to the results"
 msgstr ""
 
@@ -2628,7 +2628,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/usb.txt.in:156
+#: ../jobs/suspend.txt.in:1339 ../jobs/usb.txt.in:156
 msgid ""
 "This is an automated version of usb/storage-automated and assumes that the "
 "server has usb storage devices plugged in prior to checkbox execution. It is "
@@ -3055,12 +3055,12 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:20
+#: ../jobs/wireless.txt.in:21
 msgid "Wireless scanning test. It scans and reports on discovered APs."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:26
+#: ../jobs/wireless.txt.in:28
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wireless connection.\n"
@@ -3074,42 +3074,42 @@
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:44
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:56
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11b/g protocols."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:68
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using WPA "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:80
-msgid ""
-"Tests that the systems wireless hardware can connect to a router using no "
-"security and the 802.11n protocol."
-msgstr ""
-
-#. description
-#: ../jobs/wireless.txt.in:176
+#: ../jobs/wireless.txt.in:46
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:58
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11b/g protocols."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:70
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using WPA "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:82
+msgid ""
+"Tests that the systems wireless hardware can connect to a router using no "
+"security and the 802.11n protocol."
+msgstr ""
+
+#. description
+#: ../jobs/wireless.txt.in:178
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool."
 msgstr ""
 
 #. description
-#: ../jobs/wireless.txt.in:187
+#: ../jobs/wireless.txt.in:189
 msgid ""
 "Tests the performance of a systems wireless connection through the iperf "
 "tool, using UDP packets."
@@ -3475,7 +3475,7 @@
 msgid "Exchanging information with the server..."
 msgstr ""
 
-#: ../plugins/launchpad_report.py:171
+#: ../plugins/launchpad_report.py:172
 msgid ""
 "The generated report seems to have validation errors,\n"
 "so it might not be processed by Launchpad."
@@ -3521,7 +3521,7 @@
 msgid "Type Text"
 msgstr "جۆری دەق"
 
-#: ../scripts/internet_test:221
+#: ../scripts/internet_test:254
 msgid "No Internet connection"
 msgstr "پێیوەند نیە بە ئینتەرنێت"
 
@@ -3529,7 +3529,7 @@
 msgid "Connection established lost a packet"
 msgstr ""
 
-#: ../scripts/internet_test:227
+#: ../scripts/internet_test:269
 msgid "Internet connection fully established"
 msgstr ""
 

=== modified file 'po/cs.po'
--- po/cs.po	2013-07-05 16:43:48 +0000
+++ po/cs.po	2013-09-24 01:09:17 +0000
@@ -14,8 +14,8 @@
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-06-28 05:12+0000\n"
-"X-Generator: Launchpad (build 16681)\n"
+"X-Launchpad-Export-Date: 2013-09-06 04:43+0000\n"
+"X-Generator: Launchpad (build 16760)\n"
 
 #: ../gtk/checkbox-gtk.ui.h:2 ../checkbox_gtk/gtk_interface.py:561
 msgid "_Test"
@@ -135,7 +135,7 @@
 "   2. Slyšeli jste zvuk?"
 
 #. description
-#: ../jobs/audio.txt.in:55
+#: ../jobs/audio.txt.in:73
 msgid ""
 "PURPOSE:\n"
 "    This test will check that headphones connector works correctly\n"
@@ -155,7 +155,7 @@
 "    Slyšeli jste ze sluchátek zvuk bez poruch, šumu, praskání a deformací?"
 
 #. description
-#: ../jobs/audio.txt.in:73
+#: ../jobs/audio.txt.in:91
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using the onboard microphone "
@@ -177,7 +177,7 @@
 "    Ozval se váš hlas z reproduktoru?"
 
 #. description
-#: ../jobs/audio.txt.in:92
+#: ../jobs/audio.txt.in:110
 msgid ""
 "PURPOSE:\n"
 "    This test will check that recording sound using an external microphone "
@@ -199,7 +199,7 @@
 "    Ozval se váš hlas z reproduktoru?"
 
 #. description
-#: ../jobs/audio.txt.in:110
+#: ../jobs/audio.txt.in:128
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a USB audio device works correctly\n"
@@ -230,7 +230,7 @@
 "největší smysl, pokud vstup a výstup přímo propojíte kabelem."
 
 #. description
-#: ../jobs/audio.txt.in:134
+#: ../jobs/audio.txt.in:156
 msgid ""
 "Collect audio-related system information. This data can be used to simulate "
 "this computer's audio subsystem and perform more detailed tests under a "
@@ -238,7 +238,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/audio.txt.in:143
+#: ../jobs/audio.txt.in:165
 msgid "Attaches the audio hardware data collection log to the results."
 msgstr ""
 
@@ -248,142 +248,142 @@
 msgstr "Zátěžový test všech disků"
 
 #. description
-#: ../jobs/benchmarks.txt.in:41
+#: ../jobs/benchmarks.txt.in:43
 msgid "Run Render-Bench XRender/Imlib2 benchmark"
 msgstr "Spustit test Render-Bench XRender/Imlib"
 
 #. description
-#: ../jobs/benchmarks.txt.in:47
+#: ../jobs/benchmarks.txt.in:50
 msgid "Run Qgears2 XRender Extension gearsfancy benchmark"
 msgstr "Spustit test Qgears2 XRender Extension gearsfancy"
 
 #. description
-#: ../jobs/benchmarks.txt.in:53
+#: ../jobs/benchmarks.txt.in:57
 msgid "Run Qgears2 XRender Extension image scaling benchmark"
 msgstr "Spustit test Qgears2 XRender Extension image scaling"
 
 #. description
-#: ../jobs/benchmarks.txt.in:59
+#: ../jobs/benchmarks.txt.in:64
 msgid "Run Qgears2 OpenGL gearsfancy benchmark"
 msgstr "Spustit test Qgears2 OpenGL gearsfancy"
 
 #. description
-#: ../jobs/benchmarks.txt.in:65
+#: ../jobs/benchmarks.txt.in:71
 msgid "Run Qgears2 OpenGL image scaling benchmark"
 msgstr "Spustit test Qgears2 OpenGL image scaling"
 
 #. description
-#: ../jobs/benchmarks.txt.in:74
+#: ../jobs/benchmarks.txt.in:80
 msgid "Run GLmark2-ES2 benchmark"
 msgstr "Spustit test GLmark2-ES2"
 
 #. description
-#: ../jobs/benchmarks.txt.in:83
+#: ../jobs/benchmarks.txt.in:90
 msgid "Run GLmark2 benchmark"
 msgstr "Spustit test GLmark2"
 
 #. description
-#: ../jobs/benchmarks.txt.in:97
+#: ../jobs/benchmarks.txt.in:105
 msgid "Run Unigine Santuary benchmark"
 msgstr "Spustit test Unigine Santuary"
 
 #. description
-#: ../jobs/benchmarks.txt.in:103
+#: ../jobs/benchmarks.txt.in:111
 msgid "Run Unigine Tropics benchmark"
 msgstr "Spustit test Unigine Tropics"
 
 #. description
-#: ../jobs/benchmarks.txt.in:109
+#: ../jobs/benchmarks.txt.in:117
 msgid "Run Unigine Heaven benchmark"
 msgstr "Spustit test Unigine Heaven"
 
 #. description
-#: ../jobs/benchmarks.txt.in:115
+#: ../jobs/benchmarks.txt.in:123
 msgid "Run Lightsmark benchmark"
 msgstr "Spustit test Lightsmark"
 
 #. description
-#: ../jobs/benchmarks.txt.in:121
+#: ../jobs/benchmarks.txt.in:129
 msgid "Run Cachebench Read benchmark"
 msgstr "Spustit test Cachebench čtení"
 
 #. description
-#: ../jobs/benchmarks.txt.in:127
+#: ../jobs/benchmarks.txt.in:135
 msgid "Run Cachebench Write benchmark"
 msgstr "Spustit test Cachebench zápis"
 
 #. description
-#: ../jobs/benchmarks.txt.in:133
+#: ../jobs/benchmarks.txt.in:141
 msgid "Run Cachebench Read / Modify / Write benchmark"
 msgstr "Spustit test Cachebench čtení/úprava/zápis"
 
 #. description
-#: ../jobs/benchmarks.txt.in:139
+#: ../jobs/benchmarks.txt.in:147
 msgid "Run Stream Copy benchmark"
 msgstr "Spustit test Stream Copy"
 
 #. description
-#: ../jobs/benchmarks.txt.in:145
+#: ../jobs/benchmarks.txt.in:153
 msgid "Run Stream Scale benchmark"
 msgstr "Spustit test Stream Scale"
 
 #. description
-#: ../jobs/benchmarks.txt.in:151
+#: ../jobs/benchmarks.txt.in:159
 msgid "Run Stream Add benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:157
+#: ../jobs/benchmarks.txt.in:165
 msgid "Run Stream Triad benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:163
+#: ../jobs/benchmarks.txt.in:172
 msgid "Run Network Loopback benchmark"
 msgstr ""
 
 #. description
-#: ../jobs/benchmarks.txt.in:175
+#: ../jobs/benchmarks.txt.in:184
 msgid "Run Encode MP3 benchmark"
 msgstr "Spustit test enkódování MP3"
 
 #. description
-#: ../jobs/benchmarks.txt.in:181
+#: ../jobs/benchmarks.txt.in:190
 msgid "Run x264 H.264/AVC encoder benchmark"
 msgstr "Spustit test enkódování x264 H.264/AVC"
 
 #. description
-#: ../jobs/benchmarks.txt.in:187
+#: ../jobs/benchmarks.txt.in:196
 msgid "Run GnuPG benchmark"
 msgstr "Spustit test GnuPG"
 
 #. description
-#: ../jobs/benchmarks.txt.in:193
+#: ../jobs/benchmarks.txt.in:202
 msgid "Run Compress PBZIP2 benchmark"
 msgstr "Spustit test komprese PBZIP2"
 
 #. description
-#: ../jobs/benchmarks.txt.in:199
+#: ../jobs/benchmarks.txt.in:208
 msgid "Run Compress 7ZIP benchmark"
 msgstr "Spustit test komprese 7ZIP"
 
 #. description
-#: ../jobs/benchmarks.txt.in:205
+#: ../jobs/benchmarks.txt.in:214
 msgid "Run N-Queens benchmark"
 msgstr "Spustit test N-Queens"
 
 #. description
-#: ../jobs/benchmarks.txt.in:211
+#: ../jobs/benchmarks.txt.in:220
 msgid "Run Himeno benchmark"
 msgstr "Spustit test Himeno"
 
 #. description
-#: ../jobs/benchmarks.txt.in:217
+#: ../jobs/benchmarks.txt.in:226
 msgid "CPU utilization on an idle system."
 msgstr "Využití CPU na nečinném systému."
 
 #. description
-#: ../jobs/benchmarks.txt.in:223
+#: ../jobs/benchmarks.txt.in:232
 msgid "Disk utilization on an idle system."
 msgstr "Využití disku na nečinném systému."
 
@@ -819,6 +819,17 @@
 "automatically\n"
 "    selected result"
 msgstr ""
+"CÍL:\n"
+"    Tento test zkontroluje, zda systém dokáže detekovat připojení FireWire "
+"HDD\n"
+"POSTUP:\n"
+"    1. Pro zahájení testu klikněte na 'Testovat'. Tento test\n"
+"        bude neúspěšně ukončen, pokud nebude do 20 sekund detekováno "
+"připojení disku.\n"
+"    2. Do FireWire portu připojte FireWire HDD.\n"
+"OVĚŘENÍ:\n"
+"    Ověření výsledků tohoto testu je automatické. Neměňte automaticky\n"
+"    vygenerovaný výsledek."
 
 #. description
 #: ../jobs/firewire.txt.in:20
@@ -844,6 +855,17 @@
 "automatically\n"
 "    selected result"
 msgstr ""
+"CÍL:\n"
+"    Tento test zkontroluje, zda systém dokáže detekovat odpojení FireWire "
+"HDD\n"
+"POSTUP:\n"
+"    1. Pro zahájení testu klikněte na 'Testovat'. Tento test\n"
+"        bude neúspěšně ukončen, pokud nebude do 20 sekund detekováno "
+"odpojení disku.\n"
+"    2. Odpojte dříve připojený FireWire HDD.\n"
+"OVĚŘENÍ:\n"
+"    Ověření výsledků tohoto testu je automatické. Neměňte automaticky\n"
+"    vygenerovaný výsledek."
 
 #. description
 #: ../jobs/floppy.txt.in:4
@@ -851,18 +873,18 @@
 msgstr "Test disketové mechaniky"
 
 #. description
-#: ../jobs/graphics.txt.in:10
+#: ../jobs/graphics.txt.in:12
 msgid "Test to output the Xorg version"
 msgstr "Test výstupu verze Xorg"
 
 #. description
-#: ../jobs/benchmarks.txt.in:34
+#: ../jobs/benchmarks.txt.in:35
 msgid "Run gtkperf to make sure that GTK based test cases work"
 msgstr ""
 "Spustťte gtkperf, abyste ověřili, že testy týkající se GTK proběhnou úspěšně"
 
 #. description
-#: ../jobs/graphics.txt.in:15
+#: ../jobs/graphics.txt.in:17
 msgid ""
 "PURPOSE:\n"
 "    This test will verify that the GUI is usable after manually changing "
@@ -915,12 +937,12 @@
 "    Rotoval obraz dle očekávání?"
 
 #. description
-#: ../jobs/graphics.txt.in:33
+#: ../jobs/graphics.txt.in:36
 msgid "Test that the X process is running."
 msgstr "Ověřit, že běží proces X."
 
 #. description
-#: ../jobs/graphics.txt.in:39
+#: ../jobs/graphics.txt.in:43
 msgid "Test that the X is not running in failsafe mode."
 msgstr "Ověřit, že X neběží v záchranném režimu."
 
@@ -933,7 +955,7 @@
 "Testuje zda X neztrácí paměť (memory leak) při běhu na grafikách firmy Intel."
 
 #. description
-#: ../jobs/graphics.txt.in:46
+#: ../jobs/graphics.txt.in:51
 msgid ""
 "PURPOSE:\n"
 "    This test will verify the default display resolution\n"
@@ -954,7 +976,7 @@
 "    Je toto rozlišení použitelné?"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid ""
 "Ensure the current resolution meets or exceeds the recommended minimum "
 "resolution (800x600). See here for details:"
@@ -963,12 +985,12 @@
 "rozlišení (800x600). Detaily naleznete zde:"
 
 #. description
-#: ../jobs/graphics.txt.in:61
+#: ../jobs/graphics.txt.in:67
 msgid "https://help.ubuntu.com/community/Installation/SystemRequirements";
 msgstr "https://help.ubuntu.com/community/Installation/SystemRequirements";
 
 #. description
-#: ../jobs/graphics.txt.in:93
+#: ../jobs/graphics.txt.in:101
 msgid ""
 "PURPOSE:\n"
 "    This test will test the default display\n"
@@ -985,12 +1007,12 @@
 "    Zobrazily se barevné pruhy?"
 
 #. description
-#: ../jobs/graphics.txt.in:104
+#: ../jobs/graphics.txt.in:113
 msgid "Check that VESA drivers are not in use"
 msgstr "Zjistit zda se nepoužívají ovldače VESA"
 
 #. description
-#: ../jobs/graphics.txt.in:111
+#: ../jobs/graphics.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test cycles through the detected video modes\n"
@@ -1007,17 +1029,17 @@
 "    Vypadal obraz použitelně v každém režimu?"
 
 #. description
-#: ../jobs/graphics.txt.in:136
+#: ../jobs/graphics.txt.in:148
 msgid "Check that hardware is able to run compiz"
 msgstr "Zjistit zda je hardware schopný spustit compiz"
 
 #. description
-#: ../jobs/graphics.txt.in:142
+#: ../jobs/graphics.txt.in:155
 msgid "Check that hardware is able to run Unity 3D"
 msgstr "Zjistit zda je hardware schopný spustit Unity"
 
 #. description
-#: ../jobs/graphics.txt.in:148
+#: ../jobs/graphics.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test tests the basic 3D capabilities of your video card\n"
@@ -1051,7 +1073,7 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:198 ../jobs/suspend.txt.in:849
+#: ../jobs/graphics.txt.in:215 ../jobs/suspend.txt.in:861
 msgid "Attaches the screenshot captured in graphics/screenshot."
 msgstr ""
 
@@ -1069,13 +1091,13 @@
 msgstr ""
 
 #. description
-#: ../jobs/graphics.txt.in:223
+#: ../jobs/graphics.txt.in:241
 msgid ""
 "Attaches the screenshot captured in graphics/screenshot_fullscreen_video."
 msgstr ""
 
 #. description
-#: ../jobs/hibernate.txt.in:14
+#: ../jobs/hibernate.txt.in:15
 msgid ""
 "PURPOSE:\n"
 "    This test will check to make sure your system can successfully hibernate "
@@ -1104,113 +1126,113 @@
 "    Bylo uspání a probuzení systému úspěšné, a funguje nyní normálně?"
 
 #. description
-#: ../jobs/info.txt.in:5
+#: ../jobs/info.txt.in:6
 msgid "Attaches a report of installed codecs for Intel HDA"
 msgstr "Připojí zprávu o nainstalovaných kodecích pro Intel HDA"
 
 #. description
-#: ../jobs/info.txt.in:10
+#: ../jobs/info.txt.in:12
 msgid "Attaches a report of CPU information"
 msgstr "Připojí informace o CPU"
 
 #. description
-#: ../jobs/info.txt.in:15
+#: ../jobs/info.txt.in:18
 msgid "Attaches a copy of /var/log/dmesg to the test results"
 msgstr "Připojí kopii /var/log/dmesg k výsledkům"
 
 #. description
-#: ../jobs/info.txt.in:20
+#: ../jobs/info.txt.in:24
 msgid "Attaches info on DMI"
 msgstr "Připojí informace o DMI"
 
 #. description
-#: ../jobs/info.txt.in:26
+#: ../jobs/info.txt.in:32
 msgid "Attaches dmidecode output"
 msgstr "Připojí výstup dmidecode"
 
 #. description
-#: ../jobs/info.txt.in:37
+#: ../jobs/info.txt.in:52
 msgid "Attaches very verbose lspci output."
 msgstr "Připojí podrobný výstup lspci."
 
 #. description
-#: ../jobs/info.txt.in:42
+#: ../jobs/info.txt.in:58
 msgid "Attaches very verbose lspci output (with central database Query)."
 msgstr "Přiložení velmi podrobného výpisu lspci."
 
 #. description
-#: ../jobs/info.txt.in:49
+#: ../jobs/info.txt.in:66
 msgid "List USB devices"
 msgstr "Výpis USB zařízení"
 
 #. description
-#: ../jobs/info.txt.in:58
+#: ../jobs/info.txt.in:77
 msgid "Attaches the contents of the various modprobe conf files."
 msgstr "Připojí obsah různých konfiguračních souborů modprobe."
 
 #. description
-#: ../jobs/info.txt.in:63
+#: ../jobs/info.txt.in:83
 msgid "Attaches the contents of the /etc/modules file."
 msgstr "Připojí obsah souboru /etc/modules."
 
 #. description
-#: ../jobs/info.txt.in:68
+#: ../jobs/info.txt.in:89
 msgid "attaches the contents of various sysctl config files."
 msgstr "Připojí obsah různých konfiguračních souborů sysctl."
 
 #. description
-#: ../jobs/info.txt.in:72
+#: ../jobs/info.txt.in:93
 msgid "Attaches a report of sysfs attributes."
 msgstr "Připojí zprávu o atributech sysfs"
 
 #. description
-#: ../jobs/info.txt.in:83
+#: ../jobs/info.txt.in:106
 msgid ""
 "Attaches a dump of the udev database showing system hardware information."
 msgstr "Připojí obsah databáze udev, která obsahuje informace o hardwaru"
 
 #. description
-#: ../jobs/info.txt.in:95
+#: ../jobs/info.txt.in:119
 msgid "Attaches a tarball of gcov data if present."
 msgstr "Existuje-li, připojí archiv dat gconf"
 
 #. description
-#: ../jobs/info.txt.in:100
+#: ../jobs/info.txt.in:125
 msgid "Attaches a list of the currently running kernel modules."
 msgstr "Připojí seznam aktuálně běžících jaderných modulů"
 
 #. description
-#: ../jobs/info.txt.in:105
+#: ../jobs/info.txt.in:131
 msgid "Attaches the contents of /proc/acpi/sleep if it exists."
 msgstr "Existuje-li, připojí obsah /proc/acpi/sleep"
 
 #. description
-#: ../jobs/info.txt.in:109
+#: ../jobs/info.txt.in:135
 msgid "Bootchart information."
 msgstr "Informace z bootchartu"
 
 #. description
-#: ../jobs/info.txt.in:118
+#: ../jobs/info.txt.in:144
 msgid "SATA/IDE device information."
 msgstr "Informace o zařízení na SATA/IDE"
 
 #. description
-#: ../jobs/info.txt.in:137
+#: ../jobs/info.txt.in:163
 msgid "Attaches the bootchart png file for bootchart runs"
 msgstr "Připojí graf bootu (bootchart) v obrázku png."
 
 #. description
-#: ../jobs/info.txt.in:146
+#: ../jobs/info.txt.in:172
 msgid "Attaches the bootchart log for bootchart test runs."
 msgstr "Připojí log bootchart pro testovací spouštění."
 
 #. description
-#: ../jobs/info.txt.in:154
+#: ../jobs/info.txt.in:180
 msgid "installs the installer bootchart tarball if it exists."
 msgstr "Existuje-li, nainstaluje bootchart"
 
 #. description
-#: ../jobs/info.txt.in:159
+#: ../jobs/info.txt.in:186
 msgid "Attaches the installer debug log if it exists."
 msgstr "Existuje-li, připojí ladicí záznam instalátoru"
 
@@ -1667,7 +1689,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:63
+#: ../jobs/suspend.txt.in:1378
 msgid ""
 "This test is automated and executes after the mediacard/mmc-insert-after-"
 "suspend test is run. It tests reading and writing to the MMC card after the "
@@ -1677,7 +1699,7 @@
 "zapisuje na MMC kartu po uspání počítače."
 
 #. description
-#: ../jobs/mediacard.txt.in:71
+#: ../jobs/suspend.txt.in:1386
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1726,7 +1748,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:103
+#: ../jobs/mediacard.txt.in:62
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert test is "
 "run. It tests reading and writing to the SD card."
@@ -1735,7 +1757,7 @@
 "čte a zapisuje na SD kartu."
 
 #. description
-#: ../jobs/mediacard.txt.in:111
+#: ../jobs/mediacard.txt.in:70
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1783,7 +1805,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:145
+#: ../jobs/suspend.txt.in:1420
 msgid ""
 "This test is automated and executes after the mediacard/sd-insert-after-"
 "suspend test is run. It tests reading and writing to the SD card after the "
@@ -1843,7 +1865,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:197
+#: ../jobs/mediacard.txt.in:113
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert test is "
 "run. It tests reading and writing to the SDHC card."
@@ -1852,7 +1874,7 @@
 "čte a zapisuje na SDHC kartu."
 
 #. description
-#: ../jobs/mediacard.txt.in:205
+#: ../jobs/mediacard.txt.in:121
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -1902,7 +1924,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:239
+#: ../jobs/suspend.txt.in:1463
 msgid ""
 "This test is automated and executes after the mediacard/sdhc-insert-after-"
 "suspend test is run. It tests reading and writing to the SDHC card after the "
@@ -1912,7 +1934,7 @@
 "uspání počítače. Test čte a zapisuje na SDHC kartu."
 
 #. description
-#: ../jobs/mediacard.txt.in:247
+#: ../jobs/suspend.txt.in:1471
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -1962,7 +1984,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:279
+#: ../jobs/mediacard.txt.in:153
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert test is "
 "run. It tests reading and writing to the CF card."
@@ -1971,7 +1993,7 @@
 "čtení a zapisování na CF kartě."
 
 #. description
-#: ../jobs/mediacard.txt.in:287
+#: ../jobs/mediacard.txt.in:161
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects\n"
@@ -2019,7 +2041,7 @@
 "    vytvořené výsledky."
 
 #. description
-#: ../jobs/mediacard.txt.in:320
+#: ../jobs/mediacard.txt.in:194
 msgid ""
 "This test is automated and executes after the mediacard/cf-insert-after-"
 "suspend test is run. It tests reading and writing to the CF card after the "
@@ -2029,7 +2051,7 @@
 "Testuje čtení a zapisování na CF kartě po uspání systému."
 
 #. description
-#: ../jobs/mediacard.txt.in:328
+#: ../jobs/mediacard.txt.in:202
 msgid ""
 "PURPOSE:\n"
 "    This test will check that the system correctly detects the removal\n"
@@ -2306,22 +2328,22 @@
 "    Vypnul se monitor a po akci znovu zapnul?"
 
 #. description
-#: ../jobs/networking.txt.in:8
+#: ../jobs/networking.txt.in:9
 msgid "Test to detect the available network controllers"
 msgstr "Test detekce dostupných síťových zařízení."
 
 #. description
-#: ../jobs/networking.txt.in:14
+#: ../jobs/networking.txt.in:16
 msgid "Tests whether the system has a working Internet connection."
 msgstr "Zkusí, zda má systém funkční připojení k Internetu."
 
 #. description
-#: ../jobs/networking.txt.in:19
+#: ../jobs/networking.txt.in:21
 msgid "Network Information"
 msgstr "Informace o síti"
 
 #. description
-#: ../jobs/networking.txt.in:43
+#: ../jobs/networking.txt.in:46
 msgid ""
 "This is an automated test to gather some info on the current state of your "
 "network devices. If no devices are found, the test will exit with an error."
@@ -2330,7 +2352,7 @@
 "zařízení. Pokud žádné nenajde, skončí s chybou."
 
 #. description
-#: ../jobs/networking.txt.in:49
+#: ../jobs/networking.txt.in:52
 msgid ""
 "PURPOSE:\n"
 "    This test will check your wired connection\n"
@@ -2352,7 +2374,7 @@
 "    Zobrazila se informace o navázání a bylo navázání úspěšné?"
 
 #. description
-#: ../jobs/networking.txt.in:62
+#: ../jobs/networking.txt.in:65
 msgid ""
 "PURPOSE:\n"
 "    This test will check that a DSL modem can be configured and connected.\n"
@@ -2382,7 +2404,7 @@
 "    Zobrazila se informace o navázání a bylo spojení úspěšné?"
 
 #. description
-#: ../jobs/networking.txt.in:79
+#: ../jobs/networking.txt.in:82
 msgid ""
 "Automated test case to verify availability of som

References