Skip to content

Commit

Permalink
Fix back/next/exit buttons not translated in plugin's cvar/command me…
Browse files Browse the repository at this point in the history
…nus (#667)

* Menu buttons stayed english in Plugin's cvar/command menus

That worked, but if there is any better solution to get it working feel free to edit :D

* Changed language parsing to %L
  • Loading branch information
regener authored and Arkshine committed Jan 30, 2019
1 parent 5947926 commit 38cd5ab
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions plugins/pluginmenu.sma
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,9 @@ stock DisplayPluginMenu(id,const MenuText[], const Handler[], const Command[], c
}
}

menu_setprop(Menu,MPROP_BACKNAME,fmt("%L", id, "BACK"));
menu_setprop(Menu,MPROP_NEXTNAME,fmt("%L", id, "MORE"));
menu_setprop(Menu,MPROP_EXITNAME,fmt("%L", id, "EXIT"));
menu_setprop(Menu,MPROP_NUMBER_COLOR,"\y");
menu_setprop(Menu,MPROP_EXIT,MEXIT_ALL);
menu_display(id,Menu,0);
Expand Down Expand Up @@ -564,6 +567,9 @@ public DisplayCvarMenu(id, plid, page)
}
}

menu_setprop(Menu,MPROP_BACKNAME,fmt("%L", id, "BACK"));
menu_setprop(Menu,MPROP_NEXTNAME,fmt("%L", id, "MORE"));
menu_setprop(Menu,MPROP_EXITNAME,fmt("%L", id, "EXIT"));
menu_setprop(Menu,MPROP_EXIT,MEXIT_ALL);
menu_setprop(Menu,MPROP_NUMBER_COLOR,"\y");
menu_display(id,Menu,page);
Expand Down Expand Up @@ -882,6 +888,10 @@ public DisplayCmdMenu(id, plid, page)
}
}
}

menu_setprop(Menu,MPROP_BACKNAME,fmt("%L", id, "BACK"));
menu_setprop(Menu,MPROP_NEXTNAME,fmt("%L", id, "MORE"));
menu_setprop(Menu,MPROP_EXITNAME,fmt("%L", id, "EXIT"));
menu_setprop(Menu,MPROP_NUMBER_COLOR,"\y");
menu_display(id,Menu,page);

Expand Down

0 comments on commit 38cd5ab

Please sign in to comment.