bchavez / Bogus

:card_index: A simple fake data generator for C#, F#, and VB.NET. Based on and ported from the famed faker.js.
Other
8.62k stars 491 forks source link

The person full name locale is not set properly for zh_CN and zh_TW #479

Open NeilQ opened 1 year ago

NeilQ commented 1 year ago

The person name locale is not set properly at zh_CN and zh_TW

What locale are you using with Bogus?

zh_CN, zh_TW

What is the expected behavior?

The proper name value should be

 "name": [
      "#{last_name}#{first_name}"
    ]

And this is consistent with fake.js locale

What is the actual behavior?

 "name": [
      "#{first_name}#{last_name}"
    ]