Updating translation string. 'in' and 'out' were outside translation.

This commit is contained in:
Victor Oliveira 2018-01-03 20:40:56 -02:00
parent edd54cc5f6
commit a725de55f2
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ function onVipStateChange(id, state)
onAddVip(id, name, state, description, iconId, notify) onAddVip(id, name, state, description, iconId, notify)
if notify and state ~= VipState.Pending then if notify and state ~= VipState.Pending then
modules.game_textmessage.displayFailureMessage(tr('%s has logged %s.', name, (state == VipState.Online and 'in' or 'out'))) modules.game_textmessage.displayFailureMessage(state == VipState.Online and tr('%s has logged in.', name) or tr('%s has logged out.', name))
end end
end end