'NL', 'currency' => 'EUR', 'phone_code' => 31, ]; /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'province'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Netherlands', 'wp-multisite-waas'); } /** * Returns the list of states for NL. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return [ 'BQ1' => __('Bonaire', 'wp-multisite-waas'), 'DR' => __('Drenthe', 'wp-multisite-waas'), 'FL' => __('Flevoland', 'wp-multisite-waas'), 'FR' => __('Friesland', 'wp-multisite-waas'), 'GE' => __('Gelderland', 'wp-multisite-waas'), 'GR' => __('Groningen', 'wp-multisite-waas'), 'LI' => __('Limburg', 'wp-multisite-waas'), 'NB' => __('North Brabant', 'wp-multisite-waas'), 'NH' => __('North Holland', 'wp-multisite-waas'), 'OV' => __('Overijssel', 'wp-multisite-waas'), 'BQ2' => __('Saba', 'wp-multisite-waas'), 'BQ3' => __('Sint Eustatius', 'wp-multisite-waas'), 'ZH' => __('South Holland', 'wp-multisite-waas'), 'UT' => __('Utrecht', 'wp-multisite-waas'), 'ZE' => __('Zeeland', 'wp-multisite-waas'), ]; } }