aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfilip <filip.komar@gmail.com>2015-06-28 22:45:38 +0200
committerfilip <filip.komar@gmail.com>2015-06-28 22:45:38 +0200
commitc5d0c2728c113f8e2364d501bed0e23f7748af27 (patch)
tree7811ae4d4bc3a122660a756321296983fb7f812e
parentfa8c21e1cd67ecea286f9e8bd8f652be338d61a6 (diff)
downloadwww-c5d0c2728c113f8e2364d501bed0e23f7748af27.tar
www-c5d0c2728c113f8e2364d501bed0e23f7748af27.tar.gz
www-c5d0c2728c113f8e2364d501bed0e23f7748af27.tar.bz2
www-c5d0c2728c113f8e2364d501bed0e23f7748af27.tar.xz
www-c5d0c2728c113f8e2364d501bed0e23f7748af27.zip
mga 5 pdf and epub documenation files added + improvements:
- more clear page - links added only for present pdf and epub files - function doc_list improved and cleaned
-rw-r--r--en/doc/archive.php6
-rw-r--r--en/doc/doc.php82
-rw-r--r--en/doc/index.php24
-rw-r--r--en/downloads/get/definitions_doc.ini22
-rw-r--r--langs/ar/documentation.po66
-rw-r--r--langs/ast/documentation.po66
-rw-r--r--langs/ca/documentation.po68
-rw-r--r--langs/cs/documentation.po68
-rw-r--r--langs/de/documentation.po68
-rw-r--r--langs/el/documentation.po28
-rw-r--r--langs/en-gb/documentation.po68
-rw-r--r--langs/en/documentation.pot28
-rw-r--r--langs/eo/documentation.po66
-rw-r--r--langs/es/documentation.po68
-rw-r--r--langs/et/documentation.po28
-rw-r--r--langs/eu/documentation.po28
-rw-r--r--langs/fi/documentation.po66
-rw-r--r--langs/fr/documentation.po28
-rw-r--r--langs/hr/documentation.po68
-rw-r--r--langs/hu/documentation.po66
-rw-r--r--langs/id/documentation.po28
-rw-r--r--langs/it/documentation.po68
-rw-r--r--langs/ja/documentation.po66
-rw-r--r--langs/lv/documentation.po66
-rw-r--r--langs/nb/documentation.po66
-rw-r--r--langs/nl/documentation.po28
-rw-r--r--langs/pl/documentation.po68
-rw-r--r--langs/pt-br/documentation.po68
-rw-r--r--langs/pt/documentation.po66
-rw-r--r--langs/ro/documentation.po68
-rw-r--r--langs/ru/documentation.po68
-rw-r--r--langs/sco/documentation.po66
-rw-r--r--langs/sl/documentation.po48
-rw-r--r--langs/sq/documentation.po68
-rw-r--r--langs/sv/documentation.po68
-rw-r--r--langs/tr/documentation.po28
-rw-r--r--langs/uk/documentation.po28
-rw-r--r--langs/ur/documentation.po66
-rw-r--r--langs/zh-cn/documentation.po66
-rw-r--r--langs/zh-tw/documentation.po66
40 files changed, 929 insertions, 1247 deletions
diff --git a/en/doc/archive.php b/en/doc/archive.php
index 387a4cd06..9aff8cc64 100644
--- a/en/doc/archive.php
+++ b/en/doc/archive.php
@@ -29,19 +29,19 @@ require 'doc.php';
<h3>Mageia 3</h3>
<div style="float: left; margin: 1em; width: 24em;">
<p style="margin-left: 2em;"><?php
- doc_list(_r('Installer'), 'installer', 3, '<a href="//doc.mageia.org/installer/3/%s/content/index.html">HTML</a>');
+ doc_list(_r('Installer'), 'installer', 3);
?></p>
</div>
<div style="float: right; margin: 1em; width: 24em;">
<p style="margin-left: 2em;"><?php
- doc_list(_r('Control Center'), 'control_center', 3, '<a href="//doc.mageia.org/mcc/3/%s/content/index.html">HTML</a>');
+ doc_list(_r('Control Center'), 'control_center', 3);
?></p>
</div>
<hr style="clear: both;">
<h3>Mageia 2</h3>
<div style="float: left; margin: 2em;">
<p><?php
- doc_list(_r('Installer'), 'installer', 2, '<a href="//doc.mageia.org/installer/2/%s/content/index.html">HTML</a>');
+ doc_list(_r('Installer'), 'installer', 2);
?></p>
</div>
</div>
diff --git a/en/doc/doc.php b/en/doc/doc.php
index 285c43dec..ddcb016a9 100644
--- a/en/doc/doc.php
+++ b/en/doc/doc.php
@@ -11,67 +11,105 @@ $documentation['control_center'][3] = array('en','et','fr');
$documentation['installer' ][2] = array('de','el','en','eo','fr','nl','pt_br','uk');
+$defs = parse_ini_file('../downloads/get/definitions_doc.ini', true);
+
+function pdf_epub_present_in_locale($doc_name, $lang, $extension)
+{
+ global $defs;
+
+ $eng_file_name = sprintf('%s_en_%s', $doc_name, $extension);
+ if(array_key_exists($eng_file_name, $defs)) {
+ $langs = explode('|', $defs[$eng_file_name]['langs']);
+ if (in_array($lang, $langs)) {
+ return TRUE;
+ }
+ }
+ return FALSE;
+}
+
function doc_present_in_locale($documentation_name, $version)
{
global $locale;
global $documentation;
$link_locale = locale_hyphen_underscore($locale); // create pt_br.po from pt-br and alike
- if(in_array($link_locale, $documentation[$documentation_name][$version])) {
+ if (in_array($link_locale, $documentation[$documentation_name][$version])) {
return $link_locale;
} else {
return 'en';
}
}
-function doc_list($documentation_name, $type, $version, $link, $epub_link = null, $pdf_link = null)
+function doc_list($documentation_name, $type, $version)
{
global $locale;
global $langs;
global $documentation;
+
+ if ('control_center' == $type) {
+ $dir = 'mcc';
+ $name = 'MCC';
+ $title = _r('Control Center');
+ } else if ('installer' == $type) {
+ $dir = 'installer';
+ $name = 'DrakX';
+ $title = _r('Installer');
+ } else {
+ return; // proper $type not defined ;)
+ }
+
+ $doc_link = sprintf('<a href="//doc.mageia.org/%s/%s/%s/content/index.html">%s</a>', $dir, $version, '%s', '%s');
+ $pdf_link = sprintf('<a rel="nofollow" href="../downloads/get/?q=Mageia%s-%s-%s-pdf&amp;doc=yes" title="Mageia %s PDF">PDF</a>', $version, $name, '%s', $title);
+ $epub_link = sprintf('<a rel="nofollow" href="../downloads/get/?q=Mageia%s-%s-%s-epub&amp;doc=yes" title="Mageia %s EPUB">EPUB</a>', $version, $name, '%s', $title);
+
$link_locale = locale_hyphen_underscore($locale); // create pt_br.po from pt-br and alike
$your_language = '';
- $others = '';
+ $others = array();
$text_others = '';
$your_language_present = FALSE;
$other_languages_present = FALSE;
$note_printed = FALSE;
- // temporary hidding of the EPUB and PDF links
- $hide_epub_pdf = FALSE;
$table = PHP_EOL . '<table class="dlt2 dlinfo" style="font-size: 10pt;">' . PHP_EOL;
-// $table .= '<thead><tr><th></th></tr></thead>';
$table .= "\t<tbody>" . PHP_EOL;
foreach ($documentation[$type][$version] as $lng) {
// hopefully temporary exception for pt-br as convention for lang-abbrev in /langs.inc.php is different as link in doc.mageia.org
- if ($lng == 'pt_br') {
- $lng_name = $langs['pt-br'];
- } else {
- $lng_name = $langs[$lng];
+ $lng_name = $langs[locale_underscore_to_hyphen($lng)];
+
+ $pdf_present = pdf_epub_present_in_locale(sprintf('Mageia%s_%s', $version, $name), $lng, 'pdf');
+ $epub_present = pdf_epub_present_in_locale(sprintf('Mageia%s_%s', $version, $name), $lng, 'epub');
+ $pdf_epub_links = array();
+ if ($pdf_present) {
+ $pdf_epub_links[] = sprintf($pdf_link, $lng);
+ }
+ if ($epub_present) {
+ $pdf_epub_links[] = sprintf($epub_link, $lng);
}
+ $pdf_epub_links = implode(', ', $pdf_epub_links);
+ $lang_doc_link = sprintf($doc_link, $lng, $lng_name);
if ($link_locale == $lng) {
$your_language_present = TRUE;
- if (is_null($epub_link) or is_null($pdf_link) or $hide_epub_pdf) {
- $your_language = sprintf(_r('%s available in %s') . '<br/>%s',
- '<span style="font-weight:bold">' . $documentation_name . '</span>', $lng_name, sprintf($link, $lng));
+ if (!$pdf_present && !$epub_present) {
+ $your_language = sprintf(_r('Online manual for %s available in %s') . '<br/>',
+ '<span style="font-weight:bold">' . $documentation_name . '</span>', $lang_doc_link);
} else {
- $your_language = sprintf(_r('%s available in %s') . '<br/>%s <span style="font-size: 07pt;">('.
- _r('also as') . ' %s, %s)</span>',
+ $your_language = sprintf(_r('Online manual for %s available in %s') . '<br/> <span style="font-size: 07pt;">('.
+ _r('also as file:') . ' %s)</span>',
'<span style="font-weight:bold">' . $documentation_name . '</span>',
- $lng_name, sprintf($link, $lng), sprintf($epub_link, $lng), sprintf($pdf_link, $lng));
+ $lang_doc_link, $pdf_epub_links);
}
} else {
$other_languages_present = TRUE;
- if (is_null($epub_link) or is_null($pdf_link) or $hide_epub_pdf) {
- $others[] = sprintf('%s<br/>%s', $lng_name, sprintf($link, $lng));
+ if (!$pdf_present && !$epub_present) {
+ $others[] = $lang_doc_link;
} else {
if(!$note_printed) {
- $note = _r('also as') . ' ';
+ $note = _r('also as file:', ' ');
$note_printed = TRUE;
} else {
$note = '';
}
- $others[] = sprintf('%s<br/>%s <span style="font-size: 07pt;">(%s%s, %s)</span>',
- $lng_name, sprintf($link, $lng), $note, sprintf($epub_link, $lng), sprintf($pdf_link, $lng), sprintf($link, $lng));
+ $others[] = sprintf('%s <span style="font-size: 07pt;">(%s%s)</span>',
+ $lang_doc_link, $note, $pdf_epub_links, $lang_doc_link);
}
}
}
@@ -89,7 +127,7 @@ function doc_list($documentation_name, $type, $version, $link, $epub_link = null
if($single_version < $version && in_array($link_locale, $all_languages)) {
$language_present_before = "\t\t<tr><td>" .
sprintf(_r('Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s.'),
- $langs[$locale], $documentation_name, $single_version) . "</td></tr>" . PHP_EOL;
+ $lng_name, $documentation_name, $single_version) . "</td></tr>" . PHP_EOL;
break;
} else {
$language_present_before = '';
diff --git a/en/doc/index.php b/en/doc/index.php
index fe7e68f22..2730d5bce 100644
--- a/en/doc/index.php
+++ b/en/doc/index.php
@@ -32,35 +32,19 @@ require 'doc.php';
<hr>
<h3>Mageia 5</h3>
<div style="float: left; margin: 1em; width: 24em;">
- <p style="margin-left: 2em;"><?php
- doc_list(_r('Installer'), 'installer', 5, '<a href="//doc.mageia.org/installer/5/%s/content/index.html">HTML</a>');
-# doc_list(_r('Installer'), 'installer', 5, '<a href="//doc.mageia.org/installer/5/%s/content/index.html">HTML</a>',
-# '<a rel="nofollow" href="../downloads/get/?q=Mageia5-DrakX-%s-epub&amp;doc=yes" title="Mageia installer EPUB">EPUB</a>',
-# '<a rel="nofollow" href="../downloads/get/?q=Mageia5-DrakX-%s-pdf&amp;doc=yes" title="Mageia installer PDF">PDF</a>');
- ?></p>
+ <p style="margin-left: 2em;"><?php doc_list(_r('Installer'), 'installer', 5); ?></p>
</div>
<div style="float: right; margin: 1em; width: 24em;">
- <p style="margin-left: 2em;"><?php
- doc_list(_r('Control Center'), 'control_center', 5, '<a href="//doc.mageia.org/mcc/5/%s/content/index.html">HTML</a>');
-# doc_list(_r('Control Center'), 'control_center', 5, '<a href="//doc.mageia.org/mcc/5/%s/content/index.html">HTML</a>',
-# '<a rel="nofollow" href="../downloads/get/?q=Mageia5-MCC-%s-epub&amp;doc=yes" title="Mageia MCC EPUB">EPUB</a>',
-# '<a rel="nofollow" href="../downloads/get/?q=Mageia5-MCC-%s-pdf&amp;doc=yes" title="Mageia MCC PDF">PDF</a>');
- ?></p>
+ <p style="margin-left: 2em;"><?php doc_list(_r('Control Center'), 'control_center', 5); ?></p>
</div>
<hr style="clear: both;">
<h3>Mageia 4</h3>
<div style="float: left; margin: 1em; width: 24em;">
- <p style="margin-left: 2em;"><?php
- doc_list(_r('Installer'), 'installer', 4, '<a href="//doc.mageia.org/installer/4/%s/content/index.html">HTML</a>',
- '<a rel="nofollow" href="../downloads/get/?q=Mageia4-DrakX-%s-epub&amp;doc=yes" title="Mageia installer EPUB">EPUB</a>',
- '<a rel="nofollow" href="../downloads/get/?q=Mageia4-DrakX-%s-pdf&amp;doc=yes" title="Mageia installer PDF">PDF</a>');
+ <p style="margin-left: 2em;"><?php doc_list(_r('Installer'), 'installer', 4);
?></p>
</div>
<div style="float: right; margin: 1em; width: 24em;">
- <p style="margin-left: 2em;"><?php
- doc_list(_r('Control Center'), 'control_center', 4, '<a href="//doc.mageia.org/mcc/4/%s/content/index.html">HTML</a>',
- '<a rel="nofollow" href="../downloads/get/?q=Mageia4-MCC-%s-epub&amp;doc=yes" title="Mageia MCC EPUB">EPUB</a>',
- '<a rel="nofollow" href="../downloads/get/?q=Mageia4-MCC-%s-pdf&amp;doc=yes" title="Mageia MCC PDF">PDF</a>');
+ <p style="margin-left: 2em;"><?php doc_list(_r('Control Center'), 'control_center', 4);
?></p>
</div>
</div>
diff --git a/en/downloads/get/definitions_doc.ini b/en/downloads/get/definitions_doc.ini
index 6b0276dc1..5c953f82e 100644
--- a/en/downloads/get/definitions_doc.ini
+++ b/en/downloads/get/definitions_doc.ini
@@ -8,6 +8,7 @@
;;;;; Mageia documentation
;;;;;;;;;;;;;;;;;;;;;
+; Mageia 4
[Mageia4_DrakX_en_epub]
size = around 2 MB
path = people/marcom/doc/mga4/epub/installer
@@ -27,3 +28,24 @@ langs = "de|en|et|fr|ro|ru|tr|uk"
size = around 10 MB
path = people/marcom/doc/mga4/pdf/mcc
langs = "de|en|et|fr|ro|ru|tr|uk"
+
+; Mageia 5
+[Mageia5_DrakX_en_epub]
+size = around 2 MB
+path = people/marcom/doc/mga5/epub/installer
+langs = "ca|cs|de|el|en|eo|es|et|eu|fr|hr|id|it|nl|pl|pt_br|ro|ru|sq|sv|tr|uk"
+
+[Mageia5_DrakX_en_pdf]
+size = around 2 MB
+path = people/marcom/doc/mga5/pdf/installer
+langs = "ca|cs|de|el|en|eo|es|et|eu|fr|hr|id|it|nl|pl|pt_br|ro|ru|sq|sv|tr|uk"
+
+[Mageia5_MCC_en_epub]
+size = around 10 MB
+path = people/marcom/doc/mga5/epub/mcc
+langs = "de|en|et|fr|pt_br|ro|ru|tr|uk"
+
+[Mageia5_MCC_en_pdf]
+size = around 10 MB
+path = people/marcom/doc/mga5/pdf/mcc
+langs = "de|en|et|fr|pt_br|ro|ru|tr|uk"
diff --git a/langs/ar/documentation.po b/langs/ar/documentation.po
index d28403472..f02b51d20 100644
--- a/langs/ar/documentation.po
+++ b/langs/ar/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-04-03 12:09+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Arabic (http://www.transifex.com/projects/p/mageia/language/ar/)\n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "مركز التحكم"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/ast/documentation.po b/langs/ast/documentation.po
index fcbc96614..ba5cf6874 100644
--- a/langs/ast/documentation.po
+++ b/langs/ast/documentation.po
@@ -2,15 +2,15 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# enolp <enolp@softastur.org>, 2015
# Ḷḷumex03 <tornes@opmbx.org>, 2014
@@ -18,14 +18,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-02-16 12:22+0000\n"
"Last-Translator: enolp <enolp@softastur.org>\n"
"Language-Team: Asturian (http://www.transifex.com/projects/p/mageia/language/ast/)\n"
+"Language: ast\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ast\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -45,42 +45,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "La documentación pa versiones vieyes ta disponible na <a href=\"archive.php\">páxina d'archivu</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalación"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centru de control"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Sofitu"
@@ -89,8 +81,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -98,40 +89,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/ca/documentation.po b/langs/ca/documentation.po
index 6eee8603b..7a8dff108 100644
--- a/langs/ca/documentation.po
+++ b/langs/ca/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Francesc Pinyol Margalef <francesc.pinyol.m@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-01-01 16:41+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Catalan (http://www.transifex.com/projects/p/mageia/language/ca/)\n"
+"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Trobeu la documentació"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Seleccioneu el manual, la versió de Mageia i la llengua que voleu veure."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "La documentació de les versions antigues està disponible a la <a href=\"archive.php\">pàgina d'arxius</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Aquests manuals són el resultat de la feina comuna dels equips de <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentació</a> i de <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">traducció</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Ajudeu-nos a millorar-la!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instal·lador"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centre de Control"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mapa del lloc de Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Suport"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Arxiu de la documentació de Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentació per a versions anteriors de Mageia i les seves eines."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Més documentació"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Aquí podeu trobar la documentació de les versions de Mageia que han assolit la fi de vida."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Si cerqueu les versions actuals, vegeu <a href=\"index.php\">aquí</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s disponible en %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "també com a"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentació en la vostra llengua:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Altres llengües"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Abans la traducció a %s estava disponible.<br/>Potser podeu comprovar la documentació per a %s a Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Ajudeu-<a href=\"../community/\">nos</a> a traduir-la a la vostra llengua."
diff --git a/langs/cs/documentation.po b/langs/cs/documentation.po
index 0e6ed5474..bd84f4f59 100644
--- a/langs/cs/documentation.po
+++ b/langs/cs/documentation.po
@@ -2,15 +2,15 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Jiří Vírava <appukonrad@gmail.com>, 2014
# fri, 2014-2015
@@ -18,14 +18,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-04-27 13:45+0000\n"
"Last-Translator: fri\n"
"Language-Team: Czech (http://www.transifex.com/projects/p/mageia/language/cs/)\n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
#: "/web/en/doc/index.php +14"
@@ -45,42 +45,34 @@ msgid "Find your documentation"
msgstr "Najděte dokumentaci"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Vyberte příručku, vydání Mageii a jazyk, ve kterém si ji chcete prohlížet."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Dokumentace ke starším verzím je dostupná na <a href=\"archive.php\">archivní stránce</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Tyto příručky jsou výsledkem společné práce <a href=\"https://wiki.mageia.org/en/Documentation_team\">dokumentačního</a> a <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">překladatelských</a> týmů."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Pomozte nám ji vylepšit!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalátor"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Ovládací centrum"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mapa stránek Mageii"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Podpora"
@@ -89,8 +81,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Archiv s dokumentací k Mageie"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentace pro předchozí vydání Mageii a jejích nástrojů."
#: "/web/en/doc/archive.php +25"
@@ -98,40 +89,35 @@ msgid "Some More documentation"
msgstr "Další dokumentace"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Zde naleznete dokumentaci k verzím Mageii, které se již dostaly za konec své životnosti."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Pokud hledáte nynější verze, podívejte se <a href=\"index.php\">sem</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s dostupné v %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "také jako"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentace ve vašem jazyku:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Další jazyky:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Předtím byl překlad přítomen v %s.<br/>Možná byste se mohl podívat na dokumentaci pro %s v Mageie %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Pomozte <a href=\"../community/\">nám</a>, prosím, s překladem do vašeho jazyka."
diff --git a/langs/de/documentation.po b/langs/de/documentation.po
index 9ccbeeb33..56eeba842 100644
--- a/langs/de/documentation.po
+++ b/langs/de/documentation.po
@@ -2,15 +2,15 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# psyca, 2014-2015
# Marc Lattemann, 2014
@@ -19,14 +19,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-04-03 14:25+0000\n"
"Last-Translator: psyca\n"
"Language-Team: German (http://www.transifex.com/projects/p/mageia/language/de/)\n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -46,42 +46,34 @@ msgid "Find your documentation"
msgstr "Finden Sie die richtige Dokumentation"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Wählen Sie das Benutzerhandbuch, die Mageia-Version und die Sprache aus, die Sie ben&ouml;tigen."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Die Dokumentation für alte Mageia-Versionen finden Sie im <a href=\"archive.php\">Archiv</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Diese Benutzerhandb&uuml;cher sind das Ergebnis der gemeinsamen Arbeit des <a href=\"https://wiki.mageia.org/en/Documentation_team\">Dokumentations-</a> und des <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">&Uuml;bersetzungsteams</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Auch Sie k&ouml;nnen mithelfen!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installation"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Kontrollzentrum"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia-Sitemap"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Support"
@@ -90,8 +82,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Mageias Dokumentationsarchiv"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentation für &auml;ltere Versionen von Mageia und seinen Werkzeugen."
#: "/web/en/doc/archive.php +25"
@@ -99,40 +90,35 @@ msgid "Some More documentation"
msgstr "Weitere Dokumentation"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Hier finden Sie die Dokumentation f&uuml;r Mageia-Versionen, die nicht mehr unterst&uuml;tzt werden."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Die aktuelle Dokumentation finden Sie <a href=\"index.php\">hier</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s verf&uuml;gbar auf %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "ebenso auf"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentation in Ihrer Sprache:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Andere Sprachen:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Die Übersetzung war vorher in %s vorhanden.<br/>Schauen Sie bitte in die Dokumentation für %s in Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Bitte helfen Sie <a href=\"../community/\">uns</a> bei der &Uuml;bersetzung in Ihre Sprache."
diff --git a/langs/el/documentation.po b/langs/el/documentation.po
index 3a46430a5..e9e8639a9 100644
--- a/langs/el/documentation.po
+++ b/langs/el/documentation.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: ./langs/el/documentation.el.lang\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-03-19 21:58+0100\n"
"Last-Translator: Duffy Duck <d_duck@nowhere.net>\n"
"Language-Team: Greek <i18n-el@ml.mageia.org>\n"
@@ -44,19 +44,19 @@ msgstr "Αυτά τα εγχειρίδια είναι αποτέλεσμα τη
msgid "Feel free to help us improving it!"
msgstr "Μπορείτε να βοηθήσετε στη βελτίωσή της!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Εγκαταστάτης"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Κέντρο ελέγχου"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Χάρτης ιστοτόπου της Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Υποστήριξη"
@@ -80,26 +80,28 @@ msgstr "Εδώ μπορείτε να βρείτε την τεκμηρίωση γ
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Αν ψάχνετε για τις τρέχουσες εκδόσεις, ανατρέξτε <a href=\"index.php\">εδώ</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s διαθέσιμη στα %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "επίσης ως"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Τεκμηρίωση στη γλώσσα σας:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Άλλες γλώσσες:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Η μετάφραση υπήρχε πριν για %s.<br/>Ίσως μπορείτε να ελέγξετε την τεκμηρίωση για %s στη Mageia %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Παρακαλώ βοηθήστε <a href=\"../community/\">μας</a> για τη μετάφραση στη γλώσσα σας."
diff --git a/langs/en-gb/documentation.po b/langs/en-gb/documentation.po
index 7936d0455..40707e7b1 100644
--- a/langs/en-gb/documentation.po
+++ b/langs/en-gb/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Andi Chandler <andi@gowling.com>, 2015
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-03-21 21:09+0000\n"
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/mageia/language/en_GB/)\n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Find your documentation"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Select the manual, the release of Mageia and the language you want to see."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Feel free to help us improving it!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installer"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Control Center"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia sitemap"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Support"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Mageia Documentation's Archive"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentation for previous releases of Mageia distribution and its tools."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Some More documentation"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s available in %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "also as"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentation in your language:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Other languages:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Please help <a href=\"../community/\">us</a> translate it in your language."
diff --git a/langs/en/documentation.pot b/langs/en/documentation.pot
index bb8adf513..8556fbd01 100644
--- a/langs/en/documentation.pot
+++ b/langs/en/documentation.pot
@@ -1,5 +1,5 @@
# gettext catalog for documentation web page(s)
-# Copyright (C) 2014 - 2014 Mageia
+# Copyright (C) 2014 - 2015 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
#
@@ -15,7 +15,7 @@ msgid ""
msgstr ""
"Project-Id-Version: documentation\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -56,19 +56,19 @@ msgstr ""
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr ""
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -92,26 +92,26 @@ msgstr ""
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/eo/documentation.po b/langs/eo/documentation.po
index 53b780bd1..2b9fa45da 100644
--- a/langs/eo/documentation.po
+++ b/langs/eo/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# gfs1989 <gfs1989@gmx.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-11-03 08:13+0000\n"
"Last-Translator: gfs1989 <gfs1989@gmx.net>\n"
"Language-Team: Esperanto (http://www.transifex.com/projects/p/mageia/language/eo/)\n"
+"Language: eo\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Mandriva-Regejo"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Subteno"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/es/documentation.po b/langs/es/documentation.po
index bd406c114..78e17337c 100644
--- a/langs/es/documentation.po
+++ b/langs/es/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-23 13:03+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Spanish (http://www.transifex.com/projects/p/mageia/language/es/)\n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr "Encontrar en la documentación"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Seleccionar el manual, la versión de Mageia y el idioma que quiera ver."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Documentación de versiones antiguas están disponibles en la <a href=\"archive.php\">página de archivo</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Estos manuales son el resultado del trabajo común de los equipos de <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentación</a> y <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">tranducción</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "¡Está invitado a ayudarnos para mejorarlos!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalador"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centro de Control"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mapa del sitio de Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Soporte"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Archivo de la Documentación de Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentación de versiones antiguas de la distribución Mageia y sus herramientas."
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,35 @@ msgid "Some More documentation"
msgstr "Más documentación"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Aquí encontrará la documentación de las versiones de Mageia que ya no son soportadas."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Si está buscando las versiones actuales, mire <a href=\"index.php\">aquí</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s disponible en %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "también"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentación en su idioma:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Otros idiomas:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "La traducción ya estaba antes en %s.<br/>Quizá pueda echar un vistazo a la documentación para %s en Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Por favor, ayude<a href=\"../community/\">nos</a> a traducirla a su idioma."
diff --git a/langs/et/documentation.po b/langs/et/documentation.po
index 31a2e5046..c8f3ee28c 100644
--- a/langs/et/documentation.po
+++ b/langs/et/documentation.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-03-21 18:16+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Estonian (http://www.transifex.com/projects/p/mageia/language/et/)\n"
@@ -58,19 +58,19 @@ msgstr "Kõik käsiraamatud on sündinud Mageia <a href=\"https://wiki.mageia.or
msgid "Feel free to help us improving it!"
msgstr "Me ootame pingsalt igasugust tagasisidet!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Paigaldusprogramm"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Juhtimiskeskus"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia veebikaart"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Toetus"
@@ -94,26 +94,28 @@ msgstr "Siit leiab nende Mageia väljalasete dokumentatsiooni, mille eluiga on j
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Kui tunnete huvi seni toetatavate väljalasete vastu, vaadake <a href=\"index.php\">siia</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s - %s keeles"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "samuti vormingus:"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentatsioon teie keeles:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Teistes keeltes:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "%s keele tõlge oli varem olemas.<br/>Võib-olla tasuks kontrollida vastavat dokumentatsiooni (%s) Mageia %s jaoks."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Palun aidake <a href=\"../community/\">meil</a> tõlkida see teie keelde."
diff --git a/langs/eu/documentation.po b/langs/eu/documentation.po
index 649e72f9e..3eff3dc7d 100644
--- a/langs/eu/documentation.po
+++ b/langs/eu/documentation.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-09-11 21:04+0000\n"
"Last-Translator: Egoitz Rodriguez Obieta <egoitzro2@hotmail.com>\n"
"Language-Team: Basque (http://www.transifex.com/projects/p/mageia/language/eu/)\n"
@@ -59,19 +59,19 @@ msgstr "Eskuliburu hauek amankomuneko <a href=\"https://wiki.mageia.org/en/Docum
msgid "Feel free to help us improving it!"
msgstr "Aske sentitu guri laguntzeko!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalatzailea"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Aginte Gunea"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia web mapa"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Laguntza"
@@ -95,26 +95,28 @@ msgstr "Hemen Bizitza amaierako Mageia bertsioen dokumentazioa aurkituko dezakez
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Oraingo bertsioa bilatzen ari bazara, ikus <a href=\"index.php\">hemen</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s-n eskuragarri %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "gisa ere"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Zure hizkuntzan dokumentazioa:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Beste hizkuntzak:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Itzulpena %s-ren aurretik presente egon da.<br/>Agian %s-ren dokumentazioa begira dezakezu Mageia %s-n."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Mesedez lagundu <a href=\"../community/\">gaitzazu</a> zure hizkuntzara itzultzen."
diff --git a/langs/fi/documentation.po b/langs/fi/documentation.po
index 7db3a090d..c0b86ac9d 100644
--- a/langs/fi/documentation.po
+++ b/langs/fi/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-04-03 12:09+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Finnish (http://www.transifex.com/projects/p/mageia/language/fi/)\n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Ohjauskeskus"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/fr/documentation.po b/langs/fr/documentation.po
index ba0063b25..57f94d4c2 100644
--- a/langs/fr/documentation.po
+++ b/langs/fr/documentation.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: French (http://www.transifex.com/projects/p/mageia/language/fr/)\n"
@@ -58,19 +58,19 @@ msgstr "Ces manuels sont le fruit d'un travail commun des équipes de <a href=\"
msgid "Feel free to help us improving it!"
msgstr "N'hésitez pas à nous aider pour les améliorer !"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installateur classique"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centre de contrôle"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Plan du site"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Aide"
@@ -94,26 +94,28 @@ msgstr "Vous trouverez ici la documentation pour les versions de Mageia qui ne s
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Si vous cherchez les versions actuelles, c'est <a href=\"index.php\">ici</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s disponible en %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "ainsi qu'en"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentation dans votre langue :"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Autres langues :"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "La traduction était disponible en %s auparavant.<br />Vous pouvez éventuellement consulter la documentation sur %s dans Mageia %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Aidez <a href=\"../community/\">nous</a> à traduire dans votre langue."
diff --git a/langs/hr/documentation.po b/langs/hr/documentation.po
index 0af53d429..535687df1 100644
--- a/langs/hr/documentation.po
+++ b/langs/hr/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Ivica Kolić <ikoli@yahoo.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-10-30 16:11+0000\n"
"Last-Translator: Ivica Kolić <ikoli@yahoo.com>\n"
"Language-Team: Croatian (http://www.transifex.com/projects/p/mageia/language/hr/)\n"
+"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hr\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Nađite vašu dokumentaciju"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Odaberite priručnik, Mageia izdanje i jezik koji želite vidjeti."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Dokumentacija starih verzija je dostupna u <a href=\"archive.php\">stranici arhive</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Ovi priručnici su zajednčki rad <a href=\"https://wiki.mageia.org/en/Documentation_team\">dokumentacijskih</a> i <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">prevoditeljskih</a> timova."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Slobodno nam pomozite poboljšati je!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalacijski program"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Kontrolni centar"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Podrška"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Mageia arhiva dokumentacije"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentacija za prethodna izdanja Mageia distribucije i njezinih alata."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Još dokumentacije"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Ako tražite trenutne verzije, pogledajte <a href=\"index.php\">ovdje</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s dostupno u %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "također kao"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentacija na vašem jeziku:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Ostali jezici:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Molim pomozite <a href=\"../community/\">nam</a> prevesti je na vaš jezik."
diff --git a/langs/hu/documentation.po b/langs/hu/documentation.po
index b7963a155..b66ea3638 100644
--- a/langs/hu/documentation.po
+++ b/langs/hu/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 17:00+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Hungarian (http://www.transifex.com/projects/p/mageia/language/hu/)\n"
+"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Vezérlőközpont"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Támogatás"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/id/documentation.po b/langs/id/documentation.po
index 4ee52207c..544c77453 100644
--- a/langs/id/documentation.po
+++ b/langs/id/documentation.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Indonesian (http://www.transifex.com/projects/p/mageia/language/id/)\n"
@@ -58,19 +58,19 @@ msgstr "Panduan tersebut adalah hasil dari pekerjaan umum dari tim <a href=\"htt
msgid "Feel free to help us improving it!"
msgstr "Bantu kami memperbaikinya!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installer"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Pusat Kendali"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Peta situs Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Dukungan"
@@ -94,26 +94,28 @@ msgstr "Di sini kamu bisa menemukan dokumentasi versi Mageia yang telah mencapai
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Jika kamu mencari versi saat ini, lihat <a href=\"index.php\">di sini</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s tersedia di %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "juga sebagai"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentasi dalam bahasamu:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Bahasa lainnya:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Terjemahan tersedia di %s sebelumnya.<br/>Mungkin kamu bisa mencari dokumentasi untuk %s di Mageia %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Mohon bantu <a href=\"../community/\">kami</a> menerjemahkan ke bahasamu."
diff --git a/langs/it/documentation.po b/langs/it/documentation.po
index c59f6b605..14bc1fcc1 100644
--- a/langs/it/documentation.po
+++ b/langs/it/documentation.po
@@ -2,15 +2,15 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Guybrush88 <erpizzo@alice.it>, 2014-2015
# Roberto Albano <randyichinose@gmail.com>, 2015
@@ -18,14 +18,14 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-05-12 21:52+0000\n"
"Last-Translator: Roberto Albano <randyichinose@gmail.com>\n"
"Language-Team: Italian (http://www.transifex.com/projects/p/mageia/language/it/)\n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -45,42 +45,34 @@ msgid "Find your documentation"
msgstr "Trova la tua documentazione"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Seleziona il manuale, la release di Mageia e la lingua che vuoi vedere."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "La documentazione delle vecchie versioni è disponibile nella<a href=\"archive.php\">pagina degli archivi</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Questi manuali sono il risultato di un lavoro comune dei team di <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentazione</a> e <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">traduzione</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Sentiti libero di aiutarci a migliorarlo!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installer"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centro di Controllo"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mappa del sito di Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Supporto"
@@ -89,8 +81,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Archivio della documentazione di Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentazione per le precedenti release di Mageia e i suoi strumenti."
#: "/web/en/doc/archive.php +25"
@@ -98,40 +89,35 @@ msgid "Some More documentation"
msgstr "Un altro po' di documentazione"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Qua troverai la documentazione per le versioni di Mageia non più supportate."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Se stai cercando le versioni correnti, consulta <a href=\"index.php\">qui</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s disponibile in %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "Anche come"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentazione nella tua lingua:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Altre lingue:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Traduzione era presente prima in %s.<br/>Magari puoi cercare la documentazione per %s in Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Per favore <a href=\"../community/\">aiutaci</a> a tradurlo nella tua lingua."
diff --git a/langs/ja/documentation.po b/langs/ja/documentation.po
index 0ee427caa..6606894fe 100644
--- a/langs/ja/documentation.po
+++ b/langs/ja/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-02-24 00:32+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Japanese (http://www.transifex.com/projects/p/mageia/language/ja/)\n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "コントロールセンター"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "サポート"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/lv/documentation.po b/langs/lv/documentation.po
index 2b1e93f02..0fa51e1bd 100644
--- a/langs/lv/documentation.po
+++ b/langs/lv/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-04-03 12:09+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Latvian (http://www.transifex.com/projects/p/mageia/language/lv/)\n"
+"Language: lv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: lv\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Vadības Centrs"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/nb/documentation.po b/langs/nb/documentation.po
index bb97b3404..dc92f99f8 100644
--- a/langs/nb/documentation.po
+++ b/langs/nb/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-04-03 12:09+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Norwegian Bokmål (http://www.transifex.com/projects/p/mageia/language/nb/)\n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Kontrollsenter"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/nl/documentation.po b/langs/nl/documentation.po
index e11d066cc..abaea79fc 100644
--- a/langs/nl/documentation.po
+++ b/langs/nl/documentation.po
@@ -18,7 +18,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2015-06-26 17:20+0200\n"
"Last-Translator: Marja van Waes <marja@mageia.org>\n"
"Language-Team: Dutch <i18n-nl@ml.mageia.org>\n"
@@ -60,19 +60,19 @@ msgstr "Het <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentat
msgid "Feel free to help us improving it!"
msgstr "Voel u vrij om te helpen ze te verbeteren!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installatie"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Configuratiecentrum"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia overzicht"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Ondersteuning"
@@ -96,26 +96,28 @@ msgstr "Hier vindt u de documentatie voor Mageia-versies die hun Levenseinde (EO
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "De huidige versies vindt u <a href=\"index.php\">hier</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s beschikbaar in het %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "ook als"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentatie in uw taal:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Andere talen:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "De vertaling was eerder beschikbaar in het %s.<br/>Misschien kunt u de %s-documentatie bekijken in Mageia %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Help <a href=\"../community/\">ons</a> a.u.b. het in uw taal te vertalen."
diff --git a/langs/pl/documentation.po b/langs/pl/documentation.po
index 7648b5acf..e998ef663 100644
--- a/langs/pl/documentation.po
+++ b/langs/pl/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/mageia/language/pl/)\n"
+"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr "Znajdź dokumentację"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Wybierz manual, wersję Magei oraz język."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Dokumentacja dla starszych wersji jest dostępna na <a href=\"archive.php\">stronie archiwum</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Ta dokumentacja jest wynikiem wspólnej pracy zespołów <a href=\"https://wiki.mageia.org/en/Documentation_team\">dokumentacji</a> oraz <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">tłumaczy</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Możesz nam pomóc ją poprawiać!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalator"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centrum Sterowania"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mapa strony Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Wsparcie"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Archiwum Dokumentacji Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentacja dla poprzednich wersji dystrybucji Mageia oraz jej narzędzi."
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,35 @@ msgid "Some More documentation"
msgstr "Więcej dokumentacji"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Tutaj znajdziesz dokumentację dla wersji Mageia, które nie są już wspierane."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Jeśli szukasz bieżącej wersji, kliknij <a href=\"index.php\">tutaj</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s dostępna w %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "także jako"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentacja w twoim języku:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Inne języki:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Prosimy o <a href=\"../community/\">pomoc</a> w tłumaczeniu na twój język."
diff --git a/langs/pt-br/documentation.po b/langs/pt-br/documentation.po
index 5b55b4aa5..e0d8e3c06 100644
--- a/langs/pt-br/documentation.po
+++ b/langs/pt-br/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-27 01:30+0000\n"
"Last-Translator: Marcio Andre Padula <padula1000@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/projects/p/mageia/language/pt_BR/)\n"
+"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr "Encontre a sua documentação"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Selecione o manual, o lançamento do Mageia e do idioma que você quer ver."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Documentação de versões antigas estão disponíveis na <a href=\"archive.php\">página de arquivo</ a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Esses manuais são o resultado do trabalho comum de <a href=\"https://wiki.mageia.org/en/Documentation_team\">Documentação</a> e <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">Equipe de Tradução</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Sinta-se livre para nos ajudar a melhorá-lo!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalador"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Central de Controle"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mapa do site Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Suporte"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Arquivo de Documentação Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentação para versões anteriores do distribuição Mageia e suas ferramentas."
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,35 @@ msgid "Some More documentation"
msgstr "Mais documentação"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Aqui você vai encontrar a documentação para as versões do Mageia que atingiram o seu fim-de-vida."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Se você estiver olhando para as versões atuais, consulte <a href=\"index.php\">aqui</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s disponível em %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "também quanto"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentação em seu idioma:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Outras línguas:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Tradução estava presente em %s antes <br/>Talvez você possa verificar a documentação para %s em Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Por favor, ajude-nos <a href=\"../community/\">a</a> traduzi-lo em seu idioma."
diff --git a/langs/pt/documentation.po b/langs/pt/documentation.po
index 2bca5d3d9..fa8e47040 100644
--- a/langs/pt/documentation.po
+++ b/langs/pt/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# alfalb_mansil, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-07-03 15:41+0000\n"
"Last-Translator: alfalb_mansil\n"
"Language-Team: Portuguese (http://www.transifex.com/projects/p/mageia/language/pt/)\n"
+"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Encontre a sua documentação"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Selecione o manual, o lançamento do Mageia e o idioma que dejesa ver."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalador"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centro de Controlo"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Suporte"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Arquivo da Documentação do Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentação para os lançamentos anteriores da distribuição do Mageia e as suas ferramentas."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,33 @@ msgid "Some More documentation"
msgstr "Mais Alguma Documentação"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentação no seu idioma:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Outros idiomas:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Por favor, <a href=\"../community/\">ajude-nos</a> a traduzir para o seu idioma."
diff --git a/langs/ro/documentation.po b/langs/ro/documentation.po
index 950bf3a09..cd82638ba 100644
--- a/langs/ro/documentation.po
+++ b/langs/ro/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Florin Cătălin RUSSEN <cfrussen@yahoo.co.uk>\n"
"Language-Team: Romanian (http://www.transifex.com/projects/p/mageia/language/ro/)\n"
+"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Găsiți-vă documentația"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Selectați manualul, versiunea de Mageia și limba în care doriți s-o consultați."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Documentația pentru versiunile anterioare este disponibilă în <a href=\"archive.php\">arhivă</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Aceste manuale sînt rezultatul muncii comune al echipelor de <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentație</a> și de <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">traducere</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Sînteți liberi să ne ajutați s-o îmbunătățim!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instalatorul"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Centrul de control"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Harta sitului Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Suport"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Arhiva documentației Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Documentația pentru versiunile anterioare de Mageia și uneltele sale."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Cîteva documentații suplimentare"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Aici veți găsi documentația pentru versiunile de Mageia care și-au încheiat ciclul de viață."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Dacă sînteți în căutarea versiunilor curente, uitați-vă <a href=\"index.php\">aici</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s este disponibilă în %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "și ca"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Documentația în limba dumneavoastră:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Alte limbi:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Înainte traducerea era disponibilă în %s.<br/>Puteți verifica documentația pentru %s în Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "<a href=\"../community/\">Ajutați-ne</a> să o traducem în limba română."
diff --git a/langs/ru/documentation.po b/langs/ru/documentation.po
index 7def506a9..9a9f14215 100644
--- a/langs/ru/documentation.po
+++ b/langs/ru/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Russian (http://www.transifex.com/projects/p/mageia/language/ru/)\n"
+"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr "Найдите нужную документацию"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Выберите документ, версию Mageia и язык документа."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Документацию для старых версий Mageia можно найти <a href=\"archive.php\">здесь</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Список команд, которые создавали документацию, можно посмотреть <a href=\"https://wiki.mageia.org/en/Documentation_team\">здесь</a> и <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">здесь</a>."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Вы также можете помочь нам улучшить документацию!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Установка"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Центр управления"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Карта сайта"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Поддержка"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Архив документации"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Документация для предыдущих выпусков Mageia."
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,35 @@ msgid "Some More documentation"
msgstr "Дополнительная документация"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Здесь можно найти документацию для выпусков Mageia, поддержка которых уже завершена."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Документацию для новых выпусков Mageia можно найти <a href=\"index.php\">здесь</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s доступен на %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "или"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Документация на вашем языке:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Другие языки:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Перевод был представлен ранее в %s.<br/>Возможно вы можете проверить документацию для %s в Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Вы можете помочь <a href=\"../community/\">нам</a> перевести документацию на другие языки."
diff --git a/langs/sco/documentation.po b/langs/sco/documentation.po
index 3a4a90c4b..fc697f0d2 100644
--- a/langs/sco/documentation.po
+++ b/langs/sco/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-03-21 18:01+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Scots (http://www.transifex.com/projects/p/mageia/language/sco/)\n"
+"Language: sco\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sco\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr ""
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Support"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/sl/documentation.po b/langs/sl/documentation.po
index 168173b1f..97dbf2d31 100644
--- a/langs/sl/documentation.po
+++ b/langs/sl/documentation.po
@@ -1,12 +1,24 @@
+# gettext catalog for documentation web page(s)
+# Copyright (C) 2014 - 2015 Mageia
+# This file is distributed under the same license as
+# the content of the corresponding web page(s).
+#
+# Generated by extract2gettext.php
+# Domain: documentation
+#
+# include translation strings from:
+# en/doc/index.php
+# en/doc/archive.php
+# en/doc/doc.php
#
msgid ""
msgstr ""
"Project-Id-Version: ./langs/sl/documentation.sl.lang\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
-"PO-Revision-Date: 2014-03-19 21:58+0100\n"
-"Last-Translator: Duffy Duck <d_duck@nowhere.net>\n"
-"Language-Team: LANGUAGE <LL@li.org>\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
+"PO-Revision-Date: 2015-06-28 20:36:00+0100\n"
+"Last-Translator: filip.komar <filip.komar@gmail.com>\n"
+"Language-Team: Slovenian <lugos-slo@lugos.si>, Translation list <mageia-i18n@mageia.org>\n"
"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -44,19 +56,19 @@ msgstr "Ta navodila so rezultat skupnega dela ekipe za <a href=\"https://wiki.ma
msgid "Feel free to help us improving it!"
msgstr "Lepo vabljeni na pomoč pri izboljšavi!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Namestitveni program"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Nadzorno središče"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Načrt spletišča Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Podpora"
@@ -80,26 +92,26 @@ msgstr "Tukaj boste našli dokumentacijo za izdaje Mageje, ki so dosegle konec p
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Aktualne različice najdete <a href=\"index.php\">tukaj</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
-msgstr "%s na voljo kot %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
+msgstr "Navodila za %s na voljo kot %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
-msgstr "in tudi kot"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
+msgstr "in tudi kot datoteka:"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentacija v vašem jeziku:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Drugi jeziki:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Prevod v jeziku %s je že obstajal.<br/>Mogoče si lahko pomagate z dokumentacijo za %s v Mageji %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Pomagajte <a href=\"../community/\">nam</a> prevesti ta navodila v slovenščino."
diff --git a/langs/sq/documentation.po b/langs/sq/documentation.po
index c53b980c3..8e216d78a 100644
--- a/langs/sq/documentation.po
+++ b/langs/sq/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Ardit Dani <ardit.dani@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-31 12:02+0000\n"
"Last-Translator: Ardit Dani <ardit.dani@gmail.com>\n"
"Language-Team: Albanian (http://www.transifex.com/projects/p/mageia/language/sq/)\n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Gjej dokumentacionin tuaj"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Zgjidhni manual, leshimin e Mageia dhe gjuhën që doni për të parë."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Dokumentimi i versioneve të vjetëra janë në dispozicion në <a href=\"archive.php\">faqja arkivi</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "Këto manuale janë rezultat i punës së përbashkët të <a href=\"https://wiki.mageia.org/en/Documentation_team\">dokumentimit</a> dhe <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">ekipeve</a> përkthyese."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Të ndjeheni të lirë për të na ndihmuar të përmirësojmë atë!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Instaluesi"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Qendra e Kontrollit"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Hartafaqes Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Mbështetje"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Arkivi Dokumentacioneve Mageia"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentacioni për njoftime të mëparshme të shpërndarjes Mageia dhe mjetet e saj."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Disa Dokumentacione akoma"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Këtu do të gjeni dokumentacionin për versionet e Mageia që kanë arritur Fundin-E-Jetës së tyre."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Nëse jeni duke kërkuar për versionet aktuale, shihni <a href=\"index.php\">këtu</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s në dispozicion në %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "edhe si"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentacioni në gjuhën tuaj:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Gjuhë të tjera:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Përkthimi ishte i pranishëm në %s para.<br/>Ndoshta ju mund të kontrolloni dokumentacionin për %s në Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Ju lutem na <a href=\"../community/\">ndihmoni</a> me përkthimet në gjuhën tuaj."
diff --git a/langs/sv/documentation.po b/langs/sv/documentation.po
index 22e770f44..9b6d11dbf 100644
--- a/langs/sv/documentation.po
+++ b/langs/sv/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# Michael Eklund <willard@null.net>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-09-19 10:01+0000\n"
"Last-Translator: Michael Eklund <willard@null.net>\n"
"Language-Team: Swedish (http://www.transifex.com/projects/p/mageia/language/sv/)\n"
+"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "Hitta din dokumentation"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "Välj manual, Mageiaversion och vilket språk du vill läsa."
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "Dokumentation för äldre versioner är tillgängliga i <a href=\"archive.php\">arkivet</a>."
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "De här manualerna är resultatet av arbete från <a href=\"https://wiki.mageia.org/en/Documentation_team\">dokumentation</a> och <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">översättnings</a>-teamen."
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "Tveka inte att hjälpa oss att förbättra dem."
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Installation"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Kontrollpanel"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageias webbkarta"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Hjälp"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Mageias dokumentationsarkiv"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "Dokumentation för tidigare versioner av Mageia och dess verktyg."
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,35 @@ msgid "Some More documentation"
msgstr "Lite mer dokumentation"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "Här hittar du dokumentation för versioner av Mageia som har nått sin slutcykel."
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Om du letar efter aktuella versioner, <a href=\"index.php\">se här</a>"
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s tillgänglig på %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "även som"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Dokumentation på ditt språk:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Andra språk:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Översättning fanns tidigare i %s.<br/>Du kanske kan titta på dokumentationen för %s på Mageia %s."
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Hjälp <a href=\"../community/\">oss</a> gärna att översätta till ditt språk."
diff --git a/langs/tr/documentation.po b/langs/tr/documentation.po
index f3af7e142..9a6978c5b 100644
--- a/langs/tr/documentation.po
+++ b/langs/tr/documentation.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-07-05 23:20+0000\n"
"Last-Translator: Fırat Kutlu <firatkutlu@gmail.com>\n"
"Language-Team: Turkish (http://www.transifex.com/projects/p/mageia/language/tr/)\n"
@@ -59,19 +59,19 @@ msgstr "Bu belgeler, <a href=\"https://wiki.mageia.org/en/Internationalisation_T
msgid "Feel free to help us improving it!"
msgstr "Geliştirme için bize yardım etmekten çekinmeyin!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Kurulum"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Denetim Merkezi"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia site haritası"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Destek"
@@ -95,26 +95,28 @@ msgstr "Desteği bitmiş olan Mageia sürümlerinin belgelerini burada bulabilir
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Eğer güncel sürümü arıyorsanız, <a href=\"index.php\">buraya</a> bakınız."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s (%s)"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "ayrıca da"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Kendi dilinizdeki belgeler:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Diğer diller:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Çeviri önceden %s içinde mevcuttu.<br/> Belki Mageia %s'de %s için belgeleri kontrol edebilirsiniz."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Lütfen kendi dilinize çeviri için <a href=\"../community/\">bize</a> yardım edin."
diff --git a/langs/uk/documentation.po b/langs/uk/documentation.po
index 21cb15d07..015dd3dee 100644
--- a/langs/uk/documentation.po
+++ b/langs/uk/documentation.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Ukrainian (http://www.transifex.com/projects/p/mageia/language/uk/)\n"
@@ -58,19 +58,19 @@ msgstr "Ці підручники створено завдяки зусилля
msgid "Feel free to help us improving it!"
msgstr "Ми будемо раді допомозі у покращенні цих підручників!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "Засіб встановлення"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "Центр керування"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Карта сайта Mageia"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "Підтримка"
@@ -94,26 +94,28 @@ msgstr "Тут ви знайдете документацію до випуск
msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "Якщо вам потрібна документація до сучасних випусків, пошукайте її <a href=\"index.php\">тут</a>."
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+#, fuzzy
+msgid "Online manual for %s available in %s"
msgstr "%s доступна %s"
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+#, fuzzy
+msgid "also as file:"
msgstr "також як"
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "Документація вашою мовою:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "Інші мови:"
-#: "/web/en/doc/doc.php +90"
+#: "/web/en/doc/doc.php +129"
msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr "Раніше, доступ до перекладів можна було отримати за допомогою %s.<br/>Можливо, ви можете ознайомитися з документацією до %s у Mageia %s."
-#: "/web/en/doc/doc.php +97"
+#: "/web/en/doc/doc.php +136"
msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "Будь ласка, допоможіть <a href=\"../community/\">нам</a> перекласти документацію вашою рідною мовою."
diff --git a/langs/ur/documentation.po b/langs/ur/documentation.po
index 9e7dff20e..92ffdeb8b 100644
--- a/langs/ur/documentation.po
+++ b/langs/ur/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-03-21 18:01+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Urdu (http://www.transifex.com/projects/p/mageia/language/ur/)\n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr ""
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr ""
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/zh-cn/documentation.po b/langs/zh-cn/documentation.po
index 46d681fb7..2b4685eff 100644
--- a/langs/zh-cn/documentation.po
+++ b/langs/zh-cn/documentation.po
@@ -2,28 +2,28 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-05-07 16:51+0000\n"
"Last-Translator: Yuri Chornoivan <yurchor@ukr.net>\n"
"Language-Team: Chinese (China) (http://www.transifex.com/projects/p/mageia/language/zh_CN/)\n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: "/web/en/doc/index.php +14"
@@ -43,42 +43,34 @@ msgid "Find your documentation"
msgstr ""
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr ""
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr ""
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr ""
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr ""
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr ""
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "控制中心"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr ""
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "支持"
@@ -87,8 +79,7 @@ msgid "Mageia Documentation's Archive"
msgstr ""
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr ""
#: "/web/en/doc/archive.php +25"
@@ -96,40 +87,33 @@ msgid "Some More documentation"
msgstr ""
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr ""
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr ""
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr ""
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr ""
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr ""
diff --git a/langs/zh-tw/documentation.po b/langs/zh-tw/documentation.po
index d74eca423..983b953dd 100644
--- a/langs/zh-tw/documentation.po
+++ b/langs/zh-tw/documentation.po
@@ -2,29 +2,29 @@
# Copyright (C) 2014 - 2014 Mageia
# This file is distributed under the same license as
# the content of the corresponding web page(s).
-#
+#
# Generated by extract2gettext.php
# Domain: documentation
-#
+#
# include translation strings from:
# en/doc/index.php
# en/doc/archive.php
# en/doc/doc.php
-#
+#
# Translators:
# You-Cheng Hsieh <yochenhsieh@gmail.com>, 2014
msgid ""
msgstr ""
"Project-Id-Version: Mageia\n"
"Report-Msgid-Bugs-To: mageia-i18n@mageia.org\n"
-"POT-Creation-Date: 2014-11-27 19:38:42+0000\n"
+"POT-Creation-Date: 2015-06-28 18:38:26+0000\n"
"PO-Revision-Date: 2014-11-13 09:30+0000\n"
"Last-Translator: You-Cheng Hsieh <yochenhsieh@gmail.com>\n"
"Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/mageia/language/zh_TW/)\n"
+"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
#: "/web/en/doc/index.php +14"
@@ -44,42 +44,34 @@ msgid "Find your documentation"
msgstr "尋找您的文件"
#: "/web/en/doc/index.php +28"
-msgid ""
-"Select the manual, the release of Mageia and the language you want to see."
+msgid "Select the manual, the release of Mageia and the language you want to see."
msgstr "選擇您想看的語言、Mageia 版本和手冊。"
#: "/web/en/doc/index.php +29"
-msgid ""
-"Documentation of old versions are available in the <a "
-"href=\"archive.php\">archive page</a>."
+msgid "Documentation of old versions are available in the <a href=\"archive.php\">archive page</a>."
msgstr "舊版本的文件可以從 <a href=\"archive.php\">封存頁</a> 取得。"
#: "/web/en/doc/index.php +30"
-msgid ""
-"Those manuals are the result of common work of <a "
-"href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and"
-" <a "
-"href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a>"
-" teams."
+msgid "Those manuals are the result of common work of <a href=\"https://wiki.mageia.org/en/Documentation_team\">documentation</a> and <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">translation</a> teams."
msgstr "這些手冊是 <a href=\"https://wiki.mageia.org/en/Documentation_team\">文件</a> 和 <a href=\"https://wiki.mageia.org/en/Internationalisation_Team_(i18n)\">翻譯</a> 團隊共同合作的成果。"
#: "/web/en/doc/index.php +31"
msgid "Feel free to help us improving it!"
msgstr "歡迎來協助我們改進它!"
-#: "/web/en/doc/index.php +36"
+#: "/web/en/doc/index.php +35"
msgid "Installer"
msgstr "安裝"
-#: "/web/en/doc/index.php +43"
+#: "/web/en/doc/index.php +38"
msgid "Control Center"
msgstr "控制中心"
-#: "/web/en/doc/index.php +54"
+#: "/web/en/doc/index.php +56"
msgid "Mageia sitemap"
msgstr "Mageia 網站地圖"
-#: "/web/en/doc/index.php +55"
+#: "/web/en/doc/index.php +57"
msgid "Support"
msgstr "支援"
@@ -88,8 +80,7 @@ msgid "Mageia Documentation's Archive"
msgstr "Mageia 文件檔案庫"
#: "/web/en/doc/archive.php +13"
-msgid ""
-"Documentation for previous releases of Mageia distribution and its tools."
+msgid "Documentation for previous releases of Mageia distribution and its tools."
msgstr "之前的 Mageia 發行版本和工具的文件。"
#: "/web/en/doc/archive.php +25"
@@ -97,40 +88,33 @@ msgid "Some More documentation"
msgstr "更多文件"
#: "/web/en/doc/archive.php +26"
-msgid ""
-"Here you will find the documentation for the versions of Mageia that have "
-"reached their End-Of-Life."
+msgid "Here you will find the documentation for the versions of Mageia that have reached their End-Of-Life."
msgstr "您在這裡可以找到已經結束支援周期的 Mageia 版本的文件。"
#: "/web/en/doc/archive.php +27"
-msgid ""
-"If you are looking for the current versions, see <a "
-"href=\"index.php\">here</a>."
+msgid "If you are looking for the current versions, see <a href=\"index.php\">here</a>."
msgstr "如果您要找的是現有的版本,請看 <a href=\"index.php\">這裡</a>。"
-#: "/web/en/doc/doc.php +53"
-msgid "%s available in %s"
+#: "/web/en/doc/doc.php +92"
+msgid "Online manual for %s available in %s"
msgstr ""
-#: "/web/en/doc/doc.php +57"
-msgid "also as"
+#: "/web/en/doc/doc.php +96"
+msgid "also as file:"
msgstr ""
-#: "/web/en/doc/doc.php +78"
+#: "/web/en/doc/doc.php +117"
msgid "Documentation in your language:"
msgstr "您的語言的文件:"
-#: "/web/en/doc/doc.php +80"
+#: "/web/en/doc/doc.php +119"
msgid "Other languages:"
msgstr "其他語言:"
-#: "/web/en/doc/doc.php +90"
-msgid ""
-"Translation was present in %s before.<br/>Maybe you can check documentation "
-"for %s in Mageia %s."
+#: "/web/en/doc/doc.php +129"
+msgid "Translation was present in %s before.<br/>Maybe you can check documentation for %s in Mageia %s."
msgstr ""
-#: "/web/en/doc/doc.php +97"
-msgid ""
-"Please help <a href=\"../community/\">us</a> translate it in your language."
+#: "/web/en/doc/doc.php +136"
+msgid "Please help <a href=\"../community/\">us</a> translate it in your language."
msgstr "請幫助<a href=\"../community/\">我們</a>將它翻譯成您的語言。"