change gender name

There are only 3 genders, intersex people are born with sex characteristics (including genitals, gonads and chromosome patterns) that do not fit typical binary notions of male or female bodies.
This commit is contained in:
yallxe 2021-06-27 20:12:02 +02:00 committed by GitHub
parent e70a76ff63
commit b3748710d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -87,7 +87,7 @@ async def process_age(message: types.Message, state: FSMContext):
# Configure ReplyKeyboardMarkup
markup = types.ReplyKeyboardMarkup(resize_keyboard=True, selective=True)
markup.add("Male", "Female")
markup.add("Other")
markup.add("Intersex")
await message.reply("What is your gender?", reply_markup=markup)