From c5d0c2728c113f8e2364d501bed0e23f7748af27 Mon Sep 17 00:00:00 2001 From: filip Date: Sun, 28 Jun 2015 22:45:38 +0200 Subject: 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 --- en/doc/archive.php | 6 +-- en/doc/doc.php | 82 ++++++++++++++++++++++++++---------- en/doc/index.php | 24 ++--------- en/downloads/get/definitions_doc.ini | 22 ++++++++++ langs/ar/documentation.po | 66 +++++++++++------------------ langs/ast/documentation.po | 66 +++++++++++------------------ langs/ca/documentation.po | 68 ++++++++++++------------------ langs/cs/documentation.po | 68 ++++++++++++------------------ langs/de/documentation.po | 68 ++++++++++++------------------ langs/el/documentation.po | 28 ++++++------ langs/en-gb/documentation.po | 68 ++++++++++++------------------ langs/en/documentation.pot | 28 ++++++------ langs/eo/documentation.po | 66 +++++++++++------------------ langs/es/documentation.po | 68 ++++++++++++------------------ langs/et/documentation.po | 28 ++++++------ langs/eu/documentation.po | 28 ++++++------ langs/fi/documentation.po | 66 +++++++++++------------------ langs/fr/documentation.po | 28 ++++++------ langs/hr/documentation.po | 68 ++++++++++++------------------ langs/hu/documentation.po | 66 +++++++++++------------------ langs/id/documentation.po | 28 ++++++------ langs/it/documentation.po | 68 ++++++++++++------------------ langs/ja/documentation.po | 66 +++++++++++------------------ langs/lv/documentation.po | 66 +++++++++++------------------ langs/nb/documentation.po | 66 +++++++++++------------------ langs/nl/documentation.po | 28 ++++++------ langs/pl/documentation.po | 68 ++++++++++++------------------ langs/pt-br/documentation.po | 68 ++++++++++++------------------ langs/pt/documentation.po | 66 +++++++++++------------------ langs/ro/documentation.po | 68 ++++++++++++------------------ langs/ru/documentation.po | 68 ++++++++++++------------------ langs/sco/documentation.po | 66 +++++++++++------------------ langs/sl/documentation.po | 48 +++++++++++++-------- langs/sq/documentation.po | 68 ++++++++++++------------------ langs/sv/documentation.po | 68 ++++++++++++------------------ langs/tr/documentation.po | 28 ++++++------ langs/uk/documentation.po | 28 ++++++------ langs/ur/documentation.po | 66 +++++++++++------------------ langs/zh-cn/documentation.po | 66 +++++++++++------------------ langs/zh-tw/documentation.po | 66 +++++++++++------------------ 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';

Mageia 3

HTML'); + doc_list(_r('Installer'), 'installer', 3); ?>

HTML'); + doc_list(_r('Control Center'), 'control_center', 3); ?>


Mageia 2

HTML'); + doc_list(_r('Installer'), 'installer', 2); ?>

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('%s', $dir, $version, '%s', '%s'); + $pdf_link = sprintf('PDF', $version, $name, '%s', $title); + $epub_link = sprintf('EPUB', $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 . '' . PHP_EOL; -// $table .= ''; $table .= "\t" . 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') . '
%s', - '' . $documentation_name . '', $lng_name, sprintf($link, $lng)); + if (!$pdf_present && !$epub_present) { + $your_language = sprintf(_r('Online manual for %s available in %s') . '
', + '' . $documentation_name . '', $lang_doc_link); } else { - $your_language = sprintf(_r('%s available in %s') . '
%s ('. - _r('also as') . ' %s, %s)', + $your_language = sprintf(_r('Online manual for %s available in %s') . '
('. + _r('also as file:') . ' %s)', '' . $documentation_name . '', - $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
%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
%s (%s%s, %s)', - $lng_name, sprintf($link, $lng), $note, sprintf($epub_link, $lng), sprintf($pdf_link, $lng), sprintf($link, $lng)); + $others[] = sprintf('%s (%s%s)', + $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" . PHP_EOL; + $lng_name, $documentation_name, $single_version) . "" . 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';

Mageia 5

-

HTML'); -# doc_list(_r('Installer'), 'installer', 5, 'HTML', -# 'EPUB', -# 'PDF'); - ?>

+

-

HTML'); -# doc_list(_r('Control Center'), 'control_center', 5, 'HTML', -# 'EPUB', -# 'PDF'); - ?>

+


Mageia 4

-

HTML', - 'EPUB', - 'PDF'); +

-

HTML', - 'EPUB', - 'PDF'); +

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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 , 2015 # Ḷḷumex03 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "La documentación pa versiones vieyes ta disponible na páxina d'archivu." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "La documentació de les versions antigues està disponible a la pàgina d'arxius." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Aquests manuals són el resultat de la feina comuna dels equips de documentació i de traducció." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Si cerqueu les versions actuals, vegeu aquí." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Abans la traducció a %s estava disponible.
Potser podeu comprovar la documentació per a %s a Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Ajudeu-nos 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 , 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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Dokumentace ke starším verzím je dostupná na archivní stránce." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Tyto příručky jsou výsledkem společné práce dokumentačního a překladatelských 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 here." +msgid "If you are looking for the current versions, see here." msgstr "Pokud hledáte nynější verze, podívejte se sem." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Předtím byl překlad přítomen v %s.
Možná byste se mohl podívat na dokumentaci pro %s v Mageie %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Pomozte nám, 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ötigen." #: "/web/en/doc/index.php +29" -msgid "" -"Documentation of old versions are available in the archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Die Dokumentation für alte Mageia-Versionen finden Sie im Archiv." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Diese Benutzerhandbücher sind das Ergebnis der gemeinsamen Arbeit des Dokumentations- und des Übersetzungsteams." #: "/web/en/doc/index.php +31" msgid "Feel free to help us improving it!" msgstr "Auch Sie kö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 ä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ür Mageia-Versionen, die nicht mehr unterstützt werden." #: "/web/en/doc/archive.php +27" -msgid "" -"If you are looking for the current versions, see here." +msgid "If you are looking for the current versions, see here." msgstr "Die aktuelle Dokumentation finden Sie hier." -#: "/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ü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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Die Übersetzung war vorher in %s vorhanden.
Schauen Sie bitte in die Dokumentation für %s in Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Bitte helfen Sie uns bei der Ü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 \n" "Language-Team: Greek \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 here." msgstr "Αν ψάχνετε για τις τρέχουσες εκδόσεις, ανατρέξτε εδώ." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Η μετάφραση υπήρχε πριν για %s.
Ίσως μπορείτε να ελέγξετε την τεκμηρίωση για %s στη Mageia %s." -#: "/web/en/doc/doc.php +97" +#: "/web/en/doc/doc.php +136" msgid "Please help us translate it in your language." msgstr "Παρακαλώ βοηθήστε μας για τη μετάφραση στη γλώσσα σας." 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Documentation of old versions are available in the archive page." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." msgstr "If you are looking for the current versions, see here." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Please help us 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 \n" "Language-Team: LANGUAGE \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 here." 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.
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 us 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Documentación de versiones antiguas están disponibles en la página de archivo." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Estos manuales son el resultado del trabajo común de los equipos de documentación y tranducción." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Si está buscando las versiones actuales, mire aquí." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "La traducción ya estaba antes en %s.
Quizá pueda echar un vistazo a la documentación para %s en Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Por favor, ayudenos 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 \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 here." msgstr "Kui tunnete huvi seni toetatavate väljalasete vastu, vaadake siia." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "%s keele tõlge oli varem olemas.
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 us translate it in your language." msgstr "Palun aidake meil 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 \n" "Language-Team: Basque (http://www.transifex.com/projects/p/mageia/language/eu/)\n" @@ -59,19 +59,19 @@ msgstr "Eskuliburu hauek amankomuneko here." msgstr "Oraingo bertsioa bilatzen ari bazara, ikus hemen." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Itzulpena %s-ren aurretik presente egon da.
Agian %s-ren dokumentazioa begira dezakezu Mageia %s-n." -#: "/web/en/doc/doc.php +97" +#: "/web/en/doc/doc.php +136" msgid "Please help us translate it in your language." msgstr "Mesedez lagundu gaitzazu 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 here." msgstr "Si vous cherchez les versions actuelles, c'est ici." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "La traduction était disponible en %s auparavant.
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 us translate it in your language." msgstr "Aidez nous à 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ć , 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ć \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Dokumentacija starih verzija je dostupna u stranici arhive." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Ovi priručnici su zajednčki rad dokumentacijskih i prevoditeljskih 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 here." +msgid "If you are looking for the current versions, see here." msgstr "Ako tražite trenutne verzije, pogledajte ovdje." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Molim pomozite nam 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 here." msgstr "Jika kamu mencari versi saat ini, lihat di sini." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Terjemahan tersedia di %s sebelumnya.
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 us translate it in your language." msgstr "Mohon bantu kami 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 , 2014-2015 # Roberto Albano , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "La documentazione delle vecchie versioni è disponibile nellapagina degli archivi." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Questi manuali sono il risultato di un lavoro comune dei team di documentazione e traduzione." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Se stai cercando le versioni correnti, consulta qui." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Traduzione era presente prima in %s.
Magari puoi cercare la documentazione per %s in Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Per favore aiutaci 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \n" "Language-Team: Dutch \n" @@ -60,19 +60,19 @@ msgstr "Het 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 here." msgstr "De huidige versies vindt u hier." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "De vertaling was eerder beschikbaar in het %s.
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 us translate it in your language." msgstr "Help ons 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Dokumentacja dla starszych wersji jest dostępna na stronie archiwum." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Ta dokumentacja jest wynikiem wspólnej pracy zespołów dokumentacji oraz tłumaczy." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Jeśli szukasz bieżącej wersji, kliknij tutaj." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Prosimy o pomoc 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Documentação de versões antigas estão disponíveis na página de arquivo." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Esses manuais são o resultado do trabalho comum de Documentação e Equipe de Tradução." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Se você estiver olhando para as versões atuais, consulte aqui." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Tradução estava presente em %s antes
Talvez você possa verificar a documentação para %s em Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Por favor, ajude-nos 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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Por favor, ajude-nos 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Documentația pentru versiunile anterioare este disponibilă în arhivă." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Aceste manuale sînt rezultatul muncii comune al echipelor de documentație și de traducere." #: "/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 here." +msgid "If you are looking for the current versions, see here." msgstr "Dacă sînteți în căutarea versiunilor curente, uitați-vă aici." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Înainte traducerea era disponibilă în %s.
Puteți verifica documentația pentru %s în Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Ajutați-ne 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Документацию для старых версий Mageia можно найти здесь." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 "Документация для предыдущих выпусков 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 here." +msgid "If you are looking for the current versions, see here." msgstr "Документацию для новых выпусков Mageia можно найти здесь." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Перевод был представлен ранее в %s.
Возможно вы можете проверить документацию для %s в Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Вы можете помочь нам перевести документацию на другие языки." 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \n" -"Language-Team: LANGUAGE \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 \n" +"Language-Team: Slovenian , Translation list \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 here." msgstr "Aktualne različice najdete tukaj." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Prevod v jeziku %s je že obstajal.
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 us translate it in your language." msgstr "Pomagajte nam 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Dokumentimi i versioneve të vjetëra janë në dispozicion në faqja arkivi." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "Këto manuale janë rezultat i punës së përbashkët të dokumentimit dhe ekipeve 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 here." +msgid "If you are looking for the current versions, see here." msgstr "Nëse jeni duke kërkuar për versionet aktuale, shihni këtu." -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Përkthimi ishte i pranishëm në %s para.
Ndoshta ju mund të kontrolloni dokumentacionin për %s në Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Ju lutem na ndihmoni 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "Dokumentation för äldre versioner är tillgängliga i arkivet." #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation teams." msgstr "De här manualerna är resultatet av arbete från dokumentation och översättnings-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 here." +msgid "If you are looking for the current versions, see here." msgstr "Om du letar efter aktuella versioner, se här" -#: "/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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "Översättning fanns tidigare i %s.
Du kanske kan titta på dokumentationen för %s på Mageia %s." -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "Hjälp oss 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 \n" "Language-Team: Turkish (http://www.transifex.com/projects/p/mageia/language/tr/)\n" @@ -59,19 +59,19 @@ msgstr "Bu belgeler, here." msgstr "Eğer güncel sürümü arıyorsanız, buraya 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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Çeviri önceden %s içinde mevcuttu.
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 us translate it in your language." msgstr "Lütfen kendi dilinize çeviri için bize 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 \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 here." msgstr "Якщо вам потрібна документація до сучасних випусків, пошукайте її тут." -#: "/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.
Maybe you can check documentation for %s in Mageia %s." msgstr "Раніше, доступ до перекладів можна було отримати за допомогою %s.
Можливо, ви можете ознайомитися з документацією до %s у Mageia %s." -#: "/web/en/doc/doc.php +97" +#: "/web/en/doc/doc.php +136" msgid "Please help us translate it in your language." msgstr "Будь ласка, допоможіть нам перекласти документацію вашою рідною мовою." 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us 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 , 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 \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 archive page." +msgid "Documentation of old versions are available in the archive page." msgstr "舊版本的文件可以從 封存頁 取得。" #: "/web/en/doc/index.php +30" -msgid "" -"Those manuals are the result of common work of documentation and" -" translation" -" teams." +msgid "Those manuals are the result of common work of documentation and translation 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 "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 here." +msgid "If you are looking for the current versions, see here." 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.
Maybe you can check documentation " -"for %s in Mageia %s." +#: "/web/en/doc/doc.php +129" +msgid "Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s." msgstr "" -#: "/web/en/doc/doc.php +97" -msgid "" -"Please help us translate it in your language." +#: "/web/en/doc/doc.php +136" +msgid "Please help us translate it in your language." msgstr "請幫助我們將它翻譯成您的語言。" -- cgit v1.2.1
" . sprintf(_r('Translation was present in %s before.
Maybe you can check documentation for %s in Mageia %s.'), - $langs[$locale], $documentation_name, $single_version) . "