EdJoPaTo / grammy-inline-menu

Inline Menus for Telegram made simple. Successor of telegraf-inline-menu.
MIT License
357 stars 44 forks source link

Custom text for back and main menu buttons #192

Closed eedea closed 2 years ago

eedea commented 2 years ago

Hi, Is there any way to customize (ie. localize) texts for buttons created by createBackMainMenuButtons command?

EdJoPaTo commented 2 years ago

The method has two Arguments which you can use for that.

https://github.com/EdJoPaTo/grammy-inline-menu/blob/4566012777e8f935bc272b21f86680cb3bfb0b69/source/row-creators/back-main-buttons.ts#L4

const buttonFunction = createBackMainMenuButtons(
  ctx => ctx.t('backbutton'),
  ctx => ctx.t('mainbutton'),
);

I hope this helps

eedea commented 2 years ago

Thanks, it works perfectly.