You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/i18n/languages/english.ts
+138Lines changed: 138 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,7 @@ export default {
44
44
STASH: 'Stash',
45
45
UNSTASH: 'Unstash',
46
46
WATCH: 'Watch',
47
+
DISCARD: 'Discard',
47
48
},
48
49
SIGNUPS_OPEN: '{{game}} signups are open!',
49
50
SIGNUPS_CLOSED: '{{game}} signups closed.',
@@ -109,13 +110,38 @@ export default {
109
110
PRIVATE: "Psst it's your turn to play in {{game}} [{{id}}]",
110
111
PUBLIC: "{{user}} hasn't played in {{game}} [{{id}}] for {{time}}...",
111
112
},
113
+
NO_DMS: "Can't create a game in DMs!",
114
+
NOTIFY_CREATED: '/notifyrank all, {{game}}, A game of {{game}} has been created!,{{id}}signup',
115
+
PLAYER_JOINED: '{{player}} joined the game of {{game}}{{turn}}{{random}}! [{{id}}]',
116
+
FORCEWIN_SPECIFY_ID: 'You must specify the game ID for forcewin!',
117
+
SCRABBLEDEX_NO_ENTRIES: 'No entries yet!',
118
+
UGO_NOT_ACTIVE: "UGO isn't active!",
112
119
120
+
BATTLESHIP: {
121
+
ALREADY_SET: "You've already set your ships!",
122
+
SET_FIRST: 'Set your ships first!',
123
+
INVALID_RANGE: 'Invalid range given.',
124
+
NOT_IN_LINE: 'Cannot place {{ship}} between given points {{from}} and {{to}} (not in line)',
125
+
WRONG_SIZE: '{{ship}} has size {{size}} but you put it in {{given}} cells!',
126
+
OUT_OF_RANGE: 'Points given for {{ship}} out of range!',
127
+
OVERLAP: '{{point}} would be occupied by both {{ship1}} and {{ship2}}',
128
+
WAITING_FOR_OPPONENT: 'Waiting for opponent to set their ships...',
129
+
SET_YOUR_SHIPS: 'Set your ships!',
130
+
},
113
131
LIGHTS_OUT: {
114
132
INVALID_SIZE: 'Lights Out may only be from 2x2 to 15x15.',
133
+
SOLVE_MESSAGE: '{{player}} solved this board in {{clicks}} moves! (My solution was {{genClicks}} moves)',
115
134
},
116
135
MASTERMIND: {
117
136
ENDED: 'The game of Mastermind was ended for {{player}}.',
118
137
FAILED: '{{player}} was unable to guess {{solution}} in {{cap}} guesses.',
138
+
WIN_MESSAGE: '{{player}} guessed {{solution}} in {{turns}} turn!',
139
+
WIN_MESSAGE_PLURAL: '{{player}} guessed {{solution}} in {{turns}} turns!',
140
+
},
141
+
SNAKESLADDERS: {
142
+
PLAYER_NOT_FOUND: 'Could not find old player.',
143
+
ROLL_TOO_HIGH: 'You rolled a {{dice}}, but needed a {{needed}} or lower...',
144
+
ROLL_TOO_HIGH_EXACT: 'You rolled a {{dice}}, but needed exactly a {{needed}}...',
119
145
},
120
146
SCRABBLE: {
121
147
NO_SELECTED: 'You must select a cell to play from first. Please use the buttons!',
@@ -133,6 +159,48 @@ export default {
133
159
VALID_WORD: '{{word}} is a valid word in {{mod}}.',
134
160
HOW_TO_BLANK:
135
161
"Hi, you've drawn a blank tile! A blank tile can be used as any letter, but the tile awards 0 points. You can type `BL[A]NK` (for example) to use the blank as an A. Other syntaxes supported are `BL(A)NK`, or adding an apostrophe after the blanked letter (eg: `BLA'NK`).",
162
+
UGO_MODS_ONLY: 'The only mods allowed during UGO are Pokémon and Crazymons!',
163
+
AUTO_MOD_APPLIED: 'Game {{id}} had {{mod}} applied automatically!',
164
+
},
165
+
SPLENDOR: {
166
+
LABELS: {
167
+
BUY: 'Buy!',
168
+
RESERVE: 'Reserve!',
169
+
BUY_CARD: 'Buy {{card}}!',
170
+
},
171
+
INVALID_CARD: '{{card}} is not a valid card.',
172
+
CARD_NOT_ACCESSIBLE: 'Cannot access {{card}} for the desired action.',
173
+
DISCARD_TOKENS_REQUIRED: 'You need to discard tokens!',
174
+
CARD_NOT_AVAILABLE_RESERVE: '{{card}} is not available to reserve.',
175
+
CARD_NOT_AVAILABLE_BUY: '{{card}} is not available to buy.',
176
+
CANNOT_BUY_OR_RESERVE: 'You can neither buy nor reserve {{card}}.',
177
+
WHICH_TIER: 'Which tier did you click on?',
178
+
DECK_EMPTY: 'The deck for tier {{tier}} cards is empty!',
179
+
RESERVE_LIMIT: 'You cannot reserve more than 3 cards at a time.',
180
+
NO_DISCARD_NEEDED: "You don't need to discard any tokens yet.",
181
+
DISCARD_MORE: "You must discard at least {{required}} tokens! {{discarding}} isn't enough.",
182
+
CANNOT_DISCARD: "Unfortunately it doesn't look like you have those to discard.",
183
+
INSUFFICIENT_TOKENS: 'The given tokens are insufficient to purchase {{card}}!',
184
+
OVERPAYING: "You're overpaying!",
185
+
CANNOT_RESERVE:
186
+
'You cannot reserve a card. You may only reserve a card if a Dragon token is available AND you have less than three cards currently reserved.',
187
+
NO_DRAGON_RECEIVED: 'You reserved a card, but there were no Dragon tokens left to receive.',
0 commit comments