vote-commands.ftl 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. ### Voting system related console commands
  2. ## 'createvote' command
  3. cmd-createvote-desc = Creates a vote
  4. cmd-createvote-help = Usage: createvote <'restart'|'preset'|'map'>
  5. cmd-createvote-cannot-call-vote-now = You can't call a vote right now!
  6. cmd-createvote-invalid-vote-type = Invalid vote type
  7. cmd-createvote-arg-vote-type = <vote type>
  8. ## 'customvote' command
  9. cmd-customvote-desc = Creates a custom vote
  10. cmd-customvote-help = Usage: customvote <title> <option1> <option2> [option3...]
  11. cmd-customvote-on-finished-tie = Tie between {$ties}!
  12. cmd-customvote-on-finished-win = {$winner} wins!
  13. cmd-customvote-arg-title = <title>
  14. cmd-customvote-arg-option-n = <option{ $n }>
  15. ## 'vote' command
  16. cmd-vote-desc = Votes on an active vote
  17. cmd-vote-help = vote <voteId> <option>
  18. cmd-vote-cannot-call-vote-now = You can't call a vote right now!
  19. cmd-vote-on-execute-error-must-be-player = Must be a player
  20. cmd-vote-on-execute-error-invalid-vote-id = Invalid vote ID
  21. cmd-vote-on-execute-error-invalid-vote-options = Invalid vote options
  22. cmd-vote-on-execute-error-invalid-vote = Invalid vote
  23. cmd-vote-on-execute-error-invalid-option = Invalid option
  24. ## 'listvotes' command
  25. cmd-listvotes-desc = Lists currently active votes
  26. cmd-listvotes-help = Usage: listvotes
  27. ## 'cancelvote' command
  28. cmd-cancelvote-desc = Cancels an active vote
  29. cmd-cancelvote-help = Usage: cancelvote <id>
  30. You can get the ID from the listvotes command.
  31. cmd-cancelvote-error-invalid-vote-id = Invalid vote ID
  32. cmd-cancelvote-error-missing-vote-id = Missing ID
  33. cmd-cancelvote-arg-id = <id>