From: <var...@us...> - 2021-07-29 19:11:51
|
Revision: 10398 http://sourceforge.net/p/phpwiki/code/10398 Author: vargenau Date: 2021-07-29 19:11:48 +0000 (Thu, 29 Jul 2021) Log Message: ----------- PhpWeather plugin removed, uses deprecated mysql functions Modified Paths: -------------- trunk/lib/IniConfig.php trunk/lib/WikiPlugin.php trunk/lib/plugin/WikiTranslation.php trunk/locale/Makefile 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/it/pgsrc/NoteDiRilascio 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/pgsrc/ReleaseNotes Removed Paths: ------------- trunk/lib/phpweather-2.2.2/ trunk/lib/plugin/PhpWeather.php trunk/locale/fr/pgsrc/Aide%2FGreffonM%C3%A9t%C3%A9oPhp trunk/locale/zh/pgsrc/Help%2FPhpWeatherPlugin trunk/pgsrc/Help%2FPhpWeatherPlugin Modified: trunk/lib/IniConfig.php =================================================================== --- trunk/lib/IniConfig.php 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/lib/IniConfig.php 2021-07-29 19:11:48 UTC (rev 10398) @@ -634,7 +634,6 @@ $AllAllowedPlugins[] = 'PageTrail'; $AllAllowedPlugins[] = 'PhotoAlbum'; $AllAllowedPlugins[] = 'PhpHighlight'; - $AllAllowedPlugins[] = 'PhpWeather'; $AllAllowedPlugins[] = 'PopularTags'; $AllAllowedPlugins[] = 'PopUp'; $AllAllowedPlugins[] = 'PrevNext'; Modified: trunk/lib/WikiPlugin.php =================================================================== --- trunk/lib/WikiPlugin.php 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/lib/WikiPlugin.php 2021-07-29 19:11:48 UTC (rev 10398) @@ -518,8 +518,7 @@ // As an additional hack, mark the ETag weak, since, // for all we know, the page might depend - // on things other than the WikiDB (e.g. PhpWeather, - // Calendar...) + // on things other than the WikiDB (e.g. Calendar...) $timestamp = $dbi->getTimestamp(); $request->appendValidators(array('dbi_timestamp' => $timestamp, Deleted: trunk/lib/plugin/PhpWeather.php =================================================================== --- trunk/lib/plugin/PhpWeather.php 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/lib/plugin/PhpWeather.php 2021-07-29 19:11:48 UTC (rev 10398) @@ -1,181 +0,0 @@ -<?php -/** - * Copyright © 1999, 2000, 2001, 2002 $ThePhpWikiProgrammingTeam - * - * 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. - * - * SPDX-License-Identifier: GPL-2.0-or-later - * - */ - -/** - * Usage: - * - * <<PhpWeather >> - * <<PhpWeather menu=true >> - * <<PhpWeather icao=KJFK >> - * <<PhpWeather language=en >> - * <<PhpWeather units=only_metric >> - * <<PhpWeather icao||=CYYZ cc||=CA language||=en menu=true >> - * - * If you want a menu, and you also want to change the default station - * or language, then you have to use the ||= form, or else the user - * wont be able to change the station or language. - * - * The units argument should be one of only_metric, only_imperial, - * both_metric, or both_imperial. - */ - -if (!defined('PHPWEATHER_BASE_DIR')) { - /* PhpWeather has not been loaded before. We include the base class from PhpWeather. */ - include_once 'lib/phpweather-2.2.2/phpweather.php'; -} - -class WikiPlugin_PhpWeather - extends WikiPlugin -{ - function getDescription() - { - return _("Provide weather reports from the Internet."); - } - - function getDefaultArguments() - { - return array('icao' => 'EKAH', - 'cc' => 'DK', - 'language' => 'en', - 'menu' => false, - 'units' => 'both_metric'); - } - - /** - * @param WikiDB $dbi - * @param string $argstr - * @param WikiRequest $request - * @param string $basepage - * @return mixed - */ - function run($dbi, $argstr, &$request, $basepage) - { - require_once(PHPWEATHER_BASE_DIR . '/output/pw_images.php'); - require_once(PHPWEATHER_BASE_DIR . '/pw_utilities.php'); - - extract($this->getArgs($argstr, $request)); - $html = HTML(); - - $w = new phpweather(); // Our weather object - - if (!empty($icao)) { - /* We assign the ICAO to the weather object: */ - $w->set_icao($icao); - if (!$w->get_country_code()) { - /* The country code couldn't be resolved, so we - * shouldn't use the ICAO: */ - trigger_error(sprintf(_("The ICAO “%s” wasn't recognized."), $icao)); - $icao = ''; - } - } - - if (!empty($icao)) { - - /* We check and correct the language if necessary: */ - //if (!in_array($language, array_keys($w->get_languages('text')))) { - if (!in_array($language, array_keys(get_languages('text')))) { - trigger_error(sprintf(_("%s does not know about the language “%s”, using “en” instead."), - $this->getName(), $language)); - $language = 'en'; - } - - $class = "pw_text_$language"; - require_once(PHPWEATHER_BASE_DIR . "/output/$class.php"); - - $t = new $class($w); - $t->set_pref_units($units); - $i = new pw_images($w); - - $i_temp = HTML::img(array('src' => $i->get_temp_image())); - $i_wind = HTML::img(array('src' => $i->get_winddir_image())); - $i_sky = HTML::img(array('src' => $i->get_sky_image())); - - $m = $t->print_pretty(); - - $m_td = HTML::td(HTML::p(new RawXml($m))); - - $i_tr = HTML::tr(); - $i_tr->pushContent(HTML::td($i_temp)); - $i_tr->pushContent(HTML::td($i_wind)); - - $i_table = HTML::table($i_tr); - $i_table->pushContent(HTML::tr(HTML::td(array('colspan' => '2'), - $i_sky))); - - $tr = HTML::tr(); - $tr->pushContent($m_td); - $tr->pushContent(HTML::td($i_table)); - - $html->pushContent(HTML::table($tr)); - - } - - /* We make a menu if asked to, or if $icao is empty: */ - if ($menu || empty($icao)) { - - $form_arg = array('action' => $request->getURLtoSelf(), - 'method' => 'get'); - - /* The country box is always part of the menu: */ - $p1 = HTML::p(new RawXml(get_countries_select($w, $cc))); - - /* We want to save the language: */ - $p1->pushContent(HTML::input(array('type' => 'hidden', - 'name' => 'language', - 'value' => $language))); - /* And also the ICAO: */ - $p1->pushContent(HTML::input(array('type' => 'hidden', - 'name' => 'icao', - 'value' => $icao))); - - $caption = (empty($cc) ? _("Submit country") : _("Change country")); - $p1->pushContent(HTML::input(array('type' => 'submit', - 'value' => $caption))); - - $html->pushContent(HTML::form($form_arg, $p1)); - - if (!empty($cc)) { - /* We have selected a country, now display a list with - * the available stations in that country: */ - $p2 = HTML::p(); - - /* We need the country code after the form is submitted: */ - $p2->pushContent(HTML::input(array('type' => 'hidden', - 'name' => 'cc', - 'value' => $cc))); - - $p2->pushContent(new RawXml(get_stations_select($w, $cc, $icao))); - $p2->pushContent(new RawXml(get_languages_select($language))); - $p2->pushContent(HTML::input(array('type' => 'submit', - 'value' => _("Submit location")))); - - $html->pushContent(HTML::form($form_arg, $p2)); - - } - - } - - return $html; - } -} Modified: trunk/lib/plugin/WikiTranslation.php =================================================================== --- trunk/lib/plugin/WikiTranslation.php 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/lib/plugin/WikiTranslation.php 2021-07-29 19:11:48 UTC (rev 10398) @@ -145,8 +145,6 @@ _("PhotoAlbumPlugin") . ',' . _("PhpHighlight") . ',' . _("PhpHighlightPlugin") . ',' . - _("PhpWeather") . ',' . - _("PhpWeatherPlugin") . ',' . _("PhpWiki") . ',' . _("PhpWikiAdministration") . ',' . _("PhpWikiDocumentation") . ',' . Modified: trunk/locale/Makefile =================================================================== --- trunk/locale/Makefile 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/Makefile 2021-07-29 19:11:48 UTC (rev 10398) @@ -152,277 +152,6 @@ ${POT_FILE}: .././lib/pear/File_Passwd.php ${POT_FILE}: .././lib/pear/JSON.php ${POT_FILE}: .././lib/pear/PEAR.php -${POT_FILE}: .././lib/phpweather-2.2.2/base_object.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/connectivity_test.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/index.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/make_config.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/make_db.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/make_stations.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_dependency_and.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_dependency_equal.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_dependency_not.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_dependency_or.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_dependency.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option_boolean.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_optiongroup.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option_integer.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option_multi_select.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option_select.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_option_text.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_validator_ereg.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_validator.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/pw_validator_range.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/reset_session.php -${POT_FILE}: .././lib/phpweather-2.2.2/config/speed_test.php -${POT_FILE}: .././lib/phpweather-2.2.2/currentimage.php -${POT_FILE}: .././lib/phpweather-2.2.2/data_retrieval.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AF.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AQ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/AZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BB.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BF.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BJ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BS.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/BZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CF.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/countries.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CV.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CX.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/CZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DJ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/DZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/EC.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/EE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/EG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/EH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ES.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ET.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/FI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/FJ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/FK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/FM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/FR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GB.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GF.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GP.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GQ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GS.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/GY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/HK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/HN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/HR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/HT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/HU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ID.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IQ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IS.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/IT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/JM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/JO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/JP.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KP.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/KZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LB.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LC.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LS.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LV.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/LY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ML.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MQ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MV.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MX.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/MZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NC.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NP.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/NZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/OM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PF.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/PY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/QA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/RE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/RO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/RU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/RW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SB.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SC.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SK.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ST.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SV.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/SZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TD.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TH.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TJ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TL.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TO.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TR.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TT.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TV.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/TZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/UA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/UG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/UM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/US.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/UY.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/UZ.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VC.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VG.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VI.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VN.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/VU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/WS.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/YE.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/YU.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ZA.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ZM.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/files/ZW.php -${POT_FILE}: .././lib/phpweather-2.2.2/db_layer.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_adodb.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_common.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_dba.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_mysql.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_null.php -${POT_FILE}: .././lib/phpweather-2.2.2/db/pw_db_pgsql.php -${POT_FILE}: .././lib/phpweather-2.2.2/db_updater.php -${POT_FILE}: .././lib/phpweather-2.2.2/defaults-dist.php -${POT_FILE}: .././lib/phpweather-2.2.2/images-test.php -${POT_FILE}: .././lib/phpweather-2.2.2/index.php -${POT_FILE}: .././lib/phpweather-2.2.2/languages.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_images.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_output.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_cs.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_da.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_de.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_en_GB.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_en.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_en_US.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_es.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_fi.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_fr.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_hu.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_it.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_nl.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_no.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_pl.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_pt.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_sk.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_sv.php -${POT_FILE}: .././lib/phpweather-2.2.2/output/pw_text_tr.php -${POT_FILE}: .././lib/phpweather-2.2.2/phpweather.php -${POT_FILE}: .././lib/phpweather-2.2.2/pw_utilities.php ${POT_FILE}: .././lib/plugin/AddComment.php ${POT_FILE}: .././lib/plugin/AllPages.php ${POT_FILE}: .././lib/plugin/AllUsers.php @@ -494,7 +223,6 @@ ${POT_FILE}: .././lib/plugin/PasswordReset.php ${POT_FILE}: .././lib/plugin/PhotoAlbum.php ${POT_FILE}: .././lib/plugin/PhpHighlight.php -${POT_FILE}: .././lib/plugin/PhpWeather.php ${POT_FILE}: .././lib/plugin/Ploticus.php ${POT_FILE}: .././lib/plugin/PluginManager.php ${POT_FILE}: .././lib/plugin/PopularNearby.php 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) Deleted: trunk/locale/fr/pgsrc/Aide%2FGreffonM%C3%A9t%C3%A9oPhp =================================================================== --- trunk/locale/fr/pgsrc/Aide%2FGreffonM%C3%A9t%C3%A9oPhp 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/fr/pgsrc/Aide%2FGreffonM%C3%A9t%C3%A9oPhp 2021-07-29 19:11:48 UTC (rev 10398) @@ -1,95 +0,0 @@ -Date: Mon, 30 Mar 2020 15:49:22 +0000 -Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) -Content-Type: application/x-phpwiki; - pagename=Aide%2FGreffonM%C3%A9t%C3%A9oPhp; - flags=PAGE_LOCKED; - charset=UTF-8 -Content-Transfer-Encoding: binary - -Le [[Aide:GreffonWiki|greffon]] **~MétéoPhp** (//PhpWeather//) utilise [[http://phpweather.sourceforge.net/|PhpWeather]] -pour afficher un bout de texte avec la météo actuelle pour n'importe quel aéroport -dans le monde. Cela ressemble à ça : - -<<PhpWeather menu=true>> - -== Arguments == - -{| class="bordered" -|- -! Argument -! Description -! Valeur par défaut -|- -| **menu** -| -Mettre ceci sur ##true## pour que le greffon affiche un menu après le -rapport. L'utilisateur pourra sélectionner un pays à partir de ce menu -et, après ça, un aéroport et une langue. -| false -|- -| **icao** -| -Utilisez ceci pour pré-sélectionner un aéroport spécifique à la place -de l'aéroport par défaut qui est ##EKAH##. - -Si vous voulez que -l'utilisateur puisse changer la station en utilisant le menu alors -lancer le greffon comme ceci : ##<<PhpWeather menu=true icao||=EKYT>>## -de telle sorte que la valeur peut être ré-écrite lorsque l'utilisateur soumet le formulaire. - -Si vous mettez seulement : ##<<PhpWeather menu=true icao=EKYT>>## -alors rien ne se produira lorsque l'utilisateur sélectionnera une autre -station depuis la liste. -| -|- -| **cc** -| -Spécifie le code du pays (country code). Vous pouvez l'utiliser si vous -souhaitez pré-sélectionner un pays différent de celui spécifié dans l'ICAO. - -Ainsi, ##<<PhpWeather menu=true cc|~|~=GB icao|~|~=KTTS>>## -affichera la météo courante à NASA Shuttle Facility, États-Unis -(##KTTS##) et en même temps donnera à l'utilisateur une liste des -stations du Royaume-Uni. - -Comme l'exemple le montre vous devriez utiliser -##cc||=XX## en le combinant avec **menu** mis sur ##true##. -| -|- -| **language** -| -La langue par défaut. Quand vous combinez **language** avec **menu** mis -à ##true## alors souvenez-vous d'utiliser la forme ##language~|~|=xx##. -| -|- -| **units** -| -Vous pouvez spécifer le manière dont les unités seront affichées. Le choix -se fait sur la possibilité d'avoir les deux unités (métriques ou impériales) -ou juste l'un d'entres elles. Mettant **units** sur ##both_metric## affichera -la valeur métrique d'abord et ensuite l'impériale entre parenthèses. -**units** sur ##both_imperial## fait exactement l'inverse. - -Si vous voulez l'une ou l'autre seulement alors mettez **units** sur -##only_metric## ou ##only_imperial## et ça le fera. -| -|} - -== Exemple == - -Le temps chez les Bretons : -{{{ -<<PhpWeather cc=FR icao=LFRN language=fr units=only_metric>> -}}} - -et qui est actuellement : -<<PhpWeather cc=FR icao=LFRN language=fr units=only_metric>> - -== Problèmes connus == - -Le greffon ne fonctionne pas à travers un proxy. - -<noinclude> ----- -[[DocumentationDePhpWiki]] [[CatégorieGreffonWiki]] -</noinclude> Modified: trunk/locale/it/LC_MESSAGES/phpwiki.mo =================================================================== (Binary files differ) Modified: trunk/locale/it/pgsrc/NoteDiRilascio =================================================================== --- trunk/locale/it/pgsrc/NoteDiRilascio 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/it/pgsrc/NoteDiRilascio 2021-07-29 19:11:48 UTC (rev 10398) @@ -1,4 +1,4 @@ -Date: Sat, 2 Jan 2021 19:46:14 +0000 +Date: Thu, 29 Jul 2021 21:08:02 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.6.0) Content-Type: application/x-phpwiki; pagename=NoteDiRilascio; @@ -11,11 +11,22 @@ == 1.6.0 2020-12-XX Marc-Etienne Vargenau == Major release: -* PHP 7 compatible +* PHP 7 compatible (works from PHP 5.3.3 to PHP 7) * Full HTML 5: Add HTML 5 <main> <header> <footer> <nav> in all themes. Add ARIA roles. * Flash is dead * Internet Explorer is dead +=== Fixes === +* Make function IsSafeURL more strict +* Make XHTML ZIP Snapshot work again (broken since ~PhpWiki 1.5.3) +* It was possible to rename a page to a name with illegal characters, like ~[~] +* Better handling of page names with slash +* Remove wrong calls to setTightness in ##lib/~InlineParser.php## (bug reported by Harold Hallikainen) +* Importing a ZIP from an old wiki in Latin 1 (ISO 8859-1) failed. Reported by Frank Michael. +* Better check arguments for ~GoogleMaps plugin +* Revert Subversion commit 9111, bad side effects; re-opening Bug#607 BackLinks do not work inside a RichTable +* Security fixes + === Changes === * Add new button in Edit Toolbar: convert Tab Separated Values to Wikicreole table * Update jQuery to 2.2.4 @@ -31,27 +42,20 @@ * Valid HTML5 and CSS3 logos (in debug mode) * Better is_localhost() function (allow IPv6, allow Windows IIS). Patch by Thierry Nabeth. * Remove Fusionforge-specific files (g view.php wikiadmin.php wikilist.php) +* Remove USE_SAFE_DBSESSION (always true) * PDO patch by Sébastien Le Callonnec * Updated pgsrc pages in all languages -* Security fixes * Adding SPDX-License-Identifier in PHP source files -=== Bugs === -* Make function IsSafeURL more strict -* Make XHTML ZIP Snapshot work again (broken since ~PhpWiki 1.5.3) -* It was possible to rename a page to a name with illegal characters, like ~[~] -* Remove wrong calls to setTightness in ##lib/~InlineParser.php## (bug reported by Harold Hallikainen) -* Importing a ZIP from an old wiki in Latin 1 (ISO 8859-1) failed. Reported by Frank Michael. -* Better check arguments for ~GoogleMaps plugin - === Plugins === * ~UpLoad plugin: put date and author in history * ~UpLoad plugin: don't inline images -* phpweather-2.2.2 included in ~PhpWiki; ~PhpWeather plugin allowed in Fusionforge +* PhpWeather removed, uses deprecated mysql functions * ~HtmlConverter plugin: check file is encoded in UTF-8; ~HtmlConverter plugin allowed in Fusionforge * Use jquery.autoheight.js plugin for Transclude plugin * Repair [[Help:PhotoAlbumPlugin|PhotoAlbumPlugin]] * Rename action page ~DebugInfo as ~DebugBackendInfo (to be consistent with plugin name) +* Better check boolean arguments in plugins == 1.5.5 2015-12-11 Marc-Etienne Vargenau == @@ -174,7 +178,7 @@ * fix Bug#1752172 undefined method {{{TextSearchQuery_node_or::_sql_quote()}}} * dba: fix sorting for empty mtime field * ~LdapSearch: fix layout and logic -* ~FileInfo: fix Upload: links +* ~FileInfo: fix ##Upload~:## links * XHTML validation corrections (vargenau) * avoid recursive modification when renaming a page like '~PageFoo to '~PageFooTwo' (vargenau) * fix Bug#1808002 Table of contents plugin does not nest numbering (vargenau) 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 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/de.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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." @@ -2267,27 +2267,6 @@ msgid "Invalid color: %s" msgstr "Ungültige Farbe: %s" -msgid "Provide weather reports from the Internet." -msgstr "Der PhpWetter plugin gibt Auskunft zur Wetterlage vom Internet." - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "Die angegebene ICAO »%s« war nicht bekannt." - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" -"%s weißt nichts von die Sprache »%s«, stattdessen wird »en« angewendet." - -msgid "Submit country" -msgstr "Land eingeben" - -msgid "Change country" -msgstr "Land ändern" - -msgid "Submit location" -msgstr "Land eingeben" - msgid "Ploticus image creation." msgstr "" @@ -4235,12 +4214,6 @@ msgid "PhpHighlightPlugin" msgstr "PhpHighlightPlugin" -msgid "PhpWeather" -msgstr "PhpWetter" - -msgid "PhpWeatherPlugin" -msgstr "PhpWetterPlugin" - msgid "PhpWiki" msgstr "PhpWiki" @@ -4683,81 +4656,7 @@ msgid "CREATED" msgstr "ERZEUGT" -msgid "database" -msgstr "Datenbank" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "Backend Typ: " - #, php-format -msgid "Check for table %s" -msgstr "Prüfe Tabelle %s" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "Prüfe auf neue Spalte session.sess_ip column" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "HINZU" - -msgid "Check for mysql session.sess_id sanity" -msgstr "Prüfe auf mysql session.sess_id Korrektheit" - -msgid "fixed" -msgstr "geändert" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "Prüfe auf mysql page.id auto_increment Flag" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "prüfe auf mysql 4.1.x/5.0.0 Binärsuch-Problem (nur Windows)" - -#, php-format -msgid "version <em>%s</em>" -msgstr "version <em>%s</em>" - -msgid "not affected" -msgstr "nicht betroffen" - -msgid "FIXED" -msgstr "AUSGEBESSERT" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "Prüfe auf ACCESS_LOG_SQL Passwörter in POST Requests" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "Prüfe auf ACCESS_LOG_SQL Passwörter in POST Requests" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "KONVERTIERE" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "%s nicht gefunden in %s" @@ -4782,6 +4681,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "AUSGEBESSERT" + msgid "fixed with" msgstr "Geändert mit" @@ -5997,6 +5899,73 @@ msgid "Edit this page" msgstr "Diese Seite bearbeiten" +#~ msgid "Provide weather reports from the Internet." +#~ msgstr "Der PhpWetter plugin gibt Auskunft zur Wetterlage vom Internet." + +#~ msgid "The ICAO “%s” wasn't recognized." +#~ msgstr "Die angegebene ICAO »%s« war nicht bekannt." + +#~ msgid "%s does not know about the language “%s”, using “en” instead." +#~ msgstr "" +#~ "%s weißt nichts von die Sprache »%s«, stattdessen wird »en« angewendet." + +#~ msgid "Submit country" +#~ msgstr "Land eingeben" + +#~ msgid "Change country" +#~ msgstr "Land ändern" + +#~ msgid "Submit location" +#~ msgstr "Land eingeben" + +#~ msgid "PhpWeather" +#~ msgstr "PhpWetter" + +#~ msgid "PhpWeatherPlugin" +#~ msgstr "PhpWetterPlugin" + +#~ msgid "database" +#~ msgstr "Datenbank" + +#~ msgid "Backend type: " +#~ msgstr "Backend Typ: " + +#~ msgid "Check for table %s" +#~ msgstr "Prüfe Tabelle %s" + +#~ msgid "Check for new session.sess_ip column" +#~ msgstr "Prüfe auf neue Spalte session.sess_ip column" + +#~ msgid "ADDING" +#~ msgstr "HINZU" + +#~ msgid "Check for mysql session.sess_id sanity" +#~ msgstr "Prüfe auf mysql session.sess_id Korrektheit" + +#~ msgid "fixed" +#~ msgstr "geändert" + +#~ msgid "Check for mysql page.id auto_increment flag" +#~ msgstr "Prüfe auf mysql page.id auto_increment Flag" + +#~ msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" +#~ msgstr "prüfe auf mysql 4.1.x/5.0.0 Binärsuch-Problem (nur Windows)" + +#~ msgid "version <em>%s</em>" +#~ msgstr "version <em>%s</em>" + +#~ msgid "not affected" +#~ msgstr "nicht betroffen" + +#~ msgid "Check for ACCESS_LOG_SQL passwords in POST requests" +#~ msgstr "Prüfe auf ACCESS_LOG_SQL Passwörter in POST Requests" + +#~ msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" +#~ msgstr "Prüfe auf ACCESS_LOG_SQL Passwörter in POST Requests" + +#~ msgid "CONVERTING" +#~ msgstr "KONVERTIERE" + #~ msgid "GoodStyle" #~ msgstr "GuterStil" Modified: trunk/locale/po/es.po =================================================================== --- trunk/locale/po/es.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/es.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -11,7 +11,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+0200\n" "PO-Revision-Date: 2000-02-01 00:50-0500\n" "Last-Translator: Pablo Roca <pr...@cl...>\n" "Language-Team: \n" @@ -2205,26 +2205,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "" - -msgid "Change country" -msgstr "" - -msgid "Submit location" -msgstr "" - msgid "Ploticus image creation." msgstr "" @@ -4115,12 +4095,6 @@ msgid "PhpHighlightPlugin" msgstr "" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4551,81 +4525,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr "" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "fijo" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "versión <em>%s</em>" - -msgid "not affected" -msgstr "" - -msgid "FIXED" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "" @@ -4650,6 +4550,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "" + msgid "fixed with" msgstr "" @@ -5817,6 +5720,12 @@ msgid "Edit this page" msgstr "Corrija esta página" +#~ msgid "fixed" +#~ msgstr "fijo" + +#~ msgid "version <em>%s</em>" +#~ msgstr "versión <em>%s</em>" + #~ msgid "GoodStyle" #~ msgstr "BuenEstilo" Modified: trunk/locale/po/fr.po =================================================================== --- trunk/locale/po/fr.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/fr.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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." @@ -2249,26 +2249,6 @@ msgid "Invalid color: %s" msgstr "Couleur non valide : %s" -msgid "Provide weather reports from the Internet." -msgstr "Météo importée d'internet." - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "L'ICAO « %s » n'a pas été reconnu." - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "%s ne connaît pas la langue « %s », utilisation de « en » à la place." - -msgid "Submit country" -msgstr "Soumettre le pays" - -msgid "Change country" -msgstr "Changer le pays" - -msgid "Submit location" -msgstr "Soumettre la localisation" - msgid "Ploticus image creation." msgstr "Création de l'image Ploticus." @@ -4209,12 +4189,6 @@ msgid "PhpHighlightPlugin" msgstr "GreffonColorationPhp" -msgid "PhpWeather" -msgstr "MétéoPhp" - -msgid "PhpWeatherPlugin" -msgstr "GreffonMétéoPhp" - msgid "PhpWiki" msgstr "PhpWiki" @@ -4653,82 +4627,7 @@ msgid "CREATED" msgstr "CRÉÉ" -msgid "database" -msgstr "base de données" - -msgid "db version: we want " -msgstr "Version de la base de données : on veut " - -msgid "db version: we have " -msgstr "Version de la base de données : on a " - -msgid "Backend type: " -msgstr "Type de backend : " - #, php-format -msgid "Check for table %s" -msgstr "Vérifie la table %s" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "Vous devez mettre à jour schema/psql-initialize.sql à la main !" - -msgid "Check for new session.sess_ip column" -msgstr "Recherche une nouvelle colonne session.sess_ip" - -msgid "SKIP" -msgstr "SAUTÉ" - -msgid "ADDING" -msgstr "AJOUT" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "version <em>%s</em>" - -msgid "not affected" -msgstr "non affectée" - -msgid "FIXED" -msgstr "CORRIGÉ" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "Version de la base de données : mise à niveau vers " - -msgid "Check for extra page.cached_html column" -msgstr "Recherche une colonne supplémentaire page.cached_html" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "Vérifie le champ relation dans la table des liens" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" -"Reconstruit toute la base de données pour mettre à jour les liens de relation" - -#, php-format msgid "%s not found in %s" msgstr "%s non trouvé dans %s" @@ -4753,6 +4652,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "CORRIGÉ" + msgid "fixed with" msgstr "" @@ -5945,10 +5847,81 @@ msgid "Edit this page" msgstr "Modifier cette page" +#~ msgid "Provide weather reports from the Internet." +#~ msgstr "Météo importée d'internet." + +#~ msgid "The ICAO “%s” wasn't recognized." +#~ msgstr "L'ICAO « %s » n'a pas été reconnu." + +#~ msgid "%s does not know about the language “%s”, using “en” instead." +#~ msgstr "" +#~ "%s ne connaît pas la langue « %s », utilisation de « en » à la place." + +#~ msgid "Submit country" +#~ msgstr "Soumettre le pays" + +#~ msgid "Change country" +#~ msgstr "Changer le pays" + +#~ msgid "Submit location" +#~ msgstr "Soumettre la localisation" + +#~ msgid "PhpWeather" +#~ msgstr "MétéoPhp" + +#~ msgid "PhpWeatherPlugin" +#~ msgstr "GreffonMétéoPhp" + +#~ msgid "database" +#~ msgstr "base de données" + +#~ msgid "db version: we want " +#~ msgstr "Version de la base de données : on veut " + +#~ msgid "db version: we have " +#~ msgstr "Version de la base de données : on a " + +#~ msgid "Backend type: " +#~ msgstr "Type de backend : " + +#~ msgid "Check for table %s" +#~ msgstr "Vérifie la table %s" + +#~ msgid "You need to upgrade to schema/psql-initialize.sql manually!" +#~ msgstr "Vous devez mettre à jour schema/psql-initialize.sql à la main !" + +#~ msgid "Check for new session.sess_ip column" +#~ msgstr "Recherche une nouvelle colonne session.sess_ip" + +#~ msgid "SKIP" +#~ msgstr "SAUTÉ" + +#~ msgid "ADDING" +#~ msgstr "AJOUT" + +#~ msgid "version <em>%s</em>" +#~ msgstr "version <em>%s</em>" + +#~ msgid "not affected" +#~ msgstr "non affectée" + +#~ msgid "db version: upgrade to " +#~ msgstr "Version de la base de données : mise à niveau vers " + +#~ msgid "Check for extra page.cached_html column" +#~ msgstr "Recherche une colonne supplémentaire page.cached_html" + +#~ msgid "Check for relation field in link table" +#~ msgstr "Vérifie le champ relation dans la table des liens" + +#~ msgid "Rebuild entire database to upgrade relation links" +#~ msgstr "" +#~ "Reconstruit toute la base de données pour mettre à jour les liens de " +#~ "relation" + #~ msgid "CreatePage failed" #~ msgstr "La création de la page a échoué" -#, php-format #~ msgid "Do you really want to create the page “%s”?" #~ msgstr "Voulez-vous réellement créer la page « %s » ?" Modified: trunk/locale/po/it.po =================================================================== --- trunk/locale/po/it.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/it.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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" @@ -2186,26 +2186,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "" - -msgid "Change country" -msgstr "" - -msgid "Submit location" -msgstr "" - msgid "Ploticus image creation." msgstr "" @@ -4092,12 +4072,6 @@ msgid "PhpHighlightPlugin" msgstr "" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4528,81 +4502,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr "" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "versione <em>%s</em>" - -msgid "not affected" -msgstr "" - -msgid "FIXED" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "%s non trovato in %s" @@ -4627,6 +4527,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "" + msgid "fixed with" msgstr "Modifica" @@ -5776,6 +5679,9 @@ msgid "Edit this page" msgstr "" +#~ msgid "version <em>%s</em>" +#~ msgstr "versione <em>%s</em>" + #~ msgid "GoodStyle" #~ msgstr "BuonStile" Modified: trunk/locale/po/ja.po =================================================================== --- trunk/locale/po/ja.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/ja.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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" @@ -2172,26 +2172,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "国名送信" - -msgid "Change country" -msgstr "国名変更" - -msgid "Submit location" -msgstr "所在地変更" - msgid "Ploticus image creation." msgstr "" @@ -4078,12 +4058,6 @@ msgid "PhpHighlightPlugin" msgstr "PHPハイライトプラグイン" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4514,81 +4488,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr "" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "バージョン <em>%s</em>" - -msgid "not affected" -msgstr "" - -msgid "FIXED" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "" @@ -4613,6 +4513,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "" + msgid "fixed with" msgstr "" @@ -5762,6 +5665,18 @@ msgid "Edit this page" msgstr "ページを編集しています" +#~ msgid "Submit country" +#~ msgstr "国名送信" + +#~ msgid "Change country" +#~ msgstr "国名変更" + +#~ msgid "Submit location" +#~ msgstr "所在地変更" + +#~ msgid "version <em>%s</em>" +#~ msgstr "バージョン <em>%s</em>" + #~ msgid "Page info" #~ msgstr "ページ情報" Modified: trunk/locale/po/nl.po =================================================================== --- trunk/locale/po/nl.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/nl.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -8,7 +8,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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" @@ -2178,26 +2178,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "" - -msgid "Change country" -msgstr "" - -msgid "Submit location" -msgstr "" - msgid "Ploticus image creation." msgstr "" @@ -4084,12 +4064,6 @@ msgid "PhpHighlightPlugin" msgstr "" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4520,81 +4494,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr "" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "versie <em>%s</em>" - -msgid "not affected" -msgstr "" - -msgid "FIXED" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "" @@ -4619,6 +4519,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "" + msgid "fixed with" msgstr "" @@ -5768,6 +5671,9 @@ msgid "Edit this page" msgstr "" +#~ msgid "version <em>%s</em>" +#~ msgstr "versie <em>%s</em>" + #~ msgid "GoodStyle" #~ msgstr "GoedeStijl" Modified: trunk/locale/po/phpwiki.pot =================================================================== --- trunk/locale/po/phpwiki.pot 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/phpwiki.pot 2021-07-29 19:11:48 UTC (rev 10398) @@ -6,7 +6,7 @@ msgstr "" "Project-Id-Version: PhpWiki-1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+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" @@ -2172,26 +2172,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "" - -msgid "Change country" -msgstr "" - -msgid "Submit location" -msgstr "" - msgid "Ploticus image creation." msgstr "" @@ -4078,12 +4058,6 @@ msgid "PhpHighlightPlugin" msgstr "" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4514,81 +4488,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr "" - -msgid "You need to upgrade to schema/psql-initialize.sql manually!" -msgstr "" - -msgid "Check for new session.sess_ip column" -msgstr "" - -msgid "SKIP" -msgstr "" - -msgid "ADDING" -msgstr "" - -msgid "Check for mysql session.sess_id sanity" -msgstr "" - -msgid "fixed" -msgstr "" - -msgid "Check for mysql page.id auto_increment flag" -msgstr "" - -msgid "Check for mysql 4.1.x/5.0.0 binary search on Windows problem" -msgstr "" - -#, php-format -msgid "version <em>%s</em>" -msgstr "" - -msgid "not affected" -msgstr "" - -msgid "FIXED" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL passwords in POST requests" -msgstr "" - -msgid "Check for ACCESS_LOG_SQL remote_host varchar(50)" -msgstr "" - -msgid "FIXING" -msgstr "" - -msgid "db version: upgrade to " -msgstr "" - -msgid "Check for extra page.cached_html column" -msgstr "" - -msgid "CONVERTING" -msgstr "" - -msgid "Check for relation field in link table" -msgstr "" - -msgid "Rebuild entire database to upgrade relation links" -msgstr "" - -#, php-format msgid "%s not found in %s" msgstr "" @@ -4613,6 +4513,9 @@ msgid "fix BLOG_EMPTY_DEFAULT_PREFIX into BLOG_DEFAULT_EMPTY_PREFIX" msgstr "" +msgid "FIXED" +msgstr "" + msgid "fixed with" msgstr "" Modified: trunk/locale/po/sv.po =================================================================== --- trunk/locale/po/sv.po 2021-07-29 17:42:03 UTC (rev 10397) +++ trunk/locale/po/sv.po 2021-07-29 19:11:48 UTC (rev 10398) @@ -7,7 +7,7 @@ msgstr "" "Project-Id-Version: PhpWiki 1.6.0\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-07-16 13:23+0200\n" +"POT-Creation-Date: 2021-07-29 21:10+0200\n" "PO-Revision-Date: 2001-01-27 01:58+0200\n" "Last-Translator: Jon Åslund <jo...@he...>\n" "Language-Team: \n" @@ -2173,26 +2173,6 @@ msgid "Invalid color: %s" msgstr "" -msgid "Provide weather reports from the Internet." -msgstr "" - -#, php-format -msgid "The ICAO “%s” wasn't recognized." -msgstr "" - -#, php-format -msgid "%s does not know about the language “%s”, using “en” instead." -msgstr "" - -msgid "Submit country" -msgstr "" - -msgid "Change country" -msgstr "" - -msgid "Submit location" -msgstr "" - msgid "Ploticus image creation." msgstr "" @@ -4079,12 +4059,6 @@ msgid "PhpHighlightPlugin" msgstr "" -msgid "PhpWeather" -msgstr "" - -msgid "PhpWeatherPlugin" -msgstr "" - msgid "PhpWiki" msgstr "" @@ -4515,81 +4489,7 @@ msgid "CREATED" msgstr "" -msgid "database" -msgstr "" - -msgid "db version: we want " -msgstr "" - -msgid "db version: we have " -msgstr "" - -msgid "Backend type: " -msgstr "" - #, php-format -msgid "Check for table %s" -msgstr ""... [truncated message content] |