Fixed typo in i18n documentation

This commit is contained in:
nullmatawasoradesu 2023-08-16 16:51:31 +03:00
parent 16649ec896
commit 5ec8137968

View file

@ -63,7 +63,7 @@ Also if you want to use translated string in keyword- or magic- filters you will
from aiogram import F
from aiogram.utils.i18n import lazy_gettext as __
@router.message(F.text.lower() == __("My menu entry"))
@router.message(F.text == __("My menu entry"))
...