Skip to content

Commit

Permalink
Fixed a small mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementMR committed Jan 14, 2025
1 parent 8f63d36 commit ab42995
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mods/ctf/ctf_modebase/locale/ctf_modebase.fr.tr
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You should provide the player name!=Vous devez renseigner le nom du joueur!
You should provide score amount!=Vous devez renseigner le montant du score!
You should donate at least 5 score!=Vous devez donner au moins 5 score!
You can donate only half of your match score!=Vous pouvez donner seulement la moitié de votre score de partie!
You can donate only once in 2.5 minutes! You can donate again in @1 @2.=Vous pouvez donner qu’une fois toutes les 2.5 minutes! Vous pourrez donner à nouveau dans @1 @2.
You can donate only once in 2.5 minutes! You can donate again in @1m @2s.=Vous pouvez donner qu’une fois toutes les 2.5 minutes! Vous pourrez donner à nouveau dans @1m @2s.
The donation message is=Le message de don a
chars too long!=caractères en trop!
Player '@1' donated @2 score to player '@3'=Le joueur '@1' à donné @2 score au joueur '@3'
Expand Down
2 changes: 1 addition & 1 deletion mods/ctf/ctf_modebase/locale/template.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You should provide the player name!=
You should provide score amount!=
You should donate at least 5 score!=
You can donate only half of your match score!=
You can donate only once in 2.5 minutes! You can donate again in @1 @2.=
You can donate only once in 2.5 minutes! You can donate again in @1m @2s.=
The donation message is=
chars too long!=
Player '@1' donated @2 score to player '@3'=
Expand Down
2 changes: 1 addition & 1 deletion mods/ctf/ctf_modebase/ranking_commands.lua
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ ctf_core.register_chatcommand_alias("donate", "d", {
if donate_timer[name] and donate_timer[name] + 150 > os.time() then
local time_diff = donate_timer[name] + 150 - os.time()
return false, S(
"You can donate only once in 2.5 minutes! You can donate again in @1 @2.",
"You can donate only once in 2.5 minutes! You can donate again in @1m @2s.",
math.floor(time_diff / 60),
time_diff % 60)
end
Expand Down

0 comments on commit ab42995

Please sign in to comment.