data($src_path, file_get_contents("$phpbb_root_path$src"), false, stat("$phpbb_root_path$src")); } else if (is_dir($phpbb_root_path . $src)) { // Clean up path, add closing / if not present $src_path = ($src_path && substr($src_path, -1) != '/') ? $src_path . '/' : $src_path; $filelist = array(); $filelist = filelist("$phpbb_root_path$src", '', '*'); krsort($filelist); /** * Commented out, as adding the folders produces corrupted archives if ($src_path) { $this->data($src_path, '', true, stat("$phpbb_root_path$src")); } */ foreach ($filelist as $path => $file_ary) { /** * Commented out, as adding the folders produces corrupted archives if ($path) { // Same as for src_path $path = (substr($path, 0, 1) == '/') ? substr($path, 1) : $path; $path = ($path && substr($path, -1) != '/') ? $path . '/' : $path; $this->data("$src_path$path", '', true, stat("$phpbb_root_path$src$path")); } */ foreach ($file_ary as $file) { if (in_array($path . $file, $skip_files)) { continue; } $this->data("$src_path$path$file", file_get_contents("$phpbb_root_path$src$path$file"), false, stat("$phpbb_root_path$src$path$file")); } } } else { // $src does not exist return false; } return true; } /** * Add custom file (the filepath will not be adjusted) */ function add_custom_file($src, $filename) { if (!file_exists($src)) { return false; } $this->data($filename, file_get_contents($src), false, stat($src)); return true; } /** * Add file data */ function add_data($src, $name) { $stat = array(); $stat[2] = 436; //384 $stat[4] = $stat[5] = 0; $stat[7] = strlen($src); $stat[9] = time(); $this->data($name, $src, false, $stat); return true; } /** * Checks if a file by that name as already been added and, if it has, * returns a new, unique name. * * @param string $name The filename * @return string A unique filename */ protected function unique_filename($name) { if (isset($this->filelist[$name])) { $start = $name; $ext = ''; $this->filelist[$name]++; // Separate the extension off the end of the filename to preserve it $pos = strrpos($name, '.'); if ($pos !== false) { $start = substr($name, 0, $pos); $ext = substr($name, $pos); } return $start . '_' . $this->filelist[$name] . $ext; } $this->filelist[$name] = 0; return $name; } /** * Return available methods * * @return array Array of strings of available compression methods (.tar, .tar.gz, .zip, etc.) */ static public function methods() { $methods = array('.tar'); $available_methods = array('.tar.gz' => 'zlib', '.tar.bz2' => 'bz2', '.zip' => 'zlib'); foreach ($available_methods as $type => $module) { if (!@extension_loaded($module)) { continue; } $methods[] = $type; } return $methods; } } /** * Zip creation class from phpMyAdmin 2.3.0 (c) Tobias Ratschiller, Olivier Mller, Loc Chapeaux, * Marc Delisle, http://www.phpmyadmin.net/ * * Zip extraction function by Alexandre Tedeschi, alexandrebr at gmail dot com * * Modified extensively by psoTFX and DavidMJ, (c) phpBB Group, 2003 * * Based on work by Eric Mueller and Denis125 * Official ZIP file format: http://www.pkware.com/appnote.txt * * @package phpBB3 */ class compress_zip extends compress { var $datasec = array(); var $ctrl_dir = array(); var $eof_cdh = "\x50\x4b\x05\x06\x00\x00\x00\x00"; var $old_offset = 0; var $datasec_len = 0; /** * Constructor */ function compress_zip($mode, $file) { $this->fp = @fopen($file, $mode . 'b'); if (!$this->fp) { trigger_error('Unable to open file ' . $file . ' [' . $mode . 'b]'); } } /** * Convert unix to dos time */ function unix_to_dos_time($time) { $timearray = (!$time) ? getdate() : getdate($time); if ($timearray['year'] < 1980) { $timearray['year'] = 1980; $timearray['mon'] = $timearray['mday'] = 1; $timearray['hours'] = $timearray['minutes'] = $timearray['seconds'] = 0; } return (($timearray['year'] - 1980) << 25) | ($timearray['mon'] << 21) | ($timearray['mday'] << 16) | ($timearray['hours'] << 11) | ($timearray['minutes'] << 5) | ($timearray['seconds'] >> 1); } /** * Extract archive */ function extract($dst) { // Loop the file, looking for files and folders $dd_try = false; rewind($this->fp); while (!feof($this->fp)) { // Check if the signature is valid... $signature = fread($this->fp, 4); switch ($signature) { // 'Local File Header' case "\x50\x4b\x03\x04": // Lets get everything we need. // We don't store the version needed to extract, the general purpose bit flag or the date and time fields $data = unpack("@4/vc_method/@10/Vcrc/Vc_size/Vuc_size/vname_len/vextra_field", fread($this->fp, 26)); $file_name = fread($this->fp, $data['name_len']); // filename if ($data['extra_field']) { fread($this->fp, $data['extra_field']); // extra field } $target_filename = "$dst$file_name"; if (!$data['uc_size'] && !$data['crc'] && substr($file_name, -1, 1) == '/') { if (!is_dir($target_filename)) { $str = ''; $folders = explode('/', $target_filename); // Create and folders and subfolders if they do not exist foreach ($folders as $folder) { $folder = trim($folder); if (!$folder) { continue; } $str = (!empty($str)) ? $str . '/' . $folder : $folder; if (!is_dir($str)) { if (!@mkdir($str, 0777)) { trigger_error("Could not create directory $folder"); } phpbb_chmod($str, CHMOD_READ | CHMOD_WRITE); } } } // This is a directory, we are not writting files continue; } else { // Some archivers are punks, they don't include folders in their archives! $str = ''; $folders = explode('/', pathinfo($target_filename, PATHINFO_DIRNAME)); // Create and folders and subfolders if they do not exist foreach ($folders as $folder) { $folder = trim($folder); if (!$folder) { continue; } $str = (!empty($str)) ? $str . '/' . $folder : $folder; if (!is_dir($str)) { if (!@mkdir($str, 0777)) { trigger_error("Could not create directory $folder"); } phpbb_chmod($str, CHMOD_READ | CHMOD_WRITE); } } } if (!$data['uc_size']) { $content = ''; } else { $content = fread($this->fp, $data['c_size']); } $fp = fopen($target_filename, "w"); switch ($data['c_method']) { case 0: // Not compressed fwrite($fp, $content); break; case 8: // Deflate fwrite($fp, gzinflate($content, $data['uc_size'])); break; case 12: // Bzip2 fwrite($fp, bzdecompress($content)); break; } fclose($fp); break; // We hit the 'Central Directory Header', we can stop because nothing else in here requires our attention // or we hit the end of the central directory record, we can safely end the loop as we are totally finished with looking for files and folders case "\x50\x4b\x01\x02": // This case should simply never happen.. but it does exist.. case "\x50\x4b\x05\x06": break 2; // 'Packed to Removable Disk', ignore it and look for the next signature... case 'PK00': continue 2; // We have encountered a header that is weird. Lets look for better data... default: if (!$dd_try) { // Unexpected header. Trying to detect wrong placed 'Data Descriptor'; $dd_try = true; fseek($this->fp, 8, SEEK_CUR); // Jump over 'crc-32'(4) 'compressed-size'(4), 'uncompressed-size'(4) continue 2; } trigger_error("Unexpected header, ending loop"); break 2; } $dd_try = false; } } /** * Close archive */ function close() { // Write out central file directory and footer ... if it exists if (sizeof($this->ctrl_dir)) { fwrite($this->fp, $this->file()); } fclose($this->fp); } /** * Create the structures ... note we assume version made by is MSDOS */ function data($name, $data, $is_dir = false, $stat) { $name = str_replace('\\', '/', $name); $name = $this->unique_filename($name); $hexdtime = pack('V', $this->unix_to_dos_time($stat[9])); if ($is_dir) { $unc_len = $c_len = $crc = 0; $zdata = ''; $var_ext = 10; } else { $unc_len = strlen($data); $crc = crc32($data); $zdata = gzdeflate($data); $c_len = strlen($zdata); $var_ext = 20; // Did we compress? No, then use data as is if ($c_len >= $unc_len) { $zdata = $data; $c_len = $unc_len; $var_ext = 10; } } unset($data); // If we didn't compress set method to store, else deflate $c_method = ($c_len == $unc_len) ? "\x00\x00" : "\x08\x00"; // Are we a file or a directory? Set archive for file $attrib = ($is_dir) ? 16 : 32; // File Record Header $fr = "\x50\x4b\x03\x04"; // Local file header 4bytes $fr .= pack('v', $var_ext); // ver needed to extract 2bytes $fr .= "\x00\x00"; // gen purpose bit flag 2bytes $fr .= $c_method; // compression method 2bytes $fr .= $hexdtime; // last mod time and date 2+2bytes $fr .= pack('V', $crc); // crc32 4bytes $fr .= pack('V', $c_len); // compressed filesize 4bytes $fr .= pack('V', $unc_len); // uncompressed filesize 4bytes $fr .= pack('v', strlen($name));// length of filename 2bytes $fr .= pack('v', 0); // extra field length 2bytes $fr .= $name; $fr .= $zdata; unset($zdata); $this->datasec_len += strlen($fr); // Add data to file ... by writing data out incrementally we save some memory fwrite($this->fp, $fr); unset($fr); // Central Directory Header $cdrec = "\x50\x4b\x01\x02"; // header 4bytes $cdrec .= "\x00\x00"; // version made by $cdrec .= pack('v', $var_ext); // version needed to extract $cdrec .= "\x00\x00"; // gen purpose bit flag $cdrec .= $c_method; // compression method $cdrec .= $hexdtime; // last mod time & date $cdrec .= pack('V', $crc); // crc32 $cdrec .= pack('V', $c_len); // compressed filesize $cdrec .= pack('V', $unc_len); // uncompressed filesize $cdrec .= pack('v', strlen($name)); // length of filename $cdrec .= pack('v', 0); // extra field length $cdrec .= pack('v', 0); // file comment length $cdrec .= pack('v', 0); // disk number start $cdrec .= pack('v', 0); // internal file attributes $cdrec .= pack('V', $attrib); // external file attributes $cdrec .= pack('V', $this->old_offset); // relative offset of local header $cdrec .= $name; // Save to central directory $this->ctrl_dir[] = $cdrec; $this->old_offset = $this->datasec_len; } /** * file */ function file() { $ctrldir = implode('', $this->ctrl_dir); return $ctrldir . $this->eof_cdh . pack('v', sizeof($this->ctrl_dir)) . // total # of entries "on this disk" pack('v', sizeof($this->ctrl_dir)) . // total # of entries overall pack('V', strlen($ctrldir)) . // size of central dir pack('V', $this->datasec_len) . // offset to start of central dir "\x00\x00"; // .zip file comment length } /** * Download archive */ function download($filename, $download_name = false) { global $phpbb_root_path; if ($download_name === false) { $download_name = $filename; } $mimetype = 'application/zip'; header('Pragma: no-cache'); header("Content-Type: $mimetype; name=\"$download_name.zip\""); header("Content-disposition: attachment; filename=$download_name.zip"); $fp = @fopen("{$phpbb_root_path}store/$filename.zip", 'rb'); if ($fp) { while ($buffer = fread($fp, 1024)) { echo $buffer; } fclose($fp); } } } /** * Tar/tar.gz compression routine * Header/checksum creation derived from tarfile.pl, (c) Tom Horsley, 1994 * * @package phpBB3 */ class compress_tar extends compress { var $isgz = false; var $isbz = false; var $filename = ''; var $mode = ''; var $type = ''; var $wrote = false; /** * Constructor */ function compress_tar($mode, $file, $type = '') { $type = (!$type) ? $file : $type; $this->isgz = preg_match('#(\.tar\.gz|\.tgz)$#', $type); $this->isbz = preg_match('#\.tar\.bz2$#', $type); $this->mode = &$mode; $this->file = &$file; $this->type = &$type; $this->open(); } /** * Extract archive */ function extract($dst) { $fzread = ($this->isbz && function_exists('bzread')) ? 'bzread' : (($this->isgz && @extension_loaded('zlib')) ? 'gzread' : 'fread'); // Run through the file and grab directory entries while ($buffer = $fzread($this->fp, 512)) { $tmp = unpack('A6magic', substr($buffer, 257, 6)); if (trim($tmp['magic']) == 'ustar') { $tmp = unpack('A100name', $buffer); $filename = trim($tmp['name']); $tmp = unpack('Atype', substr($buffer, 156, 1)); $filetype = (int) trim($tmp['type']); $tmp = unpack('A12size', substr($buffer, 124, 12)); $filesize = octdec((int) trim($tmp['size'])); $target_filename = "$dst$filename"; if ($filetype == 5) { if (!is_dir($target_filename)) { $str = ''; $folders = explode('/', $target_filename); // Create and folders and subfolders if they do not exist foreach ($folders as $folder) { $folder = trim($folder); if (!$folder) { continue; } $str = (!empty($str)) ? $str . '/' . $folder : $folder; if (!is_dir($str)) { if (!@mkdir($str, 0777)) { trigger_error("Could not create directory $folder"); } phpbb_chmod($str, CHMOD_READ | CHMOD_WRITE); } } } } else if ($filesize >= 0 && ($filetype == 0 || $filetype == "\0")) { // Some archivers are punks, they don't properly order the folders in their archives! $str = ''; $folders = explode('/', pathinfo($target_filename, PATHINFO_DIRNAME)); // Create and folders and subfolders if they do not exist foreach ($folders as $folder) { $folder = trim($folder); if (!$folder) { continue; } $str = (!empty($str)) ? $str . '/' . $folder : $folder; if (!is_dir($str)) { if (!@mkdir($str, 0777)) { trigger_error("Could not create directory $folder"); } phpbb_chmod($str, CHMOD_READ | CHMOD_WRITE); } } // Write out the files if (!($fp = fopen($target_filename, 'wb'))) { trigger_error("Couldn't create file $filename"); } phpbb_chmod($target_filename, CHMOD_READ); // Grab the file contents fwrite($fp, ($filesize) ? $fzread($this->fp, ($filesize + 511) &~ 511) : '', $filesize); fclose($fp); } } } } /** * Close archive */ function close() { $fzclose = ($this->isbz && function_exists('bzclose')) ? 'bzclose' : (($this->isgz && @extension_loaded('zlib')) ? 'gzclose' : 'fclose'); if ($this->wrote) { $fzwrite = ($this->isbz && function_exists('bzwrite')) ? 'bzwrite' : (($this->isgz && @extension_loaded('zlib')) ? 'gzwrite' : 'fwrite'); // The end of a tar archive ends in two records of all NULLs (1024 bytes of \0) $fzwrite($this->fp, str_repeat("\0", 1024)); } $fzclose($this->fp); } /** * Create the structures */ function data($name, $data, $is_dir = false, $stat) { $name = $this->unique_filename($name); $this->wrote = true; $fzwrite = ($this->isbz && function_exists('bzwrite')) ? 'bzwrite' : (($this->isgz && @extension_loaded('zlib')) ? 'gzwrite' : 'fwrite'); $typeflag = ($is_dir) ? '5' : ''; // This is the header data, it contains all the info we know about the file or folder that we are about to archive $header = ''; $header .= pack('a100', $name); // file name $header .= pack('a8', sprintf("%07o", $stat[2])); // file mode $header .= pack('a8', sprintf("%07o", $stat[4])); // owner id $header .= pack('a8', sprintf("%07o", $stat[5])); // group id $header .= pack('a12', sprintf("%011o", $stat[7])); // file size $header .= pack('a12', sprintf("%011o", $stat[9])); // last mod time // Checksum $checksum = 0; for ($i = 0; $i < 148; $i++) { $checksum += ord($header[$i]); } // We precompute the rest of the hash, this saves us time in the loop and allows us to insert our hash without resorting to string functions $checksum += 2415 + (($is_dir) ? 53 : 0); $header .= pack('a8', sprintf("%07o", $checksum)); // checksum $header .= pack('a1', $typeflag); // link indicator $header .= pack('a100', ''); // name of linked file $header .= pack('a6', 'ustar'); // ustar indicator $header .= pack('a2', '00'); // ustar version $header .= pack('a32', 'Unknown'); // owner name $header .= pack('a32', 'Unknown'); // group name $header .= pack('a8', ''); // device major number $header .= pack('a8', ''); // device minor number $header .= pack('a155', ''); // filename prefix $header .= pack('a12', ''); // end // This writes the entire file in one shot. Header, followed by data and then null padded to a multiple of 512 $fzwrite($this->fp, $header . (($stat[7] !== 0 && !$is_dir) ? $data . str_repeat("\0", (($stat[7] + 511) &~ 511) - $stat[7]) : '')); unset($data); } /** * Open archive */ function open() { $fzopen = ($this->isbz && function_exists('bzopen')) ? 'bzopen' : (($this->isgz && @extension_loaded('zlib')) ? 'gzopen' : 'fopen'); $this->fp = @$fzopen($this->file, $this->mode . (($fzopen == 'bzopen') ? '' : 'b') . (($fzopen == 'gzopen') ? '9' : '')); if (!$this->fp) { trigger_error('Unable to open file ' . $this->file . ' [' . $fzopen . ' - ' . $this->mode . 'b]'); } } /** * Download archive */ function download($filename, $download_name = false) { global $phpbb_root_path; if ($download_name === false) { $download_name = $filename; } switch ($this->type) { case '.tar': $mimetype = 'application/x-tar'; break; case '.tar.gz': $mimetype = 'application/x-gzip'; break; case '.tar.bz2': $mimetype = 'application/x-bzip2'; break; default: $mimetype = 'application/octet-stream'; break; } header('Pragma: no-cache'); header("Content-Type: $mimetype; name=\"$download_name$this->type\""); header("Content-disposition: attachment; filename=$download_name$this->type"); $fp = @fopen("{$phpbb_root_path}store/$filename$this->type", 'rb'); if ($fp) { while ($buffer = fread($fp, 1024)) { echo $buffer; } fclose($fp); } } } '>6
-rw-r--r--po/ku.po6
-rw-r--r--po/lo.po6
-rw-r--r--po/lt.po6
-rw-r--r--po/lv.po6
-rw-r--r--po/mai.po6
-rw-r--r--po/mk.po6
-rw-r--r--po/ml.po6
-rw-r--r--po/mr.po6
-rw-r--r--po/ms.po6
-rw-r--r--po/my.po6
-rw-r--r--po/nb.po6
-rw-r--r--po/nds.po6
-rw-r--r--po/nl.po6
-rw-r--r--po/nn.po6
-rw-r--r--po/or.po6
-rw-r--r--po/pa.po6
-rw-r--r--po/pl.po6
-rw-r--r--po/pt.po6
-rw-r--r--po/pt_BR.po6
-rw-r--r--po/ro.po6
-rw-r--r--po/ru.po6
-rw-r--r--po/si.po6
-rw-r--r--po/sk.po6
-rw-r--r--po/sl.po6
-rw-r--r--po/sq.po6
-rw-r--r--po/sr.po6
-rw-r--r--po/sr@latin.po6
-rw-r--r--po/sv.po6
-rw-r--r--po/ta.po6
-rw-r--r--po/te.po6
-rw-r--r--po/tr.po6
-rw-r--r--po/uk.po6
-rw-r--r--po/ur.po6
-rw-r--r--po/vi.po6
-rw-r--r--po/wa.po6
-rw-r--r--po/zh_CN.po6
-rw-r--r--po/zh_TW.po6
69 files changed, 69 insertions, 345 deletions
diff --git a/po/ar.po b/po/ar.po
index cc91a5c2..cc06a704 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -1111,10 +1111,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1216,7 +1212,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "حدث خطأ خلال حساب بادئة IPv6to4"
diff --git a/po/as.po b/po/as.po
index 883bb485..028ae2d7 100644
--- a/po/as.po
+++ b/po/as.po
@@ -1109,10 +1109,6 @@ msgstr "ব্যৱহাৰ: $0 {start|stop|restart|try-restart|force-reload|s
msgid "CTDB is already running"
msgstr "CTDB বৰ্তমানে চলছে"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 উপসৰ্গ গণনা কৰোঁতে ভুল হ'ল"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot lockfile উপলব্ধ"
@@ -1214,7 +1210,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "ব্যৱহাৰপদ্ধতি: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 উপসৰ্গ গণনা কৰোঁতে সমস্যা"
diff --git a/po/bg.po b/po/bg.po
index 7b976ce5..5bfab530 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -1108,10 +1108,6 @@ msgstr "Употреба: $0 {start|stop|restart|try-restart|force-reload|status
msgid "CTDB is already running"
msgstr "CTDB вече работи"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Възникна грешка при изчисляване на IPv6to4 префикса"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot заключващ файл има"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Употреба: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Грешка при пресмятане на IPv6to4 префикс"
diff --git a/po/bn.po b/po/bn.po
index c07e5fa3..da381dba 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 প্রেফিক্স গণনা করতে সমস্যা"
diff --git a/po/bn_IN.po b/po/bn_IN.po
index 8e5a47fe..73a02255 100644
--- a/po/bn_IN.po
+++ b/po/bn_IN.po
@@ -1108,10 +1108,6 @@ msgstr "ব্যবহারপদ্ধতি: $0 {start|stop|restart|try-rest
msgid "CTDB is already running"
msgstr "CTDB বর্তমানে চলছে"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 প্রেফিক্স গণনা করতে সমস্যা"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot lockfile উপস্থিত রয়েছে"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "ব্যবহারপদ্ধতি: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 প্রেফিক্স গণনা করতে সমস্যা"
diff --git a/po/bs.po b/po/bs.po
index 94bb69b6..10f7b3b8 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Tijekom izračunavanja IPv6to4 prefiksa došlo je do pogreške"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Tijekom izračunavanja IPv6to4 prefiksa došlo je do pogreške"
diff --git a/po/ca.po b/po/ca.po
index a5507e57..7954000d 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr "El CTDB ja s'està executant"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "S'ha produït un error mentre es calculava el prefix de IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Forma d'ús: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "S'ha produït un error mentre s'estava calculant el prefix de IPv6to4"
diff --git a/po/cs.po b/po/cs.po
index f5d8731b..060071d7 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -1109,10 +1109,6 @@ msgstr "Použití: $0 {start|stop|restart|try-restart|force-reload|status|panic|
msgid "CTDB is already running"
msgstr "CTDB je již spuštěn."
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Při výpočtu IPv6to4 prefixu nastala chyba"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "existuje zámek pro fetch-crl-boot"
@@ -1214,7 +1210,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Použití: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Při výpočtu IPv6to4 prefixu nastala chyba"
diff --git a/po/cy.po b/po/cy.po
index 9c6d833b..dfa6aaf1 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -1108,10 +1108,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Digwyddodd gwall wrth gyfri'r rhagddodiad IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Digwyddodd gwall wrth gyfri'r rhagddodiad IPv6to4"
diff --git a/po/da.po b/po/da.po
index b3a87cb2..3075f165 100644
--- a/po/da.po
+++ b/po/da.po
@@ -1109,10 +1109,6 @@ msgstr "Brug: $0 {start|stop|restart|try-restart|force-reload|status|panic|save}
msgid "CTDB is already running"
msgstr "CTDB kører allerede"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Fejl opstod under udregning af IPv6to4-præfikset"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "lockfil for fetch-crl-boot findes"
@@ -1214,7 +1210,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Brug: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Fejl opstod under udregning af IPv6to4-præfikset"
diff --git a/po/de.po b/po/de.po
index 2ab21702..dd438a27 100644
--- a/po/de.po
+++ b/po/de.po
@@ -1117,10 +1117,6 @@ msgstr "Verwendung: $0 {start|stop|restart|try-restart|force-reload|status|panic
msgid "CTDB is already running"
msgstr "CTDB wird bereits ausgeführt."
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Ein Fehler trat während der Berechnung des IPv6to4-Präfixes auf"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot Lock-Datei vorhanden"
@@ -1222,7 +1218,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Verwendung: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Fehler während der Berechnung des IPv6to4-Präfixes"
diff --git a/po/el.po b/po/el.po
index 585fab60..e3e3d7c6 100644
--- a/po/el.po
+++ b/po/el.po
@@ -1109,10 +1109,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Σφάλμα συνέβηκε κατά τη διάρκεια υπολογισμού του προθέματος IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1214,7 +1210,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Σφάλμα παρουσιάστηκε κατά τη διάρκεια υπολογισμού του IPv6to4 προθέματος"
diff --git a/po/en_GB.po b/po/en_GB.po
index 80ace818..91f01fc6 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -1107,10 +1107,6 @@ msgstr "Usage: $0 {start|stop|restart|try-restart|force-reload|status|panic|save
msgid "CTDB is already running"
msgstr "CTDB is already running"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Error occurred while calculating the IPv6to4 prefix"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot lockfile present"
@@ -1212,7 +1208,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Usage: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Error occurred while calculating the IPv6to4 prefix"
diff --git a/po/es.po b/po/es.po
index 6e56386d..b03fd1f8 100644
--- a/po/es.po
+++ b/po/es.po
@@ -1112,10 +1112,6 @@ msgstr "Uso: $0 {start|stop|restart|try-restart|force-reload|status|panic|save}"
msgid "CTDB is already running"
msgstr "CTDB ya se está ejecutando"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Ocurrió un error mientras se calculaba el prefijo IPv6a4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "archivo de bloque fetch-crl-boot presente"
@@ -1217,7 +1213,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Uso: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Error ocurrido mientras calculaba el prefijo IPv6to4"
diff --git a/po/et.po b/po/et.po
index 35cb9e91..35814522 100644
--- a/po/et.po
+++ b/po/et.po
@@ -1107,10 +1107,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1212,7 +1208,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Viga IPv6to4 prefiksi arvutamisel"
diff --git a/po/eu_ES.po b/po/eu_ES.po
index e1bbb757..9b1bdd97 100644
--- a/po/eu_ES.po
+++ b/po/eu_ES.po
@@ -1103,10 +1103,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1208,7 +1204,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/fi.po b/po/fi.po
index 9018ee55..e5f8acd2 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -1108,10 +1108,6 @@ msgstr "Käyttö: $0 {start|stop|restart|try-restart|force-reload|status|panic|s
msgid "CTDB is already running"
msgstr "CTDB on jo käynnissä"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Virhe laskettaessa IPv6to4-etuliitettä"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot:in lukkotiedosto on olemassa"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Käyttö: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Virhe laskettaessa IPv6to4-etuliitettä"
diff --git a/po/fr.po b/po/fr.po
index 61313942..5b54040f 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -1114,10 +1114,6 @@ msgstr "Syntaxe : $0 {start|stop|restart|try-restart|force-reload|status|panic|
msgid "CTDB is already running"
msgstr "CTDB est déjà en cours d'exécution"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Une erreur s'est produite lors du calcul du préfixe IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fichier de verrouillage pour le démarrage de fetch-ctrl-boot présent"
@@ -1219,7 +1215,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Syntaxe : $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Une erreur s'est produite lors du calcul du préfixe IPv6to4"
diff --git a/po/gl.po b/po/gl.po
index 04b4a038..c8cca393 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -1105,10 +1105,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1210,7 +1206,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Ocorreu un erro ao calcular o prefixo IPv6to4"
diff --git a/po/gu.po b/po/gu.po
index 90c39b98..429d1dc9 100644
--- a/po/gu.po
+++ b/po/gu.po
@@ -1108,10 +1108,6 @@ msgstr "વપરાશ: $0 {start|stop|restart|try-restart|force-reload|status|
msgid "CTDB is already running"
msgstr "CTDB એ પહેલેથી જ ચાલી રહ્યુ છે"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 પૂર્વગની ગણતરી કરતી વખતે ભૂલ ઉદ્ભવી"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot તાળુ ફાઇલ હાજર છે"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "વપરાશ: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 પૂર્વગ ગણતરી કરતાં ભૂલ ઉદ્દભવી હતી"
diff --git a/po/he.po b/po/he.po
index 9864210f..e3fbed7a 100644
--- a/po/he.po
+++ b/po/he.po
@@ -1104,10 +1104,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1209,7 +1205,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/hi.po b/po/hi.po
index 3e52009a..326e24cb 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -1108,10 +1108,6 @@ msgstr "प्रयोग: $0 {start|stop|restart|try-restart|force-reload|stat
msgid "CTDB is already running"
msgstr "CTDB पहले से चल रहा है"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 उपसर्ग का परिकलन करते समय दोष उत्पन्न हुआ"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot लॉकफाइल मौजूद है"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "प्रयोग: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 उपसर्ग का परिकलन करते समय दोष उत्पन्न हुआ"
diff --git a/po/hr.po b/po/hr.po
index 0564b124..cda9aedb 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -1105,10 +1105,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Tijekom izračunavanja IPv6to4 prefiksa došlo je do pogreške"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1210,7 +1206,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Tijekom izračunavanja IPv6to4 prefiksa došlo je do pogreške"
diff --git a/po/hu.po b/po/hu.po
index 986cc880..c3e70b85 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -1111,10 +1111,6 @@ msgstr "Használat: $0 {start|stop|restart|try-restart|force-reload|status|panic
msgid "CTDB is already running"
msgstr "A CTDB már fut"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Hiba lépett fel az IPv6to4-előtag kiszámításakor"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot lockfile megtalálható"
@@ -1216,7 +1212,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Használat: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Hiba lépett fel az IPv6to4 előtag kiszámításakor"
diff --git a/po/hy.po b/po/hy.po
index f421d990..82b22780 100644
--- a/po/hy.po
+++ b/po/hy.po
@@ -1103,10 +1103,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1208,7 +1204,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/id.po b/po/id.po
index f019c26d..e519a1ae 100644
--- a/po/id.po
+++ b/po/id.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Kesalahan terjadi ketika menghitung prefix IPv6to4"
diff --git a/po/is.po b/po/is.po
index 563e6a6a..2518e783 100644
--- a/po/is.po
+++ b/po/is.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Villa kom upp við að reikna út IPv6to4 forskeytið"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Villa kom upp við að reikna út IPv6to4 forskeyti"
diff --git a/po/it.po b/po/it.po
index 498ed0d7..32809ca2 100644
--- a/po/it.po
+++ b/po/it.po
@@ -1110,10 +1110,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr "CTDB è già in esecuzione"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Si è verificato un errore durante il calcolo del prefisso IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1215,7 +1211,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Utilizzo: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Si è verificato un errore durante il calcolo del prefisso IPv6to4"
diff --git a/po/ja.po b/po/ja.po
index 0a0b0c69..eb585000 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -1118,10 +1118,6 @@ msgstr "使い方: $0 {start|stop|restart|try-restart|force-reload|status|panic|
msgid "CTDB is already running"
msgstr "CTDB はすでに実行中です"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 prefix を計算中にエラーが発生しました"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot ロックファイルは提供されています。"
@@ -1223,7 +1219,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "使い方: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 prefix を計算中にエラー発生"
diff --git a/po/ka.po b/po/ka.po
index 592a3f6d..4bb2bdd0 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/kn.po b/po/kn.po
index db8afc4e..d0586814 100644
--- a/po/kn.po
+++ b/po/kn.po
@@ -1107,10 +1107,6 @@ msgstr "ಬಳಕೆ: $0 {start|stop|restart|try-restart|force-reload|status|pan
msgid "CTDB is already running"
msgstr "CTDB ವು ಈಗಾಗಲೆ ಚಾಲನೆಯಲ್ಲಿದೆ"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 ಪೂರ್ವಪ್ರತ್ಯಯವನ್ನು ಲೆಕ್ಕಾಚಾರ ಮಾಡುವಾಗ ದೋಷ ಉಂಟಾಗಿದೆ"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot ಲಾಕ್ ಕಡತ ಅಸ್ತಿತ್ವದಲ್ಲಿದೆ"
@@ -1212,7 +1208,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "ಬಳಕೆ: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 ಪೂರ್ವಪ್ರತ್ಯಯವನ್ನು ಲೆಕ್ಕಾಚಾರ ಮಾಡುವಾಗ ದೋಷ ಉಂಟಾಗಿದೆ"
diff --git a/po/ko.po b/po/ko.po
index 7049a34a..9f9dcf96 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -1110,10 +1110,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr "CTDB가 이미 실행되고 있습니다. "
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 prefix를 계산하고 있는 도중 에러 발생"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1215,7 +1211,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "사용법: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig} "
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4의 prefix를 계산하고 있는 도중 에러 발생"
diff --git a/po/ku.po b/po/ku.po
index 0a322521..ef82d45d 100644
--- a/po/ku.po
+++ b/po/ku.po
@@ -1103,10 +1103,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1208,7 +1204,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/lo.po b/po/lo.po
index 3ad55167..8aabd665 100644
--- a/po/lo.po
+++ b/po/lo.po
@@ -1103,10 +1103,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1208,7 +1204,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/lt.po b/po/lt.po
index 7f115049..7ae9ac70 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -1105,10 +1105,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1210,7 +1206,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/lv.po b/po/lv.po
index 95b4a321..8826dd2a 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Atgadījās kļūda aprēķinot prefiksu no IPv6 uz IPv4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Lietošana: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Kļūda aprēķinot prefiksu no IPv6 uz IPv4"
diff --git a/po/mai.po b/po/mai.po
index 5c5514cd..93f1137b 100644
--- a/po/mai.po
+++ b/po/mai.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr "CTDB पहले से चलि रहल अछि"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 उपसर्ग क' परिकलन करैत समय दोष उत्पन्न भेल"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "प्रयोग: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 उपसर्ग क' परिकलन करैत बेला दोष उत्पन्न भेल"
diff --git a/po/mk.po b/po/mk.po
index 43e491e3..7fc271e9 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -1107,10 +1107,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Се појави грешка при одредување на префиксот за IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1212,7 +1208,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Имаше грешка при одредување на префиксот на IPv6to4"
diff --git a/po/ml.po b/po/ml.po
index 996afa83..db8f0381 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -1106,10 +1106,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr "CTDB നിലവില്‍ പ്രവര്‍ത്തിക്കുന്നു"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 പ്രിഫിക്സ് കണക്കു കൂട്ടുന്നതില്‍ പിശക്"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1211,7 +1207,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "ഉപയോഗിക്കേണ്ട വിധം: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 പ്രിഫിക്സ് കണക്കു കൂട്ടുന്നതില്‍ പിഴവ്"
diff --git a/po/mr.po b/po/mr.po
index fbf46238..890f5e64 100644
--- a/po/mr.po
+++ b/po/mr.po
@@ -1111,10 +1111,6 @@ msgstr "वापर: $0 {start|stop|restart|try-restart|force-reload|status|pan
msgid "CTDB is already running"
msgstr "CTDB आधिपासूनच चालू आहे"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "IPv6to4 पूर्वपद गणण्यात चूक उद्भवली"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "fetch-crl-boot लॉकफाइल उपलब्ध"
@@ -1216,7 +1212,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "वापर: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "IPv6to4 पूर्वपदाचे गणन करताना चूक उद्भवली"
diff --git a/po/ms.po b/po/ms.po
index 823ff36c..fb9326e6 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -1105,10 +1105,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Ralat berlaku ketika mengira prefiks IPv6to4"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1210,7 +1206,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Ralat berlaku bila mengira prefiks IPv6to4"
diff --git a/po/my.po b/po/my.po
index 1c440822..82314f31 100644
--- a/po/my.po
+++ b/po/my.po
@@ -1103,10 +1103,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1208,7 +1204,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/nb.po b/po/nb.po
index 6db7e6eb..50d00530 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -1108,10 +1108,6 @@ msgstr "Bruk: $0 {start|stop|restart|try-restart|force-reload|status|panic|save}
msgid "CTDB is already running"
msgstr "CTDB kjører allerede"
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr "Feil oppsto under utregning av IPv6til4-prefiks"
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr "det finnes en låsfil for fetch-crl-boot"
@@ -1213,7 +1209,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr "Bruk: $0 {start|stop|status|restart|reload|force-reload|condrestart|once|genconfig}"
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr "Feil oppsto under utregning av IPv6til4-prefiks"
diff --git a/po/nds.po b/po/nds.po
index e135d288..8904c6d3 100644
--- a/po/nds.po
+++ b/po/nds.po
@@ -1105,10 +1105,6 @@ msgstr ""
msgid "CTDB is already running"
msgstr ""
-#: /etc/ppp/ip-up.ipv6to4:186
-msgid "Error occurred while calculating the IPv6to4 prefix"
-msgstr ""
-
#: /etc/rc.d/init.d/fetch-crl-boot:57
msgid "fetch-crl-boot lockfile present"
msgstr ""
@@ -1210,7 +1206,7 @@ msgid ""
"reload|condrestart|once|genconfig}"
msgstr ""
-#: /etc/sysconfig/network-scripts/ifup-ipv6:296
+#: /etc/sysconfig/network-scripts/ifup-ipv6:296 /etc/ppp/ip-up.ipv6to4:186
msgid "Error occurred while calculating the IPv6to4 prefix"
msgstr ""
diff --git a/po/nl.po b/po/nl.po
index 3d69ddb6..be162f2a 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -1109,10 +1109,6 @@ msgstr "Gebruik: $0 {start|stop|restart|try-restart|force-reload|status|panic|sa
msgid "CTDB is already running"
msgstr "CTDB draait al"
-#: /etc/ppp/ip-up.ipv6to4:186