From: <var...@us...> - 2015-04-10 14:34:35
|
Revision: 9653 http://sourceforge.net/p/phpwiki/code/9653 Author: vargenau Date: 2015-04-10 14:34:25 +0000 (Fri, 10 Apr 2015) Log Message: ----------- Translate strings Modified Paths: -------------- trunk/lib/editpage.php trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/it/LC_MESSAGES/phpwiki.mo trunk/locale/ja/LC_MESSAGES/phpwiki.mo trunk/locale/nl/LC_MESSAGES/phpwiki.mo trunk/locale/po/de.po trunk/locale/po/es.po trunk/locale/po/fr.po trunk/locale/po/it.po trunk/locale/po/ja.po trunk/locale/po/nl.po trunk/locale/po/phpwiki.pot trunk/locale/po/sv.po trunk/locale/po/zh.po trunk/locale/sv/LC_MESSAGES/phpwiki.mo trunk/locale/zh/LC_MESSAGES/phpwiki.mo Modified: trunk/lib/editpage.php =================================================================== --- trunk/lib/editpage.php 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/lib/editpage.php 2015-04-10 14:34:25 UTC (rev 9653) @@ -668,99 +668,99 @@ } $toolbar = HTML::div(array('class' => 'edit-toolbar', 'id' => 'toolbar')); $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_save.png"), - 'alt' => 'Save', 'name' => 'edit[save]', 'class' => 'toolbar', - 'title' => 'Save', + 'alt' => _('Save'), + 'title' => _('Save'), 'type' => 'image'))); $toolbar->pushContent(HTML::input(array('src' => $WikiTheme->getImageURL("ed_preview.png"), - 'alt' => 'Preview', 'name' => 'edit[preview]', 'class' => 'toolbar', - 'title' => 'Preview', + 'alt' => _('Preview'), + 'title' => _('Preview'), 'type' => 'image'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_bold.png"), 'class' => 'toolbar', - 'alt' => 'Bold text', - 'title' => 'Bold text', + 'alt' => _('Bold text'), + 'title' => _('Bold text'), 'onclick' => "insertTags('**','**','Bold text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_italic.png"), 'class' => 'toolbar', - 'alt' => 'Italic text', - 'title' => 'Italic text', + 'alt' => _('Italic text'), + 'title' => _('Italic text'), 'onclick' => "insertTags('//','//','Italic text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_strike.png"), 'class' => 'toolbar', - 'alt' => 'Strike', - 'title' => 'Strike', + 'alt' => _('Strike-through text'), + 'title' => _('Strike-through text'), 'onclick' => "insertTags('<s>','</s>','Strike-through text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_format_color.png"), 'class' => 'toolbar', - 'alt' => 'Color', - 'title' => 'Color', + 'alt' => _('Color text'), + 'title' => _('Color text'), 'onclick' => "insertTags('%color=green%','%%','Color text'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_pagelink.png"), 'class' => 'toolbar', - 'alt' => 'Link to page', - 'title' => 'Link to page', + 'alt' => _('Link to page'), + 'title' => _('Link to page'), 'onclick' => "insertTags('[[',']]','PageName|optional label'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_link.png"), 'class' => 'toolbar', - 'alt' => 'External link (remember http:// prefix)', - 'title' => 'External link (remember http:// prefix)', + 'alt' => _('External link (remember http:// prefix)'), + 'title' => _('External link (remember http:// prefix)'), 'onclick' => "insertTags('[[',']]','http://www.example.com|optional label'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_headline.png"), 'class' => 'toolbar', - 'alt' => 'Level 1 headline', - 'title' => 'Level 1 headline', + 'alt' => _('Level 1 headline'), + 'title' => _('Level 1 headline'), 'onclick' => 'insertTags("\n==","==\n","Headline text"); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_nowiki.png"), 'class' => 'toolbar', - 'alt' => 'Ignore wiki formatting', - 'title' => 'Ignore wiki formatting', + 'alt' => _('Ignore wiki formatting'), + 'title' => _('Ignore wiki formatting'), 'onclick' => 'insertTags("<verbatim>\n","\n</verbatim>","Insert non-formatted text here"); return true;'))); global $request; $username = $request->_user->UserName(); $signature = " ––[[" . $username . "]] " . CTime() . '\n'; $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_sig.png"), 'class' => 'toolbar', - 'alt' => 'Your signature', - 'title' => 'Your signature', + 'alt' => _('Your signature'), + 'title' => _('Your signature'), 'onclick' => "insertTags('".$signature."','',''); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_hr.png"), 'class' => 'toolbar', - 'alt' => 'Horizontal line', - 'title' => 'Horizontal line', + 'alt' => _('Horizontal line'), + 'title' => _('Horizontal line'), 'onclick' => 'insertTags("\n----\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_table.png"), 'class' => 'toolbar', - 'alt' => 'Sample table', - 'title' => 'Sample table', + 'alt' => _('Sample table'), + 'title' => _('Sample table'), 'onclick' => 'insertTags("\n{| class=\"bordered\"\n|+ This is the table caption\n|-\n! Header A !! Header B !! Header C\n|-\n| Cell A1 || Cell B1 || Cell C1\n|-\n| Cell A2 || Cell B2 || Cell C2\n|-\n| Cell A3 || Cell B3 || Cell C3\n|}\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_enumlist.png"), 'class' => 'toolbar', - 'alt' => 'Enumeration', - 'title' => 'Enumeration', + 'alt' => _('Enumeration'), + 'title' => _('Enumeration'), 'onclick' => 'insertTags("\n# Item 1\n# Item 2\n# Item 3\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_list.png"), 'class' => 'toolbar', - 'alt' => 'List', - 'title' => 'List', + 'alt' => _('List'), + 'title' => _('List'), 'onclick' => 'insertTags("\n* Item 1\n* Item 2\n* Item 3\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_toc.png"), 'class' => 'toolbar', - 'alt' => 'Table of Contents', - 'title' => 'Table of Contents', + 'alt' => _('Table of Contents'), + 'title' => _('Table of Contents'), 'onclick' => 'insertTags("<<CreateToc with_toclink||=1>>\n","",""); return true;'))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_redirect.png"), 'class' => 'toolbar', - 'alt' => 'Redirect', - 'title' => 'Redirect', + 'alt' => _('Redirect'), + 'title' => _('Redirect'), 'onclick' => "insertTags('<<RedirectTo page="','">>','Page Name'); return true;"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_templateplugin.png"), 'class' => 'toolbar', - 'alt' => 'Template', - 'title' => 'Template', + 'alt' => _('Template'), + 'title' => _('Template'), 'onclick' => "insertTags('{{','}}','Template Name'); return true;"))); $toolbar->pushContent($this->categoriesPulldown()); $toolbar->pushContent($this->pluginPulldown()); @@ -775,14 +775,14 @@ } $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_replace.png"), 'class' => 'toolbar', - 'alt' => 'Search & Replace', - 'title' => 'Search & Replace', + 'alt' => _('Search & Replace'), + 'title' => _('Search & Replace'), 'onclick' => "replace();"))); $toolbar->pushContent(HTML::img(array('src' => $WikiTheme->getImageURL("ed_undo_d.png"), 'class' => 'toolbar', 'id' => 'sr_undo', - 'alt' => 'Undo Search & Replace', - 'title' => 'Undo Search & Replace', + 'alt' => _('Undo Search & Replace'), + 'title' => _('Undo Search & Replace'), 'onclick' => "do_undo();"))); return HTML($toolbar, $textarea); } else { @@ -814,7 +814,7 @@ 'id' => 'tb-categories', 'src' => $WikiTheme->getImageURL("ed_category.png"), 'title' => _("Insert Categories"), - 'alt' => "Insert Categories", // to detect this at js + 'alt' => _("Insert Categories"), // to detect this at js 'onclick' => "showPulldown('" . _("Insert Categories") . "',[" . join(",", $categories) . "],'" Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/es/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/fr/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/ja/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/nl/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/po/de.po =================================================================== --- trunk/locale/po/de.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/de.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2000-10-31 02:23+0200\n" "Last-Translator: Reini Urban <ru...@x-...>, Carsten Klapp " "<car...@us...>, Helmer Pardun <pardunpress@t-online." @@ -305,52 +305,6 @@ "überschrieben. Deshalb sind Ihre und die Änderungen des anderen Autors " "miteinander kombiniert worden. Das Ergebnis sehen Sie unten." -msgid "Preview" -msgstr "Vorschau" - -msgid "Preview the current content [alt-p]" -msgstr "Die aktuelle Version vorschauen [alt-p]" - -msgid "Save" -msgstr "Speichern" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Änderungen" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "Hochladen" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "%s wird als Autor aufgenommen." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -# (Wrong Translation; sorry, but the German term for edit is NOT -# editieren, but e d i e r e n). -#, php-format -msgid "Merge and Edit: %s" -msgstr "Zusammenfügen und Bearbeiten: %s" - msgid "Undo" msgstr "Rückgängig" @@ -382,51 +336,33 @@ msgid "Close" msgstr "Schließen" +msgid "Save" +msgstr "Speichern" + +msgid "Preview" +msgstr "Vorschau" + msgid "Bold text" msgstr "Fetter Text" -msgid "Bold text [alt-b]" -msgstr "Fetter Text [alt-f]" - msgid "Italic text" msgstr "Kursiver Text" -msgid "Italic text [alt-i]" -msgstr "Kursiver Text [alt-k]" - msgid "Strike-through text" msgstr "Durchgestrichen" -msgid "Strike" -msgstr "Durchstreichen" - msgid "Color text" msgstr "Farbiger Text" -msgid "Color" -msgstr "Farbe" - -msgid "PageName|optional label" -msgstr "SeitenName|optionaler Name" - msgid "Link to page" msgstr "Link auf Seite" -msgid "http://www.example.com|optional label" -msgstr "http://www.example.com|optionaler Name" - msgid "External link (remember http:// prefix)" msgstr "Externer Link (http:// prefix)" -msgid "Headline text" -msgstr "Überschrift" - msgid "Level 1 headline" msgstr "H1 Überschrift" -msgid "Insert non-formatted text here" -msgstr "Füge unformatierten Text hier ein" - msgid "Ignore wiki formatting" msgstr "Keine Wiki Formatierung" @@ -448,21 +384,12 @@ msgid "Table of Contents" msgstr "Inhaltsverzeichnis" -msgid "Page Name" -msgstr "Seitenname" - msgid "Redirect" msgstr "Weiterleiten" -msgid "Template Name" -msgstr "Vorlagenname" - msgid "Template" msgstr "Vorlage" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "Suchen & Ersetzen rückgängig machen" @@ -478,13 +405,53 @@ msgid "Insert PageLink" msgstr "SeitenLink einfügen" +msgid "Insert Template" +msgstr "Vorlage einfügen" + msgid "Insert Image or Video" msgstr "Bild oder Video einfügen" -msgid "Insert Template" -msgstr "Vorlage einfügen" +msgid "Preview the current content [alt-p]" +msgstr "Die aktuelle Version vorschauen [alt-p]" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Änderungen" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "Hochladen" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "%s wird als Autor aufgenommen." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +# (Wrong Translation; sorry, but the German term for edit is NOT +# editieren, but e d i e r e n). +#, php-format +msgid "Merge and Edit: %s" +msgstr "Zusammenfügen und Bearbeiten: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: Fehler während der Fehlerbehandlung von:" @@ -1038,6 +1005,9 @@ msgid "“%s” not found" msgstr "»%s« nicht gefunden" +msgid "Page Name" +msgstr "Seitenname" + #, php-format msgid "page permission inherited from %s" msgstr "Zugriffsrecht geerbt von %s" @@ -6095,6 +6065,33 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Strike" +#~ msgstr "Durchstreichen" + +#~ msgid "Color" +#~ msgstr "Farbe" + +#~ msgid "Bold text [alt-b]" +#~ msgstr "Fetter Text [alt-f]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Kursiver Text [alt-k]" + +#~ msgid "PageName|optional label" +#~ msgstr "SeitenName|optionaler Name" + +#~ msgid "http://www.example.com|optional label" +#~ msgstr "http://www.example.com|optionaler Name" + +#~ msgid "Headline text" +#~ msgstr "Überschrift" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Füge unformatierten Text hier ein" + +#~ msgid "Template Name" +#~ msgstr "Vorlagenname" + #~ msgid "H" #~ msgstr "H." Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/es.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -301,51 +301,6 @@ "sobreescribirían los cambios del otro autor. Así pues, se han combinado sus " "cambios y los del otro autor. El resultado se demuestra abajo." -msgid "Preview" -msgstr "Previsualizar" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "Vea la versión actual" - -msgid "Save" -msgstr "Guardar" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Cambios" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "Registrarán al autor como %s." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fusión y Editar: %s" - msgid "Undo" msgstr "Deshaga" @@ -377,51 +332,34 @@ msgid "Close" msgstr "Cierre" +msgid "Save" +msgstr "Guardar" + +msgid "Preview" +msgstr "Previsualizar" + msgid "Bold text" msgstr "Texto en negrilla" -msgid "Bold text [alt-b]" -msgstr "Texto en negrilla [alt-b]" - msgid "Italic text" msgstr "Texto del itálico" -msgid "Italic text [alt-i]" -msgstr "Texto del itálico [alt-i]" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - +#, fuzzy msgid "Color text" -msgstr "" +msgstr "Texto en negrilla" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - msgid "Link to page" msgstr "Acoplamiento a la página" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "Acoplamiento externo (recuerde http:// prefijo)" -msgid "Headline text" -msgstr "Texto del título" - msgid "Level 1 headline" msgstr "Título del nivel 1" -msgid "Insert non-formatted text here" -msgstr "Inserte el texto sin formatear aquí" - msgid "Ignore wiki formatting" msgstr "No haga caso del formato del wiki" @@ -434,30 +372,23 @@ msgid "Sample table" msgstr "" +#, fuzzy msgid "Enumeration" -msgstr "" +msgstr "Relación" +#, fuzzy msgid "List" -msgstr "" +msgstr "ListaPáginas" msgid "Table of Contents" msgstr "Tabla de contenidos" -msgid "Page Name" -msgstr "Nombre de la Página" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "Plantilla" -msgid "Click a button to get an example text" -msgstr "Chasque un botón para conseguir un texto del ejemplo" - msgid "Undo Search & Replace" msgstr "Deshaga La Búsqueda Y Substitúyala" @@ -473,13 +404,52 @@ msgid "Insert PageLink" msgstr "Inserte el AcoplamientoDeLaPágina" +msgid "Insert Template" +msgstr "Inserte la plantilla" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" -msgstr "Inserte la plantilla" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "Vea la versión actual" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Cambios" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "Registrarán al autor como %s." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fusión y Editar: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: error mientras que maneja error:" @@ -1018,6 +988,9 @@ msgid "“%s” not found" msgstr "“%s” no encontrado" +msgid "Page Name" +msgstr "Nombre de la Página" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5919,6 +5892,21 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Bold text [alt-b]" +#~ msgstr "Texto en negrilla [alt-b]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Texto del itálico [alt-i]" + +#~ msgid "Headline text" +#~ msgstr "Texto del título" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Inserte el texto sin formatear aquí" + +#~ msgid "Click a button to get an example text" +#~ msgstr "Chasque un botón para conseguir un texto del ejemplo" + #~ msgid "H" #~ msgstr "Al" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/fr.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2004-06-22 21:10+0200\n" "Last-Translator: Pierrick Meignen <mei...@wa...>, Roland " "Trique <rol...@fr...>, Stéphane Gourichon <stephane.gourichon@lip6." @@ -302,50 +302,6 @@ "celles de l'autre utilisateur. Ainsi donc, vos modifications et celles de " "l'autre auteur ont été combinées. Le résultat est affiché ci-dessous." -msgid "Preview" -msgstr "Prévisualiser" - -msgid "Preview the current content [alt-p]" -msgstr "Prévisualiser le contenu actuel [alt-p]" - -msgid "Save" -msgstr "Enregistrer" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "Enregistrer le contenu actuel dans la page wiki [alt-s]" - -msgid "Changes" -msgstr "Modifications" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "Prévisualiser les modifications actuelles en tant que diff [alt-c]" - -msgid "Upload" -msgstr "Télécharger" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "Vérifier l'orthographe" - -msgid "Check the spelling" -msgstr "Vérifier l'orthographe" - -#, php-format -msgid "Author will be logged as %s." -msgstr "L'auteur sera enregistré sous le nom %s." - -msgid "Keep old" -msgstr "Garder l'ancien" - -msgid "Overwrite with new" -msgstr "Écraser avec le nouveau" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fusionner et modifier : %s" - msgid "Undo" msgstr "Annuler" @@ -379,51 +335,33 @@ msgid "Close" msgstr "Fermer" +msgid "Save" +msgstr "Enregistrer" + +msgid "Preview" +msgstr "Prévisualiser" + msgid "Bold text" msgstr "Gras" -msgid "Bold text [alt-b]" -msgstr "Gras [alt-b]" - msgid "Italic text" msgstr "Italique" -msgid "Italic text [alt-i]" -msgstr "Italique [alt-i]" - msgid "Strike-through text" msgstr "Biffé" -msgid "Strike" -msgstr "Biffé" - msgid "Color text" msgstr "Texte en couleur" -msgid "Color" -msgstr "Couleur" - -msgid "PageName|optional label" -msgstr "Page|label optionnel" - msgid "Link to page" msgstr "Lien vers une page" -msgid "http://www.example.com|optional label" -msgstr "http://www.example.com|label facultatif" - msgid "External link (remember http:// prefix)" msgstr "Lien externe (le préfixe http:// est obligatoire)" -msgid "Headline text" -msgstr "Titre" - msgid "Level 1 headline" msgstr "Titre de niveau 1" -msgid "Insert non-formatted text here" -msgstr "Insérer le texte préformaté ici" - msgid "Ignore wiki formatting" msgstr "Ignorer la syntaxe wiki" @@ -445,21 +383,12 @@ msgid "Table of Contents" msgstr "Table des matières" -msgid "Page Name" -msgstr "Nom de la page" - msgid "Redirect" msgstr "Redirection" -msgid "Template Name" -msgstr "Nom du modèle" - msgid "Template" msgstr "Modèle" -msgid "Click a button to get an example text" -msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" - msgid "Undo Search & Replace" msgstr "Annuler « Rechercher & Remplacer »" @@ -475,13 +404,51 @@ msgid "Insert PageLink" msgstr "Insérer un lien" +msgid "Insert Template" +msgstr "Ajouter un modèle" + msgid "Insert Image or Video" msgstr "Ajouter une image ou une vidéo" -msgid "Insert Template" -msgstr "Ajouter un modèle" +msgid "Preview the current content [alt-p]" +msgstr "Prévisualiser le contenu actuel [alt-p]" +msgid "Save the current content as wikipage [alt-s]" +msgstr "Enregistrer le contenu actuel dans la page wiki [alt-s]" + +msgid "Changes" +msgstr "Modifications" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "Prévisualiser les modifications actuelles en tant que diff [alt-c]" + +msgid "Upload" +msgstr "Télécharger" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "Vérifier l'orthographe" + +msgid "Check the spelling" +msgstr "Vérifier l'orthographe" + #, php-format +msgid "Author will be logged as %s." +msgstr "L'auteur sera enregistré sous le nom %s." + +msgid "Keep old" +msgstr "Garder l'ancien" + +msgid "Overwrite with new" +msgstr "Écraser avec le nouveau" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fusionner et modifier : %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s : erreur pendant la gestion de l'erreur :" @@ -1018,6 +985,9 @@ msgid "“%s” not found" msgstr "« %s » non trouvé" +msgid "Page Name" +msgstr "Nom de la page" + #, php-format msgid "page permission inherited from %s" msgstr "permissions héritées de %s" @@ -6007,6 +5977,36 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Strike" +#~ msgstr "Biffé" + +#~ msgid "Color" +#~ msgstr "Couleur" + +#~ msgid "Bold text [alt-b]" +#~ msgstr "Gras [alt-b]" + +#~ msgid "Italic text [alt-i]" +#~ msgstr "Italique [alt-i]" + +#~ msgid "PageName|optional label" +#~ msgstr "Page|label optionnel" + +#~ msgid "http://www.example.com|optional label" +#~ msgstr "http://www.example.com|label facultatif" + +#~ msgid "Headline text" +#~ msgstr "Titre" + +#~ msgid "Insert non-formatted text here" +#~ msgstr "Insérer le texte préformaté ici" + +#~ msgid "Template Name" +#~ msgstr "Nom du modèle" + +#~ msgid "Click a button to get an example text" +#~ msgstr "Cliquer sur un bouton pour obtenir une exemple de texte" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/it.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2005-02-12 16:23+0100\n" "Last-Translator: Antonio Bonifati ant[(at)]monitor.deis.unical.it\n" "Language-Team: \n" @@ -291,51 +291,6 @@ "cambiamenti e quelli dell'altro autore sono stati uniti. Il risultato è " "indicato sotto." -msgid "Preview" -msgstr "Anteprima" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "Mostra il versione corrente" - -msgid "Save" -msgstr "Registra" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "L'autore sarà annotato come %s." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "Fondasi e pubblichi: %s" - msgid "Undo" msgstr "" @@ -367,56 +322,40 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Registra" + +msgid "Preview" +msgstr "Anteprima" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Pagine Simili" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" +#, fuzzy msgid "Your signature" -msgstr "" +msgstr "La versione corrente" msgid "Horizontal line" msgstr "" @@ -433,21 +372,12 @@ msgid "Table of Contents" msgstr "Indice" -msgid "Page Name" -msgstr "Nome della Pagina" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -463,13 +393,52 @@ msgid "Insert PageLink" msgstr "Inserto Pagina" +msgid "Insert Template" +msgstr "Inserto Mascherina" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" -msgstr "Inserto Mascherina" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "Mostra il versione corrente" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "L'autore sarà annotato come %s." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "Fondasi e pubblichi: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -1002,6 +971,9 @@ msgid "“%s” not found" msgstr "“%s” non trovato" +msgid "Page Name" +msgstr "Nome della Pagina" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/ja.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2003-06-07 09:01+0900\n" "Last-Translator: Tadashi Jokagi <web...@el...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -279,51 +279,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "プレビューする" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "現在のバージョンを表示する" - -msgid "Save" -msgstr "保存する" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "アップロード" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -355,51 +310,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "保存する" + +msgid "Preview" +msgstr "プレビューする" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "ページロック" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -415,27 +353,19 @@ msgid "Enumeration" msgstr "" +#, fuzzy msgid "List" -msgstr "" +msgstr "サブページ" msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "ページ名" - msgid "Redirect" msgstr "転送" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -451,13 +381,52 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +#, fuzzy +msgid "Preview the current content [alt-p]" +msgstr "現在のバージョンを表示する" + +msgid "Save the current content as wikipage [alt-s]" msgstr "" +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "アップロード" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -1000,6 +969,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "ページ名" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/nl.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2000-09-30 02:23+0200\n" "Last-Translator: Jan Nieuwenhuizen <ja...@gn...>\n" "Language-Team: Dutch <nl...@li...>\n" @@ -285,50 +285,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "Voorvertonig" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "Bewaar" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Veranderingen" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -360,51 +316,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Bewaar" + +msgid "Preview" +msgstr "Voorvertonig" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Zoek Pagina" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -426,23 +365,15 @@ msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "Pagina Naam" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "Template Naam" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - +#, fuzzy msgid "Undo Search & Replace" -msgstr "" +msgstr "Zoek & Vervangt" msgid "Insert Categories" msgstr "" @@ -456,13 +387,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Veranderingen" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -993,6 +962,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "Pagina Naam" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5850,6 +5822,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Template Name" +#~ msgstr "Template Naam" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/phpwiki.pot 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2002-12-14 17:51-0500\n" "Last-Translator: Reini Urban <ru...@us...>\n" "Language-Team: LANGUAGE <LL...@li...>\n" @@ -279,50 +279,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -354,51 +310,33 @@ msgid "Close" msgstr "" -msgid "Bold text" +msgid "Save" msgstr "" -msgid "Bold text [alt-b]" +msgid "Preview" msgstr "" -msgid "Italic text" +msgid "Bold text" msgstr "" -msgid "Italic text [alt-i]" +msgid "Italic text" msgstr "" msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - msgid "Link to page" msgstr "" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -420,21 +358,12 @@ msgid "Table of Contents" msgstr "" -msgid "Page Name" -msgstr "" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -450,13 +379,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -987,6 +954,9 @@ msgid "“%s” not found" msgstr "" +msgid "Page Name" +msgstr "" + #, php-format msgid "page permission inherited from %s" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/sv.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -280,50 +280,6 @@ "have been combined. The result is shown below." msgstr "" -msgid "Preview" -msgstr "Översikt" - -msgid "Preview the current content [alt-p]" -msgstr "" - -msgid "Save" -msgstr "Spara" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "Ändringar" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "" - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "" - msgid "Undo" msgstr "" @@ -355,51 +311,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "Spara" + +msgid "Preview" +msgstr "Översikt" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -msgid "Strike" -msgstr "" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - +#, fuzzy msgid "Link to page" -msgstr "" +msgstr "Sök Efter Sida" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -421,21 +360,12 @@ msgid "Table of Contents" msgstr "Innehåll" -msgid "Page Name" -msgstr "Namn på Sidan" - msgid "Redirect" msgstr "" -msgid "Template Name" -msgstr "Namn på Template" - msgid "Template" msgstr "" -msgid "Click a button to get an example text" -msgstr "" - msgid "Undo Search & Replace" msgstr "" @@ -451,13 +381,51 @@ msgid "Insert PageLink" msgstr "" +msgid "Insert Template" +msgstr "" + msgid "Insert Image or Video" msgstr "" -msgid "Insert Template" +msgid "Preview the current content [alt-p]" msgstr "" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "Ändringar" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "" + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "" + +#, php-format msgid "%s: error while handling error:" msgstr "" @@ -988,6 +956,9 @@ msgid "“%s” not found" msgstr "“%s” ingen funna" +msgid "Page Name" +msgstr "Namn på Sidan" + #, php-format msgid "page permission inherited from %s" msgstr "" @@ -5843,6 +5814,9 @@ msgid "Y-m-d H:i" msgstr "" +#~ msgid "Template Name" +#~ msgstr "Namn på Template" + #~ msgid "H" #~ msgstr "H" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2015-04-10 14:07:54 UTC (rev 9652) +++ trunk/locale/po/zh.po 2015-04-10 14:34:25 UTC (rev 9653) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2015-04-10 15:10+0200\n" +"POT-Creation-Date: 2015-04-10 16:32+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -291,51 +291,6 @@ "無法儲存你所變更的部份,在你編輯的這段時間,已經有其他作者變更了.所以你所變更的" "部份已經和其他作者變更的部份合併.結果顯示在下面." -msgid "Preview" -msgstr "預覽" - -#, fuzzy -msgid "Preview the current content [alt-p]" -msgstr "查看目前版本" - -msgid "Save" -msgstr "儲存" - -msgid "Save the current content as wikipage [alt-s]" -msgstr "" - -msgid "Changes" -msgstr "" - -msgid "Preview the current changes as diff [alt-c]" -msgstr "" - -msgid "Upload" -msgstr "上傳" - -msgid "Select a local file and press Upload to attach into this page" -msgstr "" - -msgid "Spell Check" -msgstr "" - -msgid "Check the spelling" -msgstr "" - -#, php-format -msgid "Author will be logged as %s." -msgstr "作者將登入為 %s." - -msgid "Keep old" -msgstr "" - -msgid "Overwrite with new" -msgstr "" - -#, php-format -msgid "Merge and Edit: %s" -msgstr "合併並離開: %s" - msgid "Undo" msgstr "" @@ -368,53 +323,34 @@ msgid "Close" msgstr "" +msgid "Save" +msgstr "儲存" + +msgid "Preview" +msgstr "預覽" + msgid "Bold text" msgstr "" -msgid "Bold text [alt-b]" -msgstr "" - msgid "Italic text" msgstr "" -msgid "Italic text [alt-i]" -msgstr "" - msgid "Strike-through text" msgstr "" -#, fuzzy -msgid "Strike" -msgstr "大小" - msgid "Color text" msgstr "" -msgid "Color" -msgstr "" - -msgid "PageName|optional label" -msgstr "" - #, fuzzy msgid "Link to page" msgstr "解除鎖定此頁面" -msgid "http://www.example.com|optional label" -msgstr "" - msgid "External link (remember http:// prefix)" msgstr "" -msgid "Headline text" -msgstr "" - msgid "Level 1 headline" msgstr "" -msgid "Insert non-formatted text here" -msgstr "" - msgid "Ignore wiki formatting" msgstr "" @@ -428,8 +364,9 @@ msgid "Sample table" msgstr "" +#, fuzzy msgid "Enumeration" -msgstr "" +msgstr "相關連結" #, fuzzy msgid "List" @@ -439,23 +376,13 @@ msgid "Table of Contents" msgstr "目錄" -msgid "Page Name" -msgstr "頁面名稱" - msgid "Redirect" msgstr "重導向" #, fuzzy -msgid "Template Name" -msgstr "佈景主題" - -#, fuzzy msgid "Template" msgstr "佈景主題" -msgid "Click a button to get an example text" -msgstr "" - #, fuzzy msgid "Undo Search & Replace" msgstr "搜尋與取代" @@ -473,14 +400,53 @@ msgid "Insert PageLink" msgstr "" +#, fuzzy +msgid "Insert Template" +msgstr "佈景主題" + msgid "Insert Image or Video" msgstr "" #, fuzzy -msgid "Insert Template" -msgstr "佈景主題" +msgid "Preview the current content [alt-p]" +msgstr "查看目前版本" +msgid "Save the current content as wikipage [alt-s]" +msgstr "" + +msgid "Changes" +msgstr "" + +msgid "Preview the current changes as diff [alt-c]" +msgstr "" + +msgid "Upload" +msgstr "上傳" + +msgid "Select a local file and press Upload to attach into this page" +msgstr "" + +msgid "Spell Check" +msgstr "" + +msgid "Check the spelling" +msgstr "" + #, php-format +msgid "Author will be logged as %s." +msgstr "作者將登入為 %s." + +msgid "Keep old" +msgstr "" + +msgid "Overwrite with new" +msgstr "" + +#, php-format +msgid "Merge and Edit: %s" +msgstr "合併並離開: %s" + +#, php-format msgid "%s: error while handling error:" msgstr "%s: 處理錯誤時發生錯誤:" @@ -1027,6 +993,9 @@ msgid "“%s” not found" msgstr "“%s” 找不到" +msgid "Page Name" +msgstr "頁面名稱" + #, php-format msgid "page permission inherited from %s" msgstr "由 %s 繼承而來的頁面" @@ -6160,6 +6129,14 @@ msgid "Y-m-d H:i" msgstr "" +#, fuzzy +#~ msgid "Strike" +#~ msgstr "大小" + +#, fuzzy +#~ msgid "Template Name" +#~ msgstr "佈景主題" + #~ msgid "H" #~ msgstr "高" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |