-// Set to false to avoid importing extra postcodes for the US.
-@define('CONST_Use_Extra_US_Postcodes', true);
-// Set to true after importing Tiger house number data for the US.
-// Note: The tables must already exist or queries will throw errors.
-// After changing this setting run ./utils/setup --create-functions
-// again.
+// Restrict search languages.
+// Normally Nominatim will include all language variants of name:XX
+// in the search index. Set this to a comma separated list of language
+// codes, to restrict import to a subset of languages.
+// Currently only affects the import of country names and special phrases.
+@define('CONST_Languages', false);
+// Rules for normalizing terms for comparison before doing comparisons.
+// The default is to remove accents and punctuation and to lower-case the
+// term. Spaces are kept but collapsed to one standard space.
+@define('CONST_Term_Normalization_Rules', ":: NFD (); [[:Nonspacing Mark:] [:Cf:]] >; :: lower (); [[:Punctuation:][:Space:]]+ > ' '; :: NFC ();");
+
+/* Set to true after importing Tiger house number data for the US.
+ Note: The tables must already exist or queries will throw errors.
+ After changing this setting run ./utils/setup --create-functions
+ again. */