* @license GNU General Public License, version 2 (GPL-2.0) * * For full copyright and license information, please see * the docs/CREDITS.txt file. * */ /** * Checks that each PHP source file contains a valid header as defined by the * phpBB Coding Guidelines. * * @package code_sniffer * @author Manuel Pichler */ class phpbb_Sniffs_Commenting_FileCommentSniff implements PHP_CodeSniffer_Sniff { /** * Returns an array of tokens this test wants to listen for. * * @return array */ public function register() { return array(T_OPEN_TAG); } /** * Processes this test, when one of its tokens is encountered. * * @param PHP_CodeSniffer_File $phpcsFile The file being scanned. * @param int $stackPtr The position of the current token * in the stack passed in $tokens. * * @return null */ public function process(PHP_CodeSniffer_File $phpcsFile, $stackPtr) { // We are only interested in the first file comment. if ($stackPtr !== 0) { if ($phpcsFile->findPrevious(T_OPEN_TAG, $stackPtr - 1) !== false) { return; } } // Fetch next non whitespace token $tokens = $phpcsFile->getTokens(); $start = $phpcsFile->findNext(T_WHITESPACE, $stackPtr + 1, null, true); // Skip empty files if ($tokens[$start]['code'] === T_CLOSE_TAG) { return; } // Mark as error if this is not a doc comment else if ($start === false || $tokens[$start]['code'] !== T_DOC_COMMENT_OPEN_TAG) { $phpcsFile->addError('Missing required file doc comment.', $stackPtr); return; } // Find comment end token $end = $tokens[$start]['comment_closer']; // If there is no end, skip processing here if ($end === false) { return; } // check comment lines without the first(/**) an last(*/) line for ($token = $start + 1, $c = $end - 2; $token <= $c; ++$token) { // Check that each line starts with a '*' if ($tokens[$token]['column'] === 1 && (($tokens[$token]['content'] !== '*' && $tokens[$token]['content'] !== ' ') || ($tokens[$token]['content'] === ' ' && $tokens[$token + 1]['content'] !== '*'))) { $message = 'The file doc comment should not be indented.'; $phpcsFile->addWarning($message, $token); } } // Check that the first and last line is empty // /**T_WHITESPACE // (T_WHITESPACE)*T_WHITESPACE // (T_WHITESPACE)* ... // (T_WHITESPACE)*T_WHITESPACE // T_WHITESPACE*/ if (!(($tokens[$start + 2]['content'] !== '*' && $tokens[$start + 4]['content'] !== '*') || ($tokens[$start + 3]['content'] !== '*' && $tokens[$start + 6]['content'] !== '*'))) { $message = 'The first file comment line should be empty.'; $phpcsFile->addWarning($message, ($start + 1)); } if ($tokens[$end - 3]['content'] !== '*' && $tokens[$end - 6]['content'] !== '*') { $message = 'The last file comment line should be empty.'; $phpcsFile->addWarning($message, $end - 1); } //$this->processPackage($phpcsFile, $start, $tags); //$this->processVersion($phpcsFile, $start, $tags); $this->processCopyright($phpcsFile, $start, $tokens[$start]['comment_tags']); $this->processLicense($phpcsFile, $start, $tokens[$start]['comment_tags']); } /** * Checks that the tags array contains a valid package tag * * @param PHP_CodeSniffer_File $phpcsFile The context source file instance. * @param integer The stack pointer for the first comment token. * @param array(string=>array) $tags The found file doc comment tags. * * @return null */ protected function processPackage(PHP_CodeSniffer_File $phpcsFile, $ptr, $tags) { if (!isset($tags['package'])) { $message = 'Missing require @package tag in file doc comment.'; $phpcsFile->addError($message, $ptr); } else if (preg_match('/^([\w]+)$/', $tags['package'][0]) === 0) { $message = 'Invalid content found for @package tag.'; $phpcsFile->addWarning($message, $tags['package'][1]); } } /** * Checks that the tags array contains a valid version tag * * @param PHP_CodeSniffer_File $phpcsFile The context source file instance. * @param integer The stack pointer for the first comment token. * @param array(string=>array) $tags The found file doc comment tags. * * @return null */ protected function processVersion(PHP_CodeSniffer_File $phpcsFile, $ptr, $tags) { if (!isset($tags['version'])) { $message = 'Missing require @version tag in file doc comment.'; $phpcsFile->addError($message, $ptr); } else if (preg_match('/^\$Id:[^\$]+\$$/', $tags['version'][0]) === 0) { $message = 'Invalid content found for @version tag, use "$Id: $".'; $phpcsFile->addError($message, $tags['version'][1]); } } /** * Checks that the tags array contains a valid copyright tag * * @param PHP_CodeSniffer_File $phpcsFile The context source file instance. * @param integer The stack pointer for the first comment token. * @param array(string=>array) $tags The found file doc comment tags. * * @return null */ protected function processCopyright(PHP_CodeSniffer_File $phpcsFile, $ptr, $tags) { $copyright = '(c) phpBB Limited '; $tokens = $phpcsFile->getTokens(); foreach ($tags as $tag) { if ($tokens[$tag]['content'] === '@copyright') { if ($tokens[$tag + 2]['content'] !== $copyright) { $message = 'Invalid content found for the first @copyright tag, use "' . $copyright . '".'; $phpcsFile->addError($message, $tags['copyright'][0][1]); } return; } } $message = 'Missing require @copyright tag in file doc comment.'; $phpcsFile->addError($message, $ptr); } /** * Checks that the tags array contains a valid license tag * * @param PHP_CodeSniffer_File $phpcsFile The context source file instance. * @param integer The stack pointer for the first comment token. * @param array(string=>array) $tags The found file doc comment tags. * * @return null */ protected function processLicense(PHP_CodeSniffer_File $phpcsFile, $ptr, $tags) { $license = 'GNU General Public License, version 2 (GPL-2.0)'; $tokens = $phpcsFile->getTokens(); $found = false; foreach ($tags as $tag) { if ($tokens[$tag]['content'] === '@license') { if ($found) { $message = 'It must be only one @license tag in file doc comment.'; $phpcsFile->addError($message, $ptr); } $found = true; if ($tokens[$tag + 2]['content'] !== $license) { $message = 'Invalid content found for @license tag, use "' . $license . '".'; $phpcsFile->addError($message, $tags['license'][0][1]); } } } if (!$found) { $message = 'Missing require @license tag in file doc comment.'; $phpcsFile->addError($message, $ptr); } } } '>15space:mode:
authorThierry Vignaud <tvignaud@mandriva.org>2005-09-18 00:38:30 +0000
committerThierry Vignaud <tvignaud@mandriva.org>2005-09-18 00:38:30 +0000
commitec96183539bb600b1a25ecd1cb91d227a96aa450 (patch)
treef58566180729464eff75472dcca6a8e6fd5d2606 /perl-install/share/po
parentb3727fb87ab909938c9acb53673466d2aab4daff (diff)
downloaddrakx-ec96183539bb600b1a25ecd1cb91d227a96aa450.tar
drakx-ec96183539bb600b1a25ecd1cb91d227a96aa450.tar.gz
drakx-ec96183539bb600b1a25ecd1cb91d227a96aa450.tar.bz2
drakx-ec96183539bb600b1a25ecd1cb91d227a96aa450.tar.xz
drakx-ec96183539bb600b1a25ecd1cb91d227a96aa450.zip
typo fix
Diffstat (limited to 'perl-install/share/po')
-rw-r--r--perl-install/share/po/DrakX.pot2
-rw-r--r--perl-install/share/po/af.po2
-rw-r--r--perl-install/share/po/am.po2
-rw-r--r--perl-install/share/po/ar.po2
-rw-r--r--perl-install/share/po/az.po2
-rw-r--r--perl-install/share/po/be.po2
-rw-r--r--perl-install/share/po/bg.po2
-rw-r--r--perl-install/share/po/bn.po2
-rw-r--r--perl-install/share/po/br.po2
-rw-r--r--perl-install/share/po/bs.po2
-rw-r--r--perl-install/share/po/ca.po2
-rw-r--r--perl-install/share/po/cs.po2
-rw-r--r--perl-install/share/po/cy.po2
-rw-r--r--perl-install/share/po/da.po2
-rw-r--r--perl-install/share/po/de.po2
-rw-r--r--perl-install/share/po/el.po2
-rw-r--r--perl-install/share/po/eo.po2
-rw-r--r--perl-install/share/po/es.po2
-rw-r--r--perl-install/share/po/et.po2
-rw-r--r--perl-install/share/po/eu.po2
-rw-r--r--perl-install/share/po/fa.po2
-rw-r--r--perl-install/share/po/fi.po2
-rw-r--r--perl-install/share/po/fr.po4
-rw-r--r--perl-install/share/po/fur.po2
-rw-r--r--perl-install/share/po/ga.po2
-rw-r--r--perl-install/share/po/gl.po2
-rw-r--r--perl-install/share/po/he.po2
-rw-r--r--perl-install/share/po/hi.po2
-rw-r--r--perl-install/share/po/hr.po2
-rw-r--r--perl-install/share/po/hu.po2
-rw-r--r--perl-install/share/po/id.po2
-rw-r--r--perl-install/share/po/is.po2
-rw-r--r--perl-install/share/po/it.po4
-rw-r--r--perl-install/share/po/ja.po2
-rw-r--r--perl-install/share/po/ko.po2
-rw-r--r--perl-install/share/po/ky.po2
-rw-r--r--perl-install/share/po/lt.po2
-rw-r--r--perl-install/share/po/ltg.po2
-rw-r--r--perl-install/share/po/lv.po2
-rw-r--r--perl-install/share/po/mk.po2
-rw-r--r--perl-install/share/po/mn.po2
-rw-r--r--perl-install/share/po/ms.po2
-rw-r--r--perl-install/share/po/mt.po2
-rw-r--r--perl-install/share/po/nb.po2
-rw-r--r--perl-install/share/po/nl.po2
-rw-r--r--perl-install/share/po/nn.po2
-rw-r--r--perl-install/share/po/pa_IN.po2
-rw-r--r--perl-install/share/po/pl.po2
-rw-r--r--perl-install/share/po/pt.po2
-rw-r--r--perl-install/share/po/pt_BR.po2
-rw-r--r--perl-install/share/po/ro.po2
-rw-r--r--perl-install/share/po/ru.po2
-rw-r--r--perl-install/share/po/sc.po2
-rw-r--r--perl-install/share/po/sk.po2
-rw-r--r--perl-install/share/po/sl.po2
-rw-r--r--perl-install/share/po/sq.po2
-rw-r--r--perl-install/share/po/sr.po2
-rw-r--r--perl-install/share/po/sr@Latn.po2
-rw-r--r--perl-install/share/po/sv.po2
-rw-r--r--perl-install/share/po/ta.po2
-rw-r--r--perl-install/share/po/tg.po2
-rw-r--r--perl-install/share/po/th.po2
-rw-r--r--perl-install/share/po/tl.po2
-rw-r--r--perl-install/share/po/tr.po2
-rw-r--r--perl-install/share/po/uk.po2
-rw-r--r--perl-install/share/po/uz.po2
-rw-r--r--perl-install/share/po/uz@Latn.po2
-rw-r--r--perl-install/share/po/vi.po2
-rw-r--r--perl-install/share/po/wa.po2
-rw-r--r--perl-install/share/po/zh_CN.po2
-rw-r--r--perl-install/share/po/zh_TW.po2
71 files changed, 73 insertions, 73 deletions
diff --git a/perl-install/share/po/DrakX.pot b/perl-install/share/po/DrakX.pot
index c1e628197..fce4ee031 100644
--- a/perl-install/share/po/DrakX.pot
+++ b/perl-install/share/po/DrakX.pot
@@ -17359,7 +17359,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr ""
#: standalone/drakgw:180
diff --git a/perl-install/share/po/af.po b/perl-install/share/po/af.po
index 91f307d46..f134649b1 100644
--- a/perl-install/share/po/af.po
+++ b/perl-install/share/po/af.po
@@ -20613,7 +20613,7 @@ msgstr "Kies asseblief die netwerkkaart wat aan u LAN gekoppel is."
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Plaaslike Netwerkadres"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/am.po b/perl-install/share/po/am.po
index 2e8a53262..13da68e8c 100644
--- a/perl-install/share/po/am.po
+++ b/perl-install/share/po/am.po
@@ -18204,7 +18204,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "የቀይ ባርኔታ መረብ"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ar.po b/perl-install/share/po/ar.po
index ce3c89db1..efe646007 100644
--- a/perl-install/share/po/ar.po
+++ b/perl-install/share/po/ar.po
@@ -20687,7 +20687,7 @@ msgstr "الرجاء اختيار موائم الشبكة الذي سيتم به
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "عنوان الشبكة المحلية"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/az.po b/perl-install/share/po/az.po
index ddf4eb81d..67f22d0ae 100644
--- a/perl-install/share/po/az.po
+++ b/perl-install/share/po/az.po
@@ -20592,7 +20592,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Yerli Şəbəkə ünvanı"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/be.po b/perl-install/share/po/be.po
index 9b36fda0e..cffc052f8 100644
--- a/perl-install/share/po/be.po
+++ b/perl-install/share/po/be.po
@@ -18429,7 +18429,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Прагляд лякальнай сеткі"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/bg.po b/perl-install/share/po/bg.po
index f699aad6b..18a4edbe7 100644
--- a/perl-install/share/po/bg.po
+++ b/perl-install/share/po/bg.po
@@ -19584,7 +19584,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Адрес на Локална мрежа"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/bn.po b/perl-install/share/po/bn.po
index bb34973ea..6266f7941 100644
--- a/perl-install/share/po/bn.po
+++ b/perl-install/share/po/bn.po
@@ -20519,7 +20519,7 @@ msgstr ""
# ##msgstr "স্থানীয় নেটওয়ার্ক ঠিকানা"
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "স্থানীয় নেটওয়ার্ক অ্যাড্রেস"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/br.po b/perl-install/share/po/br.po
index 919589268..ff88c80b4 100644
--- a/perl-install/share/po/br.po
+++ b/perl-install/share/po/br.po
@@ -18585,7 +18585,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Chomlec'h ar rouedad lec'hel"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/bs.po b/perl-install/share/po/bs.po
index 7b3632f2b..97b5359e2 100644
--- a/perl-install/share/po/bs.po
+++ b/perl-install/share/po/bs.po
@@ -20927,7 +20927,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokalna mrežna adresa"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ca.po b/perl-install/share/po/ca.po
index d32f75181..b42c428a1 100644
--- a/perl-install/share/po/ca.po
+++ b/perl-install/share/po/ca.po
@@ -21265,7 +21265,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Paràmetres de la xarxa local"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/cs.po b/perl-install/share/po/cs.po
index 4cc1d6354..fc8b4a83d 100644
--- a/perl-install/share/po/cs.po
+++ b/perl-install/share/po/cs.po
@@ -20935,7 +20935,7 @@ msgstr "Prosím zvolte si, ke kterému síťovému adaptéru bude připojena LAN
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Nastavení lokální sítě"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/cy.po b/perl-install/share/po/cy.po
index 0103dd1b7..8e921ffdc 100644
--- a/perl-install/share/po/cy.po
+++ b/perl-install/share/po/cy.po
@@ -20934,7 +20934,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Gosodiadau Rhwydwaith Ardal Leol"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/da.po b/perl-install/share/po/da.po
index 77d88e4ce..5fdaa2e4f 100644
--- a/perl-install/share/po/da.po
+++ b/perl-install/share/po/da.po
@@ -20847,7 +20847,7 @@ msgstr "Vælg hvilken netværksadapter som skal forbindes til dit lokalnet."
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Opsætning af lokalnetværk"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/de.po b/perl-install/share/po/de.po
index b467c92ca..22f712794 100644
--- a/perl-install/share/po/de.po
+++ b/perl-install/share/po/de.po
@@ -21281,7 +21281,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Einstellungen des lokalen Netzwerkes"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/el.po b/perl-install/share/po/el.po
index 22b2d8907..041e11cf4 100644
--- a/perl-install/share/po/el.po
+++ b/perl-install/share/po/el.po
@@ -20185,7 +20185,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Τοπική διεύθυνση δικτύου"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/eo.po b/perl-install/share/po/eo.po
index 2e271a496..3d184746a 100644
--- a/perl-install/share/po/eo.po
+++ b/perl-install/share/po/eo.po
@@ -18821,7 +18821,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "neniu retkarto trovita"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/es.po b/perl-install/share/po/es.po
index 0d54d500d..4919d8206 100644
--- a/perl-install/share/po/es.po
+++ b/perl-install/share/po/es.po
@@ -21198,7 +21198,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Dirección de red local"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/et.po b/perl-install/share/po/et.po
index 03897f1a2..ca9da8f13 100644
--- a/perl-install/share/po/et.po
+++ b/perl-install/share/po/et.po
@@ -20928,7 +20928,7 @@ msgstr "Palun valige, millist võrguliidest soovite kasutada kohtvõrgu jaoks."
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Kohtvõrgu seadistused"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/eu.po b/perl-install/share/po/eu.po
index 8ad8e543d..44e75771b 100644
--- a/perl-install/share/po/eu.po
+++ b/perl-install/share/po/eu.po
@@ -21098,7 +21098,7 @@ msgstr "Aukeratu zein sare-moldagailu konektatuko den zure sare lokalarekin."
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Bertako Eremuko Sare ezarpenak"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/fa.po b/perl-install/share/po/fa.po
index 308e3fa1d..ff68cc77a 100644
--- a/perl-install/share/po/fa.po
+++ b/perl-install/share/po/fa.po
@@ -20816,7 +20816,7 @@ msgstr "لطفا کارت شبکه‌ای که به شبکه محلی شما و
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "نشانی شبکه‌ی محلی"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/fi.po b/perl-install/share/po/fi.po
index ee721b12b..81a177e53 100644
--- a/perl-install/share/po/fi.po
+++ b/perl-install/share/po/fi.po
@@ -21088,7 +21088,7 @@ msgstr "Valitse verkkokortti, joka on kytketty paikallisverkkoon."
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Paikallisverkko-osoite"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/fr.po b/perl-install/share/po/fr.po
index e9a7a2dca..46854908d 100644
--- a/perl-install/share/po/fr.po
+++ b/perl-install/share/po/fr.po
@@ -77,7 +77,7 @@ msgid ""
msgstr ""
"Project-Id-Version: DrakX-fr\n"
"POT-Creation-Date: 2005-09-16 17:08+0200\n"
-"PO-Revision-Date: 2005-09-16 21:30+0200\n"
+"PO-Revision-Date: 2005-09-18 01:43+0200\n"
"Last-Translator: Stéphane Teletchéa\n"
"Language-Team: <fr@li.org>\n"
"MIME-Version: 1.0\n"
@@ -21383,7 +21383,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Configuration du Réseau Local"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/fur.po b/perl-install/share/po/fur.po
index 4876b7ba4..1b09a20cf 100644
--- a/perl-install/share/po/fur.po
+++ b/perl-install/share/po/fur.po
@@ -18230,7 +18230,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr ""
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ga.po b/perl-install/share/po/ga.po
index bc624d309..15ff191f0 100644
--- a/perl-install/share/po/ga.po
+++ b/perl-install/share/po/ga.po
@@ -18269,7 +18269,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "ní fuaireathas cárta gréasánú"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/gl.po b/perl-install/share/po/gl.po
index 70fbe337d..80540f403 100644
--- a/perl-install/share/po/gl.po
+++ b/perl-install/share/po/gl.po
@@ -20083,7 +20083,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Enderezo da Rede Local"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/he.po b/perl-install/share/po/he.po
index 1a528ce36..c51b1f6a9 100644
--- a/perl-install/share/po/he.po
+++ b/perl-install/share/po/he.po
@@ -19634,7 +19634,7 @@ msgstr "נא לבחור את מתאם הרשת שיהיה מחובר אל הרש
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "הגדרות רשת מקומית"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/hi.po b/perl-install/share/po/hi.po
index f3e762503..158ca372d 100644
--- a/perl-install/share/po/hi.po
+++ b/perl-install/share/po/hi.po
@@ -19845,7 +19845,7 @@ msgstr "कृपया चयन करें कौन सा नेटवर
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "स्थानीय नेटवर्क का पता"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/hr.po b/perl-install/share/po/hr.po
index 24470ae73..559f665f0 100644
--- a/perl-install/share/po/hr.po
+++ b/perl-install/share/po/hr.po
@@ -19957,7 +19957,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "C-Class lokalna mreža"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/hu.po b/perl-install/share/po/hu.po
index 241583c98..5aaa1c9d5 100644
--- a/perl-install/share/po/hu.po
+++ b/perl-install/share/po/hu.po
@@ -21165,7 +21165,7 @@ msgstr "Válassza ki, hogy milyen kártyával csatlakozik a helyi hálózathoz."
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "A helyi hálózat beállításai"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/id.po b/perl-install/share/po/id.po
index 7744f5f46..e63dc150e 100644
--- a/perl-install/share/po/id.po
+++ b/perl-install/share/po/id.po
@@ -21167,7 +21167,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Setting Local Area Network"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/is.po b/perl-install/share/po/is.po
index af06b83c3..ffad5de67 100644
--- a/perl-install/share/po/is.po
+++ b/perl-install/share/po/is.po
@@ -20863,7 +20863,7 @@ msgstr "Vinsamlega veldu hvaða nettengi verður tengt við staðarnetið þitt.
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Stillingar staðbundins nets"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/it.po b/perl-install/share/po/it.po
index d6532bff3..8628d1b96 100644
--- a/perl-install/share/po/it.po
+++ b/perl-install/share/po/it.po
@@ -21185,8 +21185,8 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
-msgstr "Local Area Network setings"
+msgid "Local Area Network settings"
+msgstr "Local Area Network settings"
#: standalone/drakgw:180
#, c-format
diff --git a/perl-install/share/po/ja.po b/perl-install/share/po/ja.po
index 49168248d..d0c6c863f 100644
--- a/perl-install/share/po/ja.po
+++ b/perl-install/share/po/ja.po
@@ -20659,7 +20659,7 @@ msgstr "LANに接続するネットワークアダプタを選んでください
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "ローカルネットワークの設定"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ko.po b/perl-install/share/po/ko.po
index 47c292de1..631c01598 100644
--- a/perl-install/share/po/ko.po
+++ b/perl-install/share/po/ko.po
@@ -19064,7 +19064,7 @@ msgstr "어느 네트웍 어댑터가 지역 네트웍으로 연결될 것인지
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "C 클래스 지역 네트웍"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ky.po b/perl-install/share/po/ky.po
index f60b45080..e1e9b36f0 100644
--- a/perl-install/share/po/ky.po
+++ b/perl-install/share/po/ky.po
@@ -18980,7 +18980,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Локалдык желе"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/lt.po b/perl-install/share/po/lt.po
index cdff0214b..7469716c0 100644
--- a/perl-install/share/po/lt.po
+++ b/perl-install/share/po/lt.po
@@ -18858,7 +18858,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "nerasta jokia tinklo plokštė"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ltg.po b/perl-install/share/po/ltg.po
index a4fd03779..7fe02f3e0 100644
--- a/perl-install/share/po/ltg.po
+++ b/perl-install/share/po/ltg.po
@@ -19280,7 +19280,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokaluo teikla adrese"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/lv.po b/perl-install/share/po/lv.po
index e2b98c918..9b472e223 100644
--- a/perl-install/share/po/lv.po
+++ b/perl-install/share/po/lv.po
@@ -19251,7 +19251,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokālā tīkla adrese"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/mk.po b/perl-install/share/po/mk.po
index 8745bc9a5..b10ea3146 100644
--- a/perl-install/share/po/mk.po
+++ b/perl-install/share/po/mk.po
@@ -20339,7 +20339,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Локален Мрежа"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/mn.po b/perl-install/share/po/mn.po
index d4f70b450..0ae0cfd76 100644
--- a/perl-install/share/po/mn.po
+++ b/perl-install/share/po/mn.po
@@ -18520,7 +18520,7 @@ msgstr "Та дотоод сүлжээндээ ямар сүлжээ адапт
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Дотоод сүлжээнд чалчих"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/ms.po b/perl-install/share/po/ms.po
index 009d3ab18..8f91e6406 100644
--- a/perl-install/share/po/ms.po
+++ b/perl-install/share/po/ms.po
@@ -18406,7 +18406,7 @@ msgstr "Rangkaian."
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Name=Borak Jaringan Setempat"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/mt.po b/perl-install/share/po/mt.po
index 69e33c92b..c1c922afe 100644
--- a/perl-install/share/po/mt.po
+++ b/perl-install/share/po/mt.po
@@ -20644,7 +20644,7 @@ msgstr ""
#: standalone/drakgw:177
#, fuzzy, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Indirizz tan-network lokali"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/nb.po b/perl-install/share/po/nb.po
index b95075802..cfbdeba0b 100644
--- a/perl-install/share/po/nb.po
+++ b/perl-install/share/po/nb.po
@@ -21064,7 +21064,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokal nettverksadresse-oppsett"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/nl.po b/perl-install/share/po/nl.po
index 36ec4f26e..397592f32 100644
--- a/perl-install/share/po/nl.po
+++ b/perl-install/share/po/nl.po
@@ -21187,7 +21187,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokaal netwerk-instellingen"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/nn.po b/perl-install/share/po/nn.po
index 6568e014a..0327c6ba6 100644
--- a/perl-install/share/po/nn.po
+++ b/perl-install/share/po/nn.po
@@ -20001,7 +20001,7 @@ msgstr ""
#: standalone/drakgw:177
#, c-format
-msgid "Local Area Network setings"
+msgid "Local Area Network settings"
msgstr "Lokalnettoppsett"
#: standalone/drakgw:180
diff --git a/perl-install/share/po/pa_IN.po b/perl-install/share/po/pa_IN.po
index a04f9abae..4e1f3cd97 100644
--- a/perl-install/share/po/pa_IN.po
+++ b/perl-install/share/po/pa_IN.po