Skip to content

Commit

Permalink
CA:Gag: fix wrong exit item name (#278)
Browse files Browse the repository at this point in the history
  • Loading branch information
wopox1337 committed Sep 2, 2022
1 parent 3d60f26 commit 017704d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions cstrike/addons/amxmodx/data/lang/CA_Gag.txt
Expand Up @@ -47,6 +47,8 @@ Gag_NotifyPlayer_BlockedChat = ^1Вам ^3заблокировали чат^1.

Gag_prefix = [^3GAG^1]

Gag_BackToPlayersMenu = К списку игроков

[en]
Gag_MenuTitle_PlayersList = Gag player
Gag_MenuTitle_SelectReason = Choose reason:
Expand Down Expand Up @@ -96,6 +98,8 @@ Gag_NotifyPlayer_BlockedChat = ^1Your ^3chat has been blocked^1.

Gag_prefix = [^3GAG^1]

Gag_BackToPlayersMenu = To players list

[es]
Gag_MenuTitle_PlayersList = Silenciar Jugador
Gag_MenuTitle_SelectReason = Elegir Motivo:
Expand Down
2 changes: 1 addition & 1 deletion cstrike/addons/amxmodx/scripting/CA_Gag.sma
Expand Up @@ -467,7 +467,7 @@ static MenuShow_SelectReason(const id) {

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_EXITNAME, fmt("%L", id, "Gag_BackToPlayersMenu"))

menu_display(id, menu)
return PLUGIN_HANDLED
Expand Down

0 comments on commit 017704d

Please sign in to comment.