X-Git-Url: https://git.openstreetmap.org/nominatim.git/blobdiff_plain/df7b81dc06bea97c926bf113d4dfe0f6e0669923..e286536959144de9ab18abf7dce7a58e630b3bbc:/utils/country_languages.php diff --git a/utils/country_languages.php b/utils/country_languages.php index 8360ae66..b1a7ab11 100755 --- a/utils/country_languages.php +++ b/utils/country_languages.php @@ -1,34 +1,33 @@ -#!/usr/bin/php -Cq +#!@PHP_BIN@ -Cq $s) - { - $aLanguages[$i] = '"'.pg_escape_string($s).'"'; - } - echo "UPDATE country_name set country_default_language_codes = '{".join(',',$aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n"; - } - } - } +include(CONST_InstallPath.'/settings/phrase_settings.php'); + +if (true) { + $sURL = 'https://wiki.openstreetmap.org/wiki/Special:Export/Nominatim/Country_Codes'; + $sWikiPageXML = file_get_contents($sURL); + if (preg_match_all('#\\| ([a-z]{2}) \\|\\| [^|]+\\|\\| ([a-z,]+)#', $sWikiPageXML, $aMatches, PREG_SET_ORDER)) { + foreach ($aMatches as $aMatch) { + $aLanguages = explode(',', $aMatch[2]); + foreach ($aLanguages as $i => $s) { + $aLanguages[$i] = '"'.pg_escape_string($s).'"'; + } + echo "UPDATE country_name set country_default_language_codes = '{".join(',', $aLanguages)."}' where country_code = '".pg_escape_string($aMatch[1])."';\n"; + } + } +}