This repository has been archived by the owner on Sep 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
4948.js
2304 lines (2291 loc) · 140 KB
/
4948.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
(self.webpackChunkjackbox_tv = self.webpackChunkjackbox_tv || []).push([
[4948], {
14948: (e, t, s) => {
"use strict";
s.r(t), s.d(t, {
default: () => ue
});
var i = function() {
var e = this,
t = e.$createElement,
s = e._self._c || t;
return s("div", {
staticClass: "jbg sign-in",
class: {
"has-recent": e.recentGames.length
}
}, [s("TopBar", {
ref: "topBar",
attrs: {
twitch: e.twitch,
artifacts: e.artifacts
},
on: {
twitchLoginClick: e.onTwitchLoginClick,
twitchLogoutClick: e.onTwitchLogoutClick,
linkClick: e.onLinkClick
}
}), e._v(" "), s("div", {
staticClass: "form"
}, [s("div", {
staticClass: "constrain"
}, [s("form", {
attrs: {
autocomplete: "off"
}
}, [s("fieldset", [s("label", {
attrs: {
name: "roomcode",
for: "roomcode",
type: "text"
}
}, [e._v("\n " + e._s(e.$t("ENTRY.ROOM_CODE"))), s("span", {
staticClass: "status"
}, [e._v(e._s(e.$t(e.formState.statusText)))])]), e._v(" "), s("Input", {
attrs: {
id: "roomcode",
type: "text",
autocapitalize: "off",
autocorrect: "off",
autocomplete: "off",
placeholder: e.$t("ENTRY.ROOM_CODE_PLACEHOLDER"),
maxlength: e.codeLength
},
on: {
input: e.onCodeInput
},
model: {
value: e.code,
callback: function(t) {
e.code = t
},
expression: "code"
}
}), e._v(" "), e.room && e.warnings.length ? s("div", {
staticClass: "warnings"
}, [e._l(e.warnings, (function(t) {
return ["flexbox" === t ? s("p", {
directives: [{
name: "bb",
rawName: "v-bb",
value: e.$t("STRING_STYLE_WARNING"),
expression: "$t('STRING_STYLE_WARNING')"
}],
key: t
}) : e._e(), e._v(" "), "canvas" === t ? s("p", {
directives: [{
name: "bb",
rawName: "v-bb",
value: e.$t("ERROR_UNSUPPORTED_BROWSER"),
expression: "$t('ERROR_UNSUPPORTED_BROWSER')"
}],
key: t
}) : e._e(), e._v(" "), "camera" === t ? s("p", {
directives: [{
name: "bb",
rawName: "v-bb",
value: e.$t("STRING_CAMERA_WARNING"),
expression: "$t('STRING_CAMERA_WARNING')"
}],
key: t
}) : e._e()]
}))], 2) : e._e(), e._v(" "), s("label", {
attrs: {
name: "username",
for: "username",
type: "text"
}
}, [e._v("\n " + e._s(e.$t("STRING_NAME"))), s("span", {
staticClass: "remaining"
}, [e._v(e._s(e.nameLength - e.name.length))])]), e._v(" "), s("Input", {
attrs: {
id: "username",
type: "text",
autocapitalize: "off",
autocorrect: "off",
autocomplete: "off",
disabled: void 0 !== e.twitch.user,
placeholder: e.$t("STRING_NAME_PLACEHOLDER"),
maxlength: e.nameLength
},
on: {
input: e.onNameInput
},
model: {
value: e.name,
callback: function(t) {
e.name = t
},
expression: "name"
}
}), e._v(" "), s("button", {
class: {
connecting: e.isConnecting, audience: "audience" === e.formState.joinAs
},
attrs: {
id: "button-join",
type: "submit",
disabled: !e.formState.isEnabled
},
on: {
click: function(t) {
return t.preventDefault(), e.connect(e.formState.joinAs)
}
}
}, [s("span", [e._v(e._s(e.$t(e.formState.submitText)))]), e._v(" "), s("div", {
staticClass: "loading"
})])], 1)]), e._v(" "), s("p", {
directives: [{
name: "bb",
rawName: "v-bb",
value: e.$t("TOS_WARNING", {
submit: e.$t(e.formState.submitText)
}),
expression: "$t('TOS_WARNING', { submit: $t(formState.submitText) })"
}],
staticClass: "tos",
attrs: {
role: "complementary"
}
}), e._v(" "), s("SlideBanner"), e._v(" "), e.recentGames.length ? e._e() : s("a", {
staticClass: "bottom-logo",
attrs: {
target: "_blank",
href: "https://www.jackboxgames.com/?utm_source=jackboxtv&utm_medium=logo&utm_campaign=jackboxgames"
}
}, [e._v("\n Link to Jackbox Games Homepage\n ")])], 1)]), e._v(" "), e.recentGames.length ? s("div", {
staticClass: "recent"
}, [s("div", {
staticClass: "constrain"
}, [s("div", {
staticClass: "top-items"
}, [s("h3", [e._v("RECENT GAMES")]), e._v(" "), s("button", {
staticClass: "view-all",
on: {
click: function(t) {
return t.preventDefault(), e.onPastGamesClick.apply(null, arguments)
}
}
}, [e._v("VIEW ALL")])]), e._v(" "), e._l(e.recentGames, (function(e) {
return s("PastGame", {
key: e.url,
staticClass: "home",
attrs: {
artifact: e
}
})
})), e._v(" "), e.recentGames.length >= 3 ? s("a", {
staticClass: "more",
attrs: {
href: "#"
},
on: {
click: function(t) {
return t.preventDefault(), e.onPastGamesClick.apply(null, arguments)
}
}
}, [e._v("\n View All Past Games\n ")]) : e._e()], 2)]) : e._e()], 1)
};
i._withStripped = !0;
var a, o = s(39666),
n = s(13819),
r = s(2934),
_ = s.n(r),
E = new Uint8Array(16);
function u() {
if (!a && !(a = "undefined" != typeof crypto && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || "undefined" != typeof msCrypto && "function" == typeof msCrypto.getRandomValues && msCrypto.getRandomValues.bind(msCrypto))) throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
return a(E)
}
const c = /^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i,
l = function(e) {
return "string" == typeof e && c.test(e)
};
for (var R = [], S = 0; S < 256; ++S) R.push((S + 256).toString(16).substr(1));
const d = function(e, t, s) {
var i = (e = e || {}).random || (e.rng || u)();
if (i[6] = 15 & i[6] | 64, i[8] = 63 & i[8] | 128, t) {
s = s || 0;
for (var a = 0; a < 16; ++a) t[s + a] = i[a];
return t
}
return function(e) {
var t = arguments.length > 1 && void 0 !== arguments[1] ? arguments[1] : 0,
s = (R[e[t + 0]] + R[e[t + 1]] + R[e[t + 2]] + R[e[t + 3]] + "-" + R[e[t + 4]] + R[e[t + 5]] + "-" + R[e[t + 6]] + R[e[t + 7]] + "-" + R[e[t + 8]] + R[e[t + 9]] + "-" + R[e[t + 10]] + R[e[t + 11]] + R[e[t + 12]] + R[e[t + 13]] + R[e[t + 14]] + R[e[t + 15]]).toLowerCase();
if (!l(s)) throw TypeError("Stringified UUID is invalid");
return s
}(i)
};
var T = s(44285),
I = s(55507),
N = s(81127),
A = s(89768),
h = s(12360),
b = function(e, t, s, i) {
return new(s || (s = Promise))((function(a, o) {
function n(e) {
try {
_(i.next(e))
} catch (e) {
o(e)
}
}
function r(e) {
try {
_(i.throw(e))
} catch (e) {
o(e)
}
}
function _(e) {
var t;
e.done ? a(e.value) : (t = e.value, t instanceof s ? t : new s((function(e) {
e(t)
}))).then(n, r)
}
_((i = i.apply(e, t || [])).next())
}))
},
G = s(21944),
m = s(47865),
O = s(2720);
class p {
constructor(e) {
m.K.shared.isSupported ? "/access_token" === (null == e ? void 0 : e.substr(0, 13)) && this.processRedirect(e) : console.warn("Twitch Login requires local storage")
}
prepare() {
return m.K.shared.isSupported ? (O.v.debug && (0, A.c)("[Twitch] prepare"), m.K.shared.get("token") ? this.fetchUser() : null) : null
}
login() {
if (!m.K.shared.isSupported) return;
(0, A.c)("[Twitch] login");
const e = d();
m.K.shared.set("twitchState", e);
const t = O.v.twitch.clientId;
let s = `https://${window.location.hostname}`;
"localhost" === window.location.hostname && (s = "http://localhost:9090/");
let i = "https://id.twitch.tv/oauth2/authorize";
i += `?client_id=${t}`, i += `&redirect_uri=${s}`, i += "&response_type=token", i += "&scope=user:read:email", i += `&state=${e}`, window.location.href = i
}
logout() {
m.K.shared.isSupported && ((0, A.c)("[Twitch] logout"), delete this.user, m.K.shared.remove("token"))
}
processRedirect(e) {
if (!m.K.shared.isSupported) return;
(0, A.c)("[Twitch] processRedirect", e);
const t = m.K.shared.get("twitchState");
if (!t) return void console.error("[Twitch] Could not find the expected state in local storage");
const s = e.substr(1).split("&"),
i = {};
for (let e = 0; e < s.length; e++) {
const [t, a] = s[e].split("=");
i[t] = a
}
i.state !== t && console.error("[Twitch] State parameter doesn't match the expected state"), m.K.shared.set("token", i.access_token), m.K.shared.remove("twitchState"), window.history.replaceState({}, document.title, "/")
}
fetchUser() {
return e = this, t = void 0, i = function*() {
if (!m.K.shared.isSupported) return null;
const e = m.K.shared.get("token");
if (!e) throw new Error("[Twitch] Token not found in local storage");
try {
const t = yield fetch("https://api.twitch.tv/helix/users", {
headers: {
Authorization: `Bearer ${e}`,
"Client-ID": O.v.twitch.clientId
}
}), s = yield t.json();
if (!s || !s.data) return null;
const i = s.data[0];
return i.token = e, this.user = i, this.user
} catch (e) {
return console.warn(e), null
}
}, new((s = void 0) || (s = Promise))((function(a, o) {
function n(e) {
try {
_(i.next(e))
} catch (e) {
o(e)
}
}
function r(e) {
try {
_(i.throw(e))
} catch (e) {
o(e)
}
}
function _(e) {
var t;
e.done ? a(e.value) : (t = e.value, t instanceof s ? t : new s((function(e) {
e(t)
}))).then(n, r)
}
_((i = i.apply(e, t || [])).next())
}));
var e, t, s, i
}
}
var v = s(89446),
C = s(65853),
g = s(6305);
const U = {
en: {
STATUS_GAME_FULL: "Game is full",
STATUS_GAME_STARTED: "Game has started",
STATUS_ROOM_NOT_FOUND: "Room not found",
SUBMIT_GAME_FULL: "GAME IS FULL",
SUBMIT_GAME_STARTED: "GAME HAS STARTED",
SUBMIT_JOIN_AUDIENCE: "JOIN AUDIENCE",
SUBMIT_RECONNECT: "RECONNECT",
SUBMIT_TWITCH_LOGIN: "LOGIN WITH TWITCH",
TOS_WARNING: "By clicking {submit}, you agree to our [tos]Terms of Service[/tos]",
LANGUAGE_NAME: "English",
SUPPORTED_LANGUAGES: ["English", "Français", "Italiano", "Deutsche", "Español"],
SUPPORTED_LOCALES: ["en", "fr", "it", "de", "es"],
STRING_LOBBY_CENSOR_CONFIRM: "This will remove this player's name, avatar, entries and drawings. Are you sure?",
STRING_CENSOR_INFO: "hit <span class='censor-button-image censor-button-black'></span> to censor player for rest of the game, removing their answers, name and avatar (it's kind of intense)",
STRING_SKIP: "skip!",
STRING_THANK_YOU: "thanks for your drawing",
STRING_DRAWING_OVER: "drawing time is over!",
STRING_CENSOR_LIE_CONFIRM: "this will remove this player's entry and all future entries and future drawings. are you sure?",
STRING_YES: "Yes",
STRING_NO: "No",
STRING_THANK_AUDIENCE: "thank you for your input, audience member!",
STRING_AUDIENCE_WELCOME_0: "welcome to the audience<br>it’s fun!",
STRING_AUDIENCE_WELCOME_1: "welcome to the audience<br>you’ll get to participate in just a moment",
STRING_AUDIENCE_WELCOME_2: "welcome to the audience<br>the fun is coming any second",
STRING_AUDIENCE_WELCOME_3: "welcome to the audience<br>we’ve been waiting for you",
STRING_AUDIENCE_WELCOME_4: "welcome to the audience<br>not quite as fun as owning the game, but more fun than sitting alone doing nothing",
STRING_AUDIENCE_WELCOME_5: "welcome to the audience<br>the more the merrier",
STRING_AUDIENCE_WELCOME_6: "welcome to the audience<br>one of us, one of us",
STRING_AUDIENCE_WELCOME_7: "welcome to the audience<br>please don’t unwrap any hard candy during the show",
STRING_AUDIENCE_WELCOME_8: "welcome to the audience<br>it’s our time down here",
STRING_AUDIENCE_WELCOME_9: "welcome to the audience<br>you like to watch, eh?",
STRING_AUDIENCE_WELCOME_10: "welcome to the audience<br>this is one of those slow moments for the audience but it’ll pick up",
STRING_AUDIENCE_WELCOME_11: "welcome to the audience<br>please don’t organize and form a coup",
STRING_AUDIENCE_WELCOME_12: "welcome to the audience<br>make yourself at home",
STRING_AUDIENCE_WELCOME_13: "welcome to the audience<br>we hope you like judging people",
STRING_AUDIENCE_WELCOME_14: "welcome to the audience<br>take a deep breath, the action will start soon",
STRING_AUDIENCE_WELCOME_15: "welcome to the audience<br>enjoy it",
STRING_AUDIENCE_WELCOME_16: "welcome to the audience<br>of everyone in the audience, you’re our favorite",
STRING_AUDIENCE_WELCOME_17: "welcome to the audience<br>dreams do come true!",
STRING_AUDIENCE_WELCOME_18: "welcome to the audience<br>the second most fun way to play this game!",
STRING_AUDIENCE_WELCOME_19: "welcome to the audience<br>we wrote this extra sentence here just for you",
STRING_AUDIENCE_WELCOME_20: "welcome to the audience<br>please find your seat",
STRING_AUDIENCE_WELCOME_21: "welcome to the audience<br>soooooo... what’s new with you?",
STRING_AUTHOR_MESSAGE_0: "You drew this.<br>Take a moment to reflect.",
STRING_AUTHOR_MESSAGE_1: "You drew this.<br>Maybe consult a doctor?",
STRING_AUTHOR_MESSAGE_2: "You drew this.<br>This is what you've become.",
STRING_AUTHOR_MESSAGE_3: "You drew this.<br>This is your design.",
STRING_AUTHOR_MESSAGE_4: "You drew this.<br>There's nowhere to go but up!",
STRING_AUTHOR_MESSAGE_5: "You drew this.<br>Relax.",
STRING_AUTHOR_MESSAGE_6: "You drew this.<br>Enjoy this moment.",
STRING_AUTHOR_MESSAGE_7: "You drew this.<br>It's too late to change it.",
STRING_AUTHOR_MESSAGE_8: "You drew this.<br>There's no way to blame someone else.",
STRING_AUTHOR_MESSAGE_9: "You drew this.<br>And your life is forever changed.",
STRING_AUTHOR_MESSAGE_10: "You drew this.<br>Yay?",
STRING_AUTHOR_MESSAGE_11: "You drew this.<br>No comment.",
STRING_AUTHOR_MESSAGE_12: "You drew this.<br>It could be worse.",
STRING_AUTHOR_MESSAGE_13: "You drew this.<br>You're to blame.",
STRING_AUTHOR_MESSAGE_14: "You drew this.<br>So...yeah...",
STRING_AUTHOR_MESSAGE_15: "You drew this.<br>Don't worry, it'll be over soon.",
STRING_AUTHOR_MESSAGE_16: "You drew this.<br>Feel as good about that as you can.",
STRING_AUTHOR_MESSAGE_17: "You drew this.<br>It is art.",
STRING_AUTHOR_MESSAGE_18: "You drew this.<br>Thank you?",
STRING_AUTHOR_MESSAGE_19: "You drew this.<br>High five!",
STRING_AUTHOR_MESSAGE_20: "You drew this.<br>Maybe take a quick nap.",
STRING_AUTHOR_MESSAGE_21: "You drew this.<br>Be cool about it.",
STRING_AUTHOR_MESSAGE_22: "You drew this.<br>This too shall pass.",
STRING_AUTHOR_MESSAGE_23: "You drew this.<br>Deal with it.",
STRING_AUTHOR_MESSAGE_24: "You drew this.<br>Confront the consequences.",
STRING_AUTHOR_MESSAGE_25: "You drew this.<br>It is done.",
STRING_AUTHOR_MESSAGE_26: "You drew this?<br>It's okay. It's going to be okay.",
STRING_AUTHOR_MESSAGE_27: "You drew this.<br>But you still deserve love, probably.",
STRING_AUTHOR_MESSAGE_28: "You drew this.<br>Thank you.",
STRING_AUTHOR_MESSAGE_29: "You drew this.<br>Creation is its own gift.",
STRING_AUTHOR_MESSAGE_30: "You drew this.<br>Ha ha ha ha ha.",
STRING_AUTHOR_MESSAGE_31: "You drew this.<br>And I love you for it.",
STRING_AUTHOR_MESSAGE_32: "You drew this.<br>Weird.",
STRING_AUTHOR_MESSAGE_33: "You drew this.<br>I hope it works out for you.",
STRING_AUTHOR_MESSAGE_34: "You drew this.<br>Have you ever considered that you might be the only person in the universe? And everything else...everyone, every thing, is just in your mind? Have you?",
STRING_AUTHOR_MESSAGE_35: "You drew this.<br>And fun was had by all.",
STRING_AUTHOR_MESSAGE_36: "You drew this.<br>It will not be fully appreciated until after you are dead.",
STRING_AUTHOR_MESSAGE_37: "You drew this.<br>But, you probably know that already.",
STRING_AUTHOR_MESSAGE_38: "You drew this.<br>You.",
STRING_AUTHOR_MESSAGE_39: "You drew this.<br>Only history can judge you.",
STRING_AUTHOR_MESSAGE_40: "You drew this.<br>Enjoy it.",
STRING_AUTHOR_MESSAGE_41: "You drew this.<br>It is good.",
STRING_SUBMIT_ALERT: "you got too close to the real title, or entered something someone else already did!",
ERROR_DRAWING_EMPTY: "You have to draw something!",
STRING_SKIP_BUTTON: "skip (this is offensive)",
STRING_SKIP_BUTTON_CONFIRM: "are you sure?",
STRING_TEXT_SUBMIT_ALERT: "you can't enter nothing!",
STRING_ERROR_INVALID_ROOM_CODE: "Invalid Room Code",
STRING_ERROR_UNABLE_TO_JOIN: "Unable to connect to the Jackbox Games server. This is commonly caused by adblockers or privacy extensions.",
STRING_ERROR_WEBSOCKETS_REQUIRED: "WebSockets are not supported on your browser.",
STRING_ERROR_INVALID_APP_ID: "Invalid app id for room: ",
STRING_SETTINGS: "Settings",
STRING_DYSLEXIC_FONT: "Dyslexic Font",
STRING_LARGE_FONT: "Large Font",
LANGUAGE: "Language",
LOGIN: "Login",
STRING_CAMERA_WARNING: "[b]HEADS UP:[/b] We’re not detecting a camera, but you can still play the game without a photo. If this seems wrong, try joining with a different browser.",
STRING_STYLE_WARNING: "[b]HEADS UP:[/b] Your browser seems a bit outdated, and will have some issues displaying this game.",
STRING_NAME: "NAME",
STRING_NAME_PLACEHOLDER: "ENTER YOUR NAME",
STRING_CANVAS_COMPATIBILITY: "Sorry, your browser is not supported.",
STRING_MENU_HELP: "HELP",
STRING_MENU_TWITCH: "TWITCH",
STRING_MENU_LOGOUT: "LOGOUT",
STRING_MENU_MERCH: "MERCH",
STRING_MENU_PAST_GAMES: "PAST GAMES",
STRING_MENU_MAILING_LIST: "MAILING LIST",
ERROR_UNSUPPORTED_BROWSER: "This game is not supported on this browser. View '?' or HELP to see a list of compatible browsers.",
ERROR_UNSUPPORTED_WEBSOCKETS: "WebSockets are not supported on your browser.",
ERROR_ROOM_FULL: "The game is full",
ERROR_AUDIENCE_FULL: "The audience is full",
ERROR_INVALID_ROOMCODE: "Invalid Room Code",
ERROR_UNABLE_TO_CONNECT: "Unable to connect to the Jackbox Games server. This is commonly caused by adblockers or privacy extensions.",
ERROR_GAME_LOCKED: "Game is in progress. Please wait for a new game to start.",
AD_AVAILABLE_NOW: "Available Now!",
AD_ON_SALE: "On Sale!",
STRING_PASSWORD_REQUIRED_TITLE: "Password required",
STRING_PASSWORD_REQUIRED_BODY: "Please enter the password or join as an audience member",
STRING_PASSWORD_JOIN_AS_PLAYER: "Join as Player",
STRING_PASSWORD_JOIN_AS_AUDIENCE: "Join Audience",
STRING_ERROR_SERVER_ERROR: "Unable to join a room due to a server error",
STRING_ERROR_TWITCH_COOKIES: "Cookies are required to log in with Twitch",
STRING_ERROR_GAME_UNSUPPORTED: "This game is not supported on this browser.",
STRING_ERROR_REQUIRES_TWITCH_LOGIN: "Game requires Twitch login",
STRING_ERROR_ROOM_IS_LOCKED: "Game is locked",
STRING_ERROR_INCORRECT_PASSWORD: "Incorrect password",
STRING_ERROR_GENERIC: "Error joining this game",
STRING_ERROR_CONNECTION: "Connection error",
ERROR_FILTER_NAME: "This game has profanity filters enabled. Please pick a different name."
},
fr: {
STATUS_GAME_FULL: "La salle est pleine",
STATUS_GAME_STARTED: "La partie a commencé",
STATUS_ROOM_NOT_FOUND: "Salle introuvable",
SUBMIT_GAME_FULL: "LA SALLE EST PLEINE",
SUBMIT_GAME_STARTED: "LA PARTIE A COMMENCÉ",
SUBMIT_JOIN_AUDIENCE: "REJOINDRE EN TANT QUE SPECTATEUR",
SUBMIT_RECONNECT: "SE RECONNECTER",
SUBMIT_TWITCH_LOGIN: "SE CONNECTER AVEC TWITCH",
TOS_WARNING: "En cliquant sur {submit}, vous acceptez nos [tos]Conditions de service[/tos].",
LANGUAGE_NAME: "Français",
SUPPORTED_LANGUAGES: ["English", "Français", "Italiano", "Deutsche", "Español"],
SUPPORTED_LOCALES: ["en", "fr", "it", "de", "es"],
STRING_LOBBY_CENSOR_CONFIRM: "Cela supprime le nom du joueur, son avatar, ses entrées et ses dessins. Vous confirmez ?",
STRING_CENSOR_INFO: "touchez <span class='censor-button-image censor-button-black'></span> pour réduire au silence ce joueur jusqu'à la fin de la partie - vous ne verrez plus ses réponses, son nom ou son avatar (c'est violent !)",
STRING_SKIP: "passer !",
STRING_THANK_YOU: "merci pour votre dessin",
STRING_DRAWING_OVER: "c'est fini",
STRING_CENSOR_LIE_CONFIRM: "cela supprimera l'entrée de ce joueur, ses futures entrées et dessins également. vous confirmez ?",
STRING_YES: "Oui",
STRING_NO: "Non",
STRING_THANK_AUDIENCE: "merci pour cette participation, spectateur !",
STRING_AUDIENCE_WELCOME_0: "bienvenue dans le public<br>c'est cool !",
STRING_AUDIENCE_WELCOME_1: "bienvenue dans le public<br>vous pourrez bientôt participer",
STRING_AUDIENCE_WELCOME_2: "bienvenue dans le public<br>ça va bientôt commencer",
STRING_AUDIENCE_WELCOME_3: "bienvenue dans le public<br>on n'attendait plus que vous",
STRING_AUDIENCE_WELCOME_4: "bienvenue dans le public<br>ce n'est pas aussi amusant que d'avoir le jeu, mais c'est mieux que de rester dans son coin à ne rien faire",
STRING_AUDIENCE_WELCOME_5: "bienvenue dans le public<br>plus on est de fous, plus on rit",
STRING_AUDIENCE_WELCOME_6: "bienvenue dans le public<br>il est des nôtres !",
STRING_AUDIENCE_WELCOME_7: "bienvenue dans le public<br>merci de ne pas faire de bruit pendant l'emission",
STRING_AUDIENCE_WELCOME_8: "bienvenue dans le public<br>on fait une pause",
STRING_AUDIENCE_WELCOME_9: "bienvenue dans le public<br>vous aimez regarder, c'est ça ?",
STRING_AUDIENCE_WELCOME_10: "bienvenue dans le public<br>c'est un des moments creux pour le public, mais ça va bientôt chauffer",
STRING_AUDIENCE_WELCOME_11: "bienvenue dans le public<br>merci de ne pas en profiter pour organiser un coup d'État",
STRING_AUDIENCE_WELCOME_12: "bienvenue dans le public<br>faites comme chez vous",
STRING_AUDIENCE_WELCOME_13: "bienvenue dans le public<br>vous aimez juger les gens ?",
STRING_AUDIENCE_WELCOME_14: "bienvenue dans le public<br>respirez un bon coup, ça va commencer",
STRING_AUDIENCE_WELCOME_15: "bienvenue dans le public<br>profitez bien",
STRING_AUDIENCE_WELCOME_16: "bienvenue dans le public<br>de tous les spectateurs, c'est vous qu'on préfère",
STRING_AUDIENCE_WELCOME_17: "bienvenue dans le public<br>les rêves deviennent parfois réalité",
STRING_AUDIENCE_WELCOME_18: "bienvenue dans le public<br>la deuxième façon la plus amusante de profiter du jeu",
STRING_AUDIENCE_WELCOME_19: "bienvenue dans le public<br>on a écrit cette phrase rien que pour vous",
STRING_AUDIENCE_WELCOME_20: "bienvenue dans le public<br>trouvez votre siège tout seul",
STRING_AUDIENCE_WELCOME_21: "bienvenue dans le public<br>bon… et chez vous, tout va bien ?",
STRING_AUTHOR_MESSAGE_0: "Vous avez dessiné ça.<br>Prenez le temps d'y réfléchir.",
STRING_AUTHOR_MESSAGE_1: "Vous avez dessiné ça.<br>Vous devriez peut-être consulter.",
STRING_AUTHOR_MESSAGE_2: "Vous avez dessiné ça.<br>C'est ça que vous êtes aujourd'hui…",
STRING_AUTHOR_MESSAGE_3: "Vous avez dessiné ça.<br>C'est votre œuvre.",
STRING_AUTHOR_MESSAGE_4: "Vous avez dessiné ça.<br>Au moins, vous ne pouvez que progresser.",
STRING_AUTHOR_MESSAGE_5: "Vous avez dessiné ça.<br>Relax.",
STRING_AUTHOR_MESSAGE_6: "Vous avez dessiné ça.<br>Profitez du moment.",
STRING_AUTHOR_MESSAGE_7: "Vous avez dessiné ça.<br>Vous ne pouvez plus en changer.",
STRING_AUTHOR_MESSAGE_8: "Vous avez dessiné ça.<br>Et vous ne pouvez pas accuser quelqu'un d'autre.",
STRING_AUTHOR_MESSAGE_9: "Vous avez dessiné ça.<br>Et votre vie va changer pour toujours.",
STRING_AUTHOR_MESSAGE_10: "Vous avez dessiné ça.<br>C'est cool, non ?",
STRING_AUTHOR_MESSAGE_11: "Vous avez dessiné ça.<br>Sans commentaire.",
STRING_AUTHOR_MESSAGE_12: "Vous avez dessiné ça.<br>On a vu pire.",
STRING_AUTHOR_MESSAGE_13: "Vous avez dessiné ça.<br>Oui, on sait que c'est vous.",
STRING_AUTHOR_MESSAGE_14: "Vous avez dessiné ça.<br>Et… heu…",
STRING_AUTHOR_MESSAGE_15: "Vous avez dessiné ça.<br>Ne vous inquiétez pas, ça va aller vite.",
STRING_AUTHOR_MESSAGE_16: "Vous avez dessiné ça.<br>J'espère que vous aimez.",
STRING_AUTHOR_MESSAGE_17: "Vous avez dessiné ça.<br>C'est de l'art.",
STRING_AUTHOR_MESSAGE_18: "Vous avez dessiné ça.<br>Merci ?",
STRING_AUTHOR_MESSAGE_19: "Vous avez dessiné ça.<br>Bravo !",
STRING_AUTHOR_MESSAGE_20: "Vous avez dessiné ça.<br>Et maintenant, une petite sieste.",
STRING_AUTHOR_MESSAGE_21: "Vous avez dessiné ça.<br>Assumez.",
STRING_AUTHOR_MESSAGE_22: "Vous avez dessiné ça.<br>Et on va vite oublier.",
STRING_AUTHOR_MESSAGE_23: "Vous avez dessiné ça.<br>Acceptez votre destin.",
STRING_AUTHOR_MESSAGE_24: "Vous avez dessiné ça.<br>Faites face aux conséquences.",
STRING_AUTHOR_MESSAGE_25: "Vous avez dessiné ça.<br>C'est fini.",
STRING_AUTHOR_MESSAGE_26: "Vous avez dessiné ça ?<br>C'est pas grave. Tout va bien se passer.",
STRING_AUTHOR_MESSAGE_27: "Vous avez dessiné ça.<br>Mais vous trouverez quand même l'amour. Peut-être.",
STRING_AUTHOR_MESSAGE_28: "Vous avez dessiné ça.<br>Merci.",
STRING_AUTHOR_MESSAGE_29: "Vous avez dessiné ça.<br>Créer est une récompense en soi.",
STRING_AUTHOR_MESSAGE_30: "Vous avez dessiné ça.<br>Ha ha ha ha ha.",
STRING_AUTHOR_MESSAGE_31: "Vous avez dessiné ça.<br>Et on vous aime !",
STRING_AUTHOR_MESSAGE_32: "Vous avez dessiné ça.<br>Bizarre.",
STRING_AUTHOR_MESSAGE_33: "Vous avez dessiné ça.<br>J'espère que ça va aller.",
STRING_AUTHOR_MESSAGE_34: "Vous avez dessiné ça.<br>Vous avez déjà réfléchi à l'idée que vous étiez seul dans l'univers ? Et que tout le reste, tout le monde, ce n'est que dans votre esprit ? Hein ?",
STRING_AUTHOR_MESSAGE_35: "Vous avez dessiné ça.<br>Et tout le monde a bien rit.",
STRING_AUTHOR_MESSAGE_36: "Vous avez dessiné ça.<br>Les grands artistes sont souvent reconnus après leur mort.",
STRING_AUTHOR_MESSAGE_37: "Vous avez dessiné ça.<br>Mais vous le saviez déjà, non ?",
STRING_AUTHOR_MESSAGE_38: "Vous avez dessiné ça.<br>Oui, vous.",
STRING_AUTHOR_MESSAGE_39: "Vous avez dessiné ça.<br>Seule l'histoire pourra vous juger.",
STRING_AUTHOR_MESSAGE_40: "Vous avez dessiné ça.<br>Vous aimez ?",
STRING_AUTHOR_MESSAGE_41: "Vous avez dessiné ça.<br>C'est pas mal.",
STRING_SUBMIT_ALERT: "vous êtes trop proche du vrai titre, ou vous avez proposé la même chose que quelqu'un d'autre",
ERROR_DRAWING_EMPTY: "Vous devez dessiner quelque chose !",
STRING_SKIP_BUTTON: "passer (c'est offensant)",
STRING_SKIP_BUTTON_CONFIRM: "vraiment ?",
STRING_TEXT_SUBMIT_ALERT: "vous ne pouvez pas ne rien entrer",
STRING_ERROR_INVALID_ROOM_CODE: "Code de salle invalide",
STRING_ERROR_UNABLE_TO_JOIN: "Impossible de se connecter au serveur de Jackbox Games. C'est généralement la faute des bloqueurs de pub ou des extensions de protection de la confidentialité.",
STRING_ERROR_WEBSOCKETS_REQUIRED: "Votre navigateur n'est pas compatible avec les WebSockets.",
STRING_ERROR_INVALID_APP_ID: "ID d'app invalide pour la salle :",
STRING_SETTINGS: "Paramètres",
STRING_DYSLEXIC_FONT: "Police pour dyslexiques",
STRING_LARGE_FONT: "Police grande taille",
LANGUAGE: "Langue",
LOGIN: "Connexion",
STRING_CAMERA_WARNING: "[b]ATTENTION :[/b] Nous ne détectons aucune caméra, mais vous pouvez jouer sans afficher votre photo. Si vous pensez qu'il s'agit d'une erreur, essayez de rejoindre en utilisant un autre navigateur.",
STRING_STYLE_WARNING: "[b]ATTENTION :[/b] Votre navigateur semble obsolète. Vous risquez de rencontrer des problèmes d'affichage avec ce jeu.",
STRING_NAME: "NOM",
STRING_NAME_PLACEHOLDER: "INDIQUEZ VOTRE NOM",
STRING_CANVAS_COMPATIBILITY: "Désolé, votre navigateur n'est pas compatible.",
STRING_MENU_HELP: "AIDE",
STRING_MENU_TWITCH: "TWITCH",
STRING_MENU_LOGOUT: "DÉCONNEXION",
STRING_MENU_MERCH: "MERCH",
STRING_MENU_PAST_GAMES: "ANCIENS JEU",
STRING_MENU_MAILING_LIST: "LISTE DE DIFFUSION",
ERROR_UNSUPPORTED_BROWSER: "Le jeu n'est pas compatible avec votre navigateur. Allez sur '?' ou sur AIDE pour afficher une liste des navigateurs compatibles.",
ERROR_UNSUPPORTED_WEBSOCKETS: "Votre navigateur n'est pas compatible avec les WebSockets.",
ERROR_ROOM_FULL: "La salle est pleine",
ERROR_AUDIENCE_FULL: "Il n'y a plus de place dans le public",
ERROR_INVALID_ROOMCODE: "Code de salle incorrect",
ERROR_UNABLE_TO_CONNECT: "Impossible de se connecter au serveur de Jackbox Games. Les bloqueurs de publicité ou les modules de protection de la confidentialité sont généralement à l'origine de ce problème.",
ERROR_GAME_LOCKED: "Partie déjà en cours. Attendez qu'une nouvelle partie commence.",
AD_AVAILABLE_NOW: "Disponible !",
AD_ON_SALE: "En promotion !",
STRING_PASSWORD_REQUIRED_TITLE: "Mot de passe requis",
STRING_PASSWORD_REQUIRED_BODY: "Indiquez le mot de passe ou rejoignez la salle en tant que spectateur",
STRING_PASSWORD_JOIN_AS_PLAYER: "Rejoindre en tant que joueur",
STRING_PASSWORD_JOIN_AS_AUDIENCE: "Rejoindre en tant que spectateur",
STRING_ERROR_SERVER_ERROR: "Impossible de rejoindre une salle en raison d'une erreur serveur",
STRING_ERROR_TWITCH_COOKIES: "Vous devez accepter les cookies pour vous connecter avec Twitch",
STRING_ERROR_GAME_UNSUPPORTED: "Le jeu n'est pas compatible avec votre navigateur.",
STRING_ERROR_REQUIRES_TWITCH_LOGIN: "Ce jeu nécessite une connexion Twitch",
STRING_ERROR_ROOM_IS_LOCKED: "La salle est fermée",
STRING_ERROR_INCORRECT_PASSWORD: "Mot de passe incorrect",
STRING_ERROR_GENERIC: "Erreur en rejoignant la salle",
STRING_ERROR_CONNECTION: "Erreur de connexion",
ERROR_FILTER_NAME: "Le filtre anti-grossièreté est activé pour cette partie. Veuillez choisir un autre nom."
},
it: {
STATUS_GAME_FULL: "La partita è al completo",
STATUS_GAME_STARTED: "La partita è già iniziata",
STATUS_ROOM_NOT_FOUND: "Impossibile trovare la sala",
SUBMIT_GAME_FULL: "LA PARTITA È AL COMPLETO",
SUBMIT_GAME_STARTED: "LA PARTITA È GIÀ INIZIATA",
SUBMIT_JOIN_AUDIENCE: "PARTECIPA COME PUBBLICO",
SUBMIT_RECONNECT: "RICOLLEGATI",
SUBMIT_TWITCH_LOGIN: "ACCEDI CON TWITCH",
TOS_WARNING: "Selezionando {submit}, accetti le [tos]Condizioni del servizio[/tos]",
LANGUAGE_NAME: "Italiano",
SUPPORTED_LANGUAGES: ["English", "Français", "Italiano", "Deutsche", "Español"],
SUPPORTED_LOCALES: ["en", "fr", "it", "de", "es"],
STRING_LOBBY_CENSOR_CONFIRM: "Così facendo verranno rimossi il nome, l'avatar, le risposte e i disegni di questo giocatore. Confermi?",
STRING_CENSOR_INFO: "premi <span class='censor-button-image censor-button-black'></span> per censurare il giocatore per il resto della partita, rimuovendone le risposte, il nome e gli avatar (Wow, pesante...)",
STRING_SKIP: "salta!",
STRING_THANK_YOU: "grazie per il disegno",
STRING_DRAWING_OVER: "tempo per disegnare scaduto!",
STRING_CENSOR_LIE_CONFIRM: "così facendo, rimuovi la risposta di questo giocatore, oltre a tutte le sue risposte future e disegni futuri. Confermi?",
STRING_YES: "Sì",
STRING_NO: "No",
STRING_THANK_AUDIENCE: "grazie per la partecipazione, membro del pubblico!",
STRING_AUDIENCE_WELCOME_0: "ti diamo il benvenuto nel pubblico<br>è divertente!",
STRING_AUDIENCE_WELCOME_1: "ti diamo il benvenuto nel pubblico<br>potrai partecipare fra un attimo",
STRING_AUDIENCE_WELCOME_2: "ti diamo il benvenuto nel pubblico<br>il divertimento inizierà da un momento all'altro",
STRING_AUDIENCE_WELCOME_3: "ti diamo il benvenuto nel pubblico<br>ti stavamo aspettando",
STRING_AUDIENCE_WELCOME_4: "ti diamo il benvenuto nel pubblico<br>non è divertente come giocare, ma lo è sicuramente di più che restare seduti da soli a non far niente",
STRING_AUDIENCE_WELCOME_5: "ti diamo il benvenuto nel pubblico<br>più siamo, meglio stiamo",
STRING_AUDIENCE_WELCOME_6: "ti diamo il benvenuto nel pubblico<br>uno di noi, una di noi",
STRING_AUDIENCE_WELCOME_7: "ti diamo il benvenuto nel pubblico<br>per favore, non mangiare troppi pop-corn durante lo show",
STRING_AUDIENCE_WELCOME_8: "ti diamo il benvenuto nel pubblico<br>è il nostro momento",
STRING_AUDIENCE_WELCOME_9: "ti diamo il benvenuto nel pubblico<br>ti piace guardare, eh?",
STRING_AUDIENCE_WELCOME_10: "ti diamo il benvenuto nel pubblico<br>questo è un momento un po’ noioso, ma migliorerà",
STRING_AUDIENCE_WELCOME_11: "ti diamo il benvenuto nel pubblico<br>per favore, non organizzare un colpo di stato",
STRING_AUDIENCE_WELCOME_12: "ti diamo il benvenuto nel pubblico<br>fai come se fossi a casa tua",
STRING_AUDIENCE_WELCOME_13: "ti diamo il benvenuto nel pubblico<br>speriamo che ti piaccia giudicare le persone",
STRING_AUDIENCE_WELCOME_14: "ti diamo il benvenuto nel pubblico<br>fai un bel respiro, presto inizierà il bello",
STRING_AUDIENCE_WELCOME_15: "ti diamo il benvenuto nel pubblico<br>buon divertimento",
STRING_AUDIENCE_WELCOME_16: "ti diamo il benvenuto nel pubblico<br>di tutto il pubblico, tu sei la nostra persona preferita",
STRING_AUDIENCE_WELCOME_17: "ti diamo il benvenuto nel pubblico<br>i sogni si realizzano!",
STRING_AUDIENCE_WELCOME_18: "ti diamo il benvenuto nel pubblico<br>il secondo modo più divertente per giocare con noi!",
STRING_AUDIENCE_WELCOME_19: "ti diamo il benvenuto nel pubblico<br>abbiamo scritto questa frase in più solo per te",
STRING_AUDIENCE_WELCOME_20: "ti diamo il benvenuto nel pubblico<br>trova il tuo posto a sedere",
STRING_AUDIENCE_WELCOME_21: "ti diamo il benvenuto nel pubblico<br>allora... che mi dici di nuovo?",
STRING_AUTHOR_MESSAGE_0: "Hai disegnato questo.<br>Prenditi un momento per rifletterci su.",
STRING_AUTHOR_MESSAGE_1: "Hai disegnato questo.<br>Che ne dici di farti vedere da uno bravo?",
STRING_AUTHOR_MESSAGE_2: "Hai disegnato questo.<br>Avresti mai immaginato di ridurti così?",
STRING_AUTHOR_MESSAGE_3: "Hai disegnato questo.<br>Sì, l'hai fatto tu.",
STRING_AUTHOR_MESSAGE_4: "Hai disegnato questo.<br>Puoi soltanto migliorare!",
STRING_AUTHOR_MESSAGE_5: "Hai disegnato questo.<br>Rilassati.",
STRING_AUTHOR_MESSAGE_6: "Hai disegnato questo.<br>Goditi questo momento.",
STRING_AUTHOR_MESSAGE_7: "Hai disegnato questo.<br>È troppo tardi per cambiarlo.",
STRING_AUTHOR_MESSAGE_8: "Hai disegnato questo.<br>Non puoi prendertela con nessun altro.",
STRING_AUTHOR_MESSAGE_9: "Hai disegnato questo.<br>E la tua vita non sarà mai più la stessa.",
STRING_AUTHOR_MESSAGE_10: 'Hai disegnato questo.<br>"Evviva"?',
STRING_AUTHOR_MESSAGE_11: "Hai disegnato questo.<br>No comment.",
STRING_AUTHOR_MESSAGE_12: "Hai disegnato questo.<br>Poteva essere peggio.",
STRING_AUTHOR_MESSAGE_13: "Hai disegnato questo.<br>È solo colpa tua.",
STRING_AUTHOR_MESSAGE_14: "Hai disegnato questo.<br>Sì... Ok...",
STRING_AUTHOR_MESSAGE_15: "Hai disegnato questo.<br>Non preoccuparti, presto sarà tutto finito.",
STRING_AUTHOR_MESSAGE_16: "Hai disegnato questo.<br>Ti fa stare bene?",
STRING_AUTHOR_MESSAGE_17: "Hai disegnato questo.<br>Questa è arte!",
STRING_AUTHOR_MESSAGE_18: "Hai disegnato questo.<br>Ehm... Grazie...?",
STRING_AUTHOR_MESSAGE_19: "Hai disegnato questo.<br>Batti il cinque!",
STRING_AUTHOR_MESSAGE_20: "Hai disegnato questo.<br>Che ne dici di schiacciare un pisolino?",
STRING_AUTHOR_MESSAGE_21: "Hai disegnato questo.<br>Non montarti la testa.",
STRING_AUTHOR_MESSAGE_22: "Hai disegnato questo.<br>Passerà anche questa.",
STRING_AUTHOR_MESSAGE_23: "Hai disegnato questo.<br>Rassegnati.",
STRING_AUTHOR_MESSAGE_24: "Hai disegnato questo.<br>Affrontane le conseguenze.",
STRING_AUTHOR_MESSAGE_25: "Hai disegnato questo.<br>Ormai...",
STRING_AUTHOR_MESSAGE_26: "Hai disegnato questo?<br>Non è male, dai. Andrà tutto bene.",
STRING_AUTHOR_MESSAGE_27: "Hai disegnato questo.<br>Ma meriti ancora di ricevere amore. Forse.",
STRING_AUTHOR_MESSAGE_28: "Hai disegnato questo.<br>Grazie.",
STRING_AUTHOR_MESSAGE_29: "Hai disegnato questo.<br>Creare qualcosa è già di per sé una ricompensa.",
STRING_AUTHOR_MESSAGE_30: "Hai disegnato questo.<br>Ah ah ah ah ah.",
STRING_AUTHOR_MESSAGE_31: "Hai disegnato questo.<br>E io ti voglio bene.",
STRING_AUTHOR_MESSAGE_32: "Hai disegnato questo.<br>Strano.",
STRING_AUTHOR_MESSAGE_33: "Hai disegnato questo.<br>Almeno a te piace, spero.",
STRING_AUTHOR_MESSAGE_34: "Hai disegnato questo.<br>Hai mai pensato che potresti essere l'unica persona nell'universo? E tutto il resto... tutti gli altri... vivono solo nella tua mente? Eh? Ci hai mai pensato?",
STRING_AUTHOR_MESSAGE_35: "Hai disegnato questo.<br>E ci hai fatti divertire tutti.",
STRING_AUTHOR_MESSAGE_36: "Hai disegnato questo.<br>Verrà apprezzato come merita solo dopo la tua morte.",
STRING_AUTHOR_MESSAGE_37: "Hai disegnato questo.<br>Ma probabilmente lo sai già.",
STRING_AUTHOR_MESSAGE_38: "Hai disegnato questo.<br>Sì, tu.",
STRING_AUTHOR_MESSAGE_39: "Hai disegnato questo.<br>Soltanto la Storia potrà giudicarti.",
STRING_AUTHOR_MESSAGE_40: "Hai disegnato questo.<br>Goditelo.",
STRING_AUTHOR_MESSAGE_41: "Hai disegnato questo.<br>Non è male.",
STRING_SUBMIT_ALERT: "la tua risposta è troppo simile al titolo vero, oppure è già stata inserita da qualcun altro!",
ERROR_DRAWING_EMPTY: "Devi disegnare qualcosa!",
STRING_SKIP_BUTTON: "salta (questa cosa è offensiva)",
STRING_SKIP_BUTTON_CONFIRM: "confermi?",
STRING_TEXT_SUBMIT_ALERT: "devi per forza inserire qualcosa!",
STRING_ERROR_INVALID_ROOM_CODE: "Codice stanza non valido",
STRING_ERROR_UNABLE_TO_JOIN: "Impossibile collegarsi al server Jackbox Games. Solitamente il problema è causato da adblocker o estensioni per la privacy.",
STRING_ERROR_WEBSOCKETS_REQUIRED: "La tecnologia WebSocket non è supportata dal browser attualmente in uso.",
STRING_ERROR_INVALID_APP_ID: "App id non valido per la stanza:",
STRING_SETTINGS: "Impostazioni",
STRING_DYSLEXIC_FONT: "Caratteri per dislessia",
STRING_LARGE_FONT: "Caratteri grandi",
LANGUAGE: "Lingua",
LOGIN: "Accesso",
STRING_CAMERA_WARNING: "[b]AVVISO:[/b] Non rileviamo la telecamera, ma puoi giocare anche senza aggiungere una foto. Se la cosa non ti torna, prova ad accedere usando un altro browser.",
STRING_STYLE_WARNING: "[b]AVVISO:[/b] Il tuo browser è obsoleto e avrà dei problemi a visualizzare il gioco.",
STRING_NAME: "NOME",
STRING_NAME_PLACEHOLDER: "INSERISCI IL TUO NOME",
STRING_CANVAS_COMPATIBILITY: "Siamo spiacenti, il tuo browser non è supportato.",
STRING_MENU_HELP: "AIUTO",
STRING_MENU_TWITCH: "TWITCH",
STRING_MENU_LOGOUT: "ESCI",
STRING_MENU_MERCH: "NEGOZIO",
STRING_MENU_PAST_GAMES: "PARTITE PRECEDENTI",
STRING_MENU_MAILING_LIST: "NEWSLETTER",
ERROR_UNSUPPORTED_BROWSER: "Il gioco non è supportato dal browser attualmente in uso. Clicca su '?' o AIUTO per visualizzare la lista dei browser compatibili.",
ERROR_UNSUPPORTED_WEBSOCKETS: "La tecnologia WebSocket non è supportata dal browser attualmente in uso.",
ERROR_ROOM_FULL: "La partita è al completo",
ERROR_AUDIENCE_FULL: "Il pubblico è al completo",
ERROR_INVALID_ROOMCODE: "Codice stanza non valido",
ERROR_UNABLE_TO_CONNECT: "Impossibile collegarsi al server Jackbox Games. Solitamente il problema è causato da adblocker o estensioni per la privacy.",
ERROR_GAME_LOCKED: "Partita in corso. Attendi che ne inizi una nuova.",
AD_AVAILABLE_NOW: "Disponibile ora!",
AD_ON_SALE: "In offerta!",
STRING_PASSWORD_REQUIRED_TITLE: "Password necessaria",
STRING_PASSWORD_REQUIRED_BODY: "Inserisci la password o partecipa come pubblico",
STRING_PASSWORD_JOIN_AS_PLAYER: "Partecipa come giocatore",
STRING_PASSWORD_JOIN_AS_AUDIENCE: "Partecipa come pubblico",
STRING_ERROR_SERVER_ERROR: "Impossibile entrare in una stanza: errore del server",
STRING_ERROR_TWITCH_COOKIES: "I cookies sono necessari per effettuare il login a Twitch",
STRING_ERROR_GAME_UNSUPPORTED: "Il gioco non è supportato dal browser attualmente in uso.",
STRING_ERROR_REQUIRES_TWITCH_LOGIN: "Questo gioco richiede l'accesso a Twitch",
STRING_ERROR_ROOM_IS_LOCKED: "La stanza è bloccata",
STRING_ERROR_INCORRECT_PASSWORD: "Password errata",
STRING_ERROR_GENERIC: "Impossibile entrare in questa stanza",
STRING_ERROR_CONNECTION: "Errore di connessione",
ERROR_FILTER_NAME: "Questa partita ha i filtri delle volgarità attivi. Scegli un nome diverso."
},
de: {
STATUS_GAME_FULL: "Spiel ist voll",
STATUS_GAME_STARTED: "Spiel hat bereits begonnen",
STATUS_ROOM_NOT_FOUND: "Raum nicht gefunden",
SUBMIT_GAME_FULL: "SPIEL IST VOLL",
SUBMIT_GAME_STARTED: "SPIEL HAT BEREITS BEGONNEN",
SUBMIT_JOIN_AUDIENCE: "INS PUBLIKUM SETZEN",
SUBMIT_RECONNECT: "NEU VERBINDEN",
SUBMIT_TWITCH_LOGIN: "MIT TWITCH ANMELDEN",
TOS_WARNING: "Wenn du auf {submit} klickst, erklärst du dich mit unseren [tos]Nutzungsbedingungen[/tos] einverstanden",
LANGUAGE_NAME: "Deutsche",
SUPPORTED_LANGUAGES: ["English", "Français", "Italiano", "Deutsche", "Español"],
SUPPORTED_LOCALES: ["en", "fr", "it", "de", "es"],
STRING_LOBBY_CENSOR_CONFIRM: "Dadurch werden der Name des Spielers, sein Avatar, seine Eingaben und seine Zeichnungen entfernt. Bist du sicher?",
STRING_CENSOR_INFO: "Drücke <span class='censor-button-image censor-button-black'></span>, um den Spieler für den Rest des Spiels zu zensieren und seinen Namen, Avatar und seine Antworten zu entfernen. (Ziemlich heftig.)",
STRING_SKIP: "Überspringen!",
STRING_THANK_YOU: "Danke für die Zeichnung.",
STRING_DRAWING_OVER: "Zeichenzeit ist abgelaufen!",
STRING_CENSOR_LIE_CONFIRM: "Dadurch werden die Eingabe des Spielers und seine zukünftigen Eingaben und Zeichnungen entfernt. Bist du sicher?",
STRING_YES: "Ja",
STRING_NO: "Nein",
STRING_THANK_AUDIENCE: "Danke für deine Teilnahme, Publikumsmitglied!",
STRING_AUDIENCE_WELCOME_0: "Willkommen im Publikum!<br>Das macht Spaß!",
STRING_AUDIENCE_WELCOME_1: "Willkommen im Publikum!<br>Du kannst gleich mitmachen.",
STRING_AUDIENCE_WELCOME_2: "Willkommen im Publikum!<br>Der Spaß geht sofort los.",
STRING_AUDIENCE_WELCOME_3: "Willkommen im Publikum!<br>Wir haben auf dich gewartet.",
STRING_AUDIENCE_WELCOME_4: "Willkommen im Publikum!<br>Nicht so toll, wie das Spiel selbst zu besitzen, aber immer noch besser, als gar nichts zu unternehmen.",
STRING_AUDIENCE_WELCOME_5: "Willkommen im Publikum!<br>Je mehr, desto besser.",
STRING_AUDIENCE_WELCOME_6: "Willkommen im Publikum!<br>Einer von uns. Einer von uns.",
STRING_AUDIENCE_WELCOME_7: "Willkommen im Publikum!<br>Bitte rascheln Sie während der Vorstellung nicht mit Ihrer Chipstüte.",
STRING_AUDIENCE_WELCOME_8: "Willkommen im Publikum!<br>Hier unten läuft die Zeit nur für uns.",
STRING_AUDIENCE_WELCOME_9: "Willkommen im Publikum!<br>Du schaust gerne zu, nicht wahr?",
STRING_AUDIENCE_WELCOME_10: "Willkommen im Publikum!<br>Es ist gerade nicht sonderlich spannend fürs Publikum, aber das wird gleich.",
STRING_AUDIENCE_WELCOME_11: "Willkommen im Publikum!<br>Bitte tut euch nicht zusammen und zettelt eine Meuterei an.",
STRING_AUDIENCE_WELCOME_12: "Willkommen im Publikum!<br>Fühlt euch ganz wie zu Hause.",
STRING_AUDIENCE_WELCOME_13: "Willkommen im Publikum!<br>Wir hoffen, ihr urteilt gern über Leute.",
STRING_AUDIENCE_WELCOME_14: "Willkommen im Publikum!<br>Tief einatmen, es geht sofort los.",
STRING_AUDIENCE_WELCOME_15: "Willkommen im Publikum!<br>Viel Spaß.",
STRING_AUDIENCE_WELCOME_16: "Willkommen im Publikum!<br>Du bist definitiv unser Favorit aus dem Publikum.",
STRING_AUDIENCE_WELCOME_17: "Willkommen im Publikum!<br>Träume werden also doch wahr!",
STRING_AUDIENCE_WELCOME_18: "Willkommen im Publikum!<br>Die zweitspaßigste Methode, dieses Spiel zu spielen!",
STRING_AUDIENCE_WELCOME_19: "Willkommen im Publikum!<br>Diesen Satz haben wir extra für dich geschrieben.",
STRING_AUDIENCE_WELCOME_20: "Willkommen im Publikum!<br>Bitte nehmen Sie Platz.",
STRING_AUDIENCE_WELCOME_21: "Willkommen im Publikum!<br>Aaaaalso, was gibt's bei dir Neues?",
STRING_AUTHOR_MESSAGE_0: "Das hast du gezeichnet.<br>Denk noch mal drüber nach.",
STRING_AUTHOR_MESSAGE_1: "Das hast du gezeichnet.<br>Mach lieber bald einen Arzttermin.",
STRING_AUTHOR_MESSAGE_2: "Das hast du gezeichnet.<br>So weit ist es schon gekommen.",
STRING_AUTHOR_MESSAGE_3: "Das hast du gezeichnet.<br>Das ist deine Kreation.",
STRING_AUTHOR_MESSAGE_4: "Das hast du gezeichnet.<br>Es kann nur besser werden!",
STRING_AUTHOR_MESSAGE_5: "Das hast du gezeichnet.<br>Entspann dich.",
STRING_AUTHOR_MESSAGE_6: "Das hast du gezeichnet.<br>Lass es dir auf der Zunge zergehen.",
STRING_AUTHOR_MESSAGE_7: "Das hast du gezeichnet.<br>Es gibt kein Zurück mehr.",
STRING_AUTHOR_MESSAGE_8: "Das hast du gezeichnet.<br>Da musst du dich schon an die eigene Nase fassen.",
STRING_AUTHOR_MESSAGE_9: "Das hast du gezeichnet.<br>Und nichts ist mehr, wie es war.",
STRING_AUTHOR_MESSAGE_10: "Das hast du gezeichnet.<br>Yay?",
STRING_AUTHOR_MESSAGE_11: "Das hast du gezeichnet.<br>Kein Kommentar.",
STRING_AUTHOR_MESSAGE_12: "Das hast du gezeichnet.<br>Könnte schlimmer sein.",
STRING_AUTHOR_MESSAGE_13: "Das hast du gezeichnet.<br>Alles deine Schuld.",
STRING_AUTHOR_MESSAGE_14: "Das hast du gezeichnet.<br>Also... tja...",
STRING_AUTHOR_MESSAGE_15: "Das hast du gezeichnet.<br>Keine Angst. Ist gleich vorbei.",
STRING_AUTHOR_MESSAGE_16: "Das hast du gezeichnet.<br>Fühl dich so gut damit, wie du kannst.",
STRING_AUTHOR_MESSAGE_17: "Das hast du gezeichnet.<br>Das ist Kunst.",
STRING_AUTHOR_MESSAGE_18: "Das hast du gezeichnet.<br>Danke?",
STRING_AUTHOR_MESSAGE_19: "Das hast du gezeichnet.<br>High five!",
STRING_AUTHOR_MESSAGE_20: "Das hast du gezeichnet.<br>Mach ein kurzes Nickerchen.",
STRING_AUTHOR_MESSAGE_21: "Das hast du gezeichnet.<br>Bleib ganz cool.",
STRING_AUTHOR_MESSAGE_22: "Das hast du gezeichnet.<br>Es geht alles vorüber.",
STRING_AUTHOR_MESSAGE_23: "Das hast du gezeichnet.<br>Damit musst du jetzt leben.",
STRING_AUTHOR_MESSAGE_24: "Das hast du gezeichnet.<br>Stelle dich den Konsequenzen.",
STRING_AUTHOR_MESSAGE_25: "Das hast du gezeichnet.<br>Jetzt ist es zu spät.",
STRING_AUTHOR_MESSAGE_26: "Hast du das gezeichnet?<br>Schon in Ordnung. Alles wird gut.",
STRING_AUTHOR_MESSAGE_27: "Das hast du gezeichnet.<br>Aber du verdienst bestimmt trotzdem etwas Liebe.",
STRING_AUTHOR_MESSAGE_28: "Das hast du gezeichnet.<br>Danke.",
STRING_AUTHOR_MESSAGE_29: "Das hast du gezeichnet.<br>Auf den Versuch kommt es an.",
STRING_AUTHOR_MESSAGE_30: "Das hast du gezeichnet.<br>Ha ha ha ha ha.",
STRING_AUTHOR_MESSAGE_31: "Das hast du gezeichnet.<br>Und dafür liebe ich dich.",
STRING_AUTHOR_MESSAGE_32: "Das hast du gezeichnet.<br>Seltsam.",
STRING_AUTHOR_MESSAGE_33: "Das hast du gezeichnet.<br>Hoffentlich kommst du damit durch.",
STRING_AUTHOR_MESSAGE_34: "Das hast du gezeichnet.<br>Hast du schon mal drüber nachgedacht, dass du vielleicht das einzige Lebewesen im ganzen Universum bist? Und alles andere, jeder andere, ist nur in deinem Kopf? Hast du?",
STRING_AUTHOR_MESSAGE_35: "Das hast du gezeichnet.<br>Und alle hatten Spaß damit.",
STRING_AUTHOR_MESSAGE_36: "Das hast du gezeichnet.<br>Aber das wissen die Leute erst nach deinem Tod zu schätzen.",
STRING_AUTHOR_MESSAGE_37: "Das hast du gezeichnet.<br>Aber das weißt du vermutlich schon.",
STRING_AUTHOR_MESSAGE_38: "Das hast du gezeichnet.<br>Du.",
STRING_AUTHOR_MESSAGE_39: "Das hast du gezeichnet.<br>Sollen spätere Generationen darüber entscheiden.",
STRING_AUTHOR_MESSAGE_40: "Das hast du gezeichnet.<br>Genieße es.",
STRING_AUTHOR_MESSAGE_41: "Das hast du gezeichnet.<br>Gar nicht übel.",
STRING_SUBMIT_ALERT: "Das ist zu nah am tatsächlichen Titel oder einem Titel, den schon jemand anders eingegeben hat!",
ERROR_DRAWING_EMPTY: "Du musst etwas zeichnen!",
STRING_SKIP_BUTTON: "Überspringen (das ist zu anstößig)",
STRING_SKIP_BUTTON_CONFIRM: "Bist du sicher?",
STRING_TEXT_SUBMIT_ALERT: "Du kannst nicht nichts eingeben!",
STRING_ERROR_INVALID_ROOM_CODE: "Ungültiger Raumcode",
STRING_ERROR_UNABLE_TO_JOIN: "Es konnte keine Verbindung zum Server von Jackbox Games hergestellt werden. Dies wird häufig durch Adblocker oder Privacy Extensions verursacht.",
STRING_ERROR_WEBSOCKETS_REQUIRED: "WebSockets werden auf deinem Browser nicht unterstützt.",
STRING_ERROR_INVALID_APP_ID: "Ungültige App-ID für den Raum:",
STRING_SETTINGS: "Einstellungen",
STRING_DYSLEXIC_FONT: "Font für Dyslexiker",
STRING_LARGE_FONT: "Großer Font",
LANGUAGE: "Sprache",
LOGIN: "Login",
STRING_CAMERA_WARNING: "[b]ACHTUNG:[/b] Es wurde keine Kamera erkannt, aber du kannst das Spiel auch ohne Foto spielen. Falls eine Kamera vorhanden ist, probiere es mit einem anderen Browser.",
STRING_STYLE_WARNING: "[b]ACHTUNG:[/b] Dein Browser scheint etwas veraltet zu sein. Es könnte Probleme bei der Anzeige dieses Spiels geben.",
STRING_NAME: "NAME",
STRING_NAME_PLACEHOLDER: "GIB DEINEN NAMEN EIN",
STRING_CANVAS_COMPATIBILITY: "Tut uns leid, dein Browser wird nicht unterstützt.",
STRING_MENU_HELP: "HILFE",
STRING_MENU_TWITCH: "TWITCH",
STRING_MENU_LOGOUT: "ABMELDEN",
STRING_MENU_MERCH: "MERCH",
STRING_MENU_PAST_GAMES: "ANDERE SPIELE",
STRING_MENU_MAILING_LIST: "MAILINGLISTE",
ERROR_UNSUPPORTED_BROWSER: "Dieses Spiel wird von diesem Browser nicht unterstützt. Unter '?' und HILFE findest du eine vollständige Liste an kompatiblen Browsern.",
ERROR_UNSUPPORTED_WEBSOCKETS: "WebSockets werden von deinem Browser nicht unterstützt.",
ERROR_ROOM_FULL: "Das Spiel ist voll",
ERROR_AUDIENCE_FULL: "Das Publikum ist voll",
ERROR_INVALID_ROOMCODE: "Ungültiger Raumcode",
ERROR_UNABLE_TO_CONNECT: "Es konnte keine Verbindung zum Server von Jackbox Games hergestellt werden. Dies wird häufig durch Adblocker oder Privacy Extensions verursacht.",
ERROR_GAME_LOCKED: "Spiel läuft derzeit. Bitte warte, bis ein neues Spiel beginnt.",
AD_AVAILABLE_NOW: "Jetzt verfügbar!",
AD_ON_SALE: "Angebot!",
STRING_PASSWORD_REQUIRED_TITLE: "Passwort benötigt",
STRING_PASSWORD_REQUIRED_BODY: "Bitte gib das Passwort ein oder setze dich ins Publikum",
STRING_PASSWORD_JOIN_AS_PLAYER: "Als Spieler beitreten",
STRING_PASSWORD_JOIN_AS_AUDIENCE: "Ins Publikum setzen",
STRING_ERROR_SERVER_ERROR: "Aufgrund eines Serverfehlers konntest du dem Raum nicht beitreten",
STRING_ERROR_TWITCH_COOKIES: "Du musst Cookies akzeptieren, um dich mit Twitch einzuloggen",
STRING_ERROR_GAME_UNSUPPORTED: "Dieses Spiel wird von diesem Browser nicht unterstützt.",
STRING_ERROR_REQUIRES_TWITCH_LOGIN: "Für diesen Spiel ist Twitch erforderlich",
STRING_ERROR_ROOM_IS_LOCKED: "Spiel verschlossen",
STRING_ERROR_INCORRECT_PASSWORD: "Falsches Passwort",
STRING_ERROR_GENERIC: "Fehler beim Betreten des Spiels",
STRING_ERROR_CONNECTION: "Verbindungsfehler",
ERROR_FILTER_NAME: "Der Familientauglichkeits-Filter des Spiels ist aktiviert. Wähle einen anderen Namen."
},
es: {
STATUS_GAME_FULL: "La partida está completa",
STATUS_GAME_STARTED: "La partida ha empezado",
STATUS_ROOM_NOT_FOUND: "No se encuentra la sala",
SUBMIT_GAME_FULL: "LA PARTIDA ESTÁ COMPLETA",
SUBMIT_GAME_STARTED: "LA PARTIDA HA EMPEZADO",
SUBMIT_JOIN_AUDIENCE: "UNIRSE COMO PÚBLICO",
SUBMIT_RECONNECT: "RECONECTAR",
SUBMIT_TWITCH_LOGIN: "INICIAR SESIÓN CON TWITCH",
TOS_WARNING: "Al hacer clic en {submit}, aceptas las [tos]Condiciones del servicio[/tos]",
LANGUAGE_NAME: "Español",
SUPPORTED_LANGUAGES: ["English", "Français", "Italiano", "Deutsche", "Español"],
SUPPORTED_LOCALES: ["en", "fr", "it", "de", "es"],
STRING_LOBBY_CENSOR_CONFIRM: "Se eliminarán el nombre, el avatar, las entradas y los dibujos de este jugador. ¿Quieres continuar?",
STRING_CENSOR_INFO: "pulsa <span class='censor-button-image censor-button-black'></span> para censurar al jugador el resto de la partida y eliminar sus respuestas, nombre y avatar (qué intenso)",
STRING_SKIP: "¡paso!",
STRING_THANK_YOU: "gracias por el dibujo",
STRING_DRAWING_OVER: "¡no se dibuja más!",
STRING_CENSOR_LIE_CONFIRM: "se eliminará la entrada de este jugador, así como todas sus entradas y dibujos futuros. ¿quieres continuar?",
STRING_YES: "Sí",
STRING_NO: "No",
STRING_THANK_AUDIENCE: "¡gracias por participar, miembro del público!",
STRING_AUDIENCE_WELCOME_0: "bienvenido al público<br>¡es divertido!",
STRING_AUDIENCE_WELCOME_1: "bienvenido al público<br>enseguida podrás participar",
STRING_AUDIENCE_WELCOME_2: "bienvenido al público<br>enseguida empieza la fiesta",
STRING_AUDIENCE_WELCOME_3: "bienvenido al público<br>te estábamos esperando",
STRING_AUDIENCE_WELCOME_4: "bienvenido al público<br>no es tan divertido como jugar, pero es mejor que estar solo sin hacer nada",
STRING_AUDIENCE_WELCOME_5: "bienvenido al público<br>cuantos más, mejor",
STRING_AUDIENCE_WELCOME_6: "bienvenido al público<br>ya eres uno de nosotros",
STRING_AUDIENCE_WELCOME_7: "bienvenido al público<br>por favor, no comas nada crujiente durante el programa",
STRING_AUDIENCE_WELCOME_8: "bienvenido al público<br>ahora nos toca a nosotros",
STRING_AUDIENCE_WELCOME_9: "bienvenido al público<br>te gusta mirar, ¿eh?",
STRING_AUDIENCE_WELCOME_10: "bienvenido al público<br>ahora mismo no es que pase mucho, pero enseguida pillamos el ritmo",
STRING_AUDIENCE_WELCOME_11: "bienvenido al público<br>por favor, nada de montar motines, ¿eh?",
STRING_AUDIENCE_WELCOME_12: "bienvenido al público<br>siéntete como en casa",
STRING_AUDIENCE_WELCOME_13: "bienvenido al público<br>esperamos que te guste juzgar a la gente",
STRING_AUDIENCE_WELCOME_14: "bienvenido al público<br>respira hondo, en breve empieza lo bueno",
STRING_AUDIENCE_WELCOME_15: "bienvenido al público<br>que lo disfrutes",
STRING_AUDIENCE_WELCOME_16: "bienvenido al público<br>de todo el público, te preferimos a ti",
STRING_AUDIENCE_WELCOME_17: "bienvenido al público<br>¡los sueños se hacen realidad!",
STRING_AUDIENCE_WELCOME_18: "bienvenido al público<br>¡es la segunda forma más divertida de jugar a esto!",
STRING_AUDIENCE_WELCOME_19: "bienvenido al público<br>esta frase del guion va dedicada a ti",
STRING_AUDIENCE_WELCOME_20: "bienvenido al público<br>por favor, busca un asiento",
STRING_AUDIENCE_WELCOME_21: "bienvenido al público<br>bueeeeno, ¿qué te cuentas?",
STRING_AUTHOR_MESSAGE_0: "Este es tu dibujo.<br>Piensa en lo que has hecho.",
STRING_AUTHOR_MESSAGE_1: "Este es tu dibujo.<br>Quizá deberías ir al médico.",
STRING_AUTHOR_MESSAGE_2: "Este es tu dibujo.<br>En esto te has convertido.",
STRING_AUTHOR_MESSAGE_3: "Este es tu dibujo.<br>Este es tu diseño.",
STRING_AUTHOR_MESSAGE_4: "Este es tu dibujo.<br>¡Después de esto, solo cabe mejorar!",
STRING_AUTHOR_MESSAGE_5: "Este es tu dibujo.<br>Relájate.",
STRING_AUTHOR_MESSAGE_6: "Este es tu dibujo.<br>Disfruta del momento.",
STRING_AUTHOR_MESSAGE_7: "Este es tu dibujo.<br>Demasiado tarde para cambiarlo.",
STRING_AUTHOR_MESSAGE_8: "Este es tu dibujo.<br>No puedes echarle la culpa a nadie más.",
STRING_AUTHOR_MESSAGE_9: "Este es tu dibujo.<br>Y tu vida cambiará para siempre.",
STRING_AUTHOR_MESSAGE_10: "Este es tu dibujo.<br>¿Sí, vale?",
STRING_AUTHOR_MESSAGE_11: "Este es tu dibujo.<br>Sin comentarios.",
STRING_AUTHOR_MESSAGE_12: "Este es tu dibujo.<br>Podría ser peor.",
STRING_AUTHOR_MESSAGE_13: "Este es tu dibujo.<br>Esto es culpa tuya.",
STRING_AUTHOR_MESSAGE_14: "Este es tu dibujo.<br>Sí… Ajá…",
STRING_AUTHOR_MESSAGE_15: "Este es tu dibujo.<br>No pasa nada, pronto acabará todo.",
STRING_AUTHOR_MESSAGE_16: "Este es tu dibujo.<br>No te castigues demasiado por esto.",
STRING_AUTHOR_MESSAGE_17: "Este es tu dibujo.<br>Esto es arte.",
STRING_AUTHOR_MESSAGE_18: "Este es tu dibujo.<br>¿Gracias?",
STRING_AUTHOR_MESSAGE_19: "Este es tu dibujo.<br>¡Chócala!",
STRING_AUTHOR_MESSAGE_20: "Este es tu dibujo.<br>¿Por qué no duermes un poco?",
STRING_AUTHOR_MESSAGE_21: "Este es tu dibujo.<br>Tómatelo con filosofía.",
STRING_AUTHOR_MESSAGE_22: "Este es tu dibujo.<br>La vergüenza pasará.",
STRING_AUTHOR_MESSAGE_23: "Este es tu dibujo.<br>De psiquiatra.",
STRING_AUTHOR_MESSAGE_24: "Este es tu dibujo.<br>Asume las consecuencias.",
STRING_AUTHOR_MESSAGE_25: "Este es tu dibujo.<br>Ya está hecho.",
STRING_AUTHOR_MESSAGE_26: "¿Has dibujado esto?<br>Calma. Todo pasará.",
STRING_AUTHOR_MESSAGE_27: "Este es tu dibujo.<br>Bueno, alguien te querrá. Tal vez.",
STRING_AUTHOR_MESSAGE_28: "Este es tu dibujo.<br>Gracias.",
STRING_AUTHOR_MESSAGE_29: "Este es tu dibujo.<br>Madre mía.",
STRING_AUTHOR_MESSAGE_30: "Este es tu dibujo.<br>Ja. Ja. Ja. Ja.",
STRING_AUTHOR_MESSAGE_31: "Este es tu dibujo.<br>Te quiero por ello.",
STRING_AUTHOR_MESSAGE_32: "Este es tu dibujo.<br>Qué raro.",
STRING_AUTHOR_MESSAGE_33: "Este es tu dibujo.<br>Mientras te guste a ti…",
STRING_AUTHOR_MESSAGE_34: "Este es tu dibujo.<br>Oye, ¿alguna vez te has planteado si serás la única persona del universo? ¿Si todo lo demás… todos, todas las cosas, están en tu cabeza? ¿Eh?",
STRING_AUTHOR_MESSAGE_35: "Este es tu dibujo.<br>Para echar unas risas vale.",
STRING_AUTHOR_MESSAGE_36: "Este es tu dibujo.<br>No se te reconocerá hasta después de tu muerte.",
STRING_AUTHOR_MESSAGE_37: "Este es tu dibujo.<br>Aunque eso ya lo sabrás, claro.",
STRING_AUTHOR_MESSAGE_38: "Este es tu dibujo.<br>Ver para creer.",
STRING_AUTHOR_MESSAGE_39: "Este es tu dibujo.<br>La historia te juzgará.",
STRING_AUTHOR_MESSAGE_40: "Este es tu dibujo.<br>Disfrútalo.",
STRING_AUTHOR_MESSAGE_41: "Este es tu dibujo.<br>Está bien.",
STRING_SUBMIT_ALERT: "¡estuviste muy cerca del título real o respondiste igual que otra persona!",
ERROR_DRAWING_EMPTY: "¡Tienes que dibujar algo!",
STRING_SKIP_BUTTON: "paso (es ofensivo)",
STRING_SKIP_BUTTON_CONFIRM: "¿quieres continuar?",
STRING_TEXT_SUBMIT_ALERT: "¡no puedes no poner nada!",
STRING_ERROR_INVALID_ROOM_CODE: "El código de la sala no es válido",
STRING_ERROR_UNABLE_TO_JOIN: "No podemos conectarte a los servidores de Jackbox Games. Las causas habituales son los bloqueadores de anuncios y las extensiones de privacidad.",
STRING_ERROR_WEBSOCKETS_REQUIRED: "Tu navegador no admite WebSockets.",
STRING_ERROR_INVALID_APP_ID: "ID de app no válido para la sala:",
STRING_SETTINGS: "Ajustes",
STRING_DYSLEXIC_FONT: "Fuente para disléxicos",
STRING_LARGE_FONT: "Fuente grande",
LANGUAGE: "idioma",
LOGIN: "Iniciar sesión",
STRING_CAMERA_WARNING: "[b]AVISO:[/b] No se detecta ninguna cámara, pero puedes jugar sin foto. Si crees que se trata de un error, cambia de navegador.",
STRING_STYLE_WARNING: "[b]AVISO:[/b] Tu navegador está un poco desactualizado, así que es posible que el juego no se vea del todo bien.",
STRING_NAME: "NOMBRE",
STRING_NAME_PLACEHOLDER: "INDICA TU NOMBRE",
STRING_CANVAS_COMPATIBILITY: "Vaya, tu navegador no es compatible.",
STRING_MENU_HELP: "AYUDA",
STRING_MENU_TWITCH: "TWITCH",
STRING_MENU_LOGOUT: "CERRAR SESIÓN",
STRING_MENU_MERCH: "MERCHANDISING",
STRING_MENU_PAST_GAMES: "PARTIDAS ANTERIORES",
STRING_MENU_MAILING_LIST: "LISTA DE CORREO",
ERROR_UNSUPPORTED_BROWSER: "El juego no es compatible con este navegador. En '?' y AYUDA puedes ver la lista de navegadores compatibles.",
ERROR_UNSUPPORTED_WEBSOCKETS: "Tu navegador no soporta WebSockets.",
ERROR_ROOM_FULL: "La sala está llena",
ERROR_AUDIENCE_FULL: "El público está completo",
ERROR_INVALID_ROOMCODE: "El código de la sala no es válido",
ERROR_UNABLE_TO_CONNECT: "No ha podido establecerse conexión con el servidor de Jackbox Games. Puede ser debido a los bloqueadores de anuncios o a las extensiones de privacidad.",
ERROR_GAME_LOCKED: "La partida está en curso. Espera a que comience otra.",
AD_AVAILABLE_NOW: "¡Ya disponible!",
AD_ON_SALE: "¡Ya a la venta!",
STRING_PASSWORD_REQUIRED_TITLE: "Hace falta una contraseña",
STRING_PASSWORD_REQUIRED_BODY: "Introduce la contraseña o únete como público",
STRING_PASSWORD_JOIN_AS_PLAYER: "Unirse como jugador",
STRING_PASSWORD_JOIN_AS_AUDIENCE: "Unirse como público",
STRING_ERROR_SERVER_ERROR: "Debido a un error en el servidor no puedes unirte a la sala",
STRING_ERROR_TWITCH_COOKIES: "Debes aceptar las cookies para iniciar sesión con Twitch",
STRING_ERROR_GAME_UNSUPPORTED: "El juego no es compatible con este navegador.",