├── .eslintignore ├── .gitattributes ├── .npm └── package │ ├── .gitignore │ └── npm-shrinkwrap.json ├── lib └── locales │ ├── az │ ├── name │ │ ├── prefix.js │ │ └── suffix.js │ ├── address │ │ ├── state.js │ │ ├── postcode.js │ │ ├── building_number.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── street_address.js │ │ ├── street_suffix.js │ │ └── street_name.js │ ├── company │ │ ├── suffix.js │ │ └── prefix.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ ├── free_email.js │ │ └── index.js │ └── date │ │ └── index.js │ ├── id_ID │ ├── name │ │ ├── prefix.js │ │ ├── female_title.js │ │ └── male_title.js │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ └── street_prefix.js │ ├── company │ │ ├── suffix.js │ │ ├── prefix.js │ │ └── name.js │ ├── internet │ │ └── free_email.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── it │ ├── name │ │ ├── suffix.js │ │ ├── first_name.js │ │ └── prefix.js │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── secondary_address.js │ │ ├── city_prefix.js │ │ ├── street_name.js │ │ └── street_address.js │ ├── company │ │ └── suffix.js │ ├── phone_number │ │ └── index.js │ └── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── mk │ ├── name │ │ ├── suffix.js │ │ ├── male_prefix.js │ │ ├── prefix.js │ │ └── female_prefix.js │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── street_name.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ └── street_address.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── internet │ │ └── free_email.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── ru │ ├── name │ │ ├── prefix.js │ │ └── suffix.js │ ├── address │ │ ├── postcode.js │ │ ├── building_number.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── street_address.js │ │ ├── street_suffix.js │ │ └── street_name.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── lorem │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── prefix.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── free_email.js │ └── date │ │ └── index.js │ ├── cz │ ├── address │ │ ├── state.js │ │ ├── state_abbr.js │ │ ├── city.js │ │ ├── street_name.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── postcode.js │ │ ├── secondary_address.js │ │ └── street_address.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── company │ │ └── suffix.js │ ├── lorem │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ ├── free_email.js │ │ └── index.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── sk │ ├── address │ │ ├── state.js │ │ ├── state_abbr.js │ │ ├── city.js │ │ ├── street_name.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── postcode.js │ │ ├── secondary_address.js │ │ ├── street_address.js │ │ └── city_prefix.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── company │ │ └── suffix.js │ ├── lorem │ │ └── index.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ └── phone_number │ │ ├── index.js │ │ └── formats.js │ ├── pt_PT │ ├── name │ │ ├── suffix.js │ │ ├── prefix.js │ │ ├── male_prefix.js │ │ └── female_prefix.js │ ├── address │ │ ├── city_prefix.js │ │ ├── city_suffix.js │ │ ├── city.js │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── street_address.js │ │ ├── building_number.js │ │ └── street_name.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── pt_BR │ ├── address │ │ ├── city_prefix.js │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── city_suffix.js │ │ ├── secondary_address.js │ │ └── street_suffix.js │ ├── name │ │ ├── binary_gender.js │ │ ├── suffix.js │ │ └── prefix.js │ ├── lorem │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── date │ │ └── index.js │ └── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── ur │ ├── address │ │ ├── city_suffix.js │ │ ├── postcode.js │ │ ├── postcode_by_state.js │ │ ├── building_number.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── street_address.js │ │ ├── state_abbr.js │ │ ├── street_suffix.js │ │ ├── city_prefix.js │ │ └── street_name.js │ ├── name │ │ ├── binary_gender.js │ │ └── prefix.js │ ├── vehicle │ │ ├── model.js │ │ ├── vehicle_type.js │ │ ├── bicycle.js │ │ └── fuel.js │ ├── finance │ │ ├── account_type.js │ │ └── transaction_type.js │ ├── animal │ │ ├── cow.js │ │ ├── insect.js │ │ ├── type.js │ │ ├── lion.js │ │ └── bear.js │ ├── app │ │ ├── author.js │ │ ├── version.js │ │ └── index.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── business │ │ ├── credit_card_types.js │ │ └── index.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── music │ │ ├── index.js │ │ └── genre.js │ ├── date │ │ └── index.js │ └── lorem │ │ └── index.js │ ├── nb_NO │ ├── address │ │ ├── state.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── city.js │ │ ├── street_address.js │ │ ├── postcode.js │ │ ├── secondary_address.js │ │ ├── street_prefix.js │ │ └── common_street_suffix.js │ ├── name │ │ ├── prefix.js │ │ └── suffix.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ └── phone_number │ │ ├── index.js │ │ └── formats.js │ ├── ne │ ├── address │ │ ├── postcode.js │ │ └── default_country.js │ ├── company │ │ ├── index.js │ │ └── suffix.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── free_email.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ └── name │ │ └── index.js │ ├── de_AT │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── street_name.js │ │ ├── street_address.js │ │ ├── secondary_address.js │ │ └── building_number.js │ ├── name │ │ ├── prefix.js │ │ └── nobility_title_prefix.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── phone_number │ │ └── index.js │ └── company │ │ ├── legal_form.js │ │ └── suffix.js │ ├── en_AU │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ └── state_abbr.js │ ├── company │ │ ├── index.js │ │ └── suffix.js │ ├── internet │ │ ├── index.js │ │ └── domain_suffix.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── name │ │ └── index.js │ ├── es │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ └── street_name.js │ ├── name │ │ └── prefix.js │ ├── company │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ └── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── fr │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_address.js │ │ └── building_number.js │ ├── lorem │ │ └── index.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── name │ │ ├── prefix.js │ │ └── name.js │ ├── company │ │ ├── name.js │ │ └── suffix.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── ge │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_address.js │ │ ├── city_prefix.js │ │ ├── city_suffix.js │ │ └── street_suffix.js │ ├── company │ │ ├── prefix.js │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── name │ │ └── prefix.js │ ├── cell_phone │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── he │ ├── address │ │ ├── country_code.js │ │ ├── county.js │ │ ├── default_country.js │ │ ├── postcode.js │ │ ├── city_suffix.js │ │ ├── postcode_by_state.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ ├── city_prefix.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ └── direction_abbr.js │ ├── music │ │ └── index.js │ ├── name │ │ └── prefix.js │ ├── cell_phone │ │ └── index.js │ ├── phone_number │ │ └── index.js │ ├── date │ │ └── index.js │ └── lorem │ │ └── index.js │ ├── hr │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── street_name.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ └── street_address.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── date │ │ └── index.js │ ├── nl │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── street_address.js │ │ ├── city.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ └── street_suffix.js │ ├── lorem │ │ └── index.js │ ├── company │ │ ├── index.js │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── name │ │ ├── prefix.js │ │ ├── suffix.js │ │ └── tussenvoegsel.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── date │ │ └── index.js │ ├── nl_BE │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── street_address.js │ │ ├── city.js │ │ ├── city_suffix.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ ├── street_name.js │ │ ├── street_suffix.js │ │ ├── state_abbr.js │ │ └── state.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ └── phone_number │ │ └── index.js │ ├── pl │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── street_prefix.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── building_number.js │ │ └── street_address.js │ ├── name │ │ └── prefix.js │ ├── lorem │ │ └── index.js │ ├── company │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── cell_phone │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── ro │ ├── address │ │ ├── postcode.js │ │ ├── building_number.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_suffix.js │ │ └── street_address.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── internet │ │ └── free_email.js │ ├── cell_phone │ │ └── index.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── sv │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── city.js │ │ ├── building_number.js │ │ ├── common_street_suffix.js │ │ ├── secondary_address.js │ │ ├── street_address.js │ │ ├── street_suffix.js │ │ └── street_prefix.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── name │ │ └── prefix.js │ ├── cell_phone │ │ ├── formats.js │ │ └── common_cell_prefix.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ ├── date │ │ └── index.js │ └── company │ │ └── index.js │ ├── tr │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── street_name.js │ │ ├── street_address.js │ │ └── building_number.js │ ├── lorem │ │ └── index.js │ ├── name │ │ └── prefix.js │ ├── phone_number │ │ └── formats.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ └── internet │ │ ├── index.js │ │ └── domain_suffix.js │ ├── uk │ ├── address │ │ ├── city_suffix.js │ │ ├── postcode.js │ │ ├── street_suffix.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ ├── city.js │ │ ├── city_prefix.js │ │ └── street_name.js │ ├── name │ │ └── prefix.js │ ├── company │ │ ├── suffix.js │ │ └── prefix.js │ └── phone_number │ │ └── index.js │ ├── ar │ ├── address │ │ ├── city.js │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── postcode_by_state.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ └── secondary_address.js │ ├── vehicle │ │ └── fuel.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── name │ │ ├── prefix.js │ │ └── name.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── de_CH │ ├── address │ │ ├── city.js │ │ └── default_country.js │ ├── name │ │ └── prefix.js │ ├── internet │ │ ├── index.js │ │ └── domain_suffix.js │ ├── phone_number │ │ └── index.js │ └── company │ │ └── index.js │ ├── en_GH │ ├── address │ │ ├── city.js │ │ ├── default_country.js │ │ ├── street_prefix.js │ │ ├── building_number.js │ │ ├── postcode.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ └── street_suffix.js │ ├── company │ │ ├── suffix.js │ │ ├── name.js │ │ └── index.js │ ├── name │ │ └── first_name.js │ ├── internet │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── en_IND │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ └── default_country.js │ ├── company │ │ ├── index.js │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ ├── phone_number │ │ └── index.js │ └── name │ │ └── index.js │ ├── es_MX │ ├── address │ │ ├── postcode.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ └── street_address.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── name │ │ └── prefix.js │ ├── lorem │ │ └── index.js │ ├── company │ │ └── suffix.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── internet │ │ ├── domain_suffix.js │ │ └── free_email.js │ ├── fa │ ├── address │ │ ├── city.js │ │ ├── default_country.js │ │ ├── postcode.js │ │ ├── building_number.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_prefix.js │ │ ├── city_prefix.js │ │ ├── city_suffix.js │ │ └── street_address.js │ ├── name │ │ └── prefix.js │ ├── lorem │ │ └── index.js │ ├── finance │ │ ├── credit_card │ │ │ ├── visa.js │ │ │ └── mastercard.js │ │ ├── transaction_type.js │ │ └── account_type.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── example_email.js │ ├── vehicle │ │ └── fuel.js │ ├── cell_phone │ │ └── index.js │ ├── company │ │ └── suffix.js │ ├── phone_number │ │ └── index.js │ └── date │ │ └── index.js │ ├── fr_BE │ ├── adresses │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── street_address.js │ │ ├── city.js │ │ └── city_suffix.js │ ├── name │ │ ├── prefix.js │ │ └── suffix.js │ ├── cell_phone │ │ └── index.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ └── phone_number │ │ └── index.js │ ├── fr_CH │ ├── address │ │ ├── city.js │ │ ├── country_code.js │ │ └── default_country.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── ja │ ├── address │ │ ├── postcode.js │ │ ├── city_suffix.js │ │ ├── city_prefix.js │ │ └── street_name.js │ ├── name │ │ └── name.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── lorem │ │ └── index.js │ ├── vi │ ├── address │ │ ├── city.js │ │ ├── postcode.js │ │ └── default_country.js │ ├── company │ │ ├── name.js │ │ ├── index.js │ │ └── prefix.js │ ├── lorem │ │ └── index.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ ├── date │ │ └── index.js │ └── name │ │ └── name.js │ ├── zh_CN │ ├── address │ │ ├── default_country.js │ │ ├── postcode.js │ │ ├── city.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ ├── building_number.js │ │ └── street_suffix.js │ ├── name │ │ └── name.js │ └── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── zh_TW │ ├── address │ │ ├── postcode.js │ │ ├── state.js │ │ ├── city_suffix.js │ │ ├── city.js │ │ ├── default_country.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ ├── building_number.js │ │ └── street_suffix.js │ ├── name │ │ └── name.js │ └── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── de │ ├── address │ │ ├── street_name.js │ │ ├── default_country.js │ │ ├── postcode.js │ │ ├── street_address.js │ │ ├── secondary_address.js │ │ ├── city_suffix.js │ │ ├── building_number.js │ │ └── city_prefix.js │ ├── lorem │ │ └── index.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── name │ │ ├── prefix.js │ │ └── nobility_title_prefix.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ ├── date │ │ └── index.js │ └── company │ │ ├── suffix.js │ │ └── legal_form.js │ ├── el │ ├── address │ │ ├── default_country.js │ │ └── index.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── app │ │ ├── author.js │ │ ├── version.js │ │ └── index.js │ ├── lorem │ │ └── index.js │ ├── credit_card │ │ ├── visa.js │ │ ├── american_express.js │ │ ├── mastercard.js │ │ └── maestro.js │ ├── name │ │ └── prefix.js │ ├── company │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ ├── domain_suffix.js │ │ └── index.js │ ├── finance │ │ ├── account_type.js │ │ ├── currency.js │ │ └── transaction_type.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── business │ │ ├── credit_card_types.js │ │ ├── credit_card_expiry_dates.js │ │ └── credit_card_numbers.js │ └── phone_number │ │ └── index.js │ ├── en │ ├── name │ │ ├── binary_gender.js │ │ └── prefix.js │ ├── team │ │ ├── name.js │ │ └── index.js │ ├── address │ │ ├── postcode.js │ │ ├── default_country.js │ │ ├── postcode_by_state.js │ │ ├── secondary_address.js │ │ ├── building_number.js │ │ ├── street_address.js │ │ ├── street_name.js │ │ ├── city_prefix.js │ │ ├── direction_abbr.js │ │ └── county.js │ ├── app │ │ ├── author.js │ │ ├── version.js │ │ └── index.js │ ├── finance │ │ ├── credit_card │ │ │ ├── instapayment.js │ │ │ ├── visa.js │ │ │ ├── american_express.js │ │ │ ├── mastercard.js │ │ │ ├── diners_club.js │ │ │ ├── jcb.js │ │ │ ├── solo.js │ │ │ └── switch.js │ │ └── transaction_type.js │ ├── music │ │ └── index.js │ ├── company │ │ └── suffix.js │ ├── internet │ │ ├── free_email.js │ │ ├── example_email.js │ │ └── domain_suffix.js │ ├── vehicle │ │ └── fuel.js │ ├── cell_phone │ │ ├── index.js │ │ └── formats.js │ ├── business │ │ ├── credit_card_types.js │ │ ├── credit_card_expiry_dates.js │ │ └── credit_card_numbers.js │ ├── phone_number │ │ └── index.js │ ├── date │ │ └── index.js │ ├── database │ │ └── engine.js │ ├── lorem │ │ └── index.js │ └── system │ │ └── index.js │ ├── en_CA │ ├── address │ │ └── default_country.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ └── phone_number │ │ └── index.js │ ├── en_IE │ ├── address │ │ ├── default_country.js │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ ├── cell_phone │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── en_NG │ ├── address │ │ ├── city.js │ │ ├── postcode.js │ │ └── default_country.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── name │ │ └── name.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ └── phone_number │ │ ├── index.js │ │ └── formats.js │ ├── en_ZA │ ├── address │ │ ├── city.js │ │ ├── postcode.js │ │ └── default_country.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── name │ │ └── name.js │ ├── cell_phone │ │ └── index.js │ └── internet │ │ ├── domain_suffix.js │ │ └── index.js │ ├── fr_CA │ ├── address │ │ └── default_country.js │ ├── internet │ │ ├── free_email.js │ │ └── domain_suffix.js │ └── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── ko │ ├── company │ │ ├── prefix.js │ │ ├── name.js │ │ └── suffix.js │ ├── address │ │ ├── city.js │ │ ├── postcode.js │ │ ├── city_suffix.js │ │ ├── street_suffix.js │ │ └── street_name.js │ ├── name │ │ └── name.js │ ├── lorem │ │ └── index.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ └── internet │ │ └── free_email.js │ ├── lv │ ├── address │ │ ├── city.js │ │ ├── default_country.js │ │ ├── building_number.js │ │ ├── postcode.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_suffix.js │ │ └── street_address.js │ ├── name │ │ ├── suffix.js │ │ └── prefix.js │ ├── cell_phone │ │ ├── formats.js │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── prefix.js │ ├── internet │ │ └── domain_suffix.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── date │ │ └── index.js │ └── lorem │ │ └── index.js │ ├── af_ZA │ ├── address │ │ ├── default_country.js │ │ ├── postcode.js │ │ └── index.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── cell_phone │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── en_AU_ocker │ ├── address │ │ ├── city.js │ │ ├── default_country.js │ │ ├── street_name.js │ │ ├── building_number.js │ │ ├── street_root.js │ │ ├── postcode.js │ │ └── state_abbr.js │ ├── company │ │ ├── index.js │ │ └── suffix.js │ ├── internet │ │ ├── index.js │ │ └── domain_suffix.js │ ├── phone_number │ │ ├── index.js │ │ └── formats.js │ └── name │ │ └── ocker_first_name.js │ ├── zu_ZA │ ├── address │ │ ├── default_country.js │ │ └── postcode.js │ ├── company │ │ ├── suffix.js │ │ └── index.js │ ├── cell_phone │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── en_GB │ ├── address │ │ ├── postcode.js │ │ ├── uk_country.js │ │ └── default_country.js │ ├── cell_phone │ │ └── index.js │ ├── internet │ │ ├── domain_suffix.js │ │ └── index.js │ └── phone_number │ │ └── index.js │ ├── hy │ ├── address │ │ ├── default_country.js │ │ ├── street_suffix.js │ │ ├── city_suffix.js │ │ ├── secondary_address.js │ │ ├── street_name.js │ │ ├── street_address.js │ │ ├── city.js │ │ ├── building_number.js │ │ └── city_prefix.js │ ├── lorem │ │ └── index.js │ ├── phone_number │ │ ├── formats.js │ │ └── index.js │ ├── commerce │ │ └── index.js │ ├── internet │ │ ├── index.js │ │ └── domain_suffix.js │ └── date │ │ └── index.js │ ├── en_BORK │ ├── lorem │ │ └── index.js │ └── index.js │ ├── fi │ └── index.js │ └── en_US │ ├── address │ └── default_country.js │ └── internet │ ├── index.js │ └── domain_suffix.js ├── logo.png ├── index.d.ts ├── docs ├── playground │ └── index.md ├── public │ └── first-week-wins.png └── .vitepress │ └── theme │ └── components │ └── index.mjs ├── doc ├── img │ ├── glyphicons-halflings.png │ └── glyphicons-halflings-white.png └── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── .vscode └── extensions.json ├── .prettierignore ├── test └── mocha.opts └── netlify.toml /.eslintignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * -crlf -------------------------------------------------------------------------------- /.npm/package/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /lib/locales/az/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/az/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/id_ID/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; -------------------------------------------------------------------------------- /lib/locales/it/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/mk/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/ru/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/ru/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/cz/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/sk/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/logo.png -------------------------------------------------------------------------------- /lib/locales/cz/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | ]; 3 | -------------------------------------------------------------------------------- /lib/locales/sk/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = []; 2 | -------------------------------------------------------------------------------- /lib/locales/az/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | ]; 3 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | ]; 3 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | ]; 3 | -------------------------------------------------------------------------------- /lib/locales/ur/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['ٹاوْن']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/address/postcode.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['#####']; 2 | -------------------------------------------------------------------------------- /lib/locales/cz/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Phd." 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ne/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 0 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Phd." 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/address/postcode_by_state.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['#####']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/name/binary_gender.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["عورت", "مرد"]; 2 | -------------------------------------------------------------------------------- /lib/locales/az/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "AZ####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ge/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "01##" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/country_code.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hr/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; -------------------------------------------------------------------------------- /lib/locales/it/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#### ??" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pl/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "##-###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ro/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "######" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "######" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sv/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/tr/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "град" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/vehicle/model.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["کرولا", "اکورڈ", "سوک"]; 2 | -------------------------------------------------------------------------------- /lib/locales/ar/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/cz/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/cz/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_CH/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_IND/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "### ###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fa/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fa/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ایران" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fa/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####-#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/adresses/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/address/country_code.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "CH", 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hr/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hr/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ja/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###-####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ne/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Nepal" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pl/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pl/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pan", 3 | "Pani" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####-###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####-###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ro/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Jr.", 3 | "Sr." 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ru/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "майдан" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Пан", 3 | "Пані" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ur/finance/account_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["Savings", "Current"]; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["محترم.", "محترمہ.", "ڈاکٹر"]; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/vehicle/vehicle_type.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['ہیچ بیک', 'سواری']; 2 | -------------------------------------------------------------------------------- /lib/locales/vi/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_root}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/vi/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "中国" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "######" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "######" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ar/vehicle/fuel.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["ديزل", "كهربائي", "بنزين", "هجين"]; 2 | -------------------------------------------------------------------------------- /lib/locales/az/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Azərbaycan" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "m. ###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_root}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_CH/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Schweiz" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/el/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ελλάδα" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en/name/binary_gender.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Female", 3 | "Male" 4 | ]; -------------------------------------------------------------------------------- /lib/locales/en_CA/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Canada" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ghana", 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Boame", 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_IE/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ireland" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_IND/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}" 3 | ]; 4 | 5 | -------------------------------------------------------------------------------- /lib/locales/en_NG/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "España" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "México" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "France" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CA/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Canada" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Suisse" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ge/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "საქართველო" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hr/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Hrvatska" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/it/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Italia" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ko/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "주식회사", 3 | "한국" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/lv/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/lv/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Latvija" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/lv/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "k-dze", 3 | "kundze" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/mk/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Македонија" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Norge" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dr.", 3 | "Prof." 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Nederland" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "België" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "MBA", 3 | "Phd." 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pl/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Polska" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Brasil" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ro/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Bloc ##" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ro/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "România" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.city_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Россия" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "кв. ###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Slovensko" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sv/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sverige" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/tr/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Türkiye" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/tr/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_root}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Україна" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "кв. ###" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/address/building_number.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['#####', '####', '###']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/address/default_country.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['اسلامی جمہوریہ پاکستان']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['گھر. ###', 'گلی ###']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/animal/cow.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['گائے', 'نیلی گاٗیے', 'امریکی گاٗیے']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/animal/insect.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['شہد کی مکھی', 'مکھی', 'چیونٹی']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/app/author.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['#{Name.name}', '#{Company.name}']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/vehicle/bicycle.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["سہراب سائکل", "چائنہ سائکل"]; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/vehicle/fuel.js: -------------------------------------------------------------------------------- 1 | module["exports"] = ["ڈیزل", "بجلی", "پیٹرول", "شمسی"]; 2 | -------------------------------------------------------------------------------- /lib/locales/vi/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Việt Nam" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "福建省", 3 | "台灣省" 4 | ]; 5 | -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- 1 | import { Faker } from './lib'; 2 | declare const faker: Faker; 3 | export = faker; 4 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "South Africa" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ar/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.state} #{creature}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(9##)###-##-##" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/cz/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Česká republika" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Deutschland" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Österreich" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_root}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dr.", 3 | "Prof. Dr." 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/el/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.state} #{creature}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.state} #{creature}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Australia" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Venture", 3 | "Ltd", 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_NG/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fa/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "##", 3 | "#" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/adresses/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Belgique" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/county.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Not relevant for Israel" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "מדינת ישראל" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#######" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/hr/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "dipl.oecc", 3 | "dipl.ing" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Indonesia" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(Persero) Tbk", 3 | "Tbk" 4 | ]; -------------------------------------------------------------------------------- /lib/locales/ja/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{last_name} #{first_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ko/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}#{city_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ko/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###-###", 3 | "#####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ko/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{last_name} #{first_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/lv/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pl/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ul.", 3 | "al." 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Portugal" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(9##)###-##-##" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sv/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.city} #{suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/app/version.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['0.#.#', '0.##', '#.##', '#.#', '#.#.#']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.state} #{creature}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{first_name}#{last_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "縣", 3 | "市" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{first_name}#{last_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "South Africa" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ar/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#####-####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/de_CH/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Hr.", 3 | "Fr.", 4 | "Dr." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#####-####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Australia" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_root}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/es/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sr.", 3 | "Sra.", 4 | "Sta." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/es_MX/team/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.state} #{creature}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fa/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "آقای", 3 | "خانم", 4 | "دکتر" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "##", 3 | "#" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ko/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "구", 3 | "시", 4 | "군" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/lv/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "LV####", 3 | "LV-####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_root}#{city_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ro/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dl", 3 | "Dna", 4 | "Dra" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sv/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}#{city_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sv/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dr.", 3 | "Prof.", 4 | "PhD." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ur/address/street_address.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['#{building_number} #{street_name}']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/animal/type.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['bear', 'lion', 'insect', 'crocodilia', 'cow']; 2 | -------------------------------------------------------------------------------- /lib/locales/vi/company/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{prefix} #{Name.last_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}#{city_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}#{city_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Taiwan (R.O.C.)" 3 | ]; 4 | -------------------------------------------------------------------------------- /docs/playground/index.md: -------------------------------------------------------------------------------- 1 | --- 2 | sidebar: false 3 | --- 4 | 5 | 6 | -------------------------------------------------------------------------------- /lib/locales/ar/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "المملكة العربية السعودية" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ASC", 3 | "MMC", 4 | "QSC", 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/el/app/author.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.name}", 3 | "#{Company.name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "United States of America" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en/app/author.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.name}", 3 | "#{Company.name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_GB/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "??# #??", 3 | "??## #??", 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/es_MX/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sr.", 3 | "Sra.", 4 | "Sta." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fa/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "واحد #", 3 | "# طبقه" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/he/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "", 3 | "חדשה", 4 | "עלית" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/he/address/postcode_by_state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#######" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/hr/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Kat #", 3 | "Stan ##" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/hy/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Արցախի Հանրապետություն" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hy/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | " փողոց", 3 | " պողոտա" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ko/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "읍", 3 | "면", 4 | "동" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/lv/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "dz. ###", 3 | "- ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/lv/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Prof.", 3 | "Dr.", 4 | "Biedrs" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/mk/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "кат #", 3 | "стан ##" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/mk/name/male_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "г-дин", 3 | "д-р", 4 | "м-р", 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/name/binary_gender.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Feminino", 3 | "Masculino" 4 | ]; -------------------------------------------------------------------------------- /lib/locales/pt_BR/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Jr.", 3 | "Neto", 4 | "Filho" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ro/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ap. ##", 3 | "Ap. ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ro/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_suffix} #{streets}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sv/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{common_cell_prefix}-###-####" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['KP', 'ICT', 'J&K', 'GB', 'PB', 'SD', 'BA']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['گاوْں', 'گلی', 'آباد', 'کالونی', 'گھڑی']; 2 | -------------------------------------------------------------------------------- /doc/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /docs/public/first-week-wins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/docs/public/first-week-wins.png -------------------------------------------------------------------------------- /lib/locales/af_ZA/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pty Ltd", 3 | "Ltd", 4 | "CC" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ar/address/postcode_by_state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#####-####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/cz/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/cz/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "### ##", 4 | "###-##" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/cz/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Suite ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/cz/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "s.r.o.", 3 | "a.s.", 4 | "v.o.s." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/address/postcode_by_state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "#####-####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Suite ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "??-###-####", 3 | "??-####-####", 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_NG/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Venture", 3 | "Ltd", 4 | "Plc" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pty Ltd", 3 | "Ltd", 4 | "CC" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/es/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Esc. ###", 3 | "Puerta ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fa/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "# étage" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fr/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ge/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ge/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "კორპ. ##", 3 | "შენობა ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ge/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_title} #{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/hr/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/hy/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 'ակերտ', 3 | 'աշեն', 4 | 'աշատ' 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/hy/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Բն. ###", 3 | "Տուն ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/hy/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name} #{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hy/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); -------------------------------------------------------------------------------- /lib/locales/it/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/it/name/first_name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/lib/locales/it/name/first_name.js -------------------------------------------------------------------------------- /lib/locales/ja/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "市", 3 | "区", 4 | "町", 5 | "村" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ko/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_root}#{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/mk/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{female_prefix}", 3 | "#{male_prefix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pl/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Suite ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/pl/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{Name.last_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sk/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "### ##", 4 | "## ###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sk/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Suite ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/sk/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "s.r.o.", 3 | "a.s.", 4 | "v.o.s." 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sv/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sv/address/common_street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "s Väg", 3 | "s Gata" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/sv/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Lgh. ###", 3 | "Hus ###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/sv/cell_phone/common_cell_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 56, 3 | 62, 4 | 59 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sv/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####-#####", 3 | "####-######" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/uk/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pty Ltd", 3 | "Ltd", 4 | "CC" 5 | ]; 6 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": ["editorconfig.editorconfig", "esbenp.prettier-vscode"] 3 | } 4 | -------------------------------------------------------------------------------- /lib/locales/ar/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ar/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{building_number} #{street_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/az/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}, #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/cz/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/cz/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/de/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/el/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/en/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{building_number} #{street_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/instapayment.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "63[7-9]#-####-####-###L" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/en/music/index.js: -------------------------------------------------------------------------------- 1 | var music = {}; 2 | module['exports'] = music; 3 | music.genre = require("./genre"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "###", 4 | "##" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{building_number} #{street_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fa/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{building_number} #{street_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/fr/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Mr.", 3 | "Dr.", 4 | "Prof.", 5 | "P." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ge/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ge/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "შპს", 3 | "სს", 4 | "ააიპ", 5 | "სსიპ" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/he/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{building_number} #{street_name}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/he/music/index.js: -------------------------------------------------------------------------------- 1 | var music = {}; 2 | module['exports'] = music; 3 | music.genre = require("./genre"); 4 | -------------------------------------------------------------------------------- /lib/locales/hr/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hy/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+374 ## ######", 3 | "+374 ### #####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} no #{building_number}" 3 | ]; -------------------------------------------------------------------------------- /lib/locales/id_ID/name/female_title.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "dr.", 3 | "drg.", 4 | "Dr.", 5 | "Hj." 6 | ]; -------------------------------------------------------------------------------- /lib/locales/it/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Appartamento ##", 3 | "Piano #" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/it/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sig.", 3 | "Dott.", 4 | "Dr.", 5 | "Ing." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ko/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/mk/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "07# ### ####", 3 | "+389 7# ### ####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/mk/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ДОО", 3 | "ДООЕЛ", 4 | "АД", 5 | "ТП" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/nl/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pl/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pl/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pl/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####", 4 | "###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{female_prefix}", 3 | "#{male_prefix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ru/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}, #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module["exports"] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/sk/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/sk/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/sv/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/tr/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/tr/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}, #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ur/business/credit_card_types.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['visa', 'mastercard', 'link one', 'paypak']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['+92 ###-###-####', '03## ### ####', '03#########']; 2 | -------------------------------------------------------------------------------- /lib/locales/ur/music/index.js: -------------------------------------------------------------------------------- 1 | var music = {}; 2 | module['exports'] = music; 3 | music.genre = require("./genre"); 4 | -------------------------------------------------------------------------------- /lib/locales/vi/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/vi/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "02# #### ####", 3 | "02## #### ####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}#{building_number}号" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name}#{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}#{building_number}號" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name}#{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | dist/ 3 | doc/ 4 | examples/browser/js/ 5 | lib/ 6 | CHANGELOG.md 7 | package-lock.json 8 | -------------------------------------------------------------------------------- /doc/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /lib/locales/cz/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ing.", 3 | "Mgr.", 4 | "JUDr.", 5 | "MUDr." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/de/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+49-1##-#######", 3 | "+49-1###-########" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/de/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Hr.", 3 | "Fr.", 4 | "Dr.", 5 | "Prof. Dr." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/credit_card/visa.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "/4###########L/", 3 | "/4###-####-####-###L/" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/el/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Κυρία", 3 | "Δυς", 4 | "Κύριος", 5 | "Δόκτορ" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Inc", 3 | "and Sons", 4 | "LLC", 5 | "Group" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "###", 4 | "##" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_BORK/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/name/first_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | '#{female_first_name}', 3 | '#{male_first_name}', 4 | ]; -------------------------------------------------------------------------------- /lib/locales/es_MX/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/fi/index.js: -------------------------------------------------------------------------------- 1 | var fi = {}; 2 | module['exports'] = fi; 3 | fi.title = "Finnish"; 4 | fi.name = require("./name"); -------------------------------------------------------------------------------- /lib/locales/fr/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "###", 4 | "##", 5 | "#" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/adresses/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/hr/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "09# ### ####", 3 | "+385 9# ### ####" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/lv/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Address.street_title} #{street_suffix}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/mk/name/female_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "г-ѓа", 3 | "г-ца", 4 | "д-р", 5 | "м-р", 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "NV", 3 | "BVBA", 4 | "CVBA", 5 | "VZW" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dr.", 3 | "Ir.", 4 | "Ing.", 5 | "Prof." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/pl/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Inc", 3 | "and Sons", 4 | "LLC", 5 | "Group" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | -------------------------------------------------------------------------------- /lib/locales/sk/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ing.", 3 | "Mgr.", 4 | "JUDr.", 5 | "MUDr." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/tr/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Bay", 3 | "Bayan", 4 | "Dr.", 5 | "Prof. Dr." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ur/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module['exports'] = ['مشرق', 'مغرب', 'شمال', 'جنوب', 'نیا', 'جھیل', 'بندرگاہ']; 2 | -------------------------------------------------------------------------------- /lib/locales/de/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Zimmer ###", 4 | "# OG" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/de/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/el/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ε.Π.Ε.", 3 | "Α.Ε.", 4 | "και Υιοί", 5 | "Όμιλος" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/visa.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "4###########L", 3 | "4###-####-####-###L" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Mr.", 3 | "Mrs.", 4 | "Ms.", 5 | "Miss", 6 | "Dr." 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/es/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "S.L.", 3 | "e Hijos", 4 | "S.A.", 5 | "Hermanos" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fa/finance/credit_card/visa.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "4###########L", 3 | "4###-####-####-###L" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fa/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fa/vehicle/fuel.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "دیزل", 3 | "الکتریکی", 4 | "بنزین", 5 | "هیبرید" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fr/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.fr", 4 | "hotmail.fr" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fr/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "M", 3 | "Mme", 4 | "Mlle", 5 | "Dr", 6 | "Prof" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/adresses/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}", 3 | "#{city_prefix}#{city_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ge/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ახალი", 3 | "ძველი", 4 | "ზემო", 5 | "ქვემო" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ge/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "სოფელი", 3 | "ძირი", 4 | "სკარი", 5 | "დაბა" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ge/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "posta.ge" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ge/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ბ-ნი", 3 | "ბატონი", 4 | "ქ-ნი", 5 | "ქალბატონი" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/he/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "צפון", 3 | "מזרח", 4 | "מערב", 5 | "דרום" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/he/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Mr.", 3 | "Mrs.", 4 | "Ms.", 5 | "Miss", 6 | "Dr." 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/hr/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "hrnet.hr", 4 | "mailhr.hr" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/hr/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "g.", 3 | "gđa.", 4 | "gđa.", 5 | "gđa", 6 | "dr." 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/hy/commerce/index.js: -------------------------------------------------------------------------------- 1 | var commerce = {}; 2 | module['exports'] = commerce; 3 | commerce.color = require("./color"); -------------------------------------------------------------------------------- /lib/locales/id_ID/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "PT", 3 | "CV", 4 | "UD", 5 | "PD", 6 | "Perum" 7 | ]; -------------------------------------------------------------------------------- /lib/locales/it/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "SPA", 3 | "e figli", 4 | "Group", 5 | "s.r.l." 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "####", 4 | "####", 5 | "0###" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "no", 3 | "com", 4 | "net", 5 | "org" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ne/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/ne/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pvt Ltd", 3 | "Group", 4 | "Ltd", 5 | "Limited" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}#{city_suffix}", 3 | "#{city_prefix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/nl/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix}", 3 | "#{city_prefix}#{city_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gem", 3 | "tem", 4 | "vijve", 5 | "zele" 6 | ] 7 | -------------------------------------------------------------------------------- /lib/locales/pl/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "###", 4 | "##", 5 | "#" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/name/male_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sr.", 3 | "Dr.", 4 | "Prof.", 5 | "Eng.º", 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ro/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Aleea", 3 | "Bulevardul", 4 | "Intrarea" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ro/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/sk/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "zoznam.sk", 4 | "azet.sk" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/tr/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+90-###-###-##-##", 3 | "+90-###-###-#-###" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "####", 3 | "###", 4 | "##", 5 | "#" 6 | ]; 7 | -------------------------------------------------------------------------------- /doc/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /doc/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /doc/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /lib/locales/af_ZA/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/de/name/nobility_title_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "zu", 3 | "von", 4 | "vom", 5 | "von der" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apt. ###", 3 | "Zimmer ###", 4 | "# OG" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/de_AT/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/el/app/version.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0.#.#", 3 | "0.##", 4 | "#.##", 5 | "#.#", 6 | "#.#.#" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/el/finance/account_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Καταθετικός", 3 | "Μισθοδοσίας", 4 | "Δανειακός" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/app/version.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0.#.#", 3 | "0.##", 4 | "#.##", 5 | "#.#", 6 | "#.#.#" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/en/vehicle/fuel.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Diesel", 3 | "Electric", 4 | "Gasoline", 5 | "Hybrid" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_AU/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_CA/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.ca", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_IND/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_NG/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/es_MX/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "S.L.", 3 | "e Hijos", 4 | "S.A.", 5 | "Hermanos" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fa/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "خیابان", 3 | "کوچه", 4 | "بن بست", 5 | "بلوار" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/adresses/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "centre", 3 | "plage", 4 | "Sud", 5 | "Nord" 6 | ] 7 | -------------------------------------------------------------------------------- /lib/locales/fr_CA/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.ca", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ge/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ჯგუფი", 3 | "და კომპანია", 4 | "სტუდია", 5 | "გრუპი" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/hy/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{address.street_name} #{address.building_number}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/lv/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "2#######", 3 | "(371) 2#######", 4 | "+371 2#######" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sr.", 3 | "Sra.", 4 | "Srta.", 5 | "Dr.", 6 | "Dra." 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/name/female_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Sra.", 3 | "Dra.", 4 | "Prof.ª", 5 | "Eng.ª" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/uk/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_name}", 3 | "#{city_prefix} #{Name.male_first_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /.npm/package/npm-shrinkwrap.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "faker": { 4 | "version": "3.0.1" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /doc/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antfu/faker/main/doc/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /lib/locales/ar/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "سيد", 3 | "سيدة", 4 | "آنسة", 5 | "دكتور", 6 | "بروفيسور" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/cz/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "cz", 3 | "com", 4 | "net", 5 | "eu", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/de_AT/name/nobility_title_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "zu", 3 | "von", 4 | "vom", 5 | "von der" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/credit_card/american_express.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "/34##-######-####L/", 3 | "/37##-######-####L/" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/el/credit_card/mastercard.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "/5[1-5]##-####-####-###L/", 3 | "/6771-89##-####-###L/" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/el/finance/currency.js: -------------------------------------------------------------------------------- 1 | module["exports"] = { 2 | "Ευρώ": { 3 | "code": "EUR", 4 | "symbol": "€" 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /lib/locales/el/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gr", 3 | "com", 4 | "biz", 5 | "info", 6 | "name" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/en/internet/example_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "example.org", 3 | "example.com", 4 | "example.net" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_IND/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.co.in", 4 | "hotmail.com" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_NG/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{first_name} #{last_name}", 3 | "#{last_name} #{first_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{first_name} #{last_name}", 3 | "#{last_name} #{first_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Esc. ###", 3 | "Puerta ###", 4 | "Edificio #" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fa/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "ir", 4 | "info", 5 | "net", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/fa/internet/example_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "example.org", 3 | "example.com", 4 | "example.net" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Fils", 3 | "I", 4 | "II", 5 | "III", 6 | "IV", 7 | "V" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/hr/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "hr", 3 | "com", 4 | "net", 5 | "eu", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/ja/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "090-####-####", 3 | "080-####-####", 4 | "070-####-####" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ko/company/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{prefix} #{Name.first_name}", 3 | "#{Name.first_name} #{suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ko/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0#-#####-####", 3 | "0##-###-####", 4 | "0##-####-####" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/lv/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "un partneri", 3 | "holdings", 4 | "grupa", 5 | "aģentūra" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/lv/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "lv", 3 | "com", 4 | "info", 5 | "net", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/lv/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(371)6#######", 3 | "+371 6#######", 4 | "6#######" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Leil. ###", 3 | "Oppgang A", 4 | "Oppgang B" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ne/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "np", 3 | "com", 4 | "info", 5 | "net", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/ne/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "##-#######", 3 | "+977-#-#######", 4 | "+977########" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/nl/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "nl", 3 | "com", 4 | "net", 5 | "org", 6 | "eu" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/nl/name/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Dhr.", 3 | "Mevr. Dr.", 4 | "Bsc", 5 | "Msc", 6 | "Prof." 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/ro/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}, #{building_number}, #{secondary_address}" 3 | ]; 4 | -------------------------------------------------------------------------------- /lib/locales/ru/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Снаб", 3 | "Торг", 4 | "Пром", 5 | "Трейд", 6 | "Сбыт" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/sk/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "sk", 3 | "com", 4 | "net", 5 | "eu", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/sv/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "se", 3 | "nu", 4 | "info", 5 | "com", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/uk/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Постач", 3 | "Торг", 4 | "Пром", 5 | "Трейд", 6 | "Збут" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0#-#######", 3 | "02-########", 4 | "09##-######" 5 | ]; 6 | -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --ui bdd 3 | --globals state,newBlocks,params,type,__coverage__ 4 | --timeout 6500 5 | --slow 200 6 | -------------------------------------------------------------------------------- /lib/locales/ar/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "stadt", 3 | "dorf", 4 | "land", 5 | "scheid", 6 | "burg" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/de/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/el/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/el/credit_card/maestro.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "/50#{9,16}L/", 3 | "/5[6-8]#{9,16}L/", 4 | "/56##{9,16}L/" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/american_express.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "34##-######-####L", 3 | "37##-######-####L" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/mastercard.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "5[1-5]##-####-####-###L", 3 | "6771-89##-####-###L" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_IE/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ie", 3 | "com", 4 | "net", 5 | "info", 6 | "eu" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/en_NG/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com.ng", 3 | "com", 4 | "org.ng", 5 | "com", 6 | "ng" 7 | ]; -------------------------------------------------------------------------------- /lib/locales/es/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | " s/n.", 3 | ", #", 4 | ", ##", 5 | " #", 6 | " ##" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/es/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/es/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "es", 4 | "info", 5 | "com.es", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/fa/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fa/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "کارخانه", 3 | "و پسران", 4 | "شرکت با مسئولیت محدود", 5 | "گروه" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fa/finance/credit_card/mastercard.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "5[1-5]##-####-####-###L", 3 | "6771-89##-####-###L" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ge/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/he/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "# דירה", 3 | "## דירה", 4 | "# חדר", 5 | "## חדר" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/he/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/name/male_title.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "dr.", 3 | "drg.", 4 | "Dr.", 5 | "Drs.", 6 | "Ir.", 7 | "H." 8 | ]; -------------------------------------------------------------------------------- /lib/locales/ja/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ko/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "연구소", 3 | "게임즈", 4 | "그룹", 5 | "전자", 6 | "물산", 7 | "코리아" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/lv/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/mk/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/mk/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "t.mk", 3 | "gmail.com", 4 | "yahoo.com", 5 | "hotmail.com" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/pl/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/pl/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "pl", 4 | "com.pl", 5 | "net", 6 | "org" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+351 91#######", 3 | "+351 93#######", 4 | "+351 96#######" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ro/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/tr/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/uk/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Південний", 3 | "Північний", 4 | "Східний", 5 | "Західний" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ur/animal/lion.js: -------------------------------------------------------------------------------- 1 | module['exports'] = [ 2 | 'ایشیایْ شیر', 3 | 'مشرقی افریقی شیر', 4 | 'شمالی مغربی کانگو کا شیر', 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/ur/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require('./formats'); 4 | -------------------------------------------------------------------------------- /lib/locales/vi/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/vi/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "net", 4 | "info", 5 | "vn", 6 | "com.vn" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#####", 3 | "####", 4 | "###", 5 | "##", 6 | "#" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0##-########", 3 | "0###-########", 4 | "1##########" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/de/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#", 5 | "##a", 6 | "##b", 7 | "##c" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/de_AT/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/el/finance/transaction_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "κατάθεση", 3 | "ανάληψη", 4 | "πληρωμή", 5 | "τιμολόγιο" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en/finance/transaction_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "deposit", 3 | "withdrawal", 4 | "payment", 5 | "invoice" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_GB/address/uk_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "England", 3 | "Scotland", 4 | "Wales", 5 | "Northern Ireland" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_GB/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GB/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "co.uk", 3 | "com", 4 | "biz", 5 | "info", 6 | "name" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/en_IE/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_NG/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_US/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "United States", 3 | "United States of America", 4 | "USA" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "co.za", 3 | "com", 4 | "org.za", 5 | "info", 6 | "net.za" 7 | ]; -------------------------------------------------------------------------------- /lib/locales/es_MX/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fa/finance/transaction_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "سپرده", 3 | "برداشت از حساب", 4 | "پرداخت", 5 | "صورتحساب" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fr/company/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name} #{suffix}", 3 | "#{Name.last_name} et #{Name.last_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "advalvas.be", 3 | "mail.be", 4 | "netbel.be", 5 | "skynet.be" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/hr/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/hy/address/city.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{city_prefix} #{Name.last_name}", 3 | "#{Name.last_name}#{city_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/hy/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 'gmail.com', 3 | 'yahoo.com', 4 | 'gmail.co.id', 5 | 'yahoo.co.id' 6 | ]; -------------------------------------------------------------------------------- /lib/locales/it/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "San", 3 | "Borgo", 4 | "Sesto", 5 | "Quarto", 6 | "Settimo" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/nl/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "1 hoog", 3 | "2 hoog", 4 | "3 hoog", 5 | "3 hoog achter" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "1e verdieping", 3 | "2e verdieping", 4 | "3e verdieping" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/sv/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/tr/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#", 5 | "##a", 6 | "##b", 7 | "##c" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/tr/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/ur/finance/transaction_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "deposit", 3 | "withdrawal", 4 | "payment", 5 | "invoice" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/vi/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "街", 3 | "路", 4 | "北路", 5 | "南路", 6 | "東路", 7 | "西路" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/cell_phone/index.js: -------------------------------------------------------------------------------- 1 | var cell_phone = {}; 2 | module['exports'] = cell_phone; 3 | cell_phone.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "co.za", 3 | "com", 4 | "org.za", 5 | "info", 6 | "net.za" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ar/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/az/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "az", 4 | "com.az", 5 | "info", 6 | "net", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/az/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/cz/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/de/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/de_AT/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "##", 4 | "#", 5 | "##a", 6 | "##b", 7 | "##c" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/de_AT/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/de_CH/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/de_CH/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/el/business/credit_card_types.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "visa", 3 | "mastercard", 4 | "americanexpress", 5 | "discover" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en/business/credit_card_types.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "visa", 3 | "mastercard", 4 | "americanexpress", 5 | "discover" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "biz", 4 | "info", 5 | "name", 6 | "net", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_AU/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_CA/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GB/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "England", 3 | "Scotland", 4 | "Wales", 5 | "Northern Ireland" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_GB/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GB/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/company/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name} #{suffix}", 3 | "#{Name.last_name} and #{Name.last_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en_GH/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_GH/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_IE/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_IE/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_IND/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "India", 3 | "Indian Republic", 4 | "Bharat", 5 | "Hindustan" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_NG/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_US/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/es/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "6##-###-###", 3 | "6##.###.###", 4 | "6## ### ###", 5 | "6########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "9##-###-###", 3 | "9##.###.###", 4 | "9## ### ###", 5 | "9########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/es_MX/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "5##-###-###", 3 | "5##.###.###", 4 | "5## ### ###", 5 | "5########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es_MX/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fa/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "شمال", 3 | "شرق", 4 | "غرب", 5 | "جنوب", 6 | "جدید", 7 | "جزیره" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/fa/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CA/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "### ###-####", 3 | "1 ### ###-####", 4 | "### ###-####, poste ###" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/fr_CA/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "net", 4 | "biz", 5 | "ch", 6 | "ch", 7 | "ch" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/fr_CH/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ge/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/he/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/hr/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/hy/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###", 3 | "###/#", 4 | "##", 5 | "##/#", 6 | "#", 7 | "#/#" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/hy/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/id_ID/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/it/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ja/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ko/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.co.kr", 4 | "hanmail.net", 5 | "naver.com" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ko/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/lv/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "SIA", 3 | "AS", 4 | "IU", 5 | "Bezp.Org.", 6 | "Firma", 7 | "Biedrība" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/lv/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/mk/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Gruppen", 3 | "AS", 4 | "ASA", 5 | "BA", 6 | "RFH", 7 | "og Sønner" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ne/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/nl/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com", 5 | "skynet.be" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/pl/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "S.A.", 3 | "LTDA", 4 | "EIRELI", 5 | "e Associados", 6 | "Comércio" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(##) ####-####", 3 | "+55 (##) ####-####", 4 | "(##) #####-####" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ro/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ru/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "ru", 4 | "info", 5 | "рф", 6 | "net", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/ru/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/sk/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/sv/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "vägen", 3 | "gatan", 4 | "gränden", 5 | "gärdet", 6 | "allén" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/sv/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/sv/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.suffix = require("./suffix"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/uk/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/vi/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/zh_TW/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "co.za", 3 | "com", 4 | "org.za", 5 | "info", 6 | "net.za" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/zu_ZA/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/ar/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{Name.first_name}", 3 | "#{street_prefix} #{Name.last_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ar/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ar/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.creature = require("./creature"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/az/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/cz/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/de/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/el/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "697## ######", 3 | "698## ######", 4 | "699## ######", 5 | "692## ######" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/el/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.creature = require("./creature"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.first_name} #{street_suffix}", 3 | "#{Name.last_name} #{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/en/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/en/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.creature = require("./creature"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.domain_suffix = require("./domain_suffix"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_IND/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_NG/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Nigeria", 3 | "Federal Republic of Nigeria", 4 | "NG", 5 | "NGN" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es_MX/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "5###-###-###", 3 | "5##.###.###", 4 | "5## ### ###", 5 | "5########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/es_MX/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.creature = require("./creature"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/fa/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/fr/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ge/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ge", 3 | "com", 4 | "net", 5 | "org", 6 | "com.ge", 7 | "org.ge" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/he/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.first_name} #{street_suffix}", 3 | "#{Name.last_name} #{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/he/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/hr/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/hy/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Հյուսիսային", 3 | "Արևելյան", 4 | "Արևմտյան", 5 | "Հարավային", 6 | "Նոր" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/hy/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{Name.first_name}", 3 | "#{street_prefix} #{Name.last_name}" 4 | ]; -------------------------------------------------------------------------------- /lib/locales/id_ID/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/it/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_suffix} #{Name.first_name}", 3 | "#{street_suffix} #{Name.last_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ja/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "北", 3 | "東", 4 | "西", 5 | "南", 6 | "新", 7 | "湖", 8 | "港" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/ja/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.first_name}#{street_suffix}", 3 | "#{Name.last_name}#{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ja/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0####-#-####", 3 | "0###-##-####", 4 | "0##-###-####", 5 | "0#-####-####" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/lv/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/mk/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "########", 3 | "## ## ## ##", 4 | "### ## ###", 5 | "+47 ## ## ## ##" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ne/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "worldlink.com.np", 3 | "gmail.com", 4 | "yahoo.com", 5 | "hotmail.com" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.first_name}#{street_suffix}", 3 | "#{Name.last_name}#{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/nl/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Jr.", 3 | "Sr.", 4 | "I", 5 | "II", 6 | "III", 7 | "IV", 8 | "V" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/nl/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(####) ######", 3 | "##########", 4 | "06########", 5 | "06 #### ####" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#", 3 | "##", 4 | "###", 5 | "###a", 6 | "###b", 7 | "###c" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ro/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ru/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/sv/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/tr/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com.tr", 3 | "com", 4 | "biz", 5 | "info", 6 | "name", 7 | "gov.tr" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/ur/business/index.js: -------------------------------------------------------------------------------- 1 | var business = {}; 2 | module['exports'] = business; 3 | business.credit_card_types = require('./credit_card_types'); 4 | -------------------------------------------------------------------------------- /lib/locales/ur/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ur/team/index.js: -------------------------------------------------------------------------------- 1 | var team = {}; 2 | module['exports'] = team; 3 | team.creature = require("./creature"); 4 | team.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/vi/date/index.js: -------------------------------------------------------------------------------- 1 | var date = {}; 2 | module["exports"] = date; 3 | date.month = require("./month"); 4 | date.weekday = require("./weekday"); 5 | -------------------------------------------------------------------------------- /lib/locales/ar/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###-###-####", 3 | "(###) ###-####", 4 | "1-###-###-####", 5 | "###.###.####" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/az/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "küç.", 3 | "küçəsi", 4 | "prospekti", 5 | "pr.", 6 | "sahəsi", 7 | "sh." 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/az/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "box.az", 3 | "mail.az", 4 | "gmail.com", 5 | "yahoo.com", 6 | "hotmail.com" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/cz/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "seznam.cz", 4 | "centrum.cz", 5 | "volny.cz", 6 | "atlas.cz" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/el/business/credit_card_expiry_dates.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "2011-10-12", 3 | "2012-11-12", 4 | "2015-11-11", 5 | "2013-9-12" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/business/credit_card_expiry_dates.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "2011-10-12", 3 | "2012-11-12", 4 | "2015-11-11", 5 | "2013-9-12" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "###-###-####", 3 | "(###) ###-####", 4 | "1-###-###-####", 5 | "###.###.####" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/database/engine.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "InnoDB", 3 | "MyISAM", 4 | "MEMORY", 5 | "CSV", 6 | "BLACKHOLE", 7 | "ARCHIVE" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en_AU/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com.au", 3 | "com", 4 | "net.au", 5 | "net", 6 | "org.au", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/phone_number/index.js: -------------------------------------------------------------------------------- 1 | var phone_number = {}; 2 | module['exports'] = phone_number; 3 | phone_number.formats = require("./formats"); 4 | -------------------------------------------------------------------------------- /lib/locales/en_BORK/index.js: -------------------------------------------------------------------------------- 1 | var en_BORK = {}; 2 | module['exports'] = en_BORK; 3 | en_BORK.title = "English (Bork)"; 4 | en_BORK.lorem = require("./lorem"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.last_name} #{street_suffix}", 3 | "#{street_prefix} #{street_suffix}", 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/es_MX/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "mx", 4 | "info", 5 | "com.mx", 6 | "org", 7 | "gob.mx" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/ge/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "გამზ.", 3 | "გამზირი", 4 | "ქ.", 5 | "ქუჩა", 6 | "ჩიხი", 7 | "ხეივანი" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/name/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Jr.", 3 | "Sr.", 4 | "I", 5 | "II", 6 | "III", 7 | "IV", 8 | "V" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{Name.first_name}#{street_suffix}", 3 | "#{Name.last_name}#{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "straat", 3 | "laan", 4 | "weg", 5 | "dreef", 6 | "plein", 7 | "park" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | " do Descoberto", 3 | " de Nossa Senhora", 4 | " do Norte", 5 | " do Sul" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/ru/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ул.", 3 | "улица", 4 | "проспект", 5 | "пр.", 6 | "площадь", 7 | "пл." 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/sk/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "09## ### ###", 3 | "0## #### ####", 4 | "0# #### ####", 5 | "+421 ### ### ###" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/sv/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Västra", 3 | "Östra", 4 | "Norra", 5 | "Södra", 6 | "Övre", 7 | "Undre" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/ur/address/street_name.js: -------------------------------------------------------------------------------- 1 | module['exports'] = [ 2 | '#{Name.first_name} #{street_suffix}', 3 | '#{Name.last_name} #{street_suffix}', 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ar/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "### عمارة", 3 | "### طابق", 4 | "### شقة", 5 | "### بناية", 6 | "### بيت" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/de_AT/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+43-6##-#######", 3 | "06##-########", 4 | "+436#########", 5 | "06##########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/diners_club.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "30[0-5]#-######-###L", 3 | "36##-######-###L", 4 | "54##-####-####-###L" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/jcb.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "3528-####-####-###L", 3 | "3529-####-####-###L", 4 | "35[3-8]#-####-####-###L" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/solo.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "6767-####-####-###L", 3 | "6767-####-####-####-#L", 4 | "6767-####-####-####-##L" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en_AU/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pty Ltd", 3 | "and Sons", 4 | "Corp", 5 | "Group", 6 | "Brothers", 7 | "Partners" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en_AU/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0# #### ####", 3 | "+61 # #### ####", 4 | "04## ### ###", 5 | "+61 4## ### ###" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/street_root.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ramsay Street", 3 | "Bonnie Doon", 4 | "Cavill Avenue", 5 | "Queen Street" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com.au", 3 | "com", 4 | "net.au", 5 | "net", 6 | "org.au", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/lv/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "iela", 3 | "bulvāris", 4 | "gatve", 5 | "gāte", 6 | "laukums", 7 | "dambis" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/mk/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Øvre", 3 | "Nedre", 4 | "Søndre", 5 | "Gamle", 6 | "Østre", 7 | "Vestre" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "WVL", 3 | "OVL", 4 | "VBR", 5 | "ANT", 6 | "LIM", 7 | "BRU" 8 | ]; 9 | 10 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "be", 3 | "brussels", 4 | "vlaanderen", 5 | "com", 6 | "net", 7 | "org" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/sv/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/ur/animal/bear.js: -------------------------------------------------------------------------------- 1 | module['exports'] = [ 2 | 'پانڈا', 3 | 'بھالو', 4 | 'امریکی کالا بھالو', 5 | 'ایشیایٰ کالا بھالو', 6 | 'بھورا بھالو', 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/vi/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.prefix = require("./prefix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/vi/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Công ty", 3 | "Cty TNHH", 4 | "Cty", 5 | "Cửa hàng", 6 | "Trung tâm", 7 | "Chi nhánh" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/az/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_suffix} #{Address.street_title}", 3 | "#{Address.street_title} #{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/de/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Nord", 3 | "Ost", 4 | "West", 5 | "Süd", 6 | "Neu", 7 | "Alt", 8 | "Bad" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/de/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "info", 4 | "name", 5 | "net", 6 | "org", 7 | "de", 8 | "ch" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/de/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "(0###) #########", 3 | "(0####) #######", 4 | "+49-###-#######", 5 | "+49-####-########" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/de_CH/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en/finance/credit_card/switch.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "6759-####-####-###L", 3 | "6759-####-####-####-#L", 4 | "6759-####-####-####-##L" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/en/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | lorem.supplemental = require("./supplemental"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_AU/name/index.js: -------------------------------------------------------------------------------- 1 | var name = {}; 2 | module['exports'] = name; 3 | name.first_name = require("./first_name"); 4 | name.last_name = require("./last_name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pty Ltd", 3 | "and Sons", 4 | "Corp", 5 | "Group", 6 | "Brothers", 7 | "Partners" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/name/ocker_first_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Bazza", 3 | "Bluey", 4 | "Davo", 5 | "Johno", 6 | "Shano", 7 | "Shazza" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0# #### ####", 3 | "+61 # #### ####", 4 | "04## ### ###", 5 | "+61 4## ### ###" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_GH/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_IND/name/index.js: -------------------------------------------------------------------------------- 1 | var name = {}; 2 | module['exports'] = name; 3 | name.first_name = require("./first_name"); 4 | name.last_name = require("./last_name"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_ZA/address/default_country.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "South Africa", 3 | "The Republic of South Africa", 4 | "SA", 5 | "South Africa" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/fr/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "fr", 4 | "eu", 5 | "info", 6 | "name", 7 | "net", 8 | "org" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/he/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | lorem.supplemental = require("./supplemental"); 5 | -------------------------------------------------------------------------------- /lib/locales/ja/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module["exports"] = lorem; 3 | lorem.words = require("./words"); 4 | lorem.supplemental = require("./supplemental"); 5 | -------------------------------------------------------------------------------- /lib/locales/lv/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | lorem.supplemental = require("./supplemental"); 5 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/address/common_street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "sgate", 3 | "svei", 4 | "s Gate", 5 | "s Vei", 6 | "gata", 7 | "veien" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/nb_NO/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/ne/name/index.js: -------------------------------------------------------------------------------- 1 | var name = {}; 2 | module['exports'] = name; 3 | name.first_name = require("./first_name"); 4 | name.last_name = require("./last_name"); 5 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/secondary_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Apto. ###", 3 | "Sobrado ##", 4 | "Casa #", 5 | "Lote ##", 6 | "Quadra ##" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/company/index.js: -------------------------------------------------------------------------------- 1 | var company = {}; 2 | module['exports'] = company; 3 | company.suffix = require("./suffix"); 4 | company.name = require("./name"); 5 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com", 5 | "live.com", 6 | "bol.com.br" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/ru/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_suffix} #{Address.street_title}", 3 | "#{Address.street_title} #{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/uk/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{Address.street_title}", 3 | "#{Address.street_title} #{street_suffix}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/ur/lorem/index.js: -------------------------------------------------------------------------------- 1 | var lorem = {}; 2 | module['exports'] = lorem; 3 | lorem.words = require("./words"); 4 | lorem.supplemental = require("./supplemental"); 5 | -------------------------------------------------------------------------------- /lib/locales/ar/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{prefix} #{first_name} #{last_name}", 3 | "#{first_name} #{last_name}", 4 | "#{last_name} #{first_name}" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/de/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "GmbH", 3 | "AG", 4 | "Gruppe", 5 | "KG", 6 | "GmbH & Co. KG", 7 | "UG", 8 | "OHG" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/en/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "North", 3 | "East", 4 | "West", 5 | "South", 6 | "New", 7 | "Lake", 8 | "Port" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/en/address/direction_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "N", 3 | "E", 4 | "S", 5 | "W", 6 | "NE", 7 | "NW", 8 | "SE", 9 | "SW" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/en_CA/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ca", 3 | "com", 4 | "biz", 5 | "info", 6 | "name", 7 | "net", 8 | "org" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/en_US/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "us", 4 | "biz", 5 | "info", 6 | "name", 7 | "net", 8 | "org" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/es/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}#{building_number}", 3 | "#{street_name}#{building_number} #{secondary_address}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/es/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_suffix} #{Name.first_name}", 3 | "#{street_suffix} #{Name.first_name} #{Name.last_name}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/es_MX/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com", 5 | "nearbpo.com", 6 | "corpfolder.com" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/fr/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{prefix} #{first_name} #{last_name}", 3 | "#{first_name} #{last_name}", 4 | "#{last_name} #{first_name}" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/he/address/direction_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "N", 3 | "E", 4 | "S", 5 | "W", 6 | "NE", 7 | "NW", 8 | "SE", 9 | "SW" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/hy/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "biz", 4 | "info", 5 | "name", 6 | "net", 7 | "org", 8 | "am" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Rua", 3 | "Avenida", 4 | "Travessa", 5 | "Alameda", 6 | "Marginal", 7 | "Rodovia" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/pt_BR/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "br", 3 | "com", 4 | "biz", 5 | "info", 6 | "name", 7 | "net", 8 | "org" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/ru/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ИП", 3 | "ООО", 4 | "ЗАО", 5 | "ОАО", 6 | "ПАО", 7 | "НКО", 8 | "ТСЖ", 9 | "ОП" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/sk/address/city_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "North", 3 | "East", 4 | "West", 5 | "South", 6 | "New", 7 | "Lake", 8 | "Port" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/tr/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "+90-53#-###-##-##", 3 | "+90-54#-###-##-##", 4 | "+90-55#-###-##-##", 5 | "+90-50#-###-##-##" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/uk/company/prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "ТОВ", 3 | "ПАТ", 4 | "ПрАТ", 5 | "ТДВ", 6 | "КТ", 7 | "ПТ", 8 | "ДП", 9 | "ФОП" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/vi/cell_phone/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "03# ### ####", 3 | "05# ### ####", 4 | "07# ### ####", 5 | "08# ### ####", 6 | "09# ### ####" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/zh_CN/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "巷", 3 | "街", 4 | "路", 5 | "桥", 6 | "侬", 7 | "旁", 8 | "中心", 9 | "栋" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/de/company/legal_form.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "GmbH", 3 | "AG", 4 | "Gruppe", 5 | "KG", 6 | "GmbH & Co. KG", 7 | "UG", 8 | "OHG" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/de_AT/company/legal_form.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "GmbH", 3 | "AG", 4 | "Gruppe", 5 | "KG", 6 | "GmbH & Co. KG", 7 | "UG", 8 | "OHG" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/de_AT/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "GmbH", 3 | "AG", 4 | "Gruppe", 5 | "KG", 6 | "GmbH & Co. KG", 7 | "UG", 8 | "OHG" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/en_AU/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "NSW", 3 | "QLD", 4 | "NT", 5 | "SA", 6 | "WA", 7 | "TAS", 8 | "ACT", 9 | "VIC" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/postcode.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "0###", 3 | "2###", 4 | "3###", 5 | "4###", 6 | "5###", 7 | "6###", 8 | "7###" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/building_number.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | " s/n.", 3 | ", #", 4 | ", ##", 5 | " #", 6 | " ##", 7 | " ###", 8 | " ####" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/es_MX/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}#{building_number}", 3 | "#{street_name}#{building_number} #{secondary_address}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fa/address/city_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "روستا", 3 | "شهر", 4 | "دهکده", 5 | "بندر", 6 | "دژ", 7 | "بندرگاه", 8 | "ناحیه" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/fr/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "SARL", 3 | "SA", 4 | "EURL", 5 | "SAS", 6 | "SEM", 7 | "SCOP", 8 | "GIE", 9 | "EI" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/it/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}", 3 | "#{street_name} #{building_number}, #{secondary_address}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/it/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "gmail.com", 3 | "yahoo.com", 4 | "hotmail.com", 5 | "email.it", 6 | "libero.it", 7 | "yahoo.it" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/lv/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name} #{building_number}", 3 | "#{street_name} #{building_number} #{secondary_address}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/nl/name/tussenvoegsel.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "van", 3 | "van de", 4 | "van den", 5 | "van 't", 6 | "van het", 7 | "de", 8 | "den" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/ru/internet/free_email.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "yandex.ru", 3 | "ya.ru", 4 | "mail.ru", 5 | "gmail.com", 6 | "yahoo.com", 7 | "hotmail.com" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/el/address/index.js: -------------------------------------------------------------------------------- 1 | var address = {}; 2 | module['exports'] = address; 3 | address.county = require("./county"); 4 | address.default_country = require("./default_country"); 5 | -------------------------------------------------------------------------------- /lib/locales/el/app/index.js: -------------------------------------------------------------------------------- 1 | var app = {}; 2 | module['exports'] = app; 3 | app.name = require("./name"); 4 | app.version = require("./version"); 5 | app.author = require("./author"); 6 | -------------------------------------------------------------------------------- /lib/locales/en/address/county.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Avon", 3 | "Bedfordshire", 4 | "Berkshire", 5 | "Borders", 6 | "Buckinghamshire", 7 | "Cambridgeshire" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/en/app/index.js: -------------------------------------------------------------------------------- 1 | var app = {}; 2 | module['exports'] = app; 3 | app.name = require("./name"); 4 | app.version = require("./version"); 5 | app.author = require("./author"); 6 | -------------------------------------------------------------------------------- /lib/locales/en/system/index.js: -------------------------------------------------------------------------------- 1 | var system = {}; 2 | module['exports'] = system; 3 | system.directoryPaths = require("./directoryPaths"); 4 | system.mimeTypes = require("./mimeTypes"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_NG/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | '0803 ### ####', 3 | '0703 ### ####', 4 | '234809 ### ####', 5 | '+234 802 ### ####', 6 | '0805### ####' 7 | ]; -------------------------------------------------------------------------------- /lib/locales/fa/address/street_address.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_name}, پلاک #{building_number}", 3 | "#{street_name}, #{street_name}, پلاک #{building_number}" 4 | ]; 5 | -------------------------------------------------------------------------------- /lib/locales/fa/finance/account_type.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "پس انداز", 3 | "سرمایه گذاری", 4 | "وام مسکن", 5 | "کارت اعتباری", 6 | "وام خودرو", 7 | "وام شخصی" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/id_ID/address/street_prefix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Ds.", 3 | "Dk.", 4 | "Gg.", 5 | "Jln.", 6 | "Jr.", 7 | "Kpg.", 8 | "Ki.", 9 | "Psr." 10 | ]; -------------------------------------------------------------------------------- /lib/locales/id_ID/company/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{prefix} #{Name.last_name}", 3 | "#{Name.last_name} #{suffix}", 4 | "#{prefix} #{Name.last_name} #{suffix}" 5 | ]; 6 | -------------------------------------------------------------------------------- /lib/locales/it/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "com", 4 | "com", 5 | "net", 6 | "org", 7 | "it", 8 | "it", 9 | "it" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/nl/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "straat", 3 | "laan", 4 | "weg", 5 | "plantsoen", 6 | "park", 7 | "gracht", 8 | "dijk" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/nl/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "BV", 3 | "V.O.F.", 4 | "Groep", 5 | "NV", 6 | "Bedrijf", 7 | "en Zonen", 8 | "Combinatie" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/ur/app/index.js: -------------------------------------------------------------------------------- 1 | var app = {}; 2 | module['exports'] = app; 3 | app.name = require('./name'); 4 | app.version = require('./version'); 5 | app.author = require('./author'); 6 | -------------------------------------------------------------------------------- /lib/locales/vi/name/name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{male_first_name} #{last_name}", 3 | "#{female_first_name} #{last_name}", 4 | "#{first_name} #{last_name}", 5 | 6 | ]; 7 | -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- 1 | [build.environment] 2 | NODE_VERSION = "16" 3 | [build] 4 | publish = "docs/.vitepress/dist" 5 | command = "npm run build && npm run browser && npm run docs:build" 6 | -------------------------------------------------------------------------------- /docs/.vitepress/theme/components/index.mjs: -------------------------------------------------------------------------------- 1 | import Playground from './Playground.vue'; 2 | import Badge from './Badge.vue'; 3 | 4 | export default { 5 | Playground, 6 | Badge, 7 | }; 8 | -------------------------------------------------------------------------------- /lib/locales/de_AT/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "info", 4 | "name", 5 | "net", 6 | "org", 7 | "de", 8 | "ch", 9 | "at" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/en_AU_ocker/address/state_abbr.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "NSW", 3 | "QLD", 4 | "NT", 5 | "SA", 6 | "WA", 7 | "TAS", 8 | "ACT", 9 | "VIC" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/en_GH/address/street_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | 'Link', 3 | 'Lane', 4 | 'Road', 5 | 'Street', 6 | 'Lk', 7 | 'Ln', 8 | 'Rd', 9 | 'St' 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/en_IE/address/index.js: -------------------------------------------------------------------------------- 1 | var address = {}; 2 | module['exports'] = address; 3 | address.county = require("./county"); 4 | address.default_country = require("./default_country"); 5 | -------------------------------------------------------------------------------- /lib/locales/en_IND/company/suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "Pvt Ltd", 3 | "Limited", 4 | "Ltd", 5 | "and Sons", 6 | "Corp", 7 | "Group", 8 | "Brothers" 9 | ]; 10 | -------------------------------------------------------------------------------- /lib/locales/fr_BE/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "be", 3 | "eu", 4 | "com", 5 | "biz", 6 | "info", 7 | "name", 8 | "net", 9 | "org" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/fr_CA/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "qc.ca", 3 | "ca", 4 | "com", 5 | "biz", 6 | "info", 7 | "name", 8 | "net", 9 | "org" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/nl_BE/address/state.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "West-Vlaanderen", 3 | "Oost-Vlaanderen", 4 | "Vlaams-Brabant", 5 | "Antwerpen", 6 | "Limburg", 7 | "Brussel" 8 | ]; 9 | -------------------------------------------------------------------------------- /lib/locales/pt_PT/address/street_name.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "#{street_prefix} #{Name.first_name} #{Name.last_name}", 3 | "N#", 4 | "N##", 5 | "N###", 6 | "N###-#" 7 | ]; 8 | -------------------------------------------------------------------------------- /lib/locales/ur/music/genre.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "پاپ", 3 | "فلک", 4 | "دنیایٰ", 5 | "جاز", 6 | "فنک", 7 | "کلاسکی", 8 | "لاطینی", 9 | "پرانی", 10 | "ریپ", 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/locales/af_ZA/address/index.js: -------------------------------------------------------------------------------- 1 | var address = {}; 2 | module['exports'] = address; 3 | address.default_country = require("./default_country"); 4 | address.postcode = require("./postcode"); 5 | -------------------------------------------------------------------------------- /lib/locales/az/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/cz/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/de/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/de_CH/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "com", 3 | "net", 4 | "biz", 5 | "ch", 6 | "de", 7 | "li", 8 | "at", 9 | "ch", 10 | "ch" 11 | ]; 12 | -------------------------------------------------------------------------------- /lib/locales/el/business/credit_card_numbers.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "1234-2121-1221-1211", 3 | "1212-1221-1121-1234", 4 | "1211-1221-1234-2201", 5 | "1228-1221-1221-1431" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en/business/credit_card_numbers.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "1234-2121-1221-1211", 3 | "1212-1221-1121-1234", 4 | "1211-1221-1234-2201", 5 | "1228-1221-1221-1431" 6 | ]; 7 | -------------------------------------------------------------------------------- /lib/locales/en_IND/internet/domain_suffix.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "in", 3 | "com", 4 | "biz", 5 | "info", 6 | "name", 7 | "net", 8 | "org", 9 | "co.in" 10 | ]; 11 | -------------------------------------------------------------------------------- /lib/locales/es/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/fr/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/ge/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/hr/internet/index.js: -------------------------------------------------------------------------------- 1 | var internet = {}; 2 | module['exports'] = internet; 3 | internet.free_email = require("./free_email"); 4 | internet.domain_suffix = require("./domain_suffix"); 5 | -------------------------------------------------------------------------------- /lib/locales/hr/phone_number/formats.js: -------------------------------------------------------------------------------- 1 | module["exports"] = [ 2 | "### ###", 3 | "### ###", 4 | "### ###", 5 | "### ### ####", 6 | "+385 ## ### ###", 7 | "00385 ## ### ###" 8 | ]; 9 | --------------------------------------------------------------------------------