From: <var...@us...> - 2013-06-13 15:19:09
|
Revision: 8800 http://sourceforge.net/p/phpwiki/code/8800 Author: vargenau Date: 2013-06-13 15:19:05 +0000 (Thu, 13 Jun 2013) Log Message: ----------- Remove chmod Modified Paths: -------------- trunk/locale/Makefile trunk/locale/de/LC_MESSAGES/phpwiki.mo trunk/locale/de/LC_MESSAGES/phpwiki.php trunk/locale/es/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.mo trunk/locale/fr/LC_MESSAGES/phpwiki.php 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 trunk/locale/zh/LC_MESSAGES/phpwiki.php Removed Paths: ------------- trunk/lib/plugin/WikiAdminChmod.php Deleted: trunk/lib/plugin/WikiAdminChmod.php =================================================================== --- trunk/lib/plugin/WikiAdminChmod.php 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/lib/plugin/WikiAdminChmod.php 2013-06-13 15:19:05 UTC (rev 8800) @@ -1,200 +0,0 @@ -<?php - -/* - * Copyright 2004 $ThePhpWikiProgrammingTeam - * Copyright 2008 Marc-Etienne Vargenau, Alcatel-Lucent - * - * This file is part of PhpWiki. - * - * PhpWiki is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * PhpWiki is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License along - * with PhpWiki; if not, write to the Free Software Foundation, Inc., - * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. - */ - -/** - * Set individual PagePermissions, simplifying effective ACLs to - * unix-like rwxr--r--+ permissions. (as in cygwin) - * - * Usage: <<WikiAdminChmod >> or called via WikiAdminSelect - * Author: Reini Urban <ru...@x-...> - * - */ -require_once 'lib/PageList.php'; -require_once 'lib/plugin/WikiAdminSelect.php'; - -class WikiPlugin_WikiAdminChmod - extends WikiPlugin_WikiAdminSelect -{ - function getDescription() - { - return _("Set individual page permissions."); - } - - function getDefaultArguments() - { - return array_merge - ( - PageList::supportedArgs(), - array( - 's' => false, - 'perm' => false, - /* Columns to include in listing */ - 'info' => 'pagename,perm,mtime,author', - )); - } - - // todo: change permstring to some kind of default ACL hash. - // See PagePermission class - function chmodHelper($permstring) - { - $perm = array(); - return $perm; - } - - function chmodPages(&$dbi, &$request, $pages, $permstring) - { - $ul = HTML::ul(); - $count = 0; - $acl = chmodHelper($permstring); - if ($perm = new PagePermission($acl)) { - foreach ($pages as $name) { - if ($perm->store($dbi->getPage($name))) { - $ul->pushContent(HTML::li(fmt("chmod page “%s” to “%s”.", $name, $permstring))); - $count++; - } else { - $ul->pushContent(HTML::li(fmt("Couldn't chmod page “%s” to “%s”.", $name, $permstring))); - } - } - } else { - $ul->pushContent(HTML::li(_("Invalid chmod string"))); - } - if ($count) { - $dbi->touch(); - return HTML($ul, - HTML::p(fmt("%d pages have been changed.", $count))); - } else { - return HTML($ul, - HTML::p(_("No pages changed."))); - } - } - - function run($dbi, $argstr, &$request, $basepage) - { - if (!DEBUG) { - return $this->disabled("WikiAdminChmod not yet enabled. Set DEBUG to try it."); - } - - $args = $this->getArgs($argstr, $request); - $this->_args = $args; - $this->preSelectS($args, $request); - - $p = $request->getArg('p'); - if (!$p) $p = $this->_list; - $post_args = $request->getArg('admin_chmod'); - $next_action = 'select'; - $pages = array(); - if ($p && !$request->isPost()) - $pages = $p; - if ($p && $request->isPost() && - !empty($post_args['chmod']) && empty($post_args['cancel']) - ) { - // without individual PagePermissions: - if (!ENABLE_PAGEPERM and !$request->_user->isAdmin()) { - $request->_notAuthorized(WIKIAUTH_ADMIN); - $this->disabled("! user->isAdmin"); - } - - if ($post_args['action'] == 'verify') { - // Real action - return $this->chmodPages($dbi, $request, array_keys($p), - $post_args['perm']); - } - if ($post_args['action'] == 'select') { - if (!empty($post_args['perm'])) - $next_action = 'verify'; - foreach ($p as $name => $c) { - $pages[$name] = 1; - } - } - } - if ($next_action == 'select' and empty($pages)) { - // List all pages to select from. - $pages = $this->collectPages($pages, $dbi, $args['sortby'], $args['limit'], $args['exclude']); - } - if ($next_action == 'verify') { - $args['info'] = "checkbox,pagename,perm,author,mtime"; - } - $args['types'] = array('perm' => new _PageList_Column_chmod_perm('perm', _("Permission"))); - $pagelist = new PageList_Selectable($args['info'], $args['exclude'], $args); - $pagelist->addPageList($pages); - - $header = HTML::p(); - if ($next_action == 'verify') { - $button_label = _("Yes"); - $header = $this->chmodForm($header, $post_args); - $header->pushContent( - HTML::p(HTML::strong( - _("Are you sure you want to permanently change the selected files?")))); - } else { - $button_label = _("Chmod"); - $header = $this->chmodForm($header, $post_args); - $header->pushContent(HTML::p(_("Select the pages to change:"))); - } - - $buttons = HTML::p(Button('submit:admin_chmod[chmod]', $button_label, 'wikiadmin'), - Button('submit:admin_chmod[cancel]', _("Cancel"), 'button')); - - return HTML::form(array('action' => $request->getPostURL(), - 'method' => 'post'), - $header, - $buttons, - $pagelist->getContent(), - HiddenInputs($request->getArgs(), - false, - array('admin_chmod')), - HiddenInputs(array('admin_chmod[action]' => $next_action)), - ENABLE_PAGEPERM - ? '' - : HiddenInputs(array('require_authority_for_post' => WIKIAUTH_ADMIN))); - } - - function chmodForm(&$header, $post_args) - { - $header->pushContent( - HTML::p(HTML::em( - _("This plugin is currently under development and does not work!")))); - $header->pushContent(_("Chmod to permission:")); - $header->pushContent(HTML::input(array('name' => 'admin_chmod[perm]', - 'value' => $post_args['perm']))); - $header->pushContent(' ' . _("(ugo : rwx)")); - $header->pushContent(HTML::p()); - $checkbox = HTML::input(array('type' => 'checkbox', - 'name' => 'admin_chmod[updatechildren]', - 'value' => 1)); - if (!empty($post_args['updatechildren'])) $checkbox->setAttr('checked', 'checked'); - $header->pushContent($checkbox, HTML::raw(" "), - _("Propagate new permissions to all subpages?"), - HTML::raw(" "), - HTML::em(_("(disable individual page permissions, enable inheritance)?"))); - $header->pushContent(HTML::hr(), HTML::p()); - return $header; - } -} - -// Local Variables: -// mode: php -// tab-width: 8 -// c-basic-offset: 4 -// c-hanging-comment-ender-p: nil -// indent-tabs-mode: nil -// End: Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/Makefile 2013-06-13 15:19:05 UTC (rev 8800) @@ -97,6 +97,22 @@ ${POT_FILE}: ../lib/ErrorManager.php ${POT_FILE}: ../lib/ExternalReferrer.php ${POT_FILE}: ../lib/FileFinder.php +${POT_FILE}: ../lib/font/chinese.php +${POT_FILE}: ../lib/font/courierbi.php +${POT_FILE}: ../lib/font/courierb.php +${POT_FILE}: ../lib/font/courieri.php +${POT_FILE}: ../lib/font/courier.php +${POT_FILE}: ../lib/font/helveticabi.php +${POT_FILE}: ../lib/font/helveticab.php +${POT_FILE}: ../lib/font/helveticai.php +${POT_FILE}: ../lib/font/helvetica.php +${POT_FILE}: ../lib/font/japanese.php +${POT_FILE}: ../lib/font/symbol.php +${POT_FILE}: ../lib/font/timesbi.php +${POT_FILE}: ../lib/font/timesb.php +${POT_FILE}: ../lib/font/timesi.php +${POT_FILE}: ../lib/font/times.php +${POT_FILE}: ../lib/font/zapfdingbats.php ${POT_FILE}: ../lib/fortune.php ${POT_FILE}: ../lib/gif.php ${POT_FILE}: ../lib/Google.php @@ -238,7 +254,6 @@ ${POT_FILE}: ../lib/plugin/WantedPages.php ${POT_FILE}: ../lib/plugin/WatchPage.php ${POT_FILE}: ../lib/plugin/WhoIsOnline.php -${POT_FILE}: ../lib/plugin/WikiAdminChmod.php ${POT_FILE}: ../lib/plugin/WikiAdminChown.php ${POT_FILE}: ../lib/plugin/WikiAdminDeleteAcl.php ${POT_FILE}: ../lib/plugin/WikiAdminMarkup.php Modified: trunk/locale/de/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/de/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/de/LC_MESSAGES/phpwiki.php 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/de/LC_MESSAGES/phpwiki.php 2013-06-13 15:19:05 UTC (rev 8800) @@ -158,7 +158,6 @@ $locale["Are you sure you want to change the markup type of the selected files?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?"; $locale["Are you sure you want to change the owner of the selected pages?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?"; $locale["Are you sure you want to permanently change access rights to the selected files?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?"; -$locale["Are you sure you want to permanently change the selected files?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?"; $locale["Are you sure you want to permanently purge the following files?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich löschen wollen?"; $locale["Are you sure you want to remove the selected files?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich löschen wollen?"; $locale["Are you sure you want to rename the selected pages?"] = "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich umbenennen wollen?"; @@ -252,8 +251,6 @@ $locale["Check menu items to display."] = "Klicken um anzuzeigen."; $locale["Check to add this ACL"] = "Anklicken um diese ACL hinzuzufügen"; $locale["Check you are logged in."] = "Sie sollten jetzt angemeldet sein."; -$locale["Chmod"] = "Chmod"; -$locale["Chmod to permission:"] = "Ändere auf Berechtigung:"; $locale["Click to authenticate as %s"] = "Hier klicken um sich anzumelden als %s"; $locale["Click to de-/select all pages"] = "Klicken Sie um alle/keine Seiten auszuwählen"; $locale["Click to display"] = "Klicken um anzuzeigen"; @@ -285,7 +282,6 @@ $locale["Could not change owner of page “%s” to “%s”."] = "Konnte den Besitzer der Seite »%s« nicht in »%s« ändern."; $locale["Could not connect to LDAP host %s"] = "Kann nicht zu LDAP host »%s« verbinden"; $locale["Couldn't change page “%s” to markup type “%s”."] = "Konnte die Formatierung der Seite »%s« nicht auf »%s« ändern."; -$locale["Couldn't chmod page “%s” to “%s”."] = "Konnte die Berechtigung der Seite »%s« nicht auf »%s« ändern."; $locale["Couldn't connect to %s"] = "Kann nicht zu »%s« verbinden"; $locale["Couldn't rename page “%s” to “%s”."] = "Konnte Seite »%s« nicht in »%s« umbenennen."; $locale["Couldn't start commandline “%s”"] = "Konnte Programm »%s« nicht starten"; @@ -525,7 +521,6 @@ $locale["Invalid argument %s"] = "Ungültiger Parameter %s"; $locale["Invalid argument: %s=%s"] = "Ungültiger Parameter: %s=%s"; $locale["Invalid attribute %s=%s for image %s"] = "Ungültiger Parameter %s=%s für Bild %s"; -$locale["Invalid chmod string"] = "Ungültiger CHMOD Befehl"; $locale["Invalid color: %s"] = "Ungültige Farbe: %s"; $locale["Invalid filename. File names may only contain alphanumeric characters and dot, underscore, space or dash."] = "Dateinamen dürfen nur folgende Zeichen enthalten: alphanumerische Zeichen, Punkt, Unterstrich, Leerzeichen und Bindestrich."; $locale["Invalid image size"] = "Ungültige Bildgröße"; @@ -909,7 +904,6 @@ $locale["Select the files to remove"] = "Wähle Seiten zum Umbenennen aus:"; $locale["Select the pages to change the markup type"] = "Wählen Sie die Seiten zum Ändern:"; $locale["Select the pages to change the owner"] = "Wählen Sie die Seiten zum Ändern"; -$locale["Select the pages to change:"] = "Wählen Sie die Seiten zum Ändern:"; $locale["Select the pages to rename:"] = "Wähle Seiten zum Umbenennen aus:"; $locale["Select the pages to search and replace"] = "Seiten auswählen:"; $locale["Select the pages where to change access rights"] = "Wählen Sie die Seiten zum Ändern:"; @@ -1217,7 +1211,6 @@ $locale["cached pagedata:"] = "Seitendaten in den Cachespeicher aufgenommen:"; $locale["cached versiondata:"] = "Versionendaten in den Cachespeicher aufgenommen:"; $locale["change page “%s” to markup type “%s”."] = "Formatierung der Seite »%s« auf »%s« geändert."; -$locale["chmod page “%s” to “%s”."] = "Berechtigung der Seite »%s« auf »%s« geändert."; $locale["comments"] = "Kommentare"; $locale["compare revisions"] = "Versionen vergleichen"; $locale["content is identical to current version %d - no new revision created"] = "Inhalt ist identisch mit der aktuellen Version %d - keine neue Version erzeugt"; 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/fr/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/fr/LC_MESSAGES/phpwiki.php 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/fr/LC_MESSAGES/phpwiki.php 2013-06-13 15:19:05 UTC (rev 8800) @@ -86,7 +86,6 @@ $locale["(formatted for PhpWiki developers as pgsrc template, not for backing up)"] = "(format pour les développeurs, pas pour la sauvegarde)"; $locale["(formatted for backing up: all revisions)"] = "(format de sauvegarde : toutes les versions)"; $locale["(max. recursion level: %d)"] = "(niveau maximum de récursivité: %d)"; -$locale["(ugo : rwx)"] = "(ugo : rwx)"; $locale[", Memory: %s"] = ", mémoire : %s"; $locale["- saved to database as version %d"] = "- enregistrée dans la base de données sous la version %d"; $locale["- version %d saved to database as version %d"] = "- version %d sauvée dans la base de données sous la version %d"; @@ -166,7 +165,6 @@ $locale["Archives"] = "Archives"; $locale["Are you sure you want to change the owner of the selected pages?"] = "Êtes-vous sûr de vouloir changer le propriétaire des pages sélectionnées ?"; $locale["Are you sure you want to permanently change access rights to the selected files?"] = "Êtes-vous sûr de vouloir définitivement modifier l'accès aux fichiers sélectionnés ?"; -$locale["Are you sure you want to permanently change the selected files?"] = "Êtes-vous sûr de vouloir modifier de manière permanente les fichiers sélectionnés ?"; $locale["Are you sure you want to permanently purge the following files?"] = "Êtes-vous sûr de vouloir purger définitivement les pages suivantes ?"; $locale["Are you sure you want to remove the selected files?"] = "Êtes-vous certain de vouloir supprimer les fichiers sélectionnés ?"; $locale["Are you sure you want to rename the selected pages?"] = "Êtes-vous sûr de vouloir renommer les pages sélectionnées ?"; @@ -255,8 +253,6 @@ $locale["Check you are a member of the current project."] = "Vous êtes déjà membre de ce projet."; $locale["Check you are in the right project."] = "Vérifiez que vous êtes dans le bon projet."; $locale["Check you are logged in."] = "Vous devez vous identifier."; -$locale["Chmod"] = "Chmod"; -$locale["Chmod to permission:"] = "Changer le mode de permission à :"; $locale["Click a button to get an example text"] = "Cliquer sur un bouton pour obtenir une exemple de texte"; $locale["Click to authenticate as %s"] = "Cliquez pour vous identifier en tant que %s"; $locale["Click to de-/select all pages"] = "Cliquez pour (de)sélectionner toutes les pages"; @@ -293,7 +289,6 @@ $locale["Converts TeX to an image. May be used to embed formulas in PhpWiki."] = "Pour convertir des formules TeX en image."; $locale["Copyrights"] = "Copyrights"; $locale["Could not change owner of page “%s” to “%s”."] = "Impossible de changer le propriétaire “%s” à “%s”."; -$locale["Couldn't chmod page “%s” to “%s”."] = "Impossible de changer le mode “%s” à “%s”."; $locale["Couldn't connect to %s"] = "Impossible d'établir une connexion à la base de données : %s"; $locale["Couldn't rename page “%s” to “%s”."] = "Impossible de renommer la page « %s » en « %s »."; $locale["Couldn't start commandline “%s”"] = "Impossible de lancer la ligne de commande « %s »"; @@ -556,7 +551,6 @@ $locale["Invalid argument %s"] = "Argument non valable %s"; $locale["Invalid argument: %s=%s"] = "Argument non valable : %s=%s"; $locale["Invalid attribute %s=%s for image %s"] = "Attribut non valable %s=%s pour l'image %s"; -$locale["Invalid chmod string"] = "Chaîne de caractère invalide pour le changement de mode"; $locale["Invalid color: %s"] = "Couleur non valide : %s"; $locale["Invalid image size"] = "Taille d'image invalide"; $locale["Invalid password or userid."] = "Mot de passe ou utilisateur non valide."; @@ -956,7 +950,6 @@ $locale["Select pages"] = "Sélectionner les pages"; $locale["Select the files to purge"] = "Sélectionnez les fichiers à purger"; $locale["Select the pages to change the owner"] = "Sélectionnez les pages dont vous voulez changer le propriétaire"; -$locale["Select the pages to change:"] = "Sélectionnez les pages à modifier :"; $locale["Select the pages to rename:"] = "Sélectionnez les pages à renommer :"; $locale["Select the pages to search and replace"] = "Sélectionner ci-dessous les pages dans lesquelles la recherche sera effectuée :"; $locale["Select the pages where to delete access rights"] = "Sélectionnez les pages dont vous voulez supprimer les droits d'accès"; @@ -1080,7 +1073,6 @@ $locale["This page has been locked by the administrator so your changes can not be saved."] = "Cette page a été verrouillée par l'administrateur et vos changements n'ont pas pu être enregistrés."; $locale["This page is external."] = "Cette page est externe."; $locale["This plugin has no description."] = "Ce greffon n'a pas de description."; -$locale["This plugin is currently under development and does not work!"] = "Ce greffon est en cours de développement et ne marche pas !"; $locale["This project is shared with third-party users"] = "The projet est partagé avec des utilisateurs extérieurs"; $locale["This revision of the page does not exist."] = "Cette version de la page n'existe pas."; $locale["Time Zone"] = "Fuseau horaire"; @@ -1274,7 +1266,6 @@ $locale["by %s"] = "par %s"; $locale["cached pagedata:"] = "page bufferisée :"; $locale["cached versiondata:"] = "version bufferisée :"; -$locale["chmod page “%s” to “%s”."] = "Changement de mode %s à %s."; $locale["comments"] = "commentaires"; $locale["compare revisions"] = "comparer les versions"; $locale["content is identical to current version %d - no new revision created"] = "le contenu est identique à la version en cours %d - pas de nouvelle version"; 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 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/de.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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." @@ -3442,52 +3442,6 @@ msgid "%d minutes" msgstr "%d Minuten" -msgid "Set individual page permissions." -msgstr "Setze individuelle Zugangsrechte." - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "Berechtigung der Seite »%s« auf »%s« geändert." - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "Konnte die Berechtigung der Seite »%s« nicht auf »%s« ändern." - -msgid "Invalid chmod string" -msgstr "Ungültiger CHMOD Befehl" - -#, php-format -msgid "%d pages have been changed." -msgstr "%d Seiten wurden geändert." - -msgid "No pages changed." -msgstr "Keine Änderungen." - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" -"Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?" - -msgid "Chmod" -msgstr "Chmod" - -msgid "Select the pages to change:" -msgstr "Wählen Sie die Seiten zum Ändern:" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "Ändere auf Berechtigung:" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "Aktiviere Vererbung dieser Zugriffsrechte auf alle Unterseiten?" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "(deaktiviere individuelle Zugriffsrechte, aktiviere Vererbung)" - msgid "Change owner of selected pages." msgstr "Den Besitzer ausgewählte Seiten ändern." @@ -3510,6 +3464,9 @@ msgid "%d pages have been changed:" msgstr "%d Seiten wurden geändert:" +msgid "No pages changed." +msgstr "Keine Änderungen." + msgid "PhpWikiAdministration/Chown" msgstr "PhpWikiSystemverwalten/Chown" @@ -3534,6 +3491,10 @@ msgid "ACL deleted for page “%s”" msgstr "ACL für Seite »%s« gelöscht" +#, php-format +msgid "%d pages have been changed." +msgstr "%d Seiten wurden geändert." + # Any better translation? The locale/de/pgsrc/PhpWikiSystemverwalten # must also be renamed to match what is here. #, fuzzy @@ -3801,6 +3762,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "Ausgewählte Seite »%s« an »%s« übergeben." +msgid "Set individual page permissions." +msgstr "Setze individuelle Zugangsrechte." + #, php-format msgid "ACL not changed for page “%s”." msgstr "ACL für Seite »%s« nicht geändert." @@ -3852,6 +3816,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "Setze '+' um ACL Zeile hinzufügen." +msgid "Propagate new permissions to all subpages?" +msgstr "Aktiviere Vererbung dieser Zugriffsrechte auf alle Unterseiten?" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "(deaktiviere individuelle Zugriffsrechte, aktiviere Vererbung)" + msgid "(Currently not working)" msgstr "(Funktioniert momentan nicht)" @@ -6269,6 +6239,28 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "chmod page “%s” to “%s”." +#~ msgstr "Berechtigung der Seite »%s« auf »%s« geändert." + +#~ msgid "Couldn't chmod page “%s” to “%s”." +#~ msgstr "Konnte die Berechtigung der Seite »%s« nicht auf »%s« ändern." + +#~ msgid "Invalid chmod string" +#~ msgstr "Ungültiger CHMOD Befehl" + +#~ msgid "Are you sure you want to permanently change the selected files?" +#~ msgstr "" +#~ "Sind Sie sicher, dass Sie die ausgewählen Seiten wirklich ändern wollen?" + +#~ msgid "Chmod" +#~ msgstr "Chmod" + +#~ msgid "Select the pages to change:" +#~ msgstr "Wählen Sie die Seiten zum Ändern:" + +#~ msgid "Chmod to permission:" +#~ msgstr "Ändere auf Berechtigung:" + #, fuzzy #~ msgid "mode" #~ msgstr "Chmod" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/es.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -3340,51 +3340,6 @@ msgid "%d minutes" msgstr "%d minutas" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, php-format -msgid "%d pages have been changed." -msgstr "" - -msgid "No pages changed." -msgstr "" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - msgid "Change owner of selected pages." msgstr "" @@ -3407,6 +3362,9 @@ msgid "%d pages have been changed:" msgstr "" +msgid "No pages changed." +msgstr "" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3430,6 +3388,10 @@ msgid "ACL deleted for page “%s”" msgstr "" +#, php-format +msgid "%d pages have been changed." +msgstr "" + #, fuzzy msgid "PhpWikiAdministration/AdminAclDelete" msgstr "AdministraciónDePhpWiki" @@ -3680,6 +3642,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, php-format msgid "ACL not changed for page “%s”." msgstr "" @@ -3726,6 +3691,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/fr.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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." @@ -3378,54 +3378,6 @@ msgid "%d minutes" msgstr "%d minutes" -msgid "Set individual page permissions." -msgstr "Modifier les permissions individuelles de la page." - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "Changement de mode %s à %s." - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "Impossible de changer le mode “%s” à “%s”." - -msgid "Invalid chmod string" -msgstr "Chaîne de caractère invalide pour le changement de mode" - -#, php-format -msgid "%d pages have been changed." -msgstr "%d pages ont été modifiées." - -msgid "No pages changed." -msgstr "Aucune page modifiée." - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" -"Êtes-vous sûr de vouloir modifier de manière permanente les fichiers " -"sélectionnés ?" - -msgid "Chmod" -msgstr "Chmod" - -msgid "Select the pages to change:" -msgstr "Sélectionnez les pages à modifier :" - -msgid "This plugin is currently under development and does not work!" -msgstr "Ce greffon est en cours de développement et ne marche pas !" - -msgid "Chmod to permission:" -msgstr "Changer le mode de permission à :" - -msgid "(ugo : rwx)" -msgstr "(ugo : rwx)" - -msgid "Propagate new permissions to all subpages?" -msgstr "Propager les nouvelles permissions aux sous-pages ?" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" -"(désactive les permissions individuelles par page, activer l'héritage) ?" - msgid "Change owner of selected pages." msgstr "Changer le propriétaire des pages sélectionnées." @@ -3448,6 +3400,9 @@ msgid "%d pages have been changed:" msgstr "%d pages ont été modifiées :" +msgid "No pages changed." +msgstr "Aucune page modifiée." + msgid "PhpWikiAdministration/Chown" msgstr "AdministrationDePhpWiki/Chown" @@ -3471,6 +3426,10 @@ msgid "ACL deleted for page “%s”" msgstr "ACL supprimée pour la page %s" +#, php-format +msgid "%d pages have been changed." +msgstr "%d pages ont été modifiées." + msgid "PhpWikiAdministration/AdminAclDelete" msgstr "" @@ -3725,6 +3684,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "Modifier les permissions individuelles de la page." + #, php-format msgid "ACL not changed for page “%s”." msgstr "ACL inchangée pour la page %s." @@ -3773,6 +3735,13 @@ msgid "To add check 'Add' near the dropdown list." msgstr "Pour ajouter cocher 'Add' près de la liste déroulante." +msgid "Propagate new permissions to all subpages?" +msgstr "Propager les nouvelles permissions aux sous-pages ?" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" +"(désactive les permissions individuelles par page, activer l'héritage) ?" + msgid "(Currently not working)" msgstr "" @@ -6148,6 +6117,35 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "chmod page “%s” to “%s”." +#~ msgstr "Changement de mode %s à %s." + +#~ msgid "Couldn't chmod page “%s” to “%s”." +#~ msgstr "Impossible de changer le mode “%s” à “%s”." + +#~ msgid "Invalid chmod string" +#~ msgstr "Chaîne de caractère invalide pour le changement de mode" + +#~ msgid "Are you sure you want to permanently change the selected files?" +#~ msgstr "" +#~ "Êtes-vous sûr de vouloir modifier de manière permanente les fichiers " +#~ "sélectionnés ?" + +#~ msgid "Chmod" +#~ msgstr "Chmod" + +#~ msgid "Select the pages to change:" +#~ msgstr "Sélectionnez les pages à modifier :" + +#~ msgid "This plugin is currently under development and does not work!" +#~ msgstr "Ce greffon est en cours de développement et ne marche pas !" + +#~ msgid "Chmod to permission:" +#~ msgstr "Changer le mode de permission à :" + +#~ msgid "(ugo : rwx)" +#~ msgstr "(ugo : rwx)" + #, fuzzy #~ msgid "mode" #~ msgstr "Chmod" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/it.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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" @@ -3313,51 +3313,6 @@ msgid "%d minutes" msgstr "" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, php-format -msgid "%d pages have been changed." -msgstr "" - -msgid "No pages changed." -msgstr "" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - msgid "Change owner of selected pages." msgstr "" @@ -3380,6 +3335,9 @@ msgid "%d pages have been changed:" msgstr "" +msgid "No pages changed." +msgstr "" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3403,6 +3361,10 @@ msgid "ACL deleted for page “%s”" msgstr "" +#, php-format +msgid "%d pages have been changed." +msgstr "" + #, fuzzy msgid "PhpWikiAdministration/AdminAclDelete" msgstr "AmministrazioneDiPhpWiki/Rimuovi" @@ -3653,6 +3615,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, php-format msgid "ACL not changed for page “%s”." msgstr "" @@ -3699,6 +3664,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/ja.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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" @@ -3371,54 +3371,7 @@ msgid "%d minutes" msgstr "" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, fuzzy, php-format -msgid "%d pages have been changed." -msgstr "変更しませんでした。" - #, fuzzy -msgid "No pages changed." -msgstr "変更しませんでした。" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -#, fuzzy -msgid "Select the pages to change:" -msgstr "貴方個人の言語を選択" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - -#, fuzzy msgid "Change owner of selected pages." msgstr "選択ページを全て削除" @@ -3442,6 +3395,10 @@ msgid "%d pages have been changed:" msgstr "変更しませんでした。" +#, fuzzy +msgid "No pages changed." +msgstr "変更しませんでした。" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3467,6 +3424,10 @@ msgid "ACL deleted for page “%s”" msgstr "全ページ一覧" +#, fuzzy, php-format +msgid "%d pages have been changed." +msgstr "変更しませんでした。" + msgid "PhpWikiAdministration/AdminAclDelete" msgstr "" @@ -3738,6 +3699,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, fuzzy, php-format msgid "ACL not changed for page “%s”." msgstr "全ページ一覧" @@ -3786,6 +3750,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" @@ -6206,6 +6176,10 @@ msgstr "ページを編集しています。" #, fuzzy +#~ msgid "Select the pages to change:" +#~ msgstr "貴方個人の言語を選択" + +#, fuzzy #~ msgid "period" #~ msgstr "バージョン %d" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/nl.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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" @@ -3303,51 +3303,6 @@ msgid "%d minutes" msgstr "" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, php-format -msgid "%d pages have been changed." -msgstr "" - -msgid "No pages changed." -msgstr "" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - msgid "Change owner of selected pages." msgstr "" @@ -3370,6 +3325,9 @@ msgid "%d pages have been changed:" msgstr "" +msgid "No pages changed." +msgstr "" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3392,6 +3350,10 @@ msgid "ACL deleted for page “%s”" msgstr "" +#, php-format +msgid "%d pages have been changed." +msgstr "" + #, fuzzy msgid "PhpWikiAdministration/AdminAclDelete" msgstr "PhpWikiBeheer/Vervangt" @@ -3640,6 +3602,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, php-format msgid "ACL not changed for page “%s”." msgstr "" @@ -3686,6 +3651,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/phpwiki.pot 2013-06-13 15:19:05 UTC (rev 8800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+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" @@ -3294,51 +3294,6 @@ msgid "%d minutes" msgstr "" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, php-format -msgid "%d pages have been changed." -msgstr "" - -msgid "No pages changed." -msgstr "" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - msgid "Change owner of selected pages." msgstr "" @@ -3361,6 +3316,9 @@ msgid "%d pages have been changed:" msgstr "" +msgid "No pages changed." +msgstr "" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3383,6 +3341,10 @@ msgid "ACL deleted for page “%s”" msgstr "" +#, php-format +msgid "%d pages have been changed." +msgstr "" + msgid "PhpWikiAdministration/AdminAclDelete" msgstr "" @@ -3630,6 +3592,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, php-format msgid "ACL not changed for page “%s”." msgstr "" @@ -3676,6 +3641,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/sv.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -3297,51 +3297,6 @@ msgid "%d minutes" msgstr "" -msgid "Set individual page permissions." -msgstr "" - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "" - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "" - -msgid "Invalid chmod string" -msgstr "" - -#, php-format -msgid "%d pages have been changed." -msgstr "" - -msgid "No pages changed." -msgstr "" - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "" - -msgid "This plugin is currently under development and does not work!" -msgstr "" - -msgid "Chmod to permission:" -msgstr "" - -msgid "(ugo : rwx)" -msgstr "" - -msgid "Propagate new permissions to all subpages?" -msgstr "" - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "" - msgid "Change owner of selected pages." msgstr "" @@ -3364,6 +3319,9 @@ msgid "%d pages have been changed:" msgstr "" +msgid "No pages changed." +msgstr "" + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3386,6 +3344,10 @@ msgid "ACL deleted for page “%s”" msgstr "" +#, php-format +msgid "%d pages have been changed." +msgstr "" + msgid "PhpWikiAdministration/AdminAclDelete" msgstr "" @@ -3633,6 +3595,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "" +msgid "Set individual page permissions." +msgstr "" + #, php-format msgid "ACL not changed for page “%s”." msgstr "" @@ -3679,6 +3644,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "" + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "" + msgid "(Currently not working)" msgstr "" Modified: trunk/locale/po/zh.po =================================================================== --- trunk/locale/po/zh.po 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/po/zh.po 2013-06-13 15:19:05 UTC (rev 8800) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.4.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-06-13 16:35+0200\n" +"POT-Creation-Date: 2013-06-13 17:17+0200\n" "PO-Revision-Date: 2004-04-21 10:08+0800\n" "Last-Translator: DruryL <dr...@us...>\n" "Language-Team: DruryL <dr...@us...>\n" @@ -3471,51 +3471,6 @@ msgid "%d minutes" msgstr "%d 分鐘" -msgid "Set individual page permissions." -msgstr "設定個別頁面的權限." - -#, php-format -msgid "chmod page “%s” to “%s”." -msgstr "改變頁面 “%s” 權限為 “%s”." - -#, php-format -msgid "Couldn't chmod page “%s” to “%s”." -msgstr "無法為頁面 “%s” 變更權限為 “%s”." - -msgid "Invalid chmod string" -msgstr "錯誤的 chmod 字串" - -#, fuzzy, php-format -msgid "%d pages have been changed." -msgstr "%s 頁面已經變更." - -msgid "No pages changed." -msgstr "沒有頁面被變更." - -msgid "Are you sure you want to permanently change the selected files?" -msgstr "你確定你想要永久變更選定的檔案?" - -msgid "Chmod" -msgstr "" - -msgid "Select the pages to change:" -msgstr "選擇頁面以進行更名:" - -msgid "This plugin is currently under development and does not work!" -msgstr "此 plugin 正在開發還不能運作!" - -msgid "Chmod to permission:" -msgstr "改變權限為:" - -msgid "(ugo : rwx)" -msgstr "(ugo : rwx)" - -msgid "Propagate new permissions to all subpages?" -msgstr "要傳播新的權限到所有子頁面? " - -msgid "(disable individual page permissions, enable inheritance)?" -msgstr "(禁制個別網頁的權限,使用繼承)?" - #, fuzzy msgid "Change owner of selected pages." msgstr "更名選定的頁面." @@ -3540,6 +3495,9 @@ msgid "%d pages have been changed:" msgstr "%s 頁面已經變更." +msgid "No pages changed." +msgstr "沒有頁面被變更." + msgid "PhpWikiAdministration/Chown" msgstr "" @@ -3566,6 +3524,10 @@ msgid "ACL deleted for page “%s”" msgstr "為 page “%s” 設定 acl." +#, fuzzy, php-format +msgid "%d pages have been changed." +msgstr "%s 頁面已經變更." + msgid "PhpWikiAdministration/AdminAclDelete" msgstr "" @@ -3840,6 +3802,9 @@ msgid "Selected page “%s” passed to “%s”." msgstr "已選擇的頁面 “%s” 傳遞到 “%s”." +msgid "Set individual page permissions." +msgstr "設定個別頁面的權限." + #, fuzzy, php-format msgid "ACL not changed for page “%s”." msgstr "為 page “%s” 設定 acl." @@ -3890,6 +3855,12 @@ msgid "To add check 'Add' near the dropdown list." msgstr "" +msgid "Propagate new permissions to all subpages?" +msgstr "要傳播新的權限到所有子頁面? " + +msgid "(disable individual page permissions, enable inheritance)?" +msgstr "(禁制個別網頁的權限,使用繼承)?" + #, fuzzy msgid "(Currently not working)" msgstr "現在不建議使用!" @@ -6322,6 +6293,30 @@ msgid "Edit this page" msgstr "編輯此頁面" +#~ msgid "chmod page “%s” to “%s”." +#~ msgstr "改變頁面 “%s” 權限為 “%s”." + +#~ msgid "Couldn't chmod page “%s” to “%s”." +#~ msgstr "無法為頁面 “%s” 變更權限為 “%s”." + +#~ msgid "Invalid chmod string" +#~ msgstr "錯誤的 chmod 字串" + +#~ msgid "Are you sure you want to permanently change the selected files?" +#~ msgstr "你確定你想要永久變更選定的檔案?" + +#~ msgid "Select the pages to change:" +#~ msgstr "選擇頁面以進行更名:" + +#~ msgid "This plugin is currently under development and does not work!" +#~ msgstr "此 plugin 正在開發還不能運作!" + +#~ msgid "Chmod to permission:" +#~ msgstr "改變權限為:" + +#~ msgid "(ugo : rwx)" +#~ msgstr "(ugo : rwx)" + #, fuzzy #~ msgid "period" #~ msgstr "版本 %d" Modified: trunk/locale/sv/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/zh/LC_MESSAGES/phpwiki.php =================================================================== --- trunk/locale/zh/LC_MESSAGES/phpwiki.php 2013-06-13 14:36:30 UTC (rev 8799) +++ trunk/locale/zh/LC_MESSAGES/phpwiki.php 2013-06-13 15:19:05 UTC (rev 8800) @@ -50,7 +50,6 @@ $locale["(diff)"] = "(差異)"; $locale["(disable individual page permissions, enable inheritance)?"] = "(禁制個別網頁的權限,使用繼承)?"; $locale["(max. recursion level: %d)"] = "(最大遞迴層級: %d)"; -$locale["(ugo : rwx)"] = "(ugo : rwx)"; $locale["- saved to database as version %d"] = "- 已經以版本 %d 存入資料庫中"; $locale["-???"] = "-???"; $locale["... copied to %s"] = "... 複製到 %s"; @@ -81,7 +80,6 @@ $locale["An unnamed PhpWiki"] = "未被命名的 PhpWiki"; $locale["Anonymous Users"] = "Anonymous 使用者"; $locale["Application name"] = "應用程式名稱"; -$locale["Are you sure you want to permanently change the selected files?"] = "你確定你想要永久變更選定的檔案?"; $locale["Arguments"] = "引數"; $locale["Attempting to use the directory “%s” instead."] = "試圖改用目錄 “%s”."; $locale["Auth Level"] = "認證層級"; @@ -118,7 +116,6 @@ $locale["Change pagename in all linked pages also?"] = "也在所有連結到的頁面裡變更頁面名稱?"; $locale["Check any two boxes then %s."] = "任找兩個空格打勾然後 %s."; $locale["Check any two boxes to compare revisions."] = "任找兩個空格打勾以進行比較修訂."; -$locale["Chmod to permission:"] = "改變權限為:"; $locale["Click to authenticate as %s"] = "點擊以 %s 進行驗證."; $locale["Click to de-/select all pages"] = "點擊以取消選擇或選擇所有頁面"; $locale["Click to display"] = "點擊以顯示"; @@ -135,7 +132,6 @@ $locale["Control characters not allowed"] = "控制字元是不被允許的"; $locale["Convert text into a PNG image using GD."] = "使用 GD 轉換文字為 PNG 圖片"; $locale["Converts TeX to an image. May be used to embed formulas in PhpWiki."] = "轉換 TeX 為圖片. 可以用來在 PhpWiki 嵌入方程式."; -$locale["Couldn't chmod page “%s” to “%s”."] = "無法為頁面 “%s” 變更權限為 “%s”."; $locale["Couldn't rename page “%s” to “%s”."] = "無法更名頁面 “%s” 為 “%s”."; $locale["Count"] = "計數"; $locale["Create a Wiki Category Page."] = "建立 Wiki Category 頁面"; @@ -243,7 +239,6 @@ $locale["Inline images"] = "Inline 圖片"; $locale["Insufficient permissions."] = "權限不足."; $locale["InterWiki Address"] = "InterWiki 位址"; -$locale["Invalid chmod string"] = "錯誤的 chmod 字串"; $locale["Invalid color: %s"] = "錯誤的顏色值: %s"; $locale["Invalid password or userid."] = "錯誤的密碼或使用者帳號."; $locale["Keep up to %d major edits, but keep them no longer than %d days."] = "保持 %d 份主要編輯,但不超過 %d 天."; @@ -407,7 +402,6 @@ $locale["See %s tips for editing."] = "參照編輯時的 %s 小秘訣."; $locale["See: %s"] = "參閱: %s"; $locale["Select pages"] = "選擇頁面"; -$locale["Select the pages to change:"] = "選擇頁面以進行更名:"; $locale["Select the pages to rename:"] = "選擇頁面以進行更名:"; $locale["Select: "] = "選擇"; $locale["Selected page “%s” passed to “%s”."] = "已選擇的頁面 “%s” 傳遞到 “%s”."; @@ -480,7 +474,6 @@ $locale["This internal action page cannot viewed."] = "內部動作頁面無法瀏覽."; $locale["This is a minor change."] = "這是次要變更."; $locale["This page has been locked by the administrator so your changes can not be saved."] = "此頁面已被管理者鎖定,所以你的更動無法儲存."; -$locale["This plugin is currently under development and does not work!"] = "此 plugin 正在開發還不能運作!"; $locale["Time Zone"] = "時區"; $locale["Title Search"] = "標題搜尋"; $locale["Title search results for “%s”"] = "以 “%s” 進行標題搜尋的結果"; @@ -578,7 +571,6 @@ $locale["by %s"] = "被 %s"; $locale["cached pagedata:"] = "已置於快取的頁面資料:"; $locale["cached versiondata:"] = "已快取的版本資料:"; -$locale["chmod page “%s” to “%s”."] = "改變頁面 “%s” 權限為 “%s”."; $locale["compare revisions"] = "比較修訂"; $locale["couldn't open file “%s” for writing"] = "無法寫入到 “%s”."; $locale["create this page"] = "建立此頁面"; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |