'DE', 'currency' => 'EUR', 'phone_code' => 49, ]; /** * The type of nomenclature used to refer to the country sub-divisions. * * @since 2.0.11 * @var string */ protected $state_type = 'state'; /** * Return the country name. * * @since 2.0.11 * @return string */ public function get_name() { return __('Germany', 'wp-ultimo'); } /** * Returns the list of states for DE. * * @since 2.0.11 * @return array The list of state/provinces for the country. */ protected function states() { return [ 'BW' => __('Baden-Württemberg', 'wp-ultimo'), 'BY' => __('Bavaria', 'wp-ultimo'), 'BE' => __('Berlin', 'wp-ultimo'), 'BB' => __('Brandenburg', 'wp-ultimo'), 'HB' => __('Bremen', 'wp-ultimo'), 'HH' => __('Hamburg', 'wp-ultimo'), 'HE' => __('Hesse', 'wp-ultimo'), 'NI' => __('Lower Saxony', 'wp-ultimo'), 'MV' => __('Mecklenburg-Vorpommern', 'wp-ultimo'), 'NW' => __('North Rhine-Westphalia', 'wp-ultimo'), 'RP' => __('Rhineland-Palatinate', 'wp-ultimo'), 'SL' => __('Saarland', 'wp-ultimo'), 'SN' => __('Saxony', 'wp-ultimo'), 'ST' => __('Saxony-Anhalt', 'wp-ultimo'), 'SH' => __('Schleswig-Holstein', 'wp-ultimo'), 'TH' => __('Thuringia', 'wp-ultimo'), ]; } }