]> git.openstreetmap.org Git - nominatim.git/blobdiff - settings/phrase_settings.php
Merge branch 'PSR2-fixes-for-settings' of https://github.com/mtmail/Nominatim into...
[nominatim.git] / settings / phrase_settings.php
index a3447cc384b2e3270f19d7321105354b4c50309e..4ea5e021205a005c68d05bd40b1ecd4aefc83d8c 100644 (file)
@@ -1,51 +1,56 @@
 <?php
-# These settings control the import of special phrases from the wiki.
 
-# Languages to download the special phrases for.
-$aLanguageIn = array(
-                    'af',
-                    'ar',
-                    'br',
-                    'ca',
-                    'cs',
-                    'de',
-                    'en',
-                    'es',
-                    'et',
-                    'eu',
-                    'fa',
-                    'fi',
-                    'fr',
-                    'gl',
-                    'hr',
-                    'hu',
-                    'ia',
-                    'is',
-                    'it',
-                    'ja',
-                    'mk',
-                    'nl',
-                    'no',
-                    'pl',
-                    'ps',
-                    'pt',
-                    'ru',
-                    'sk',
-                    'sv',
-                    'uk',
-                    'vi',
-                );
+// These settings control the import of special phrases from the wiki.
 
-# class/type combinations to exclude
-$aTagsBlacklist = array(
+// Languages to download the special phrases for.
+$aLanguageIn
+ = array(
+    'af',
+    'ar',
+    'br',
+    'ca',
+    'cs',
+    'de',
+    'en',
+    'es',
+    'et',
+    'eu',
+    'fa',
+    'fi',
+    'fr',
+    'gl',
+    'hr',
+    'hu',
+    'ia',
+    'is',
+    'it',
+    'ja',
+    'mk',
+    'nl',
+    'no',
+    'pl',
+    'ps',
+    'pt',
+    'ru',
+    'sk',
+    'sv',
+    'uk',
+    'vi',
+   );
+
+// class/type combinations to exclude
+$aTagsBlacklist
+ = array(
     'boundary' => array('administrative'),
     'place' => array('house', 'houses'),
-);
-# If a class is in the white list then all types will 
-# be ignored except the ones given in the list.
-# Also use this list to exclude an entire class from
-# special phrases.
-$aTagsWhitelist = array(
+   );
+
+// If a class is in the white list then all types will 
+// be ignored except the ones given in the list.
+// Also use this list to exclude an entire class from
+// special phrases.
+$aTagsWhitelist
+ = array(
     'highway' => array('bus_stop', 'rest_area', 'raceway'),
     'building' => array(),
-);
+   );