-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathTranslationRU.cs
11839 lines (11177 loc) · 554 KB
/
TranslationRU.cs
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
using System.Collections.Generic;
using static Souvenir.Translation_ru.Conjugation;
namespace Souvenir
{
public class Translation_ru : TranslationBase<Translation_ru.TranslationInfo_ru>
{
public sealed class TranslationInfo_ru : TranslationInfo
{
public Conjugation Conjugation = в_PrepositiveMascNeuter;
}
public enum Conjugation
{
// The preposition в is automatically added in front of the module name, so omit it from the question text
в_PrepositiveMascNeuter,
в_PrepositiveFeminine,
в_PrepositivePlural,
// The preposition во is automatically added in front of the module name, so omit it from the question text
во_PrepositiveMascNeuter,
во_PrepositiveFeminine,
во_PrepositivePlural,
// No preposition is automatically added in front of the module name, so include it in the question text
PrepositiveMascNeuter,
PrepositiveFeminine,
PrepositivePlural,
NominativeMasculine,
NominativeNeuter,
NominativeFeminine,
NominativePlural,
GenitiveMascNeuter,
GenitiveFeminine,
GenitivePlural,
AccusativeMascNeuter,
AccusativeFeminine,
AccusativePlural,
InstrumentalMascNeuter,
InstrumentalFeminine,
InstrumentalPlural,
DativeMascNeuter,
DativeFeminine,
DativePlural,
}
public override string FormatModuleName(Question question, bool addSolveCount, int numSolved)
{
if (_translations.Get(question) is not TranslationInfo_ru tr)
return base.FormatModuleName(question, addSolveCount, numSolved);
return addSolveCount
? tr.Conjugation switch
{
NominativeMasculine => $"{Ordinal(numSolved)}-й решённый {tr.ModuleName}",
NominativeFeminine => $"{Ordinal(numSolved)}-я решённая {tr.ModuleName}",
NominativeNeuter => $"{Ordinal(numSolved)}-е решённое {tr.ModuleName}",
NominativePlural => $"{Ordinal(numSolved)}-е решённые {tr.ModuleName}",
GenitiveMascNeuter => $"{Ordinal(numSolved)}-го решённого {tr.ModuleName}",
GenitiveFeminine => $"{Ordinal(numSolved)}-й решённой {tr.ModuleName}",
GenitivePlural => $"{Ordinal(numSolved)}-х решённых {tr.ModuleName}",
PrepositiveMascNeuter => $"{Ordinal(numSolved)}-м решённом {tr.ModuleName}",
PrepositiveFeminine => $"{Ordinal(numSolved)}-й решённой {tr.ModuleName}",
PrepositivePlural => $"{Ordinal(numSolved)}-х решённых {tr.ModuleName}",
InstrumentalMascNeuter => $"{Ordinal(numSolved)}-м решённым {tr.ModuleName}",
InstrumentalFeminine => $"{Ordinal(numSolved)}-й решённой {tr.ModuleName}",
InstrumentalPlural => $"{Ordinal(numSolved)}-ми решёнными {tr.ModuleName}",
DativeMascNeuter => $"{Ordinal(numSolved)}-му решённому {tr.ModuleName}",
DativeFeminine => $"{Ordinal(numSolved)}-й решённой {tr.ModuleName}",
DativePlural => $"{Ordinal(numSolved)}-м решённым {tr.ModuleName}",
в_PrepositiveMascNeuter or во_PrepositiveMascNeuter => $"{(numSolved == 2 ? "во" : "в")} {Ordinal(numSolved)}-м решённом {tr.ModuleName}",
в_PrepositiveFeminine or во_PrepositiveFeminine => $"{(numSolved == 2 ? "во" : "в")} {Ordinal(numSolved)}-й решённой {tr.ModuleName}",
в_PrepositivePlural or во_PrepositivePlural => $"{(numSolved == 2 ? "во" : "в")} {Ordinal(numSolved)}-х решённых {tr.ModuleName}",
_ => throw new System.InvalidOperationException($"Unknown conjugation: {tr.Conjugation}")
}
: tr.Conjugation switch
{
в_PrepositiveMascNeuter or в_PrepositiveFeminine or в_PrepositivePlural => $"в {tr.ModuleName}",
во_PrepositiveMascNeuter or во_PrepositiveFeminine or во_PrepositivePlural => $"во {tr.ModuleName}",
_ => tr.ModuleName,
};
}
public override string Ordinal(int number) => number.ToString();
protected override Dictionary<Question, TranslationInfo_ru> _translations => new()
{
#region Translatable strings
// 0
// What was the initially displayed number in {0}?
// What was the initially displayed number in 0?
[Question._0Number] = new()
{
Conjugation = Conjugation.PrepositiveMascNeuter,
QuestionText = "Какое число было изначально показано на {0}?",
},
// 1000 Words
// What was the {1} word shown in {0}?
// What was the first word shown in 1000 Words?
[Question._1000WordsWords] = new()
{
Conjugation = Conjugation.в_PrepositiveFeminine,
QuestionText = "Какое было {1}-е показанное слово {0}?",
ModuleName = "1000 слов",
},
// 100 Levels of Defusal
// What was the {1} displayed letter in {0}?
// What was the first displayed letter in 100 Levels of Defusal?
[Question._100LevelsOfDefusalLetters] = new()
{
Conjugation = Conjugation.в_PrepositivePlural,
QuestionText = "Какая была {1}-я показанная буква {0}?",
ModuleName = "100 уровнях обезвреживания",
},
// The 1, 2, 3 Game
// Who was the opponent in {0}?
// Who was the opponent in The 1, 2, 3 Game?
[Question._123GameProfile] = new()
{
QuestionText = "Кто был вашим оппонентом {0}?",
},
// Who was the opponent in {0}?
// Who was the opponent in The 1, 2, 3 Game?
[Question._123GameName] = new()
{
QuestionText = "Кто был вашим оппонентом {0}?",
},
// 1D Chess
// What was {1} in {0}?
// What was your first move in 1D Chess?
[Question._1DChessMoves] = new()
{
QuestionText = "Каким был {1} {0}?",
FormatArgs = new Dictionary<string, string>
{
["your first move"] = "ваш 1-й ход",
["Rustmate’s first move"] = "1-й ход Растмейта",
["your second move"] = "ваш 2-й ход",
["Rustmate’s second move"] = "2-й ход Растмейта",
["your third move"] = "ваш 3-й ход",
["Rustmate’s third move"] = "3-й ход Растмейта",
["your fourth move"] = "ваш 4-й ход",
["Rustmate’s fourth move"] = "4-й ход Растмейта",
["your fifth move"] = "ваш 5-й ход",
["Rustmate’s fifth move"] = "5-й ход Растмейта",
["your sixth move"] = "ваш 6-й ход",
["Rustmate’s sixth move"] = "6-й ход Растмейта",
["your seventh move"] = "ваш 7-й ход",
["Rustmate’s seventh move"] = "7-й ход Растмейта",
["your eighth move"] = "ваш 8-й ход",
["Rustmate’s eighth move"] = "8-й ход Растмейта",
},
},
// 3D Maze
// What were the markings in {0}?
// What were the markings in 3D Maze?
[Question._3DMazeMarkings] = new()
{
Conjugation = Conjugation.NominativeMasculine,
QuestionText = "Какими буквами был обозначен ваш {0}?",
ModuleName = "3D лабиринт",
},
// What was the cardinal direction in {0}?
// What was the cardinal direction in 3D Maze?
[Question._3DMazeBearing] = new()
{
QuestionText = "Какое было направление нужной стены {0}?",
ModuleName = "3D лабиринте",
Answers = new Dictionary<string, string>
{
["North"] = "Север",
["South"] = "Юг",
["West"] = "Запад",
["East"] = "Восток",
},
},
// 3D Tap Code
// What was the received word in {0}?
// What was the received word in 3D Tap Code?
[Question._3DTapCodeWord] = new()
{
QuestionText = "Какое слово было передано {0}?",
},
// 3D Tunnels
// What was the {1} goal node in {0}?
// What was the first goal node in 3D Tunnels?
[Question._3DTunnelsTargetNode] = new()
{
Conjugation = Conjugation.в_PrepositivePlural,
QuestionText = "Какой символ был вашей {1}-й целью {0}?",
ModuleName = "3D тоннелях",
},
// 3 LEDs
// What was the initial state of the LEDs in {0} (in reading order)?
// What was the initial state of the LEDs in 3 LEDs (in reading order)?
[Question._3LEDsInitialState] = new()
{
Conjugation = Conjugation.GenitivePlural,
QuestionText = "Какое было исходное состояние у {0} (в порядке чтения)?",
Answers = new Dictionary<string, string>
{
["off/off/off"] = "выкл/выкл/выкл",
["off/off/on"] = "выкл/выкл/вкл",
["off/on/off"] = "выкл/вкл/выкл",
["off/on/on"] = "выкл/вкл/вкл",
["on/off/off"] = "вкл/выкл/выкл",
["on/off/on"] = "вкл/выкл/вкл",
["on/on/off"] = "вкл/вкл/выкл",
["on/on/on"] = "вкл/вкл/вкл",
},
},
// 3N+1
// What number was initially displayed in {0}?
// What number was initially displayed in 3N+1?
[Question._3NPlus1] = new()
{
Conjugation = Conjugation.PrepositiveMascNeuter,
QuestionText = "Какое число было изначально показано на {0}?",
},
// 64
// What was the displayed number in {0}?
// What was the displayed number in 64?
[Question._64DisplayedNumber] = new()
{
Conjugation = Conjugation.PrepositiveMascNeuter,
QuestionText = "Какое число было показано на {0}?",
},
// 7
// What was the {1} channel’s initial value in {0}?
// What was the red channel’s initial value in 7?
[Question._7InitialValues] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какое было начальное значение {1} канала у {0}?",
FormatArgs = new Dictionary<string, string>
{
["red"] = "красного",
["green"] = "зелёного",
["blue"] = "синего",
},
},
// What LED color was shown in stage {1} of {0}?
// What LED color was shown in stage 0 of 7?
[Question._7LedColors] = new()
{
QuestionText = "Какой цвет был у светодиода на {1}-м этапе {0}?",
Answers = new Dictionary<string, string>
{
["red"] = "Красный",
["blue"] = "Синий",
["green"] = "Зелёный",
["white"] = "Белый",
},
},
// 9-Ball
// What was the number of ball {1} in {0}?
// What was the number of ball A in 9-Ball?
[Question._9BallLetters] = new()
{
QuestionText = "Какой был номер у шара \"{1}\" {0}?",
},
// What was the letter of ball {1} in {0}?
// What was the letter of ball 2 in 9-Ball?
[Question._9BallNumbers] = new()
{
QuestionText = "Какая была буква у шара \"{1}\" {0}?",
},
// Abyss
// What was the {1} character displayed on {0}?
// What was the first character displayed on Abyss?
[Question.AbyssSeed] = new()
{
QuestionText = "Какой был {1}-й показанный символ {0}?",
},
// Accumulation
// What was the background color on the {1} stage in {0}?
// What was the background color on the first stage in Accumulation?
[Question.AccumulationBackgroundColor] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какого цвета была подложка на {1}-м этапе {0}?",
ModuleName = "Накопления",
Answers = new Dictionary<string, string>
{
["Blue"] = "Синего",
["Brown"] = "Коричневого",
["Green"] = "Зелёного",
["Grey"] = "Серого",
["Lime"] = "Салатового",
["Orange"] = "Оранжевого",
["Pink"] = "Розового",
["Red"] = "Красного",
["White"] = "Белого",
["Yellow"] = "Жёлтого",
},
},
// What was the border color in {0}?
// What was the border color in Accumulation?
[Question.AccumulationBorderColor] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какого цвета было обрамление у {0}?",
ModuleName = "Накопления",
Answers = new Dictionary<string, string>
{
["Blue"] = "Синего",
["Brown"] = "Коричневого",
["Green"] = "Зелёного",
["Grey"] = "Серого",
["Lime"] = "Салатового",
["Orange"] = "Оранжевого",
["Pink"] = "Розового",
["Red"] = "Красного",
["White"] = "Белого",
["Yellow"] = "Жёлтого",
},
},
// Adventure Game
// Which item was the {1} correct item you used in {0}?
// Which item was the first correct item you used in Adventure Game?
[Question.AdventureGameCorrectItem] = new()
{
QuestionText = "Какой был {1}-й правильный предмет, который вы использовали {0}?",
ModuleName = "Приключении",
},
// What enemy were you fighting in {0}?
// What enemy were you fighting in Adventure Game?
[Question.AdventureGameEnemy] = new()
{
QuestionText = "С каким врагом вы сражались {0}?",
ModuleName = "Приключении",
},
// Affine Cycle
// What was the {1} in {0}?
// What was the message in Affine Cycle?
[Question.AffineCycleWord] = new()
{
QuestionText = "{1} {0}?",
FormatArgs = new Dictionary<string, string>
{
["message"] = "Какое было сообщение",
["response"] = "Какой был ответ",
},
},
// A Letter
// What was the initial letter in {0}?
// What was the initial letter in A Letter?
[Question.ALetterInitialLetter] = new()
{
Conjugation = Conjugation.в_PrepositiveFeminine,
QuestionText = "Какая была начальная буква {0}?",
},
// Alfa-Bravo
// Which letter was pressed in {0}?
// Which letter was pressed in Alfa-Bravo?
[Question.AlfaBravoPressedLetter] = new()
{
QuestionText = "Какая буква была нажата {0}?",
},
// Which letter was to the left of the pressed one in {0}?
// Which letter was to the left of the pressed one in Alfa-Bravo?
[Question.AlfaBravoLeftPressedLetter] = new()
{
QuestionText = "Какая буква была слева от нажатой {0}?",
},
// Which letter was to the right of the pressed one in {0}?
// Which letter was to the right of the pressed one in Alfa-Bravo?
[Question.AlfaBravoRightPressedLetter] = new()
{
QuestionText = "Какая буква была справа от нажатой {0}?",
},
// What was the last digit on the small display in {0}?
// What was the last digit on the small display in Alfa-Bravo?
[Question.AlfaBravoDigit] = new()
{
QuestionText = "Какая была последняя цифра на маленьком экране {0}?",
},
// Algebra
// What was the first equation in {0}?
// What was the first equation in Algebra?
[Question.AlgebraEquation1] = new()
{
Conjugation = Conjugation.в_PrepositiveFeminine,
QuestionText = "Какое было первое уравнение {0}?",
ModuleName = "Алгебре",
},
// What was the second equation in {0}?
// What was the second equation in Algebra?
[Question.AlgebraEquation2] = new()
{
Conjugation = Conjugation.в_PrepositiveFeminine,
QuestionText = "Какое было второе уравнение {0}?",
ModuleName = "Алгебре",
},
// Algorithmia
// Which position was the {1} position in {0}?
// Which position was the starting position in Algorithmia?
[Question.AlgorithmiaPositions] = new()
{
QuestionText = "Какая позиция была {1} {0}?",
FormatArgs = new Dictionary<string, string>
{
["starting"] = "начальной",
["goal"] = "целевой",
},
},
// What was the color of the colored bulb in {0}?
// What was the color of the colored bulb in Algorithmia?
[Question.AlgorithmiaColor] = new()
{
QuestionText = "Какого цвета была цветная лампочка {0}?",
},
// Which number was present in the seed in {0}?
// Which number was present in the seed in Algorithmia?
[Question.AlgorithmiaSeed] = new()
{
QuestionText = "Какое число присутствовало в зерне {0}?",
},
// Alphabetical Ruling
// What was the letter displayed in the {1} stage of {0}?
// What was the letter displayed in the first stage of Alphabetical Ruling?
[Question.AlphabeticalRulingLetter] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какая буква была показана на {1}-м этапе {0}?",
},
// What was the number displayed in the {1} stage of {0}?
// What was the number displayed in the first stage of Alphabetical Ruling?
[Question.AlphabeticalRulingNumber] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какое число было показано на {1}-м этапе {0}?",
},
// Alphabet Numbers
// Which of these numbers was on one of the buttons in the {1} stage of {0}?
// Which of these numbers was on one of the buttons in the first stage of Alphabet Numbers?
[Question.AlphabetNumbersDisplayedNumbers] = new()
{
QuestionText = "Какое из этих чисел было на одной из кнопок на {1}-м этапе {0}?",
},
// Alphabet Tiles
// What was the {1} letter shown during the cycle in {0}?
// What was the first letter shown during the cycle in Alphabet Tiles?
[Question.AlphabetTilesCycle] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "В цикле {0}, какая была {1}-я буква?",
},
// What was the missing letter in {0}?
// What was the missing letter in Alphabet Tiles?
[Question.AlphabetTilesMissingLetter] = new()
{
QuestionText = "Какая буква отсутствовала {0}?",
},
// Alpha-Bits
// What character was displayed on the {1} screen on the {2} in {0}?
// What character was displayed on the first screen on the left in Alpha-Bits?
[Question.AlphaBitsDisplayedCharacters] = new()
{
QuestionText = "Какой символ был на {1}-м экране {2} {0}?",
FormatArgs = new Dictionary<string, string>
{
["left"] = "слева",
["right"] = "справа",
},
},
// Amusement Parks
// Which ride was available in {0}?
// Which ride was available in Amusement Parks?
[Question.AmusementParksRides] = new()
{
QuestionText = "Какой аттракцион был доступен {0}?",
},
// Ángel Hernández
// What letter was shown by the raised buttons on the {1} stage on {0}?
// What letter was shown by the raised buttons on the first stage on Ángel Hernández?
[Question.AngelHernandezMainLetter] = new()
{
QuestionText = "Какая буква была показана поднятой кнопкой на {1}-м этапе {0}?",
},
// The Arena
// What was the maximum weapon damage of the attack phase in {0}?
// What was the maximum weapon damage of the attack phase in The Arena?
[Question.ArenaDamage] = new()
{
QuestionText = "Какой был максимальный урон оружия в фазе атаки {0}?",
},
// Which enemy was present in the defend phase of {0}?
// Which enemy was present in the defend phase of The Arena?
[Question.ArenaEnemies] = new()
{
QuestionText = "Какой враг присутствовал в фазе защиты {0}?",
},
// Which was a number present in the grab phase of {0}?
// Which was a number present in the grab phase of The Arena?
[Question.ArenaNumbers] = new()
{
QuestionText = "Какое число присутствовало в фазе захвата {0}?",
},
// Arithmelogic
// What was the symbol on the submit button in {0}?
// What was the symbol on the submit button in Arithmelogic?
[Question.ArithmelogicSubmit] = new()
{
QuestionText = "Какой символ был на кнопке отправки ответа {0}?",
},
// Which number was selectable, but not the solution, in the {1} screen on {0}?
// Which number was selectable, but not the solution, in the left screen on Arithmelogic?
[Question.ArithmelogicNumbers] = new()
{
QuestionText = "Какое число присутствовало (но не являлось решением) на {1} экране {0}?",
FormatArgs = new Dictionary<string, string>
{
["left"] = "левом",
["middle"] = "центральном",
["right"] = "правом",
},
},
// ASCII Maze
// What was the {1} character displayed on {0}?
// What was the first character displayed on ASCII Maze?
[Question.ASCIIMazeCharacters] = new()
{
QuestionText = "Какой был {1}-й символ, отображённый {0}?",
},
// A Square
// Which of these was an index color in {0}?
// Which of these was an index color in A Square?
[Question.ASquareIndexColors] = new()
{
QuestionText = "Какой из этих цветов был индексным {0}?",
},
// Which color was submitted {1} in {0}?
// Which color was submitted first in A Square?
[Question.ASquareCorrectColors] = new()
{
QuestionText = "Какой цвет был отправлен {1}-м {0}?",
},
// Audio Morse
// What was signaled in {0}?
// What was signaled in Audio Morse?
[Question.AudioMorseSound] = new()
{
QuestionText = "Что было в сигнале {0}?",
},
// The Azure Button
// What was T in {0}?
// What was T in The Azure Button?
[Question.AzureButtonT] = new()
{
QuestionText = "Какое значение было у T {0}?",
},
// Which of these cards was shown in Stage 1, but not T, in {0}?
// Which of these cards was shown in Stage 1, but not T, in The Azure Button?
[Question.AzureButtonNotT] = new()
{
QuestionText = "Какая из этих карт была показана на первом этапе (но не T) {0}?",
},
// What was M in {0}?
// What was M in The Azure Button?
[Question.AzureButtonM] = new()
{
QuestionText = "Какое значение было у M {0}?",
},
// What was the {1} direction in the decoy arrow in {0}?
// What was the first direction in the decoy arrow in The Azure Button?
[Question.AzureButtonDecoyArrowDirection] = new()
{
QuestionText = "Какое было {1}-е направление у стрелки-ловушки {0}?",
},
// What was the {1} direction in the {2} non-decoy arrow in {0}?
// What was the first direction in the first non-decoy arrow in The Azure Button?
[Question.AzureButtonNonDecoyArrowDirection] = new()
{
QuestionText = "Какое было {1}-е направление у {2}-й стрелки (не ловушки) {0}?",
},
// Bakery
// Which menu item was present in {0}?
// Which menu item was present in Bakery?
[Question.BakeryItems] = new()
{
QuestionText = "Какая позиция меню присутствовала {0}?",
},
// Bamboozled Again
// What color was the {1} correct button in {0}?
// What color was the first correct button in Bamboozled Again?
[Question.BamboozledAgainButtonColor] = new()
{
QuestionText = "Какого цвета была {1}-я правильная кнопка {0}?",
ModuleName = "Повторном надувательстве",
Answers = new Dictionary<string, string>
{
["Red"] = "Красного",
["Orange"] = "Оранжевого",
["Yellow"] = "Жёлтого",
["Lime"] = "Лаймового",
["Green"] = "Зелёного",
["Jade"] = "Нефритового",
["Cyan"] = "Голубого",
["Azure"] = "Лазурного",
["Blue"] = "Синего",
["Violet"] = "Фиолетового",
["Magenta"] = "Пурпурного",
["Rose"] = "Розового",
["White"] = "Белого",
["Grey"] = "Серого",
["Black"] = "Чёрного",
},
},
// What was the text on the {1} correct button in {0}?
// What was the text on the first correct button in Bamboozled Again?
[Question.BamboozledAgainButtonText] = new()
{
QuestionText = "Какая была надпись на {1}-й правильной кнопке {0}?",
ModuleName = "Повторном надувательстве",
},
// What was the {1} decrypted text on the display in {0}?
// What was the first decrypted text on the display in Bamboozled Again?
[Question.BamboozledAgainDisplayTexts1] = new()
{
QuestionText = "Какой был {1}-й расшифрованный текст на экране {0}?",
ModuleName = "Повторном надувательстве",
},
// What was the {1} decrypted text on the display in {0}?
// What was the first decrypted text on the display in Bamboozled Again?
[Question.BamboozledAgainDisplayTexts2] = new()
{
QuestionText = "Какой был {1}-й расшифрованный текст на экране {0}?",
ModuleName = "Повторном надувательстве",
},
// What color was the {1} text on the display in {0}?
// What color was the first text on the display in Bamboozled Again?
[Question.BamboozledAgainDisplayColor] = new()
{
QuestionText = "Какого цвета был {1}-й текст на экране {0}?",
ModuleName = "Повторном надувательстве",
Answers = new Dictionary<string, string>
{
["Red"] = "Красного",
["Orange"] = "Оранжевого",
["Yellow"] = "Жёлтого",
["Lime"] = "Лаймового",
["Green"] = "Зелёного",
["Jade"] = "Нефритового",
["Cyan"] = "Голубого",
["Azure"] = "Лазурного",
["Blue"] = "Синего",
["Violet"] = "Фиолетового",
["Magenta"] = "Пурпурного",
["Rose"] = "Розового",
["White"] = "Белого",
["Grey"] = "Серого",
},
},
// Bamboozling Button
// What color was the button in the {1} stage of {0}?
// What color was the button in the first stage of Bamboozling Button?
[Question.BamboozlingButtonColor] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какого цвета была кнопка на {1}-м этапе {0}?",
Answers = new Dictionary<string, string>
{
["Red"] = "Красный",
["Orange"] = "Оранжевый",
["Yellow"] = "Жёлтый",
["Lime"] = "Лаймовый",
["Green"] = "Зелёный",
["Jade"] = "Нефритовый",
["Cyan"] = "Голубой",
["Azure"] = "Лазурный",
["Blue"] = "Синий",
["Violet"] = "Фиолетовый",
["Magenta"] = "Пурпурный",
["Rose"] = "Розовый",
["White"] = "Белый",
["Grey"] = "Серый",
["Black"] = "Чёрный",
},
},
// What was the {2} label on the button in the {1} stage of {0}?
// What was the top label on the button in the first stage of Bamboozling Button?
[Question.BamboozlingButtonLabel] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какая была {2} надпись на кнопке на {1}-м этапе {0}?",
FormatArgs = new Dictionary<string, string>
{
["top"] = "верхняя",
["bottom"] = "нижняя",
},
},
// What was the {2} display in the {1} stage of {0}?
// What was the first display in the first stage of Bamboozling Button?
[Question.BamboozlingButtonDisplay] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какой был {2}-й экран на {1}-м этапе {0}?",
},
// What was the color of the {2} display in the {1} stage of {0}?
// What was the color of the first display in the first stage of Bamboozling Button?
[Question.BamboozlingButtonDisplayColor] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какого цвета был {2}-й экран на {1}-м этапе {0}?",
Answers = new Dictionary<string, string>
{
["Red"] = "Красный",
["Orange"] = "Оранжевый",
["Yellow"] = "Жёлтый",
["Lime"] = "Лаймовый",
["Green"] = "Зелёный",
["Jade"] = "Нефритовый",
["Cyan"] = "Голубой",
["Azure"] = "Лазуритовый",
["Blue"] = "Синий",
["Violet"] = "Фиолетовый",
["Magenta"] = "Пурпурный",
["Rose"] = "Розовый",
["White"] = "Белый",
["Grey"] = "Серый",
},
},
// Bar Charts
// What was the category of {0}?
// What was the category of Bar Charts?
[Question.BarChartsCategory] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какая была категория у {0}?",
},
// What was the color of the {1} bar in {0}?
// What was the color of the first bar in Bar Charts?
[Question.BarChartsColor] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какого цвета был {1}-й столбец {0}?",
Answers = new Dictionary<string, string>
{
["Red"] = "Красного",
["Yellow"] = "Жёлтого",
["Green"] = "Зелёного",
["Blue"] = "Синего",
},
},
// What was the position of the {1} bar in {0}?
// What was the position of the shortest bar in Bar Charts?
[Question.BarChartsHeight] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Где находился {1} столбец {0}?",
FormatArgs = new Dictionary<string, string>
{
["shortest"] = "самый короткий",
["second shortest"] = "третий по высоте",
["second tallest"] = "второй по высоте",
["tallest"] = "самый высокий",
},
},
// What was the label of the {1} bar in {0}?
// What was the label of the first bar in Bar Charts?
[Question.BarChartsLabel] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какая надпись была у {1}-го столбца {0}?",
},
// What was the unit of {0}?
// What was the unit of Bar Charts?
[Question.BarChartsUnit] = new()
{
Conjugation = Conjugation.GenitiveMascNeuter,
QuestionText = "Какая была единица измерения у {0}?",
},
// Barcode Cipher
// What was the screen number in {0}?
// What was the screen number in Barcode Cipher?
[Question.BarcodeCipherScreenNumber] = new()
{
QuestionText = "Какой был номер экрана {0}?",
},
// What was the edgework represented by the {1} barcode in {0}?
// What was the edgework represented by the first barcode in Barcode Cipher?
[Question.BarcodeCipherBarcodeEdgework] = new()
{
QuestionText = "Какой компонент бомбы был представлен {1}-м штрихкодом {0}?",
Answers = new Dictionary<string, string>
{
["SERIAL NUMBER"] = "SERIAL NUMBER",
["BATTERIES"] = "BATTERIES",
["BATTERY HOLDERS"] = "BATTERY HOLDERS",
["PORTS"] = "PORTS",
["PORT PLATES"] = "PORT PLATES",
["LIT INDICATORS"] = "LIT INDICATORS",
["UNLIT INDICATORS"] = "UNLIT INDICATORS",
["INDICATORS"] = "INDICATORS",
},
},
// What was the answer for the {1} barcode in {0}?
// What was the answer for the first barcode in Barcode Cipher?
[Question.BarcodeCipherBarcodeAnswers] = new()
{
QuestionText = "Какой был ответ на {1}-й штрихкод {0}?",
},
// Bartending
// Which ingredient was in the {1} position on {0}?
// Which ingredient was in the first position on Bartending?
[Question.BartendingIngredients] = new()
{
QuestionText = "Какой ингредиент был на {1}-й позиции {0}?",
Answers = new Dictionary<string, string>
{
["Adelhyde"] = "Adelhyde",
["Flanergide"] = "Flanergide",
["Bronson Extract"] = "Bronson Extract",
["Karmotrine"] = "Karmotrine",
["Powdered Delta"] = "Powdered Delta",
},
},
// Beans
// What was this bean in {0}?
// What was this bean in Beans?
[Question.BeansColors] = new()
{
QuestionText = "Каким был данный боб {0}?",
Answers = new Dictionary<string, string>
{
["Wobbly Orange"] = "Wobbly Orange",
["Wobbly Yellow"] = "Wobbly Yellow",
["Wobbly Green"] = "Wobbly Green",
["Not Wobbly Orange"] = "Not Wobbly Orange",
["Not Wobbly Yellow"] = "Not Wobbly Yellow",
["Not Wobbly Green"] = "Not Wobbly Green",
},
},
// Bean Sprouts
// What was sprout {1} in {0}?
// What was sprout 1 in Bean Sprouts?
[Question.BeanSproutsColors] = new()
{
QuestionText = "Каким был росток {1} {0}?",
Answers = new Dictionary<string, string>
{
["Raw"] = "Raw",
["Cooked"] = "Cooked",
["Burnt"] = "Burnt",
["Fake"] = "Fake",
},
},
// What bean was on sprout {1} in {0}?
// What bean was on sprout 1 in Bean Sprouts?
[Question.BeanSproutsBeans] = new()
{
QuestionText = "Какой боб был на {1}-м ростке {0}?",
Answers = new Dictionary<string, string>
{
["Left"] = "Левый",
["Right"] = "Правый",
["None"] = "Никакой",
["Both"] = "Оба",
},
},
// Big Bean
// What was the bean in {0}?
// What was the bean in Big Bean?
[Question.BigBeanColor] = new()
{
QuestionText = "Каким был боб {0}?",
Answers = new Dictionary<string, string>
{
["Wobbly Orange"] = "Wobbly Orange",
["Wobbly Yellow"] = "Wobbly Yellow",
["Wobbly Green"] = "Wobbly Green",
["Not Wobbly Orange"] = "Not Wobbly Orange",
["Not Wobbly Yellow"] = "Not Wobbly Yellow",
["Not Wobbly Green"] = "Not Wobbly Green",
},
},
// Big Circle
// What color was {1} in the solution to {0}?
// What color was first in the solution to Big Circle?
[Question.BigCircleColors] = new()
{
Conjugation = Conjugation.PrepositiveMascNeuter,
QuestionText = "Какой правильный цвет был {1}-м на {0}?",
ModuleName = "Большом круге",
Answers = new Dictionary<string, string>
{
["Red"] = "Красный",
["Orange"] = "Оранжевый",
["Yellow"] = "Жёлтый",
["Green"] = "Зелёный",
["Blue"] = "Синий",
["Magenta"] = "Пурпурный",
["White"] = "Белый",
["Black"] = "Чёрный",
},
},
// Binary LEDs
// At which numeric value did you cut the correct wire in {0}?
// At which numeric value did you cut the correct wire in Binary LEDs?
[Question.BinaryLEDsValue] = new()
{
Conjugation = Conjugation.в_PrepositivePlural,
QuestionText = "На каком числе вы перерезали верный провод {0}?",
ModuleName = "Двоичных светодиодах",
},
// Binary Shift
// What was the {1} initial number in {0}?
// What was the top-left initial number in Binary Shift?
[Question.BinaryShiftInitialNumber] = new()
{
QuestionText = "Какое было начальное число {1} {0}?",
FormatArgs = new Dictionary<string, string>
{
["top-left"] = "сверху слева",
["top-middle"] = "сверху посередине",
["top-right"] = "сверху справа",
["left-middle"] = "посередине слева",
["center"] = "в центре",
["right-middle"] = "посередине справа",
["bottom-left"] = "снизу слева",
["bottom-middle"] = "снизу посередине",
["bottom-right"] = "снизу справа",
},
},
// What number was selected at stage {1} in {0}?
// What number was selected at stage 0 in Binary Shift?
[Question.BinaryShiftSelectedNumberPossition] = new()
{
QuestionText = "Какое число было выбрано на {1}-м этапе {0}?",
Answers = new Dictionary<string, string>
{
["top-left"] = "Сверху слева",
["top-middle"] = "Сверху посередине",
["top-right"] = "Сверху справа",
["left-middle"] = "Посередине слева",
["center"] = "В центре",
["right-middle"] = "Посередине справа",
["bottom-left"] = "Снизу слева",
["bottom-middle"] = "Снизу посередине",
["bottom-right"] = "Снизу справа",
},
},
// What number was not selected at stage {1} in {0}?
// What number was not selected at stage 0 in Binary Shift?
[Question.BinaryShiftNotSelectedNumberPossition] = new()
{
QuestionText = "Какое число не было выбрано на {1}-м этапе {0}?",
Answers = new Dictionary<string, string>
{
["top-left"] = "Сверху слева",
["top-middle"] = "Сверху посередине",
["top-right"] = "Сверху справа",
["left-middle"] = "Посередине слева",
["center"] = "В центре",
["right-middle"] = "Посередине справа",