seedfaker-core 0.2.0-alpha.6

Core library for seedfaker — deterministic synthetic generator for realistic, correlated, and noisy test records
Documentation
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
use crate::ctx::GenContext;
use crate::rng::Rng;

struct ExLang {
    templates: &'static [&'static str],
    subjects: &'static [&'static str],
    places: &'static [&'static str],
    reasons: &'static [&'static str],
    events: &'static [&'static str],
    things: &'static [&'static str],
    fixes: &'static [&'static str],
    times: &'static [&'static str],
    whens: &'static [&'static str],
}

const EN: ExLang = ExLang {
    templates: &[
        "It works on {place}",
        "It's {reason}",
        "It was fine before {event}",
        "{subject} must have changed {thing}",
        "Have you tried {fix}?",
        "That's {thing}, nobody touches it",
        "{subject} pass locally",
        "We'll fix it in {time}",
        "It only breaks on {when}",
        "I can't reproduce it on {place}",
        "That's outside the scope of {thing}",
        "{subject} is down",
        "It's not {thing}, it's {reason}",
        "{subject} didn't mention {thing}",
        "It worked in {place}",
        "We don't have {thing} for that",
        "That was {subject}'s code",
        "Must be {reason}",
        "Did you pull {thing}?",
        "It's technically {reason}",
    ],
    subjects: &[
        "the tests",
        "the CI",
        "the API",
        "the third-party service",
        "the docs",
        "the intern",
        "the config",
        "the database",
        "the cache",
        "the load balancer",
        "Kubernetes",
        "the DNS",
        "the queue",
        "the monitoring",
        "the pipeline",
    ],
    places: &[
        "my machine",
        "staging",
        "the dev server",
        "localhost",
        "my branch",
        "the demo",
        "the canary",
        "last Friday",
        "the old version",
        "my Docker container",
    ],
    reasons: &[
        "a DNS issue",
        "a caching issue",
        "a race condition",
        "a timezone thing",
        "a known issue",
        "a browser issue",
        "technically correct",
        "a skill issue",
        "cosmic rays",
        "an edge case",
        "a network glitch",
        "a memory leak",
    ],
    events: &[
        "the merge",
        "the deploy",
        "the migration",
        "the refactor",
        "the upgrade",
        "the rollback",
        "the hotfix",
        "the rebase",
        "the sprint",
        "the standup",
    ],
    things: &[
        "the config",
        "the schema",
        "the requirements",
        "the latest",
        "legacy code",
        "tests",
        "the env vars",
        "the permissions",
        "the dependencies",
        "this ticket",
    ],
    fixes: &[
        "clearing the cache",
        "restarting",
        "redeploying",
        "reverting",
        "turning it off and on",
        "checking the logs",
        "running it again",
        "updating the dependencies",
        "rebuilding",
        "deleting node_modules",
    ],
    times: &[
        "the next sprint",
        "Q3",
        "tomorrow",
        "the next release",
        "v2",
        "never",
        "after lunch",
        "after the demo",
        "when we have time",
        "post-mortem",
    ],
    whens: &[
        "Fridays",
        "full moons",
        "demo day",
        "after 5pm",
        "when the CEO watches",
        "during deploys",
        "peak traffic",
        "the night shift",
        "holidays",
        "when it matters",
    ],
};

const RU: ExLang = ExLang {
    templates: &[
        "У меня на {place} работает",
        "Это {reason}",
        "До {event} все работало",
        "Кто-то поменял {thing}",
        "А вы пробовали {fix}?",
        "{thing} — туда лучше не лезть",
        "Локально все проходит",
        "Починим в {time}",
        "Ломается только {when}",
        "На {place} не воспроизводится",
        "Это вне скоупа",
        "{subject} лежит",
        "Дело не в {thing}, это {reason}",
        "Это {subject} написал",
        "На {place} же работало",
        "Скорее всего {reason}",
        "Вы {thing} подтянули?",
        "До {event} такого не было",
    ],
    subjects: &[
        "CI",
        "апишка",
        "сторонний сервис",
        "стажер",
        "база",
        "кеш",
        "балансер",
        "Kubernetes",
        "DNS",
        "очередь",
        "мониторинг",
        "пайплайн",
    ],
    places: &[
        "локалке",
        "стейдже",
        "деве",
        "localhost",
        "моей ветке",
        "демо",
        "канарейке",
        "прошлой неделе",
        "старой версии",
        "Docker-контейнере",
    ],
    reasons: &[
        "DNS",
        "кеш",
        "рейс кондишен",
        "таймзона",
        "известный баг",
        "браузер",
        "технически корректно",
        "скилл ишью",
        "космические лучи",
        "эдж кейс",
        "сеть",
        "утечка памяти",
    ],
    events: &[
        "мерджа",
        "деплоя",
        "миграции",
        "рефакторинга",
        "апгрейда",
        "роллбека",
        "хотфикса",
        "ребейза",
        "спринта",
        "стендапа",
    ],
    things: &[
        "конфиге",
        "схеме",
        "требованиях",
        "легаси коде",
        "тестах",
        "env-переменных",
        "правах",
        "зависимостях",
        "тикете",
        "миграции",
    ],
    fixes: &[
        "почистить кеш",
        "перезагрузить",
        "передеплоить",
        "откатить",
        "выключить и включить",
        "посмотреть логи",
        "запустить еще раз",
        "обновить зависимости",
        "пересобрать",
        "удалить node_modules",
    ],
    times: &[
        "следующем спринте",
        "Q3",
        "завтра",
        "следующем релизе",
        "v2",
        "никогда",
        "после обеда",
        "после демо",
        "когда будет время",
        "пост-мортеме",
    ],
    whens: &[
        "по пятницам",
        "в полнолуние",
        "на демо",
        "после пяти",
        "когда смотрит CEO",
        "во время деплоя",
        "на пиковой нагрузке",
        "в ночную смену",
        "в праздники",
        "когда это важно",
    ],
};

const UK: ExLang = ExLang {
    templates: &[
        "В мене на {place} працює",
        "Це {reason}",
        "До {event} все працювало",
        "Хтось змінив {thing}",
        "А ви пробували {fix}?",
        "{thing} — туди краще не лізти",
        "Локально все проходить",
        "Полагодимо в {time}",
        "Ламається тільки {when}",
        "На {place} не відтворюється",
        "Це поза скоупом",
        "{subject} лежить",
        "Справа не в {thing}, це {reason}",
        "Це {subject} написав",
        "На {place} ж працювало",
        "Скоріш за все {reason}",
        "Ви {thing} підтягнули?",
        "До {event} такого не було",
    ],
    subjects: &[
        "CI",
        "апішка",
        "зовнішній сервіс",
        "стажер",
        "база",
        "кеш",
        "балансер",
        "Kubernetes",
        "DNS",
        "черга",
        "моніторинг",
        "пайплайн",
    ],
    places: &[
        "локалці",
        "стейджі",
        "деві",
        "localhost",
        "моїй гілці",
        "демо",
        "канарейці",
        "минулому тижні",
        "старій версії",
        "Docker-контейнері",
    ],
    reasons: &[
        "DNS",
        "кеш",
        "рейс кондішен",
        "таймзона",
        "відомий баг",
        "браузер",
        "технічно коректно",
        "скіл ішью",
        "космічні промені",
        "едж кейс",
        "мережа",
        "витік пам'яті",
    ],
    events: &[
        "мерджа",
        "деплою",
        "міграції",
        "рефакторінгу",
        "апгрейду",
        "ролбеку",
        "хотфіксу",
        "рібейзу",
        "спрінту",
        "стендапу",
    ],
    things: &[
        "конфігу",
        "схемі",
        "вимогах",
        "легасі коді",
        "тестах",
        "env-змінних",
        "правах",
        "залежностях",
        "тікеті",
        "міграції",
    ],
    fixes: &[
        "почистити кеш",
        "перезавантажити",
        "передеплоїти",
        "відкотити",
        "вимкнути і ввімкнути",
        "подивитися логи",
        "запустити ще раз",
        "оновити залежності",
        "перезібрати",
        "видалити node_modules",
    ],
    times: &[
        "наступному спрінті",
        "Q3",
        "завтра",
        "наступному релізі",
        "v2",
        "ніколи",
        "після обіду",
        "після демо",
        "коли буде час",
        "пост-мортемі",
    ],
    whens: &[
        "по п'ятницях",
        "у повний місяць",
        "на демо",
        "після п'ятої",
        "коли дивиться CEO",
        "під час деплою",
        "на піковому навантаженні",
        "в нічну зміну",
        "у свята",
        "коли це важливо",
    ],
};

// Belarusian dev slang
const BE: ExLang = ExLang {
    templates: &[
        "У мяне на {place} працуе",
        "Гэта {reason}",
        "Да {event} усё працавала",
        "Хтосьці змяніў {thing}",
        "А вы спрабавалі {fix}?",
        "{thing} — туды лепш не лезці",
        "Лакальна ўсё праходзіць",
        "Палагодзім у {time}",
        "Ламаецца толькі {when}",
        "На {place} не ўзнаўляецца",
        "Гэта па-за скоўпам",
        "{subject} ляжыць",
        "Справа не ў {thing}, гэта {reason}",
        "Гэта {subject} напісаў",
        "На {place} жа працавала",
        "Хутчэй за ўсё {reason}",
        "Вы {thing} падцягнулі?",
        "Да {event} такога не было",
    ],
    subjects: &[
        "CI",
        "апішка",
        "знешні сэрвіс",
        "стажор",
        "база",
        "кэш",
        "балансер",
        "Kubernetes",
        "DNS",
        "чарга",
        "маніторынг",
        "пайплайн",
    ],
    places: &[
        "лакалцы",
        "стэйджы",
        "дэве",
        "localhost",
        "маёй галінцы",
        "дэма",
        "канарэйцы",
        "мінулым тыдні",
        "старой версіі",
        "Docker-кантэйнеры",
    ],
    reasons: &[
        "DNS",
        "кэш",
        "рэйс кандышэн",
        "таймзона",
        "вядомы баг",
        "браўзер",
        "тэхнічна карэктна",
        "скіл ішью",
        "касмічныя прамяні",
        "эдж кейс",
        "сетка",
        "уцечка памяці",
    ],
    events: &[
        "мерджа",
        "дэплою",
        "міграцыі",
        "рэфактарынгу",
        "апгрэйду",
        "ролбэку",
        "хотфіксу",
        "рыбэйзу",
        "спрынту",
        "стэндапу",
    ],
    things: &[
        "канфігу",
        "схеме",
        "патрабаваннях",
        "легасі кодзе",
        "тэстах",
        "env-зменных",
        "правах",
        "залежнасцях",
        "цікеце",
        "міграцыі",
    ],
    fixes: &[
        "пачысціць кэш",
        "перазагрузіць",
        "перадэплоіць",
        "адкаціць",
        "выключыць і ўключыць",
        "паглядзець логі",
        "запусціць яшчэ раз",
        "абнавіць залежнасці",
        "перазабраць",
        "выдаліць node_modules",
    ],
    times: &[
        "наступным спрынце",
        "Q3",
        "заўтра",
        "наступным рэлізе",
        "v2",
        "ніколі",
        "пасля абеду",
        "пасля дэма",
        "калі будзе час",
        "пост-мортэме",
    ],
    whens: &[
        "па пятніцах",
        "у поўню",
        "на дэма",
        "пасля пятай",
        "калі глядзіць CEO",
        "падчас дэплою",
        "на пікавай нагрузцы",
        "у начную змену",
        "на святы",
        "калі гэта важна",
    ],
};

const SR: ExLang = ExLang {
    templates: &[
        "На {place} ради",
        "То је {reason}",
        "Пре {event} је радило",
        "Неко је променио {thing}",
        "Јесте ли пробали {fix}?",
        "{thing} — боље не дирати",
        "Локално све пролази",
        "Поправићемо у {time}",
        "Пада само {when}",
        "На {place} не може да се репродукује",
        "{subject} је пао",
        "Није у {thing}, то је {reason}",
        "То је {subject} написао",
        "На {place} је радило",
        "Вероватно {reason}",
        "Јесте ли {thing} повукли?",
        "Пре {event} тога није било",
    ],
    subjects: &[
        "CI",
        "API",
        "екстерни сервис",
        "приправник",
        "база",
        "кеш",
        "балансер",
        "Kubernetes",
        "DNS",
        "ред",
        "мониторинг",
        "пајплајн",
    ],
    places: &[
        "локалу",
        "стејџингу",
        "деву",
        "localhost",
        "мојој грани",
        "дему",
        "канаринцу",
        "прошлој недељи",
        "старој верзији",
        "Docker-контејнеру",
    ],
    reasons: &[
        "DNS",
        "кеш",
        "рејс кондишн",
        "тајмзона",
        "познат баг",
        "браузер",
        "технички коректно",
        "скил ишу",
        "космички зраци",
        "едж кејс",
        "мрежа",
        "цурење меморије",
    ],
    events: &[
        "мерџа",
        "деплоја",
        "миграције",
        "рефакторинга",
        "апгрејда",
        "ролбека",
        "хотфикса",
        "рибејза",
        "спринта",
        "стендапа",
    ],
    things: &[
        "конфигу",
        "шеми",
        "захтевима",
        "легаси коду",
        "тестовима",
        "env-променљивима",
        "дозволама",
        "зависностима",
        "тикету",
        "миграцији",
    ],
    fixes: &[
        "очистити кеш",
        "рестартовати",
        "редеплојовати",
        "ролбековати",
        "искључити и укључити",
        "погледати логове",
        "покренути поново",
        "ажурирати зависности",
        "ребилдовати",
        "обрисати node_modules",
    ],
    times: &[
        "следећем спринту",
        "Q3",
        "сутра",
        "следећем релизу",
        "v2",
        "никад",
        "после ручка",
        "после дема",
        "кад будемо имали времена",
        "пост-мортему",
    ],
    whens: &[
        "петком",
        "у пун месец",
        "на дему",
        "после пет",
        "кад гледа CEO",
        "током деплоја",
        "на пику",
        "у ноћну смену",
        "за празнике",
        "кад је битно",
    ],
};

const PT_BR: ExLang = ExLang {
    templates: &[
        "Na {place} funciona",
        "E {reason}",
        "Antes do {event} tava funcionando",
        "{subject} deve ter mudado {thing}",
        "Ja tentou {fix}?",
        "Isso e {thing}, ninguem mexe",
        "{subject} passa no local",
        "A gente arruma no {time}",
        "So quebra {when}",
        "Na {place} nao reproduz",
        "{subject} ta fora",
        "Nao e {thing}, e {reason}",
        "Quem escreveu isso foi {subject}",
        "Na {place} tava rodando",
        "Provavelmente e {reason}",
        "Voce puxou {thing}?",
        "Antes do {event} nao tinha isso",
        "E tecnicamente {reason}",
    ],
    subjects: &[
        "os testes",
        "o CI",
        "a API",
        "o servico externo",
        "a doc",
        "o estagiario",
        "o config",
        "o banco",
        "o cache",
        "o load balancer",
        "o Kubernetes",
        "o DNS",
        "a fila",
        "o monitoramento",
        "o pipeline",
    ],
    places: &[
        "minha maquina",
        "staging",
        "o server de dev",
        "localhost",
        "minha branch",
        "o demo",
        "o canario",
        "semana passada",
        "versao antiga",
        "meu Docker",
    ],
    reasons: &[
        "problema de DNS",
        "problema de cache",
        "race condition",
        "coisa de timezone",
        "bug conhecido",
        "problema do browser",
        "tecnicamente correto",
        "skill issue",
        "raios cosmicos",
        "edge case",
        "problema de rede",
        "vazamento de memoria",
    ],
    events: &[
        "merge", "deploy", "migracao", "refactor", "upgrade", "rollback", "hotfix", "rebase",
        "sprint", "daily",
    ],
    things: &[
        "o config",
        "o schema",
        "os requisitos",
        "codigo legado",
        "testes",
        "as env vars",
        "as permissoes",
        "as dependencias",
        "esse ticket",
        "a migracao",
    ],
    fixes: &[
        "limpar o cache",
        "reiniciar",
        "re-deployar",
        "dar rollback",
        "desligar e ligar",
        "olhar os logs",
        "rodar de novo",
        "atualizar as dependencias",
        "rebuildar",
        "deletar node_modules",
    ],
    times: &[
        "proximo sprint",
        "Q3",
        "amanha",
        "proximo release",
        "v2",
        "nunca",
        "depois do almoco",
        "depois do demo",
        "quando der tempo",
        "post-mortem",
    ],
    whens: &[
        "sexta-feira",
        "lua cheia",
        "dia de demo",
        "depois das 5",
        "quando o CEO ta olhando",
        "durante deploy",
        "horario de pico",
        "no plantao noturno",
        "feriado",
        "quando importa",
    ],
};

const DE: ExLang = ExLang {
    templates: &[
        "Auf {place} funktioniert es",
        "Es ist {reason}",
        "Vor {event} ging alles",
        "{subject} muss {thing} geaendert haben",
        "Haben Sie {fix} versucht?",
        "Das ist {thing}, da fasst keiner an",
        "{subject} laufen lokal",
        "Wir fixen das in {time}",
        "Es bricht nur {when}",
        "Auf {place} kann ich es nicht reproduzieren",
        "{subject} ist down",
        "Es ist nicht {thing}, es ist {reason}",
        "Das war {subject}",
        "Wahrscheinlich {reason}",
    ],
    subjects: &[
        "die Tests",
        "die CI",
        "die API",
        "der Drittanbieter",
        "die Doku",
        "der Praktikant",
        "die Config",
        "die Datenbank",
        "der Cache",
        "der Load Balancer",
        "Kubernetes",
        "der DNS",
        "die Queue",
        "das Monitoring",
        "die Pipeline",
    ],
    places: &[
        "meinem Rechner",
        "Staging",
        "dem Dev-Server",
        "localhost",
        "meinem Branch",
        "der Demo",
    ],
    reasons: &[
        "ein DNS-Problem",
        "ein Cache-Problem",
        "eine Race Condition",
        "eine Zeitzone",
        "ein bekannter Bug",
        "ein Browser-Problem",
        "technisch korrekt",
        "kosmische Strahlung",
        "ein Edge Case",
        "ein Netzwerk-Problem",
    ],
    events: &[
        "dem Merge",
        "dem Deploy",
        "der Migration",
        "dem Refactoring",
        "dem Upgrade",
        "dem Rollback",
        "dem Hotfix",
        "dem Rebase",
    ],
    things: &[
        "die Config",
        "das Schema",
        "die Anforderungen",
        "Legacy-Code",
        "Tests",
        "die Env-Variablen",
        "die Berechtigungen",
        "die Abhaengigkeiten",
    ],
    fixes: &[
        "den Cache zu leeren",
        "neu zu starten",
        "neu zu deployen",
        "zurueckzurollen",
        "die Logs zu pruefen",
        "es nochmal laufen zu lassen",
        "node_modules zu loeschen",
    ],
    times: &[
        "naechsten Sprint",
        "Q3",
        "morgen",
        "naechsten Release",
        "v2",
        "nie",
        "nach dem Meeting",
        "nach der Demo",
    ],
    whens: &[
        "freitags",
        "bei Vollmond",
        "am Demo-Tag",
        "nach 17 Uhr",
        "wenn der CEO zuschaut",
        "beim Deploy",
        "bei Peak-Traffic",
        "an Feiertagen",
    ],
};

const ES: ExLang = ExLang {
    templates: &[
        "En {place} funciona",
        "Es {reason}",
        "Antes de {event} funcionaba",
        "{subject} debe haber cambiado {thing}",
        "Probaste {fix}?",
        "Eso es {thing}, nadie lo toca",
        "{subject} pasan en local",
        "Lo arreglamos en {time}",
        "Solo se rompe {when}",
        "En {place} no se reproduce",
        "{subject} esta caido",
        "No es {thing}, es {reason}",
        "Eso lo escribio {subject}",
        "Seguramente es {reason}",
    ],
    subjects: &[
        "los tests",
        "el CI",
        "la API",
        "el servicio externo",
        "la doc",
        "el pasante",
        "el config",
        "la base de datos",
        "el cache",
        "el balanceador",
        "Kubernetes",
        "el DNS",
        "la cola",
        "el monitoreo",
        "el pipeline",
    ],
    places: &["mi maquina", "staging", "el server de dev", "localhost", "mi branch", "el demo"],
    reasons: &[
        "un problema de DNS",
        "un tema de cache",
        "una race condition",
        "un tema de timezone",
        "un bug conocido",
        "un problema del browser",
        "tecnicamente correcto",
        "skill issue",
        "rayos cosmicos",
        "un edge case",
    ],
    events: &[
        "el merge",
        "el deploy",
        "la migracion",
        "el refactor",
        "el upgrade",
        "el rollback",
        "el hotfix",
        "el rebase",
    ],
    things: &[
        "el config",
        "el schema",
        "los requirements",
        "codigo legacy",
        "tests",
        "las env vars",
        "los permisos",
        "las dependencias",
    ],
    fixes: &[
        "limpiar el cache",
        "reiniciar",
        "re-deployar",
        "hacer rollback",
        "revisar los logs",
        "correrlo de nuevo",
        "borrar node_modules",
    ],
    times: &[
        "el proximo sprint",
        "Q3",
        "manana",
        "el proximo release",
        "v2",
        "nunca",
        "despues del almuerzo",
        "despues del demo",
    ],
    whens: &[
        "los viernes",
        "en luna llena",
        "el dia del demo",
        "despues de las 5",
        "cuando mira el CEO",
        "durante deploys",
        "en pico de trafico",
        "en feriados",
    ],
};

const JA: ExLang = ExLang {
    templates: &[
        "{place}では動きます",
        "{reason}です",
        "{event}の前は大丈夫でした",
        "{subject}が{thing}を変えたはず",
        "{fix}を試しましたか?",
        "{thing}は誰も触りません",
        "{subject}はローカルで通ります",
        "{time}で直します",
        "{when}だけ壊れます",
        "{place}では再現できません",
        "{subject}が落ちています",
        "{thing}じゃなくて{reason}です",
        "多分{reason}です",
    ],
    subjects: &[
        "テスト",
        "CI",
        "API",
        "外部サービス",
        "ドキュメント",
        "インターン",
        "設定",
        "データベース",
        "キャッシュ",
        "ロードバランサー",
        "Kubernetes",
        "DNS",
    ],
    places: &["私のマシン", "ステージング", "開発サーバー", "ローカル", "私のブランチ", "デモ環境"],
    reasons: &[
        "DNSの問題",
        "キャッシュの問題",
        "レースコンディション",
        "タイムゾーンの問題",
        "既知のバグ",
        "ブラウザの問題",
        "技術的には正しい",
        "宇宙線",
        "エッジケース",
    ],
    events: &[
        "マージ",
        "デプロイ",
        "マイグレーション",
        "リファクタリング",
        "アップグレード",
        "ロールバック",
        "ホットフィックス",
        "リベース",
    ],
    things: &[
        "設定",
        "スキーマ",
        "要件",
        "レガシーコード",
        "テスト",
        "環境変数",
        "権限",
        "依存関係",
    ],
    fixes: &[
        "キャッシュクリア",
        "再起動",
        "再デプロイ",
        "ロールバック",
        "ログ確認",
        "もう一回実行",
        "node_modules削除",
    ],
    times: &[
        "次のスプリント",
        "Q3",
        "明日",
        "次のリリース",
        "v2",
        "永遠に来ない",
        "昼休み後",
        "デモの後",
    ],
    whens: &[
        "金曜日",
        "満月の日",
        "デモの日",
        "17時以降",
        "CEOが見てる時",
        "デプロイ中",
        "ピーク時",
        "休日",
    ],
};

fn lang_for(code: &str) -> &'static ExLang {
    match code {
        "ru" | "bg" | "hr" | "sl" | "pl" | "cs" | "sk" => &RU,
        "uk" => &UK,
        "be" => &BE,
        "sr" => &SR,
        "pt" | "pt-br" => &PT_BR,
        "de" | "de-at" | "lb" => &DE,
        "es" | "mx" | "co" | "cl" | "pe" | "ec" | "uy" | "ve" => &ES,
        "ja" => &JA,
        _ => &EN,
    }
}

fn pick<'a>(rng: &mut Rng, pool: &'a [&'a str]) -> &'a str {
    pool[rng.urange(0, pool.len() - 1)]
}

fn capitalize(s: &str) -> String {
    let mut c = s.chars();
    match c.next() {
        None => String::new(),
        Some(f) => {
            let mut out = String::with_capacity(s.len());
            for u in f.to_uppercase() {
                out.push(u);
            }
            out.push_str(c.as_str());
            out
        }
    }
}

pub fn gen(ctx: &mut GenContext<'_>, buf: &mut String) {
    buf.push_str(&gen_excuse_inner(ctx));
}
fn gen_excuse_inner(ctx: &mut GenContext<'_>) -> String {
    let lang = if ctx.locales.len() <= 5 {
        let loc = ctx.locale();
        lang_for(loc.code)
    } else {
        &EN
    };
    let tpl = lang.templates[ctx.rng.urange(0, lang.templates.len() - 1)];
    let mut out = String::with_capacity(tpl.len() + 40);
    let mut rest = tpl;
    while let Some(pos) = rest.find('{') {
        out.push_str(&rest[..pos]);
        rest = &rest[pos + 1..];
        if let Some(end) = rest.find('}') {
            let key = &rest[..end];
            let replacement = match key {
                "subject" => pick(&mut ctx.rng, lang.subjects),
                "place" => pick(&mut ctx.rng, lang.places),
                "reason" => pick(&mut ctx.rng, lang.reasons),
                "event" => pick(&mut ctx.rng, lang.events),
                "thing" => pick(&mut ctx.rng, lang.things),
                "fix" => pick(&mut ctx.rng, lang.fixes),
                "time" => pick(&mut ctx.rng, lang.times),
                "when" => pick(&mut ctx.rng, lang.whens),
                _ => key,
            };
            out.push_str(replacement);
            rest = &rest[end + 1..];
        } else {
            out.push('{');
        }
    }
    out.push_str(rest);
    capitalize(&out)
}