@mtgame/core 0.2.121 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/bundles/mtgame-core.umd.js +1170 -507
  2. package/bundles/mtgame-core.umd.js.map +1 -1
  3. package/esm2015/localization/basketball-game-log-types.js +70 -33
  4. package/esm2015/localization/basketball-game-sub-log-types.js +64 -30
  5. package/esm2015/localization/football-game-log-types.js +74 -35
  6. package/esm2015/localization/handball-game-log-types.js +46 -21
  7. package/esm2015/localization/hockey-game-log-types.js +64 -30
  8. package/esm2015/localization/hockey-penalty-types.js +51 -2
  9. package/esm2015/localization/locales.js +6 -0
  10. package/esm2015/localization/organization-statuses.js +12 -4
  11. package/esm2015/localization/overtime-types.js +24 -10
  12. package/esm2015/localization/rugby-foul-game-stage.js +26 -11
  13. package/esm2015/localization/rugby-foul-sanction.js +24 -10
  14. package/esm2015/localization/rugby-game-log-types.js +94 -45
  15. package/esm2015/localization/team-event-type.js +10 -3
  16. package/esm2015/localization/team-user-role.js +42 -19
  17. package/esm2015/localization/user-profile.js +202 -64
  18. package/esm2015/localization/volleyball-game-log-types.js +54 -25
  19. package/esm2015/localization/waterpolo-game-log-types.js +134 -65
  20. package/esm2015/localization/wrestball-game-log-types.js +88 -42
  21. package/esm2015/models/basketball-game-log.js +2 -2
  22. package/esm2015/models/game-bill.js +12 -4
  23. package/esm2015/models/league-player.js +54 -25
  24. package/esm2015/models/organization-bill.js +12 -4
  25. package/fesm2015/mtgame-core.js +1124 -463
  26. package/fesm2015/mtgame-core.js.map +1 -1
  27. package/localization/basketball-game-log-types.d.ts +67 -32
  28. package/localization/basketball-game-sub-log-types.d.ts +56 -26
  29. package/localization/football-game-log-types.d.ts +72 -34
  30. package/localization/handball-game-log-types.d.ts +44 -20
  31. package/localization/hockey-game-log-types.d.ts +62 -29
  32. package/localization/hockey-penalty-types.d.ts +5 -0
  33. package/localization/locales.d.ts +4 -0
  34. package/localization/organization-statuses.d.ts +10 -3
  35. package/localization/overtime-types.d.ts +22 -9
  36. package/localization/rugby-foul-game-stage.d.ts +24 -10
  37. package/localization/rugby-foul-sanction.d.ts +22 -9
  38. package/localization/rugby-game-log-types.d.ts +92 -44
  39. package/localization/team-event-type.d.ts +8 -2
  40. package/localization/team-user-role.d.ts +40 -18
  41. package/localization/user-profile.d.ts +198 -62
  42. package/localization/volleyball-game-log-types.d.ts +52 -24
  43. package/localization/waterpolo-game-log-types.d.ts +132 -64
  44. package/localization/wrestball-game-log-types.d.ts +86 -41
  45. package/models/basketball-game-log.d.ts +1 -1
  46. package/models/game-bill.d.ts +10 -3
  47. package/models/league-player.d.ts +52 -24
  48. package/models/organization-bill.d.ts +10 -3
  49. package/mtgame-core.metadata.json +1 -1
  50. package/package.json +1 -1
@@ -392,7 +392,56 @@
392
392
  { id: 44, code: 'УД-НГ', title: 'Удар ногой' },
393
393
  { id: 45, code: 'УКУС', title: 'Укус' },
394
394
  { id: 46, code: 'КН-ЗР', title: 'Физический контакт со зрителем' },
395
- { id: 47, code: 'ШТ-ВР', title: 'Штраф вратаря' }
395
+ { id: 47, code: 'ШТ-ВР', title: 'Штраф вратаря' },
396
+ ];
397
+ var HockeyPenaltyTypesEn = [
398
+ { id: 1, code: 'AGGR', title: 'Агрессор в драке' },
399
+ { id: 2, code: 'AT-HD', title: 'Attack to the head or neck' },
400
+ { id: 3, code: 'AT-GO', title: 'Goalkeeper attack' },
401
+ { id: 4, code: 'AT-BH', title: 'Attack from behind' },
402
+ { id: 5, code: 'BLOCK', title: 'Blocking' },
403
+ { id: 6, code: 'TH-ST', title: 'Throwing a stick' },
404
+ { id: 7, code: 'PC-RL', title: 'Puck release' },
405
+ { id: 8, code: 'RUDE', title: 'Rudeness' },
406
+ { id: 9, code: 'DISC', title: 'Disciplinary penalty' },
407
+ { id: 10, code: 'DISC-EM', title: 'Disciplinary until the end of the match' },
408
+ { id: 11, code: 'FIGHT', title: 'Fight' },
409
+ { id: 12, code: 'IN-FG', title: 'The instigator of the fight' },
410
+ { id: 13, code: 'GD', title: 'Game delay' },
411
+ { id: 14, code: 'HD-OP-ST', title: 'Holding an opponent\'s stick' },
412
+ { id: 15, code: 'ST-HD', title: 'Stick hold' },
413
+ { id: 16, code: 'DL-OP', title: 'Delaying the opponent' },
414
+ { id: 17, code: 'HL-PC-HD', title: 'Holding the puck with your hands' },
415
+ { id: 18, code: 'PL-BS', title: 'Playing with a broken stick' },
416
+ { id: 19, code: 'HSP', title: 'High stick play' },
417
+ { id: 20, code: 'THR', title: 'Thrust' },
418
+ { id: 21, code: 'MI-BE', title: 'Minor bench penalty' },
419
+ { id: 22, code: 'MP', title: 'Match penalty' },
420
+ { id: 23, code: 'WR-AT', title: 'Wrong attack' },
421
+ { id: 24, code: 'NM-VO', title: 'Violation of numerical composition' },
422
+ { id: 25, code: 'NS-ST', title: 'Non-standard stick' },
423
+ { id: 26, code: 'DE', title: 'Dangerous equipment' },
424
+ { id: 27, code: 'INS-REF', title: 'Insulting referees and unsportsmanlike conduct' },
425
+ { id: 28, code: 'RF-SG', title: 'Refusal to start the game' },
426
+ { id: 29, code: 'CO', title: 'Cut-off' },
427
+ { id: 30, code: 'SPIT', title: 'Spit' },
428
+ { id: 31, code: 'STEP', title: 'Step' },
429
+ { id: 32, code: 'UND', title: 'Undercut' },
430
+ { id: 33, code: 'PR-INF', title: 'Prevention of infections' },
431
+ { id: 34, code: 'LE-BE', title: 'Leaving the bench during a conflict' },
432
+ { id: 35, code: 'GA-SH', title: 'Gate shift' },
433
+ { id: 36, code: 'SIM', title: 'Simulation' },
434
+ { id: 37, code: 'PU-BR', title: 'Push on board' },
435
+ { id: 38, code: 'PU-ST', title: 'Stick push' },
436
+ { id: 39, code: 'AT-HD', title: 'Head kick' },
437
+ { id: 40, code: 'HT-ST', title: 'Hit with a stick' },
438
+ { id: 41, code: 'HT-ST-E', title: 'Hit with the end of the stick' },
439
+ { id: 42, code: 'ST-KN', title: 'Knee strike' },
440
+ { id: 43, code: 'ST-EB', title: 'Elbow strike' },
441
+ { id: 44, code: 'KICK', title: 'Kick' },
442
+ { id: 45, code: 'BITE', title: 'Bite' },
443
+ { id: 46, code: 'CN-VW', title: 'Physical contact with the viewer' },
444
+ { id: 47, code: 'PN-GO', title: 'Goalkeeper penalty' },
396
445
  ];
397
446
 
398
447
  var MODEL_MAPPING_FIELDS_KEY = '_mapping_fields_';
@@ -3627,7 +3676,13 @@
3627
3676
  })
3628
3677
  ], exports.LeaguePlayerFieldValue);
3629
3678
 
3630
- var _a$j;
3679
+ var Locales;
3680
+ (function (Locales) {
3681
+ Locales["ru"] = "ru-RU";
3682
+ Locales["en"] = "en-US";
3683
+ })(Locales || (Locales = {}));
3684
+
3685
+ var _a$j, _b$i, _c$i;
3631
3686
  exports.Qualification = void 0;
3632
3687
  (function (Qualification) {
3633
3688
  Qualification[Qualification["practician"] = 1] = "practician";
@@ -3656,30 +3711,58 @@
3656
3711
  Qualification[Qualification["preschool_child"] = 24] = "preschool_child";
3657
3712
  })(exports.Qualification || (exports.Qualification = {}));
3658
3713
  var QualificationLocalization = (_a$j = {},
3659
- _a$j[exports.Qualification.practician] = 'Практик',
3660
- _a$j[exports.Qualification.practician2] = 'Практик 2',
3661
- _a$j[exports.Qualification.practician3] = 'Практик 3',
3662
- _a$j[exports.Qualification.amateur] = 'Любитель',
3663
- _a$j[exports.Qualification.amateur2] = 'Любитель 2',
3664
- _a$j[exports.Qualification.theorist] = 'Теоретик',
3665
- _a$j[exports.Qualification.theorist2] = 'Теоретик 2',
3666
- _a$j[exports.Qualification.theorist3] = 'Теоретик 3',
3667
- _a$j[exports.Qualification.sportsman] = 'Спортсмен',
3668
- _a$j[exports.Qualification.lider] = 'Лидер',
3669
- _a$j[exports.Qualification.master] = 'Мастер',
3670
- _a$j[exports.Qualification.profi] = 'Профи',
3671
- _a$j[exports.Qualification.goalkeeper] = 'Вратарь',
3672
- _a$j[exports.Qualification.goalkeeper2] = 'Вратарь 2',
3673
- _a$j[exports.Qualification.goalkeeper_sh] = 'Вратарь СШ',
3674
- _a$j[exports.Qualification.goalkeeper_ul] = 'Вратарь ЮЛ',
3675
- _a$j[exports.Qualification.goalkeeper_mhl] = 'Вратарь МХЛ',
3676
- _a$j[exports.Qualification.goalkeeper_vhl] = 'Вратарь ВХЛ',
3677
- _a$j[exports.Qualification.goalkeeper_khl] = 'Вратарь КХЛ',
3678
- _a$j[exports.Qualification.beginner] = 'Новичок',
3679
- _a$j[exports.Qualification.junior] = 'Юниор',
3680
- _a$j[exports.Qualification.debutant] = 'Дебютант',
3681
- _a$j[exports.Qualification.schoolchild] = 'Школьник',
3682
- _a$j[exports.Qualification.preschool_child] = 'Дошкольник',
3714
+ _a$j[Locales.ru] = (_b$i = {},
3715
+ _b$i[exports.Qualification.practician] = 'Практик',
3716
+ _b$i[exports.Qualification.practician2] = 'Практик 2',
3717
+ _b$i[exports.Qualification.practician3] = 'Практик 3',
3718
+ _b$i[exports.Qualification.amateur] = 'Любитель',
3719
+ _b$i[exports.Qualification.amateur2] = 'Любитель 2',
3720
+ _b$i[exports.Qualification.theorist] = 'Теоретик',
3721
+ _b$i[exports.Qualification.theorist2] = 'Теоретик 2',
3722
+ _b$i[exports.Qualification.theorist3] = 'Теоретик 3',
3723
+ _b$i[exports.Qualification.sportsman] = 'Спортсмен',
3724
+ _b$i[exports.Qualification.lider] = 'Лидер',
3725
+ _b$i[exports.Qualification.master] = 'Мастер',
3726
+ _b$i[exports.Qualification.profi] = 'Профи',
3727
+ _b$i[exports.Qualification.goalkeeper] = 'Вратарь',
3728
+ _b$i[exports.Qualification.goalkeeper2] = 'Вратарь 2',
3729
+ _b$i[exports.Qualification.goalkeeper_sh] = 'Вратарь СШ',
3730
+ _b$i[exports.Qualification.goalkeeper_ul] = 'Вратарь ЮЛ',
3731
+ _b$i[exports.Qualification.goalkeeper_mhl] = 'Вратарь МХЛ',
3732
+ _b$i[exports.Qualification.goalkeeper_vhl] = 'Вратарь ВХЛ',
3733
+ _b$i[exports.Qualification.goalkeeper_khl] = 'Вратарь КХЛ',
3734
+ _b$i[exports.Qualification.beginner] = 'Новичок',
3735
+ _b$i[exports.Qualification.junior] = 'Юниор',
3736
+ _b$i[exports.Qualification.debutant] = 'Дебютант',
3737
+ _b$i[exports.Qualification.schoolchild] = 'Школьник',
3738
+ _b$i[exports.Qualification.preschool_child] = 'Дошкольник',
3739
+ _b$i),
3740
+ _a$j[Locales.en] = (_c$i = {},
3741
+ _c$i[exports.Qualification.practician] = 'Practician',
3742
+ _c$i[exports.Qualification.practician2] = 'Practician 2',
3743
+ _c$i[exports.Qualification.practician3] = 'Практик 3',
3744
+ _c$i[exports.Qualification.amateur] = 'Amateur',
3745
+ _c$i[exports.Qualification.amateur2] = 'Amateur 2',
3746
+ _c$i[exports.Qualification.theorist] = 'Theorist',
3747
+ _c$i[exports.Qualification.theorist2] = 'Theorist 2',
3748
+ _c$i[exports.Qualification.theorist3] = 'Theorist 3',
3749
+ _c$i[exports.Qualification.sportsman] = 'Sportsman',
3750
+ _c$i[exports.Qualification.lider] = 'Leader',
3751
+ _c$i[exports.Qualification.master] = 'Master',
3752
+ _c$i[exports.Qualification.profi] = 'Professional',
3753
+ _c$i[exports.Qualification.goalkeeper] = 'Goalkeeper',
3754
+ _c$i[exports.Qualification.goalkeeper2] = 'Goalkeeper 2',
3755
+ _c$i[exports.Qualification.goalkeeper_sh] = 'Goalkeeper SH',
3756
+ _c$i[exports.Qualification.goalkeeper_ul] = 'Goalkeeper UL',
3757
+ _c$i[exports.Qualification.goalkeeper_mhl] = 'Goalkeeper MHL',
3758
+ _c$i[exports.Qualification.goalkeeper_vhl] = 'Goalkeeper VHL',
3759
+ _c$i[exports.Qualification.goalkeeper_khl] = 'Goalkeeper KHL',
3760
+ _c$i[exports.Qualification.beginner] = 'Beginner',
3761
+ _c$i[exports.Qualification.junior] = 'Junior',
3762
+ _c$i[exports.Qualification.debutant] = 'Debutant',
3763
+ _c$i[exports.Qualification.schoolchild] = 'Schoolchild',
3764
+ _c$i[exports.Qualification.preschool_child] = 'Preschool child',
3765
+ _c$i),
3683
3766
  _a$j);
3684
3767
  exports.LeaguePlayer = /** @class */ (function (_super) {
3685
3768
  __extends(LeaguePlayer, _super);
@@ -4239,7 +4322,7 @@
4239
4322
  BasketballGameLogTypes[BasketballGameLogTypes["shootout"] = 29] = "shootout";
4240
4323
  BasketballGameLogTypes[BasketballGameLogTypes["shootout_won"] = 30] = "shootout_won";
4241
4324
  BasketballGameLogTypes[BasketballGameLogTypes["shootout_lost"] = 31] = "shootout_lost";
4242
- BasketballGameLogTypes[BasketballGameLogTypes["moneyball_free_throw_attept"] = 32] = "moneyball_free_throw_attept";
4325
+ BasketballGameLogTypes[BasketballGameLogTypes["moneyball_free_throw_attempt"] = 32] = "moneyball_free_throw_attempt";
4243
4326
  BasketballGameLogTypes[BasketballGameLogTypes["moneyball_free_throw_made"] = 33] = "moneyball_free_throw_made";
4244
4327
  })(exports.BasketballGameLogTypes || (exports.BasketballGameLogTypes = {}));
4245
4328
  exports.BasketballSubLogTypes = void 0;
@@ -9389,10 +9472,16 @@
9389
9472
  TeamEventTypes[TeamEventTypes["other"] = 2] = "other";
9390
9473
  })(exports.TeamEventTypes || (exports.TeamEventTypes = {}));
9391
9474
 
9392
- var _a$i;
9475
+ var _a$i, _b$h, _c$h;
9393
9476
  var TeamEventTypeLocalization = (_a$i = {},
9394
- _a$i[exports.TeamEventTypes.training] = 'Тренировка',
9395
- _a$i[exports.TeamEventTypes.other] = 'Другое',
9477
+ _a$i[Locales.ru] = (_b$h = {},
9478
+ _b$h[exports.TeamEventTypes.training] = 'Тренировка',
9479
+ _b$h[exports.TeamEventTypes.other] = 'Другое',
9480
+ _b$h),
9481
+ _a$i[Locales.en] = (_c$h = {},
9482
+ _c$h[exports.TeamEventTypes.training] = 'Training',
9483
+ _c$h[exports.TeamEventTypes.other] = 'Other',
9484
+ _c$h),
9396
9485
  _a$i);
9397
9486
 
9398
9487
  exports.TeamEvent = /** @class */ (function (_super) {
@@ -14153,525 +14242,1083 @@
14153
14242
  { type: ConfigService }
14154
14243
  ]; };
14155
14244
 
14156
- var _a$g;
14245
+ var _a$g, _b$g, _c$g;
14157
14246
  var BasketballGameLogTypeLocalization = (_a$g = {},
14158
- _a$g[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
14159
- _a$g[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
14160
- _a$g[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
14161
- _a$g[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
14162
- _a$g[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
14163
- _a$g[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
14164
- _a$g[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
14165
- _a$g[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
14166
- _a$g[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
14167
- _a$g[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
14168
- _a$g[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
14169
- _a$g[exports.BasketballGameLogTypes.assist] = 'Передача',
14170
- _a$g[exports.BasketballGameLogTypes.block] = 'Блокшот',
14171
- _a$g[exports.BasketballGameLogTypes.rebound] = 'Подбор',
14172
- _a$g[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
14173
- _a$g[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
14174
- _a$g[exports.BasketballGameLogTypes.steal] = 'Перехват',
14175
- _a$g[exports.BasketballGameLogTypes.turnover] = 'Потеря',
14176
- _a$g[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
14177
- _a$g[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
14178
- _a$g[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
14179
- _a$g[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
14180
- _a$g[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
14181
- _a$g[exports.BasketballGameLogTypes.dunk_attempt] = 'Данк мимо',
14182
- _a$g[exports.BasketballGameLogTypes.dunk_made] = 'Данк',
14183
- _a$g[exports.BasketballGameLogTypes.four_point_attempt] = 'Бросок 4 очка',
14184
- _a$g[exports.BasketballGameLogTypes.four_point_made] = '4 очка',
14185
- _a$g[exports.BasketballGameLogTypes.shootout] = 'Буллит',
14186
- _a$g[exports.BasketballGameLogTypes.shootout_won] = 'Буллит выигран',
14187
- _a$g[exports.BasketballGameLogTypes.shootout_lost] = 'Буллит проигран',
14188
- _a$g[exports.BasketballGameLogTypes.moneyball_free_throw_attept] = 'Штрафной бросок',
14189
- _a$g[exports.BasketballGameLogTypes.moneyball_free_throw_made] = '2 очка, штрафной',
14247
+ _a$g[Locales.ru] = (_b$g = {},
14248
+ _b$g[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
14249
+ _b$g[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
14250
+ _b$g[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
14251
+ _b$g[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
14252
+ _b$g[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
14253
+ _b$g[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
14254
+ _b$g[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
14255
+ _b$g[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
14256
+ _b$g[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
14257
+ _b$g[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
14258
+ _b$g[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
14259
+ _b$g[exports.BasketballGameLogTypes.assist] = 'Передача',
14260
+ _b$g[exports.BasketballGameLogTypes.block] = 'Блокшот',
14261
+ _b$g[exports.BasketballGameLogTypes.rebound] = 'Подбор',
14262
+ _b$g[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
14263
+ _b$g[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
14264
+ _b$g[exports.BasketballGameLogTypes.steal] = 'Перехват',
14265
+ _b$g[exports.BasketballGameLogTypes.turnover] = 'Потеря',
14266
+ _b$g[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
14267
+ _b$g[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
14268
+ _b$g[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
14269
+ _b$g[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
14270
+ _b$g[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
14271
+ _b$g[exports.BasketballGameLogTypes.dunk_attempt] = 'Данк мимо',
14272
+ _b$g[exports.BasketballGameLogTypes.dunk_made] = 'Данк',
14273
+ _b$g[exports.BasketballGameLogTypes.four_point_attempt] = 'Бросок 4 очка',
14274
+ _b$g[exports.BasketballGameLogTypes.four_point_made] = '4 очка',
14275
+ _b$g[exports.BasketballGameLogTypes.shootout] = 'Буллит',
14276
+ _b$g[exports.BasketballGameLogTypes.shootout_won] = 'Буллит выигран',
14277
+ _b$g[exports.BasketballGameLogTypes.shootout_lost] = 'Буллит проигран',
14278
+ _b$g[exports.BasketballGameLogTypes.moneyball_free_throw_attempt] = 'Штрафной бросок',
14279
+ _b$g[exports.BasketballGameLogTypes.moneyball_free_throw_made] = '2 очка, штрафной',
14280
+ _b$g),
14281
+ _a$g[Locales.en] = (_c$g = {},
14282
+ _c$g[exports.BasketballGameLogTypes.enter_game] = 'Entering the court',
14283
+ _c$g[exports.BasketballGameLogTypes.exit_game] = 'Exit the court',
14284
+ _c$g[exports.BasketballGameLogTypes.remove_game] = 'Remove from the court',
14285
+ _c$g[exports.BasketballGameLogTypes.two_point_attempt] = 'Two point attempt',
14286
+ _c$g[exports.BasketballGameLogTypes.three_point_attempt] = 'Three point attempt',
14287
+ _c$g[exports.BasketballGameLogTypes.free_throw_attempt] = 'Free throw attempt',
14288
+ _c$g[exports.BasketballGameLogTypes.one_point_attempt] = 'One point attempt',
14289
+ _c$g[exports.BasketballGameLogTypes.two_point_made] = '2 points',
14290
+ _c$g[exports.BasketballGameLogTypes.three_point_made] = '3 points',
14291
+ _c$g[exports.BasketballGameLogTypes.free_throw_made] = '1 point, free throw',
14292
+ _c$g[exports.BasketballGameLogTypes.one_point_made] = '1 point',
14293
+ _c$g[exports.BasketballGameLogTypes.assist] = 'Assist',
14294
+ _c$g[exports.BasketballGameLogTypes.block] = 'Block',
14295
+ _c$g[exports.BasketballGameLogTypes.rebound] = 'Rebound',
14296
+ _c$g[exports.BasketballGameLogTypes.offensive_rebound] = 'Offensive rebound',
14297
+ _c$g[exports.BasketballGameLogTypes.defensive_rebound] = 'Defensive rebound',
14298
+ _c$g[exports.BasketballGameLogTypes.steal] = 'Steal',
14299
+ _c$g[exports.BasketballGameLogTypes.turnover] = 'Turnover',
14300
+ _c$g[exports.BasketballGameLogTypes.personal_foul] = 'Foul',
14301
+ _c$g[exports.BasketballGameLogTypes.technical_foul] = 'Technical foul',
14302
+ _c$g[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Unsportsmanlike foul',
14303
+ _c$g[exports.BasketballGameLogTypes.timeout] = 'Timeout',
14304
+ _c$g[exports.BasketballGameLogTypes.team_rebound] = 'Team rebound',
14305
+ _c$g[exports.BasketballGameLogTypes.four_point_attempt] = 'Four point attempt',
14306
+ _c$g[exports.BasketballGameLogTypes.four_point_made] = '4 points',
14307
+ _c$g[exports.BasketballGameLogTypes.dunk_attempt] = 'Dunk miss',
14308
+ _c$g[exports.BasketballGameLogTypes.dunk_attempt] = 'Dunk',
14309
+ _c$g[exports.BasketballGameLogTypes.shootout] = 'Shootout',
14310
+ _c$g[exports.BasketballGameLogTypes.shootout_won] = 'Shootout won',
14311
+ _c$g[exports.BasketballGameLogTypes.shootout_lost] = 'Shootout lost',
14312
+ _c$g[exports.BasketballGameLogTypes.moneyball_free_throw_attempt] = 'Free throw attempt',
14313
+ _c$g[exports.BasketballGameLogTypes.moneyball_free_throw_made] = '2 points, free throw',
14314
+ _c$g),
14190
14315
  _a$g);
14191
14316
 
14192
- var _a$f;
14317
+ var _a$f, _b$f, _c$f;
14193
14318
  var BasketballGameSubLogTypesLocalization = (_a$f = {},
14194
- // Shots
14195
- _a$f[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
14196
- _a$f[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
14197
- _a$f[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
14198
- _a$f[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
14199
- _a$f[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
14200
- _a$f[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
14201
- _a$f[exports.BasketballSubLogTypes.dunk] = 'Данк',
14202
- _a$f[exports.BasketballSubLogTypes.layup] = 'Лэйап',
14203
- _a$f[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
14204
- _a$f[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
14205
- _a$f[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
14206
- // foul
14207
- _a$f[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
14208
- _a$f[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
14209
- _a$f[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
14210
- // Turnover
14211
- _a$f[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
14212
- _a$f[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
14213
- _a$f[exports.BasketballSubLogTypes.travel] = 'Пробежка',
14214
- _a$f[exports.BasketballSubLogTypes.double_dribble] = 'Двойное ведение',
14215
- _a$f[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
14216
- _a$f[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
14217
- _a$f[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
14218
- _a$f[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
14219
- _a$f[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
14220
- _a$f[exports.BasketballSubLogTypes.back_court] = 'Зона',
14221
- _a$f[exports.BasketballSubLogTypes.offensive_goal_tending] = 'Гоалтендинг',
14222
- _a$f[exports.BasketballSubLogTypes.other_turnover] = 'Другое',
14319
+ _a$f[Locales.ru] = (_b$f = {},
14320
+ // Shots
14321
+ _b$f[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
14322
+ _b$f[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
14323
+ _b$f[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
14324
+ _b$f[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
14325
+ _b$f[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
14326
+ _b$f[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
14327
+ _b$f[exports.BasketballSubLogTypes.dunk] = 'Данк',
14328
+ _b$f[exports.BasketballSubLogTypes.layup] = 'Лэйап',
14329
+ _b$f[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
14330
+ _b$f[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
14331
+ _b$f[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
14332
+ // foul
14333
+ _b$f[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
14334
+ _b$f[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
14335
+ _b$f[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
14336
+ // Turnover
14337
+ _b$f[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
14338
+ _b$f[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
14339
+ _b$f[exports.BasketballSubLogTypes.travel] = 'Пробежка',
14340
+ _b$f[exports.BasketballSubLogTypes.double_dribble] = 'Двойное ведение',
14341
+ _b$f[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
14342
+ _b$f[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
14343
+ _b$f[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
14344
+ _b$f[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
14345
+ _b$f[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
14346
+ _b$f[exports.BasketballSubLogTypes.back_court] = 'Зона',
14347
+ _b$f[exports.BasketballSubLogTypes.offensive_goal_tending] = 'Гоалтендинг',
14348
+ _b$f[exports.BasketballSubLogTypes.other_turnover] = 'Другое',
14349
+ _b$f),
14350
+ _a$f[Locales.en] = (_c$f = {},
14351
+ // Shots
14352
+ _c$f[exports.BasketballSubLogTypes.jump_shot] = 'Jump shot',
14353
+ _c$f[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Step back',
14354
+ _c$f[exports.BasketballSubLogTypes.floating_jump_shot] = 'Floating',
14355
+ _c$f[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Fade-away',
14356
+ _c$f[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Pull-up',
14357
+ _c$f[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Turnaround',
14358
+ _c$f[exports.BasketballSubLogTypes.dunk] = 'Dunk',
14359
+ _c$f[exports.BasketballSubLogTypes.layup] = 'Layup',
14360
+ _c$f[exports.BasketballSubLogTypes.driving_layup] = 'Driving layup',
14361
+ _c$f[exports.BasketballSubLogTypes.alley_oop] = 'Alley-oop',
14362
+ _c$f[exports.BasketballSubLogTypes.hook_shot] = 'Hook-shot',
14363
+ // foul
14364
+ _c$f[exports.BasketballSubLogTypes.offensive_foul] = 'Offensive foul',
14365
+ _c$f[exports.BasketballSubLogTypes.shot_foul] = 'Shot foul',
14366
+ _c$f[exports.BasketballSubLogTypes.mutual_foul] = 'Mutual foul',
14367
+ // Turnover
14368
+ _c$f[exports.BasketballSubLogTypes.bad_pass] = 'Bad pass',
14369
+ _c$f[exports.BasketballSubLogTypes.ball_handling] = 'Ball handling',
14370
+ _c$f[exports.BasketballSubLogTypes.travel] = 'Travel',
14371
+ _c$f[exports.BasketballSubLogTypes.double_dribble] = 'Double dribble',
14372
+ _c$f[exports.BasketballSubLogTypes.out_of_bounds] = 'Out of bounds',
14373
+ _c$f[exports.BasketballSubLogTypes.three_seconds] = '3 second',
14374
+ _c$f[exports.BasketballSubLogTypes.five_seconds] = '5 second',
14375
+ _c$f[exports.BasketballSubLogTypes.eight_seconds] = '8 second',
14376
+ _c$f[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 second',
14377
+ _c$f[exports.BasketballSubLogTypes.back_court] = 'Back court',
14378
+ _c$f[exports.BasketballSubLogTypes.offensive_goal_tending] = 'Goal tending',
14379
+ _c$f[exports.BasketballSubLogTypes.other_turnover] = 'Other',
14380
+ _c$f),
14223
14381
  _a$f);
14224
14382
 
14225
- var _a$e;
14383
+ var _a$e, _b$e, _c$e;
14226
14384
  var HockeyGameLogTypeLocalization = (_a$e = {},
14227
- _a$e[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
14228
- _a$e[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
14229
- _a$e[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
14230
- _a$e[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
14231
- _a$e[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
14232
- _a$e[exports.HockeyGameLogTypes.goal] = 'Гол',
14233
- _a$e[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
14234
- _a$e[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
14235
- _a$e[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
14236
- _a$e[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
14237
- _a$e[exports.HockeyGameLogTypes.assist] = 'Передача',
14238
- _a$e[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
14239
- _a$e[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
14240
- _a$e[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
14241
- _a$e[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
14242
- _a$e[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
14243
- _a$e[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
14244
- _a$e[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
14245
- _a$e[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
14246
- _a$e[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
14247
- _a$e[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
14248
- _a$e[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
14249
- _a$e[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
14250
- _a$e[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
14251
- _a$e[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
14252
- _a$e[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
14253
- _a$e[exports.HockeyGameLogTypes.steal] = 'Отбор',
14254
- _a$e[exports.HockeyGameLogTypes.loss] = 'Потеря',
14255
- _a$e[exports.HockeyGameLogTypes.sharp_pass] = 'Острая передача',
14385
+ _a$e[Locales.ru] = (_b$e = {},
14386
+ _b$e[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
14387
+ _b$e[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
14388
+ _b$e[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
14389
+ _b$e[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
14390
+ _b$e[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
14391
+ _b$e[exports.HockeyGameLogTypes.goal] = 'Гол',
14392
+ _b$e[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
14393
+ _b$e[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
14394
+ _b$e[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
14395
+ _b$e[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
14396
+ _b$e[exports.HockeyGameLogTypes.assist] = 'Передача',
14397
+ _b$e[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
14398
+ _b$e[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
14399
+ _b$e[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
14400
+ _b$e[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
14401
+ _b$e[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
14402
+ _b$e[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
14403
+ _b$e[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
14404
+ _b$e[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
14405
+ _b$e[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
14406
+ _b$e[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
14407
+ _b$e[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
14408
+ _b$e[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
14409
+ _b$e[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
14410
+ _b$e[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
14411
+ _b$e[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
14412
+ _b$e[exports.HockeyGameLogTypes.steal] = 'Отбор',
14413
+ _b$e[exports.HockeyGameLogTypes.loss] = 'Потеря',
14414
+ _b$e[exports.HockeyGameLogTypes.sharp_pass] = 'Острая передача',
14415
+ _b$e),
14416
+ _a$e[Locales.en] = (_c$e = {},
14417
+ _c$e[exports.HockeyGameLogTypes.enter_game] = 'Entering the court',
14418
+ _c$e[exports.HockeyGameLogTypes.exit_game] = 'Exit the court',
14419
+ _c$e[exports.HockeyGameLogTypes.shot_miss] = 'Missing shot',
14420
+ _c$e[exports.HockeyGameLogTypes.shot_on_goal] = 'Shot on a goal',
14421
+ _c$e[exports.HockeyGameLogTypes.shot_blocked] = 'Blocked shot',
14422
+ _c$e[exports.HockeyGameLogTypes.goal] = 'Goal',
14423
+ _c$e[exports.HockeyGameLogTypes.shootout_attempt] = 'Shootout miss',
14424
+ _c$e[exports.HockeyGameLogTypes.shootout_goal] = 'Shootout goal',
14425
+ _c$e[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Shootout miss',
14426
+ _c$e[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Shootout goal',
14427
+ _c$e[exports.HockeyGameLogTypes.assist] = 'Assist',
14428
+ _c$e[exports.HockeyGameLogTypes.block_shot] = 'Shot is blocked',
14429
+ _c$e[exports.HockeyGameLogTypes.minor_penalty] = 'Minor penalty',
14430
+ _c$e[exports.HockeyGameLogTypes.major_penalty] = 'Major penalty',
14431
+ _c$e[exports.HockeyGameLogTypes.misconduct_penalty] = 'Misconduct penalty',
14432
+ _c$e[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Disciplinary penalty until the end of the game',
14433
+ _c$e[exports.HockeyGameLogTypes.match_penalty] = 'Match penalty',
14434
+ _c$e[exports.HockeyGameLogTypes.penalty_shot] = 'Penalty shot',
14435
+ _c$e[exports.HockeyGameLogTypes.face_off_lose] = 'Face-off lose',
14436
+ _c$e[exports.HockeyGameLogTypes.face_off_win] = 'Face-off win',
14437
+ _c$e[exports.HockeyGameLogTypes.save] = 'Throw is reflected',
14438
+ _c$e[exports.HockeyGameLogTypes.shootout_save] = 'Throw is reflected',
14439
+ _c$e[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Throw is reflected',
14440
+ _c$e[exports.HockeyGameLogTypes.timeout] = 'Timeout',
14441
+ _c$e[exports.HockeyGameLogTypes.penalty_start] = 'The beginning of the penalty time',
14442
+ _c$e[exports.HockeyGameLogTypes.penalty_end] = 'End of penalty time',
14443
+ _c$e[exports.HockeyGameLogTypes.steal] = 'Steal',
14444
+ _c$e[exports.HockeyGameLogTypes.loss] = 'Loss',
14445
+ _c$e[exports.HockeyGameLogTypes.sharp_pass] = 'Sharp pass',
14446
+ _c$e),
14256
14447
  _a$e);
14257
14448
 
14258
- var _a$d;
14449
+ var _a$d, _b$d, _c$d;
14259
14450
  var FootballGameLogTypeLocalization = (_a$d = {},
14260
- _a$d[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
14261
- _a$d[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
14262
- _a$d[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
14263
- _a$d[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
14264
- _a$d[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
14265
- _a$d[exports.FootballGameLogTypes.goal] = 'Гол',
14266
- _a$d[exports.FootballGameLogTypes.assist] = 'Передача',
14267
- _a$d[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
14268
- _a$d[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
14269
- _a$d[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
14270
- _a$d[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
14271
- _a$d[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
14272
- _a$d[exports.FootballGameLogTypes.corner] = 'Угловой',
14273
- _a$d[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
14274
- _a$d[exports.FootballGameLogTypes.save] = 'Отражен удар',
14275
- _a$d[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
14276
- _a$d[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
14277
- _a$d[exports.FootballGameLogTypes.foul] = 'Фол',
14278
- _a$d[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
14279
- _a$d[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
14280
- _a$d[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
14281
- _a$d[exports.FootballGameLogTypes.loss] = 'Потеря',
14282
- _a$d[exports.FootballGameLogTypes.steal] = 'Перехват',
14283
- _a$d[exports.FootballGameLogTypes.out] = 'Аут',
14284
- _a$d[exports.FootballGameLogTypes.timeout] = 'Таймаут',
14285
- _a$d[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
14286
- _a$d[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
14287
- _a$d[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
14288
- _a$d[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
14289
- _a$d[exports.FootballGameLogTypes.duel_won] = 'Дуэль выиграна',
14290
- _a$d[exports.FootballGameLogTypes.duel_lost] = 'Дуэль проиграна',
14291
- _a$d[exports.FootballGameLogTypes.double_goal] = 'Гол+2',
14292
- _a$d[exports.FootballGameLogTypes.super_game] = 'Супер игра',
14293
- _a$d[exports.FootballGameLogTypes.color_ball] = 'Цветной мяч',
14451
+ _a$d[Locales.ru] = (_b$d = {},
14452
+ _b$d[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
14453
+ _b$d[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
14454
+ _b$d[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
14455
+ _b$d[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
14456
+ _b$d[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
14457
+ _b$d[exports.FootballGameLogTypes.goal] = 'Гол',
14458
+ _b$d[exports.FootballGameLogTypes.assist] = 'Передача',
14459
+ _b$d[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
14460
+ _b$d[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
14461
+ _b$d[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
14462
+ _b$d[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
14463
+ _b$d[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
14464
+ _b$d[exports.FootballGameLogTypes.corner] = 'Угловой',
14465
+ _b$d[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
14466
+ _b$d[exports.FootballGameLogTypes.save] = 'Отражен удар',
14467
+ _b$d[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
14468
+ _b$d[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
14469
+ _b$d[exports.FootballGameLogTypes.foul] = 'Фол',
14470
+ _b$d[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
14471
+ _b$d[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
14472
+ _b$d[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
14473
+ _b$d[exports.FootballGameLogTypes.loss] = 'Потеря',
14474
+ _b$d[exports.FootballGameLogTypes.steal] = 'Перехват',
14475
+ _b$d[exports.FootballGameLogTypes.out] = 'Аут',
14476
+ _b$d[exports.FootballGameLogTypes.timeout] = 'Таймаут',
14477
+ _b$d[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
14478
+ _b$d[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
14479
+ _b$d[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
14480
+ _b$d[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
14481
+ _b$d[exports.FootballGameLogTypes.duel_won] = 'Дуэль выиграна',
14482
+ _b$d[exports.FootballGameLogTypes.duel_lost] = 'Дуэль проиграна',
14483
+ _b$d[exports.FootballGameLogTypes.double_goal] = 'Гол+2',
14484
+ _b$d[exports.FootballGameLogTypes.super_game] = 'Супер игра',
14485
+ _b$d[exports.FootballGameLogTypes.color_ball] = 'Цветной мяч',
14486
+ _b$d),
14487
+ _a$d[Locales.en] = (_c$d = {},
14488
+ _c$d[exports.FootballGameLogTypes.enter_game] = 'Entering the court',
14489
+ _c$d[exports.FootballGameLogTypes.exit_game] = 'Exit the court',
14490
+ _c$d[exports.FootballGameLogTypes.shot_miss] = 'Missing shot',
14491
+ _c$d[exports.FootballGameLogTypes.shot_on_goal] = 'Shot on goal',
14492
+ _c$d[exports.FootballGameLogTypes.shot_blocked] = 'Shot is blocked',
14493
+ _c$d[exports.FootballGameLogTypes.goal] = 'Goal',
14494
+ _c$d[exports.FootballGameLogTypes.assist] = 'Assist',
14495
+ _c$d[exports.FootballGameLogTypes.penalty_attempt] = 'Penalty miss',
14496
+ _c$d[exports.FootballGameLogTypes.penalty_goal] = 'Penalty goal',
14497
+ _c$d[exports.FootballGameLogTypes.small_penalty_attempt] = '10-meters shot miss',
14498
+ _c$d[exports.FootballGameLogTypes.small_penalty_goal] = '10-meters goal',
14499
+ _c$d[exports.FootballGameLogTypes.block_shot] = 'Blocking shot',
14500
+ _c$d[exports.FootballGameLogTypes.corner] = 'Corner',
14501
+ _c$d[exports.FootballGameLogTypes.free_kick] = 'Free kick',
14502
+ _c$d[exports.FootballGameLogTypes.save] = 'Save',
14503
+ _c$d[exports.FootballGameLogTypes.penalty_save] = 'Penalty save',
14504
+ _c$d[exports.FootballGameLogTypes.small_penalty_save] = '10-meters save',
14505
+ _c$d[exports.FootballGameLogTypes.foul] = 'Foul',
14506
+ _c$d[exports.FootballGameLogTypes.yellow_card] = 'Yellow card',
14507
+ _c$d[exports.FootballGameLogTypes.red_card] = 'Red card',
14508
+ _c$d[exports.FootballGameLogTypes.perfect_pass] = 'Pass',
14509
+ _c$d[exports.FootballGameLogTypes.loss] = 'Loss',
14510
+ _c$d[exports.FootballGameLogTypes.steal] = 'Steal',
14511
+ _c$d[exports.FootballGameLogTypes.out] = 'Out',
14512
+ _c$d[exports.FootballGameLogTypes.timeout] = 'Timeout',
14513
+ _c$d[exports.FootballGameLogTypes.auto_goal] = 'Own goal',
14514
+ _c$d[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Penalty goal',
14515
+ _c$d[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Penalty miss',
14516
+ _c$d[exports.FootballGameLogTypes.end_game_penalty_save] = 'Penalty save',
14517
+ _c$d[exports.FootballGameLogTypes.duel_won] = 'Duel won',
14518
+ _c$d[exports.FootballGameLogTypes.duel_lost] = 'Duel lost',
14519
+ _c$d[exports.FootballGameLogTypes.double_goal] = 'Goal+2',
14520
+ _c$d[exports.FootballGameLogTypes.super_game] = 'Super game',
14521
+ _c$d[exports.FootballGameLogTypes.color_ball] = 'Color ball',
14522
+ _c$d),
14294
14523
  _a$d);
14295
14524
 
14296
- var _a$c;
14525
+ var _a$c, _b$c, _c$c;
14297
14526
  var HandballGameLogTypeLocalization = (_a$c = {},
14298
- _a$c[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
14299
- _a$c[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
14300
- _a$c[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
14301
- _a$c[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
14302
- _a$c[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
14303
- _a$c[exports.HandballGameLogTypes.goal] = 'Гол',
14304
- _a$c[exports.HandballGameLogTypes.assist] = 'Передача',
14305
- _a$c[exports.HandballGameLogTypes.penalty_miss] = '7м промах',
14306
- _a$c[exports.HandballGameLogTypes.penalty_shot_on_goal] = '7м в створ',
14307
- _a$c[exports.HandballGameLogTypes.penalty_goal] = '7м гол',
14308
- _a$c[exports.HandballGameLogTypes.save] = 'Сэйв',
14309
- _a$c[exports.HandballGameLogTypes.penalty_save] = 'Сэйв',
14310
- _a$c[exports.HandballGameLogTypes.foul] = 'Фол',
14311
- _a$c[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
14312
- _a$c[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
14313
- _a$c[exports.HandballGameLogTypes.two_minute_foul] = ' минутный штраф',
14314
- _a$c[exports.HandballGameLogTypes.turnover] = 'Потеря',
14315
- _a$c[exports.HandballGameLogTypes.steal] = 'Перехват',
14316
- _a$c[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
14317
- _a$c[exports.HandballGameLogTypes.timeout] = 'Таймаут',
14527
+ _a$c[Locales.ru] = (_b$c = {},
14528
+ _b$c[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
14529
+ _b$c[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
14530
+ _b$c[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
14531
+ _b$c[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
14532
+ _b$c[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
14533
+ _b$c[exports.HandballGameLogTypes.goal] = 'Гол',
14534
+ _b$c[exports.HandballGameLogTypes.assist] = 'Передача',
14535
+ _b$c[exports.HandballGameLogTypes.penalty_miss] = '7м промах',
14536
+ _b$c[exports.HandballGameLogTypes.penalty_shot_on_goal] = '7м в створ',
14537
+ _b$c[exports.HandballGameLogTypes.penalty_goal] = '7м гол',
14538
+ _b$c[exports.HandballGameLogTypes.save] = 'Сэйв',
14539
+ _b$c[exports.HandballGameLogTypes.penalty_save] = 'Сэйв 7м',
14540
+ _b$c[exports.HandballGameLogTypes.foul] = 'Фол',
14541
+ _b$c[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
14542
+ _b$c[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
14543
+ _b$c[exports.HandballGameLogTypes.two_minute_foul] = '2х минутный штраф',
14544
+ _b$c[exports.HandballGameLogTypes.turnover] = 'Потеря',
14545
+ _b$c[exports.HandballGameLogTypes.steal] = 'Перехват',
14546
+ _b$c[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
14547
+ _b$c[exports.HandballGameLogTypes.timeout] = 'Таймаут',
14548
+ _b$c),
14549
+ _a$c[Locales.en] = (_c$c = {},
14550
+ _c$c[exports.HandballGameLogTypes.enter_game] = 'Entering the court',
14551
+ _c$c[exports.HandballGameLogTypes.exit_game] = 'Exit the court',
14552
+ _c$c[exports.HandballGameLogTypes.shot_miss] = 'Missing shot',
14553
+ _c$c[exports.HandballGameLogTypes.shot_on_goal] = 'Shot on goal',
14554
+ _c$c[exports.HandballGameLogTypes.shot_blocked] = 'Blocking shot',
14555
+ _c$c[exports.HandballGameLogTypes.goal] = 'Goal',
14556
+ _c$c[exports.HandballGameLogTypes.assist] = 'Assist',
14557
+ _c$c[exports.HandballGameLogTypes.penalty_miss] = 'Penalty miss',
14558
+ _c$c[exports.HandballGameLogTypes.penalty_shot_on_goal] = 'Penalty on goal',
14559
+ _c$c[exports.HandballGameLogTypes.penalty_goal] = 'Penalty goal',
14560
+ _c$c[exports.HandballGameLogTypes.save] = 'Save',
14561
+ _c$c[exports.HandballGameLogTypes.penalty_save] = 'Penalty save',
14562
+ _c$c[exports.HandballGameLogTypes.foul] = 'Foul',
14563
+ _c$c[exports.HandballGameLogTypes.yellow_card] = 'Yellow card',
14564
+ _c$c[exports.HandballGameLogTypes.red_card] = 'Red card',
14565
+ _c$c[exports.HandballGameLogTypes.two_minute_foul] = '2-minute penalty',
14566
+ _c$c[exports.HandballGameLogTypes.turnover] = 'Turnover',
14567
+ _c$c[exports.HandballGameLogTypes.steal] = 'Steal',
14568
+ _c$c[exports.HandballGameLogTypes.block_shot] = 'Block shot',
14569
+ _c$c[exports.HandballGameLogTypes.timeout] = 'Timeout',
14570
+ _c$c),
14318
14571
  _a$c);
14319
14572
 
14320
- var _a$b;
14573
+ var _a$b, _b$b, _c$b;
14321
14574
  var WaterpoloGameLogTypeLocalization = (_a$b = {},
14322
- _a$b[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
14323
- _a$b[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
14324
- _a$b[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
14325
- _a$b[exports.WaterpoloGameLogTypes.counterattack_miss] = 'Бросок мимо в контратаке',
14326
- _a$b[exports.WaterpoloGameLogTypes.maneuver_miss] = 'Бросок мимо с маневра',
14327
- _a$b[exports.WaterpoloGameLogTypes.center_forward_miss] = 'Бросок мимо со столба',
14328
- _a$b[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
14329
- _a$b[exports.WaterpoloGameLogTypes.counterattack_on_goal] = 'Бросок по воротам в контратаке',
14330
- _a$b[exports.WaterpoloGameLogTypes.maneuver_on_goal] = 'Бросок по воротам с маневра',
14331
- _a$b[exports.WaterpoloGameLogTypes.center_forward_on_goal] = 'Бросок по воротам со столба',
14332
- _a$b[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокирован бросок',
14333
- _a$b[exports.WaterpoloGameLogTypes.counter_attack_shot_blocked] = 'Заблокирован бросок в контратаке',
14334
- _a$b[exports.WaterpoloGameLogTypes.maneuver_shot_blocked] = 'Заблокирован бросок с маневра',
14335
- _a$b[exports.WaterpoloGameLogTypes.center_forward_shot_blocked] = 'Заблокирован бросок со столба',
14336
- _a$b[exports.WaterpoloGameLogTypes.goal] = 'Гол',
14337
- _a$b[exports.WaterpoloGameLogTypes.maneuver_goal] = 'Гол с маневра',
14338
- _a$b[exports.WaterpoloGameLogTypes.counterattack_goal] = 'Гол в контратаке',
14339
- _a$b[exports.WaterpoloGameLogTypes.center_forward_goal] = 'Гол со столба',
14340
- _a$b[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
14341
- _a$b[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
14342
- _a$b[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
14343
- _a$b[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
14344
- _a$b[exports.WaterpoloGameLogTypes.assist] = 'Голевая передача',
14345
- _a$b[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
14346
- _a$b[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
14347
- _a$b[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 20 сек. штраф',
14348
- _a$b[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление + 4 мин. штраф',
14349
- _a$b[exports.WaterpoloGameLogTypes.foul] = 'Фол',
14350
- _a$b[exports.WaterpoloGameLogTypes.penalty_foul] = 'Фол пенальти',
14351
- _a$b[exports.WaterpoloGameLogTypes.attack_foul] = 'Фол в нападении',
14352
- _a$b[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
14353
- _a$b[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
14354
- _a$b[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
14355
- _a$b[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
14356
- _a$b[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
14357
- _a$b[exports.WaterpoloGameLogTypes.counterattack_save] = 'Отражен бросок в контратаке',
14358
- _a$b[exports.WaterpoloGameLogTypes.maneuver_save] = 'Отражен бросок с маневра',
14359
- _a$b[exports.WaterpoloGameLogTypes.center_forward_save] = 'Отражен бросок со столба',
14360
- _a$b[exports.WaterpoloGameLogTypes.free_kick_save] = 'Отражен бросок со свободного',
14361
- _a$b[exports.WaterpoloGameLogTypes.corner_save] = 'Отражен бросок с углового',
14362
- _a$b[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок с пенальти',
14363
- _a$b[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок с пенальти',
14364
- _a$b[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
14365
- _a$b[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
14366
- _a$b[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
14367
- _a$b[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
14368
- _a$b[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
14369
- _a$b[exports.WaterpoloGameLogTypes.turnover] = 'Переход владения',
14370
- _a$b[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
14371
- _a$b[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
14372
- _a$b[exports.WaterpoloGameLogTypes.tackle] = 'Отбор',
14373
- _a$b[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Гол со свободного удара',
14374
- _a$b[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Бросок со свободного удара в створ',
14375
- _a$b[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Бросок мимо со свободного удара',
14376
- _a$b[exports.WaterpoloGameLogTypes.free_kick_shot_blocked] = 'Заблокирован бросок со свободного удара',
14377
- _a$b[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Пас со свободного удара',
14378
- _a$b[exports.WaterpoloGameLogTypes.free_kick_self] = 'Розыгрыш свободного удара',
14379
- _a$b[exports.WaterpoloGameLogTypes.corner_goal] = 'Гол с углового',
14380
- _a$b[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Бросок с углового в створ',
14381
- _a$b[exports.WaterpoloGameLogTypes.corner_miss] = 'Бросок мимо с углового',
14382
- _a$b[exports.WaterpoloGameLogTypes.corner_shot_blocked] = 'Заблокирован бросок с углового',
14383
- _a$b[exports.WaterpoloGameLogTypes.corner_pass] = 'Пас с углового',
14384
- _a$b[exports.WaterpoloGameLogTypes.corner_self] = 'Розыгрыш углового',
14385
- _a$b[exports.WaterpoloGameLogTypes.complete_penalty_time] = 'Досрочное завершение штрафа',
14575
+ _a$b[Locales.ru] = (_b$b = {},
14576
+ _b$b[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
14577
+ _b$b[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
14578
+ _b$b[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
14579
+ _b$b[exports.WaterpoloGameLogTypes.counterattack_miss] = 'Бросок мимо в контратаке',
14580
+ _b$b[exports.WaterpoloGameLogTypes.maneuver_miss] = 'Бросок мимо с маневра',
14581
+ _b$b[exports.WaterpoloGameLogTypes.center_forward_miss] = 'Бросок мимо со столба',
14582
+ _b$b[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
14583
+ _b$b[exports.WaterpoloGameLogTypes.counterattack_on_goal] = 'Бросок по воротам в контратаке',
14584
+ _b$b[exports.WaterpoloGameLogTypes.maneuver_on_goal] = 'Бросок по воротам с маневра',
14585
+ _b$b[exports.WaterpoloGameLogTypes.center_forward_on_goal] = 'Бросок по воротам со столба',
14586
+ _b$b[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокирован бросок',
14587
+ _b$b[exports.WaterpoloGameLogTypes.counter_attack_shot_blocked] = 'Заблокирован бросок в контратаке',
14588
+ _b$b[exports.WaterpoloGameLogTypes.maneuver_shot_blocked] = 'Заблокирован бросок с маневра',
14589
+ _b$b[exports.WaterpoloGameLogTypes.center_forward_shot_blocked] = 'Заблокирован бросок со столба',
14590
+ _b$b[exports.WaterpoloGameLogTypes.goal] = 'Гол',
14591
+ _b$b[exports.WaterpoloGameLogTypes.maneuver_goal] = 'Гол с маневра',
14592
+ _b$b[exports.WaterpoloGameLogTypes.counterattack_goal] = 'Гол в контратаке',
14593
+ _b$b[exports.WaterpoloGameLogTypes.center_forward_goal] = 'Гол со столба',
14594
+ _b$b[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
14595
+ _b$b[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
14596
+ _b$b[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
14597
+ _b$b[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
14598
+ _b$b[exports.WaterpoloGameLogTypes.assist] = 'Голевая передача',
14599
+ _b$b[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
14600
+ _b$b[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
14601
+ _b$b[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 20 сек. штраф',
14602
+ _b$b[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление + 4 мин. штраф',
14603
+ _b$b[exports.WaterpoloGameLogTypes.foul] = 'Фол',
14604
+ _b$b[exports.WaterpoloGameLogTypes.penalty_foul] = 'Фол пенальти',
14605
+ _b$b[exports.WaterpoloGameLogTypes.attack_foul] = 'Фол в нападении',
14606
+ _b$b[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
14607
+ _b$b[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
14608
+ _b$b[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
14609
+ _b$b[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
14610
+ _b$b[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
14611
+ _b$b[exports.WaterpoloGameLogTypes.counterattack_save] = 'Отражен бросок в контратаке',
14612
+ _b$b[exports.WaterpoloGameLogTypes.maneuver_save] = 'Отражен бросок с маневра',
14613
+ _b$b[exports.WaterpoloGameLogTypes.center_forward_save] = 'Отражен бросок со столба',
14614
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_save] = 'Отражен бросок со свободного',
14615
+ _b$b[exports.WaterpoloGameLogTypes.corner_save] = 'Отражен бросок с углового',
14616
+ _b$b[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок с пенальти',
14617
+ _b$b[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок с пенальти',
14618
+ _b$b[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
14619
+ _b$b[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
14620
+ _b$b[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
14621
+ _b$b[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
14622
+ _b$b[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
14623
+ _b$b[exports.WaterpoloGameLogTypes.turnover] = 'Переход владения',
14624
+ _b$b[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
14625
+ _b$b[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
14626
+ _b$b[exports.WaterpoloGameLogTypes.tackle] = 'Отбор',
14627
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Гол со свободного удара',
14628
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Бросок со свободного удара в створ',
14629
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Бросок мимо со свободного удара',
14630
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_shot_blocked] = 'Заблокирован бросок со свободного удара',
14631
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Пас со свободного удара',
14632
+ _b$b[exports.WaterpoloGameLogTypes.free_kick_self] = 'Розыгрыш свободного удара',
14633
+ _b$b[exports.WaterpoloGameLogTypes.corner_goal] = 'Гол с углового',
14634
+ _b$b[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Бросок с углового в створ',
14635
+ _b$b[exports.WaterpoloGameLogTypes.corner_miss] = 'Бросок мимо с углового',
14636
+ _b$b[exports.WaterpoloGameLogTypes.corner_shot_blocked] = 'Заблокирован бросок с углового',
14637
+ _b$b[exports.WaterpoloGameLogTypes.corner_pass] = 'Пас с углового',
14638
+ _b$b[exports.WaterpoloGameLogTypes.corner_self] = 'Розыгрыш углового',
14639
+ _b$b[exports.WaterpoloGameLogTypes.complete_penalty_time] = 'Досрочное завершение штрафа',
14640
+ _b$b),
14641
+ _a$b[Locales.en] = (_c$b = {},
14642
+ _c$b[exports.WaterpoloGameLogTypes.enter_game] = 'Entering the court',
14643
+ _c$b[exports.WaterpoloGameLogTypes.exit_game] = 'Exit the court',
14644
+ _c$b[exports.WaterpoloGameLogTypes.shot_miss] = 'Missing shoot',
14645
+ _c$b[exports.WaterpoloGameLogTypes.counterattack_miss] = 'Throw past on the counterattack',
14646
+ _c$b[exports.WaterpoloGameLogTypes.maneuver_miss] = 'Throw past from the manoeuvre',
14647
+ _c$b[exports.WaterpoloGameLogTypes.center_forward_miss] = 'Throw past from center forward',
14648
+ _c$b[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Shot at the goal',
14649
+ _c$b[exports.WaterpoloGameLogTypes.counterattack_on_goal] = 'Shot at the goal in a counterattack',
14650
+ _c$b[exports.WaterpoloGameLogTypes.maneuver_on_goal] = 'Shot at the goal from a maneuver',
14651
+ _c$b[exports.WaterpoloGameLogTypes.center_forward_on_goal] = 'Shot at the goal from center forward',
14652
+ _c$b[exports.WaterpoloGameLogTypes.shot_blocked] = 'The throw is blocked',
14653
+ _c$b[exports.WaterpoloGameLogTypes.counter_attack_shot_blocked] = 'A counterattack throw is blocked',
14654
+ _c$b[exports.WaterpoloGameLogTypes.maneuver_shot_blocked] = 'The maneuver throw is blocked',
14655
+ _c$b[exports.WaterpoloGameLogTypes.center_forward_shot_blocked] = 'The shot from the center forward is blocked',
14656
+ _c$b[exports.WaterpoloGameLogTypes.goal] = 'Goal',
14657
+ _c$b[exports.WaterpoloGameLogTypes.maneuver_goal] = 'Goal from a maneuver',
14658
+ _c$b[exports.WaterpoloGameLogTypes.counterattack_goal] = 'Goal in a counterattack',
14659
+ _c$b[exports.WaterpoloGameLogTypes.center_forward_goal] = 'Goal from the center forward',
14660
+ _c$b[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Penalty miss',
14661
+ _c$b[exports.WaterpoloGameLogTypes.shootout_goal] = 'Penalty goal',
14662
+ _c$b[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Penalty miss',
14663
+ _c$b[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Penalty goal',
14664
+ _c$b[exports.WaterpoloGameLogTypes.assist] = 'Assist',
14665
+ _c$b[exports.WaterpoloGameLogTypes.block_shot] = 'Blocking a throw',
14666
+ _c$b[exports.WaterpoloGameLogTypes.minor_penalty] = 'Removal for 20 sec.',
14667
+ _c$b[exports.WaterpoloGameLogTypes.major_penalty] = 'Removal + 4 min. fine',
14668
+ _c$b[exports.WaterpoloGameLogTypes.match_penalty] = 'Removal before the end of the match',
14669
+ _c$b[exports.WaterpoloGameLogTypes.foul] = 'Foul',
14670
+ _c$b[exports.WaterpoloGameLogTypes.penalty_foul] = 'Penalty foul',
14671
+ _c$b[exports.WaterpoloGameLogTypes.attack_foul] = 'Attack foul',
14672
+ _c$b[exports.WaterpoloGameLogTypes.personal_foul] = 'Personal foul',
14673
+ _c$b[exports.WaterpoloGameLogTypes.penalty_shot] = 'Penalty shot',
14674
+ _c$b[exports.WaterpoloGameLogTypes.face_off_lose] = 'Losing in the sprint',
14675
+ _c$b[exports.WaterpoloGameLogTypes.face_off_win] = 'Winning the sprint',
14676
+ _c$b[exports.WaterpoloGameLogTypes.save] = 'Throw is reflected',
14677
+ _c$b[exports.WaterpoloGameLogTypes.counterattack_save] = 'Throw in the counterattack is reflected',
14678
+ _c$b[exports.WaterpoloGameLogTypes.maneuver_save] = 'Throw from a maneuver is reflected',
14679
+ _c$b[exports.WaterpoloGameLogTypes.center_forward_save] = 'Throw from the center forward is reflected',
14680
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_save] = 'Free throw is reflected',
14681
+ _c$b[exports.WaterpoloGameLogTypes.corner_save] = 'Shot from a corner is reflected',
14682
+ _c$b[exports.WaterpoloGameLogTypes.shootout_save] = 'Penalty kick was deflected',
14683
+ _c$b[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Penalty kick was deflected',
14684
+ _c$b[exports.WaterpoloGameLogTypes.timeout] = 'Timeout',
14685
+ _c$b[exports.WaterpoloGameLogTypes.penalty_start] = 'The beginning of the penalty time',
14686
+ _c$b[exports.WaterpoloGameLogTypes.penalty_end] = 'End of penalty time',
14687
+ _c$b[exports.WaterpoloGameLogTypes.yellow_card] = 'Yellow card',
14688
+ _c$b[exports.WaterpoloGameLogTypes.red_card] = 'Red card',
14689
+ _c$b[exports.WaterpoloGameLogTypes.turnover] = 'Change of possession',
14690
+ _c$b[exports.WaterpoloGameLogTypes.loss] = 'Loss',
14691
+ _c$b[exports.WaterpoloGameLogTypes.steal] = 'Steal',
14692
+ _c$b[exports.WaterpoloGameLogTypes.tackle] = 'Tackle',
14693
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Free kick goal',
14694
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Free kick shot on target',
14695
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_miss] = 'A throw by with a free kick',
14696
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_shot_blocked] = 'A free kick shot is blocked',
14697
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Free kick pass',
14698
+ _c$b[exports.WaterpoloGameLogTypes.free_kick_self] = 'Free kick draw',
14699
+ _c$b[exports.WaterpoloGameLogTypes.corner_goal] = 'Corner goal',
14700
+ _c$b[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Shot from a corner into the target',
14701
+ _c$b[exports.WaterpoloGameLogTypes.corner_miss] = 'Shot past from a corner',
14702
+ _c$b[exports.WaterpoloGameLogTypes.corner_shot_blocked] = 'Blocked a shot from a corner',
14703
+ _c$b[exports.WaterpoloGameLogTypes.corner_pass] = 'Pass from the corner',
14704
+ _c$b[exports.WaterpoloGameLogTypes.corner_self] = 'Drawing a corner',
14705
+ _c$b[exports.WaterpoloGameLogTypes.complete_penalty_time] = 'Early completion of the fine',
14706
+ _c$b),
14386
14707
  _a$b);
14387
14708
 
14388
- var _a$a;
14709
+ var _a$a, _b$a, _c$a;
14389
14710
  var OvertimeTypeLocalization = (_a$a = {},
14390
- _a$a[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
14391
- _a$a[exports.OvertimeTypes.to_score_total] = 'До N очков',
14392
- _a$a[exports.OvertimeTypes.time] = 'По времени',
14393
- _a$a[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
14394
- _a$a[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
14395
- _a$a[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
14396
- _a$a[exports.OvertimeTypes.bullitts] = 'Буллиты',
14397
- _a$a[exports.OvertimeTypes.penalties] = 'Пенальти',
14398
- _a$a[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
14711
+ _a$a[Locales.ru] = (_b$a = {},
14712
+ _b$a[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
14713
+ _b$a[exports.OvertimeTypes.to_score_total] = 'До N очков',
14714
+ _b$a[exports.OvertimeTypes.time] = 'По времени',
14715
+ _b$a[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
14716
+ _b$a[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
14717
+ _b$a[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
14718
+ _b$a[exports.OvertimeTypes.bullitts] = 'Буллиты',
14719
+ _b$a[exports.OvertimeTypes.penalties] = 'Пенальти',
14720
+ _b$a[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
14721
+ _b$a),
14722
+ _a$a[Locales.en] = (_c$a = {},
14723
+ _c$a[exports.OvertimeTypes.to_score_diff] = 'Up to the difference of N balls',
14724
+ _c$a[exports.OvertimeTypes.to_score_total] = 'Up to N points',
14725
+ _c$a[exports.OvertimeTypes.time] = 'By time',
14726
+ _c$a[exports.OvertimeTypes.without_overtime] = 'Without overtime',
14727
+ _c$a[exports.OvertimeTypes.to_first_goal] = 'N minutes until the first goal',
14728
+ _c$a[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'N minutes until the first goal + shootout',
14729
+ _c$a[exports.OvertimeTypes.bullitts] = 'Shootouts',
14730
+ _c$a[exports.OvertimeTypes.penalties] = 'Penalty',
14731
+ _c$a[exports.OvertimeTypes.time_and_penalties] = 'Extra time + penalty',
14732
+ _c$a),
14399
14733
  _a$a);
14400
14734
 
14401
- var _a$9;
14735
+ var _a$9, _b$9, _c$9;
14402
14736
  var RugbyFoulSanctionLocalization = (_a$9 = {},
14403
- _a$9[exports.RugbyFoulSanctions.scrum] = 'Схватка',
14404
- _a$9[exports.RugbyFoulSanctions.lineout] = 'Коридор',
14405
- _a$9[exports.RugbyFoulSanctions.start_kick] = 'Начальный удар',
14406
- _a$9[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
14407
- _a$9[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
14408
- _a$9[exports.RugbyFoulSanctions.twenty_two_meters_kick] = 'Удар с 22 метров',
14409
- _a$9[exports.RugbyFoulSanctions.conversion_cancel] = 'Отмена удара',
14410
- _a$9[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
14411
- _a$9[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
14737
+ _a$9[Locales.ru] = (_b$9 = {},
14738
+ _b$9[exports.RugbyFoulSanctions.scrum] = 'Схватка',
14739
+ _b$9[exports.RugbyFoulSanctions.lineout] = 'Коридор',
14740
+ _b$9[exports.RugbyFoulSanctions.start_kick] = 'Начальный удар',
14741
+ _b$9[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
14742
+ _b$9[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
14743
+ _b$9[exports.RugbyFoulSanctions.twenty_two_meters_kick] = 'Удар с 22 метров',
14744
+ _b$9[exports.RugbyFoulSanctions.conversion_cancel] = 'Отмена удара',
14745
+ _b$9[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
14746
+ _b$9[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
14747
+ _b$9),
14748
+ _a$9[Locales.en] = (_c$9 = {},
14749
+ _c$9[exports.RugbyFoulSanctions.scrum] = 'Scrum',
14750
+ _c$9[exports.RugbyFoulSanctions.lineout] = 'Lineout',
14751
+ _c$9[exports.RugbyFoulSanctions.start_kick] = 'Start kick',
14752
+ _c$9[exports.RugbyFoulSanctions.free_kick] = 'Free kick',
14753
+ _c$9[exports.RugbyFoulSanctions.penalty_shot] = 'Penalty kick',
14754
+ _c$9[exports.RugbyFoulSanctions.twenty_two_meters_kick] = 'Kick from 22 meters',
14755
+ _c$9[exports.RugbyFoulSanctions.conversion_cancel] = 'Conversion cancel',
14756
+ _c$9[exports.RugbyFoulSanctions.yellow_card] = 'Yellow card',
14757
+ _c$9[exports.RugbyFoulSanctions.red_card] = 'Red card',
14758
+ _c$9),
14412
14759
  _a$9);
14413
14760
 
14414
- var _a$8;
14761
+ var _a$8, _b$8, _c$8;
14415
14762
  var RugbyFoulGameStageLocalization = (_a$8 = {},
14416
- _a$8[exports.RugbyFoulGameStage.start_kick] = 'Начальные удары',
14417
- _a$8[exports.RugbyFoulGameStage.open_game] = 'Открытая игра',
14418
- _a$8[exports.RugbyFoulGameStage.tackle] = 'Игроки на земле, Захват',
14419
- _a$8[exports.RugbyFoulGameStage.ruck_or_maul] = 'Рак, мол',
14420
- _a$8[exports.RugbyFoulGameStage.scrum] = 'Схватка',
14421
- _a$8[exports.RugbyFoulGameStage.out_and_lineout] = 'Аут и коридор',
14422
- _a$8[exports.RugbyFoulGameStage.scoring_field] = 'Зачетное поле',
14423
- _a$8[exports.RugbyFoulGameStage.kick_on_goal] = 'Удар по воротам',
14424
- _a$8[exports.RugbyFoulGameStage.free_kick] = 'Штрафной, свободный удар',
14425
- _a$8[exports.RugbyFoulGameStage.team] = 'Команда',
14763
+ _a$8[Locales.ru] = (_b$8 = {},
14764
+ _b$8[exports.RugbyFoulGameStage.start_kick] = 'Начальные удары',
14765
+ _b$8[exports.RugbyFoulGameStage.open_game] = 'Открытая игра',
14766
+ _b$8[exports.RugbyFoulGameStage.tackle] = 'Игроки на земле, Захват',
14767
+ _b$8[exports.RugbyFoulGameStage.ruck_or_maul] = 'Рак, мол',
14768
+ _b$8[exports.RugbyFoulGameStage.scrum] = 'Схватка',
14769
+ _b$8[exports.RugbyFoulGameStage.out_and_lineout] = 'Аут и коридор',
14770
+ _b$8[exports.RugbyFoulGameStage.scoring_field] = 'Зачетное поле',
14771
+ _b$8[exports.RugbyFoulGameStage.kick_on_goal] = 'Удар по воротам',
14772
+ _b$8[exports.RugbyFoulGameStage.free_kick] = 'Штрафной, свободный удар',
14773
+ _b$8[exports.RugbyFoulGameStage.team] = 'Команда',
14774
+ _b$8),
14775
+ _a$8[Locales.en] = (_c$8 = {},
14776
+ _c$8[exports.RugbyFoulGameStage.start_kick] = 'Initial kicks',
14777
+ _c$8[exports.RugbyFoulGameStage.open_game] = 'Open game',
14778
+ _c$8[exports.RugbyFoulGameStage.tackle] = 'Players on the ground, Capture',
14779
+ _c$8[exports.RugbyFoulGameStage.ruck_or_maul] = 'Ruck, maul',
14780
+ _c$8[exports.RugbyFoulGameStage.scrum] = 'Scrum',
14781
+ _c$8[exports.RugbyFoulGameStage.out_and_lineout] = 'Out and lineout',
14782
+ _c$8[exports.RugbyFoulGameStage.scoring_field] = 'Scoring field',
14783
+ _c$8[exports.RugbyFoulGameStage.kick_on_goal] = 'Kick on goal',
14784
+ _c$8[exports.RugbyFoulGameStage.free_kick] = 'Free kick',
14785
+ _c$8[exports.RugbyFoulGameStage.team] = 'Team',
14786
+ _c$8),
14426
14787
  _a$8);
14427
14788
 
14428
- var _a$7;
14789
+ var _a$7, _b$7, _c$7;
14429
14790
  var RugbyGameLogTypeLocalization = (_a$7 = {},
14430
- _a$7[exports.RugbyGameLogTypes.enter_game] = 'Вышел на поле',
14431
- _a$7[exports.RugbyGameLogTypes.exit_game] = 'Ушел с поля',
14432
- _a$7[exports.RugbyGameLogTypes.try] = 'Попытка',
14433
- _a$7[exports.RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
14434
- _a$7[exports.RugbyGameLogTypes.conversion_goal] = 'Реализация',
14435
- _a$7[exports.RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
14436
- _a$7[exports.RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
14437
- _a$7[exports.RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
14438
- _a$7[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
14439
- _a$7[exports.RugbyGameLogTypes.tap_penalty] = 'Штрафной разыгран',
14440
- _a$7[exports.RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
14441
- _a$7[exports.RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
14442
- _a$7[exports.RugbyGameLogTypes.free_kick] = 'Свободный удар',
14443
- _a$7[exports.RugbyGameLogTypes.foul] = 'Фол',
14444
- _a$7[exports.RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
14445
- _a$7[exports.RugbyGameLogTypes.red_card] = 'Красная карточка',
14446
- _a$7[exports.RugbyGameLogTypes.offload] = 'Скидка при завхвате',
14447
- _a$7[exports.RugbyGameLogTypes.tackle] = 'Успешный захват',
14448
- _a$7[exports.RugbyGameLogTypes.handling_error] = 'Ошибка приема',
14449
- _a$7[exports.RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
14450
- _a$7[exports.RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
14451
- _a$7[exports.RugbyGameLogTypes.head_injury] = 'Травма головы',
14452
- _a$7[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
14453
- _a$7[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
14454
- _a$7[exports.RugbyGameLogTypes.foot_field_shot] = 'Удар ногой в поле',
14455
- _a$7[exports.RugbyGameLogTypes.foot_out_shot] = 'Удар ногой в аут',
14456
- _a$7[exports.RugbyGameLogTypes.foot_kick_50_22] = 'Удар ногой 50/22',
14457
- _a$7[exports.RugbyGameLogTypes.run] = 'Забег',
14458
- _a$7[exports.RugbyGameLogTypes.timeout] = 'Таймаут',
14459
- _a$7[exports.RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
14460
- _a$7[exports.RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
14461
- _a$7[exports.RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
14462
- _a$7[exports.RugbyGameLogTypes.lineout_won] = 'Коридор выигран',
14463
- _a$7[exports.RugbyGameLogTypes.lineout_lost] = 'Коридор проигран',
14464
- _a$7[exports.RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
14465
- _a$7[exports.RugbyGameLogTypes.ruck_won] = 'Рак выигран',
14466
- _a$7[exports.RugbyGameLogTypes.ruck_lost] = 'Рак проигран',
14467
- _a$7[exports.RugbyGameLogTypes.maul_won] = 'Мол выигран',
14468
- _a$7[exports.RugbyGameLogTypes.maul_lost] = 'Мол проигран',
14469
- _a$7[exports.RugbyGameLogTypes.team_foul] = 'Нарушение',
14470
- _a$7[exports.RugbyGameLogTypes.start_kick] = 'Начальный удар',
14471
- _a$7[exports.RugbyGameLogTypes.twenty_two_meters_kick] = 'Удар с 22 метров',
14472
- _a$7[exports.RugbyGameLogTypes.goal_kick] = 'Удар от ворот',
14473
- _a$7[exports.RugbyGameLogTypes.out] = 'Аут',
14791
+ _a$7[Locales.ru] = (_b$7 = {},
14792
+ _b$7[exports.RugbyGameLogTypes.enter_game] = 'Вышел на поле',
14793
+ _b$7[exports.RugbyGameLogTypes.exit_game] = 'Ушел с поля',
14794
+ _b$7[exports.RugbyGameLogTypes.try] = 'Попытка',
14795
+ _b$7[exports.RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
14796
+ _b$7[exports.RugbyGameLogTypes.conversion_goal] = 'Реализация',
14797
+ _b$7[exports.RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
14798
+ _b$7[exports.RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
14799
+ _b$7[exports.RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
14800
+ _b$7[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
14801
+ _b$7[exports.RugbyGameLogTypes.tap_penalty] = 'Штрафной разыгран',
14802
+ _b$7[exports.RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
14803
+ _b$7[exports.RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
14804
+ _b$7[exports.RugbyGameLogTypes.free_kick] = 'Свободный удар',
14805
+ _b$7[exports.RugbyGameLogTypes.foul] = 'Фол',
14806
+ _b$7[exports.RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
14807
+ _b$7[exports.RugbyGameLogTypes.red_card] = 'Красная карточка',
14808
+ _b$7[exports.RugbyGameLogTypes.offload] = 'Скидка при завхвате',
14809
+ _b$7[exports.RugbyGameLogTypes.tackle] = 'Успешный захват',
14810
+ _b$7[exports.RugbyGameLogTypes.handling_error] = 'Ошибка приема',
14811
+ _b$7[exports.RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
14812
+ _b$7[exports.RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
14813
+ _b$7[exports.RugbyGameLogTypes.head_injury] = 'Травма головы',
14814
+ _b$7[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
14815
+ _b$7[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
14816
+ _b$7[exports.RugbyGameLogTypes.foot_field_shot] = 'Удар ногой в поле',
14817
+ _b$7[exports.RugbyGameLogTypes.foot_out_shot] = 'Удар ногой в аут',
14818
+ _b$7[exports.RugbyGameLogTypes.foot_kick_50_22] = 'Удар ногой 50/22',
14819
+ _b$7[exports.RugbyGameLogTypes.run] = 'Забег',
14820
+ _b$7[exports.RugbyGameLogTypes.timeout] = 'Таймаут',
14821
+ _b$7[exports.RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
14822
+ _b$7[exports.RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
14823
+ _b$7[exports.RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
14824
+ _b$7[exports.RugbyGameLogTypes.lineout_won] = 'Коридор выигран',
14825
+ _b$7[exports.RugbyGameLogTypes.lineout_lost] = 'Коридор проигран',
14826
+ _b$7[exports.RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
14827
+ _b$7[exports.RugbyGameLogTypes.ruck_won] = 'Рак выигран',
14828
+ _b$7[exports.RugbyGameLogTypes.ruck_lost] = 'Рак проигран',
14829
+ _b$7[exports.RugbyGameLogTypes.maul_won] = 'Мол выигран',
14830
+ _b$7[exports.RugbyGameLogTypes.maul_lost] = 'Мол проигран',
14831
+ _b$7[exports.RugbyGameLogTypes.team_foul] = 'Нарушение',
14832
+ _b$7[exports.RugbyGameLogTypes.start_kick] = 'Начальный удар',
14833
+ _b$7[exports.RugbyGameLogTypes.twenty_two_meters_kick] = 'Удар с 22 метров',
14834
+ _b$7[exports.RugbyGameLogTypes.goal_kick] = 'Удар от ворот',
14835
+ _b$7[exports.RugbyGameLogTypes.out] = 'Аут',
14836
+ _b$7),
14837
+ _a$7[Locales.en] = (_c$7 = {},
14838
+ _c$7[exports.RugbyGameLogTypes.enter_game] = 'Entering the court',
14839
+ _c$7[exports.RugbyGameLogTypes.exit_game] = 'Exit the court',
14840
+ _c$7[exports.RugbyGameLogTypes.try] = 'Attempt',
14841
+ _c$7[exports.RugbyGameLogTypes.penalty_try] = 'Penalty attempt',
14842
+ _c$7[exports.RugbyGameLogTypes.conversion_goal] = 'Touchdown',
14843
+ _c$7[exports.RugbyGameLogTypes.conversion_miss] = 'Touchdown miss',
14844
+ _c$7[exports.RugbyGameLogTypes.penalty_miss] = 'Penalty kick miss',
14845
+ _c$7[exports.RugbyGameLogTypes.penalty_goal] = 'Penalty goal',
14846
+ _c$7[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Penalty kick to out',
14847
+ _c$7[exports.RugbyGameLogTypes.tap_penalty] = 'Penalty has been played',
14848
+ _c$7[exports.RugbyGameLogTypes.drop_goal] = 'Drop goal',
14849
+ _c$7[exports.RugbyGameLogTypes.drop_goal_miss] = 'Drop goal miss',
14850
+ _c$7[exports.RugbyGameLogTypes.free_kick] = 'Free kick',
14851
+ _c$7[exports.RugbyGameLogTypes.foul] = 'Foul',
14852
+ _c$7[exports.RugbyGameLogTypes.yellow_card] = 'Yellow card',
14853
+ _c$7[exports.RugbyGameLogTypes.red_card] = 'Red card',
14854
+ _c$7[exports.RugbyGameLogTypes.offload] = 'Offload',
14855
+ _c$7[exports.RugbyGameLogTypes.tackle] = 'Successful tackle',
14856
+ _c$7[exports.RugbyGameLogTypes.handling_error] = 'Error receiving',
14857
+ _c$7[exports.RugbyGameLogTypes.carries_over_gainline] = 'Line breakout',
14858
+ _c$7[exports.RugbyGameLogTypes.bleeding_injury] = 'Bleeding injury',
14859
+ _c$7[exports.RugbyGameLogTypes.head_injury] = 'Head injury',
14860
+ _c$7[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Penalty miss',
14861
+ _c$7[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Penalty goal',
14862
+ _c$7[exports.RugbyGameLogTypes.foot_field_shot] = 'Foot field shot',
14863
+ _c$7[exports.RugbyGameLogTypes.foot_out_shot] = 'Kick out of bounds',
14864
+ _c$7[exports.RugbyGameLogTypes.foot_kick_50_22] = 'Foot kick 50/22',
14865
+ _c$7[exports.RugbyGameLogTypes.run] = 'Run',
14866
+ _c$7[exports.RugbyGameLogTypes.timeout] = 'Timeout',
14867
+ _c$7[exports.RugbyGameLogTypes.scrum_won] = 'Scrum is won',
14868
+ _c$7[exports.RugbyGameLogTypes.scrum_lost] = 'Scrum is lost',
14869
+ _c$7[exports.RugbyGameLogTypes.scrum_won_free] = 'Scrum was won without resistance',
14870
+ _c$7[exports.RugbyGameLogTypes.lineout_won] = 'Lineout was won',
14871
+ _c$7[exports.RugbyGameLogTypes.lineout_lost] = 'Lineout was lost',
14872
+ _c$7[exports.RugbyGameLogTypes.quick_throw] = 'Quick throw',
14873
+ _c$7[exports.RugbyGameLogTypes.ruck_won] = 'Ruck won',
14874
+ _c$7[exports.RugbyGameLogTypes.ruck_lost] = 'Ruck lost',
14875
+ _c$7[exports.RugbyGameLogTypes.maul_won] = 'Maul won',
14876
+ _c$7[exports.RugbyGameLogTypes.maul_lost] = 'Maul lost',
14877
+ _c$7[exports.RugbyGameLogTypes.team_foul] = 'Foul',
14878
+ _c$7[exports.RugbyGameLogTypes.start_kick] = 'Start kick',
14879
+ _c$7[exports.RugbyGameLogTypes.twenty_two_meters_kick] = '22 metres kick',
14880
+ _c$7[exports.RugbyGameLogTypes.goal_kick] = 'Удар от ворот',
14881
+ _c$7[exports.RugbyGameLogTypes.out] = 'Out',
14882
+ _c$7),
14474
14883
  _a$7);
14475
14884
 
14476
- var _a$6;
14885
+ var _a$6, _b$6, _c$6;
14477
14886
  var TeamUserRoleLocalization = (_a$6 = {},
14478
- _a$6[exports.TeamUserRole.member] = 'Пользователь',
14479
- _a$6[exports.TeamUserRole.moderator] = 'Модератор',
14480
- _a$6[exports.TeamUserRole.admin] = 'Владелец',
14481
- _a$6[exports.TeamUserRole.coach] = 'Тренер',
14482
- _a$6[exports.TeamUserRole.head_coach] = 'Главный тренер',
14483
- _a$6[exports.TeamUserRole.playing_coach] = 'Играющий тренер',
14484
- _a$6[exports.TeamUserRole.manager] = 'Менеджер',
14485
- _a$6[exports.TeamUserRole.head_manager] = 'Генеральный менеджер',
14486
- _a$6[exports.TeamUserRole.captain] = 'Капитан',
14487
- _a$6[exports.TeamUserRole.assistant] = 'Ассистент',
14488
- _a$6[exports.TeamUserRole.president] = 'Президент',
14489
- _a$6[exports.TeamUserRole.vice_president] = 'Вице-президент',
14490
- _a$6[exports.TeamUserRole.press_attache] = 'Пресс-атташе',
14491
- _a$6[exports.TeamUserRole.executive] = 'Администратор',
14492
- _a$6[exports.TeamUserRole.senior_coach] = 'Старший тренер',
14493
- _a$6[exports.TeamUserRole.assistant_coach] = 'Помощник тренера',
14494
- _a$6[exports.TeamUserRole.serviceman] = 'Сервисмен',
14495
- _a$6[exports.TeamUserRole.game_application_manager] = 'Менеджер по заявкам на игры',
14887
+ _a$6[Locales.ru] = (_b$6 = {},
14888
+ _b$6[exports.TeamUserRole.member] = 'Пользователь',
14889
+ _b$6[exports.TeamUserRole.moderator] = 'Модератор',
14890
+ _b$6[exports.TeamUserRole.admin] = 'Владелец',
14891
+ _b$6[exports.TeamUserRole.coach] = 'Тренер',
14892
+ _b$6[exports.TeamUserRole.head_coach] = 'Главный тренер',
14893
+ _b$6[exports.TeamUserRole.playing_coach] = 'Играющий тренер',
14894
+ _b$6[exports.TeamUserRole.manager] = 'Менеджер',
14895
+ _b$6[exports.TeamUserRole.head_manager] = 'Генеральный менеджер',
14896
+ _b$6[exports.TeamUserRole.captain] = 'Капитан',
14897
+ _b$6[exports.TeamUserRole.assistant] = 'Ассистент',
14898
+ _b$6[exports.TeamUserRole.president] = 'Президент',
14899
+ _b$6[exports.TeamUserRole.vice_president] = 'Вице-президент',
14900
+ _b$6[exports.TeamUserRole.press_attache] = 'Пресс-атташе',
14901
+ _b$6[exports.TeamUserRole.executive] = 'Администратор',
14902
+ _b$6[exports.TeamUserRole.senior_coach] = 'Старший тренер',
14903
+ _b$6[exports.TeamUserRole.assistant_coach] = 'Помощник тренера',
14904
+ _b$6[exports.TeamUserRole.serviceman] = 'Сервисмен',
14905
+ _b$6[exports.TeamUserRole.game_application_manager] = 'Менеджер по заявкам на игры',
14906
+ _b$6),
14907
+ _a$6[Locales.en] = (_c$6 = {},
14908
+ _c$6[exports.TeamUserRole.moderator] = 'Moderator',
14909
+ _c$6[exports.TeamUserRole.member] = 'User',
14910
+ _c$6[exports.TeamUserRole.admin] = 'Owner',
14911
+ _c$6[exports.TeamUserRole.coach] = 'Coach',
14912
+ _c$6[exports.TeamUserRole.head_coach] = 'Head coach',
14913
+ _c$6[exports.TeamUserRole.playing_coach] = 'Playing coach',
14914
+ _c$6[exports.TeamUserRole.manager] = 'Manager',
14915
+ _c$6[exports.TeamUserRole.head_manager] = 'General Manager',
14916
+ _c$6[exports.TeamUserRole.captain] = 'Captain',
14917
+ _c$6[exports.TeamUserRole.assistant] = 'Assistant',
14918
+ _c$6[exports.TeamUserRole.president] = 'President',
14919
+ _c$6[exports.TeamUserRole.vice_president] = 'Vice President',
14920
+ _c$6[exports.TeamUserRole.press_attache] = 'Press Attache',
14921
+ _c$6[exports.TeamUserRole.executive] = 'Administrator',
14922
+ _c$6[exports.TeamUserRole.senior_coach] = 'Senior Coach',
14923
+ _c$6[exports.TeamUserRole.assistant_coach] = 'Assistant Coach',
14924
+ _c$6[exports.TeamUserRole.serviceman] = 'Serviceman',
14925
+ _c$6[exports.TeamUserRole.game_application_manager] = 'Game Application Manager',
14926
+ _c$6),
14496
14927
  _a$6);
14497
14928
 
14498
- var _a$5, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r;
14929
+ var _a$5, _b$5, _c$5, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _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;
14499
14930
  var GameBasketballPositionLocalization = (_a$5 = {},
14500
- _a$5[exports.GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
14501
- _a$5[exports.GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
14502
- _a$5[exports.GameBasketballPosition.small_forward] = 'Легкий форвард',
14503
- _a$5[exports.GameBasketballPosition.power_forward] = 'Мощный форвард',
14504
- _a$5[exports.GameBasketballPosition.center] = 'Центровой',
14931
+ _a$5[Locales.ru] = (_b$5 = {},
14932
+ _b$5[exports.GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
14933
+ _b$5[exports.GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
14934
+ _b$5[exports.GameBasketballPosition.small_forward] = 'Легкий форвард',
14935
+ _b$5[exports.GameBasketballPosition.power_forward] = 'Мощный форвард',
14936
+ _b$5[exports.GameBasketballPosition.center] = 'Центровой',
14937
+ _b$5),
14938
+ _a$5[Locales.en] = (_c$5 = {},
14939
+ _c$5[exports.GameBasketballPosition.point_guard] = 'Point guard',
14940
+ _c$5[exports.GameBasketballPosition.shooting_guard] = 'Shooting guard',
14941
+ _c$5[exports.GameBasketballPosition.small_forward] = 'Small forward',
14942
+ _c$5[exports.GameBasketballPosition.power_forward] = 'Power forward',
14943
+ _c$5[exports.GameBasketballPosition.center] = 'Center',
14944
+ _c$5),
14505
14945
  _a$5);
14506
- var GameBasketballPositionShortLocalization = (_b = {},
14507
- _b[exports.GameBasketballPosition.point_guard] = 'PG',
14508
- _b[exports.GameBasketballPosition.shooting_guard] = 'SG',
14509
- _b[exports.GameBasketballPosition.small_forward] = 'SF',
14510
- _b[exports.GameBasketballPosition.power_forward] = 'PF',
14511
- _b[exports.GameBasketballPosition.center] = 'C',
14512
- _b);
14513
- var WorkHandLocalization = (_c = {},
14514
- _c[exports.WorkHand.left] = 'Левая',
14515
- _c[exports.WorkHand.right] = 'Правая',
14516
- _c);
14517
- var HockeyWorkHandLocalization = (_d = {},
14518
- _d[exports.WorkHand.left] = 'Левый',
14519
- _d[exports.WorkHand.right] = 'Правый',
14946
+ var GameBasketballPositionShortLocalization = (_d = {},
14947
+ _d[Locales.ru] = (_e = {},
14948
+ _e[exports.GameBasketballPosition.point_guard] = 'PG',
14949
+ _e[exports.GameBasketballPosition.shooting_guard] = 'SG',
14950
+ _e[exports.GameBasketballPosition.small_forward] = 'SF',
14951
+ _e[exports.GameBasketballPosition.power_forward] = 'PF',
14952
+ _e[exports.GameBasketballPosition.center] = 'C',
14953
+ _e),
14954
+ _d[Locales.en] = (_f = {},
14955
+ _f[exports.GameBasketballPosition.point_guard] = 'PG',
14956
+ _f[exports.GameBasketballPosition.shooting_guard] = 'SG',
14957
+ _f[exports.GameBasketballPosition.small_forward] = 'SF',
14958
+ _f[exports.GameBasketballPosition.power_forward] = 'PF',
14959
+ _f[exports.GameBasketballPosition.center] = 'C',
14960
+ _f),
14520
14961
  _d);
14521
- var GameVolleyballPositionLocalization = (_e = {},
14522
- _e[exports.GameVolleyballPosition.setter] = 'Связующий',
14523
- _e[exports.GameVolleyballPosition.libero] = 'Либеро',
14524
- _e[exports.GameVolleyballPosition.middle_player] = 'Центральный блокирующий',
14525
- _e[exports.GameVolleyballPosition.receiver_attacker] = 'Доигровщик',
14526
- _e[exports.GameVolleyballPosition.dioganal] = 'Диагональный',
14527
- _e);
14528
- var GameVolleyballPositionShortLocalization = (_f = {},
14529
- _f[exports.GameVolleyballPosition.setter] = 'S',
14530
- _f[exports.GameVolleyballPosition.libero] = 'L',
14531
- _f[exports.GameVolleyballPosition.middle_player] = 'MP',
14532
- _f[exports.GameVolleyballPosition.receiver_attacker] = 'RA',
14533
- _f[exports.GameVolleyballPosition.dioganal] = 'D',
14534
- _f);
14535
- var GameVolleyballPositionShortRuLocalization = (_g = {},
14536
- _g[exports.GameVolleyballPosition.setter] = 'связ.',
14537
- _g[exports.GameVolleyballPosition.libero] = 'либеро',
14538
- _g[exports.GameVolleyballPosition.middle_player] = 'блок.',
14539
- _g[exports.GameVolleyballPosition.receiver_attacker] = 'доигр.',
14540
- _g[exports.GameVolleyballPosition.dioganal] = 'диаг.',
14962
+ var WorkHandLocalization = (_g = {},
14963
+ _g[Locales.ru] = (_h = {},
14964
+ _h[exports.WorkHand.left] = 'Левая',
14965
+ _h[exports.WorkHand.right] = 'Правая',
14966
+ _h),
14967
+ _g[Locales.en] = (_j = {},
14968
+ _j[exports.WorkHand.left] = 'Left',
14969
+ _j[exports.WorkHand.right] = 'Right',
14970
+ _j),
14541
14971
  _g);
14542
- var VolleyballWorkHandLocalization = (_h = {},
14543
- _h[exports.VolleyballWorkHand.left] = 'Левая',
14544
- _h[exports.VolleyballWorkHand.right] = 'Правая',
14545
- _h);
14546
- var GameHockeyPositionLocalization = (_j = {},
14547
- _j[exports.GameHockeyPosition.goaltender] = 'Вратарь',
14548
- _j[exports.GameHockeyPosition.defensemen] = 'Защитник',
14549
- _j[exports.GameHockeyPosition.forward] = 'Нападающий',
14550
- _j);
14551
- var GameFootballPositionLocalization = (_k = {},
14552
- _k[exports.GameFootballPosition.goalkeeper] = 'Вратарь',
14553
- _k[exports.GameFootballPosition.defensemen] = 'Защитник',
14554
- _k[exports.GameFootballPosition.midfielder] = 'Полузащитник',
14555
- _k[exports.GameFootballPosition.forward] = 'Нападающий',
14972
+ var HockeyWorkHandLocalization = (_k = {},
14973
+ _k[Locales.ru] = (_l = {},
14974
+ _l[exports.WorkHand.left] = 'Левый',
14975
+ _l[exports.WorkHand.right] = 'Правый',
14976
+ _l),
14977
+ _k[Locales.en] = (_m = {},
14978
+ _m[exports.WorkHand.left] = 'Left',
14979
+ _m[exports.WorkHand.right] = 'Right',
14980
+ _m),
14556
14981
  _k);
14557
- var FootballWorkFootLocalization = (_l = {},
14558
- _l[exports.FootballWorkFoot.left] = 'Левая',
14559
- _l[exports.FootballWorkFoot.right] = 'Правая',
14560
- _l[exports.FootballWorkFoot.both] = 'Обе',
14561
- _l);
14562
- var GameHandballPositionLocalization = (_m = {},
14563
- _m[exports.GameHandballPosition.goalkeeper] = 'Вратарь',
14564
- _m[exports.GameHandballPosition.winger] = 'Крайний',
14565
- _m[exports.GameHandballPosition.pivot] = 'Линейный',
14566
- _m[exports.GameHandballPosition.centre_back] = 'Центральный',
14567
- _m[exports.GameHandballPosition.fullback] = 'Полусредний',
14568
- _m);
14569
- var GameRugbyPositionLocalization = (_o = {},
14570
- _o[exports.GameRugbyPosition.front_line] = 'Надающий первой линии',
14571
- _o[exports.GameRugbyPosition.second_line] = 'Нападающий второй линии',
14572
- _o[exports.GameRugbyPosition.back_line] = 'Нападающий задней линии',
14573
- _o[exports.GameRugbyPosition.halfback] = 'Полузащитник',
14574
- _o[exports.GameRugbyPosition.three_quarter] = 'Трехчетвертный',
14575
- _o[exports.GameRugbyPosition.fullback] = 'Замыкающий',
14982
+ var GameVolleyballPositionLocalization = (_o = {},
14983
+ _o[Locales.ru] = (_p = {},
14984
+ _p[exports.GameVolleyballPosition.setter] = 'Связующий',
14985
+ _p[exports.GameVolleyballPosition.libero] = 'Либеро',
14986
+ _p[exports.GameVolleyballPosition.middle_player] = 'Центральный блокирующий',
14987
+ _p[exports.GameVolleyballPosition.receiver_attacker] = 'Доигровщик',
14988
+ _p[exports.GameVolleyballPosition.dioganal] = 'Диагональный',
14989
+ _p),
14990
+ _o[Locales.en] = (_q = {},
14991
+ _q[exports.GameVolleyballPosition.setter] = 'Setter',
14992
+ _q[exports.GameVolleyballPosition.libero] = 'Libero',
14993
+ _q[exports.GameVolleyballPosition.middle_player] = 'Middle blocker',
14994
+ _q[exports.GameVolleyballPosition.receiver_attacker] = 'Outside hitter',
14995
+ _q[exports.GameVolleyballPosition.dioganal] = 'Diagonal',
14996
+ _q),
14576
14997
  _o);
14577
- var GameWaterpoloPositionLocalization = (_p = {},
14578
- _p[exports.GameWaterpoloPosition.defensemen] = 'Защитник',
14579
- _p[exports.GameWaterpoloPosition.goalkeeper] = 'Вратарь',
14580
- _p[exports.GameWaterpoloPosition.center_forward] = 'Центральный нападающий',
14581
- _p[exports.GameWaterpoloPosition.mobile_forward] = 'Подвижный нападающий',
14582
- _p);
14583
- var GameWaterpoloPositionShortRuLocalization = (_q = {},
14584
- _q[exports.GameWaterpoloPosition.defensemen] = 'З',
14585
- _q[exports.GameWaterpoloPosition.goalkeeper] = 'Вр',
14586
- _q[exports.GameWaterpoloPosition.center_forward] = 'ЦН',
14587
- _q[exports.GameWaterpoloPosition.mobile_forward] = 'ПН',
14588
- _q);
14589
- var WaterpoloWorkHandLocalization = (_r = {},
14590
- _r[exports.WaterpoloWorkHand.left] = 'Левая',
14591
- _r[exports.WaterpoloWorkHand.right] = 'Правая',
14998
+ var GameVolleyballPositionShortLocalization = (_r = {},
14999
+ _r[Locales.ru] = (_s = {},
15000
+ _s[exports.GameVolleyballPosition.setter] = 'S',
15001
+ _s[exports.GameVolleyballPosition.libero] = 'L',
15002
+ _s[exports.GameVolleyballPosition.middle_player] = 'MP',
15003
+ _s[exports.GameVolleyballPosition.receiver_attacker] = 'RA',
15004
+ _s[exports.GameVolleyballPosition.dioganal] = 'D',
15005
+ _s),
15006
+ _r[Locales.en] = (_t = {},
15007
+ _t[exports.GameVolleyballPosition.setter] = 'S',
15008
+ _t[exports.GameVolleyballPosition.libero] = 'L',
15009
+ _t[exports.GameVolleyballPosition.middle_player] = 'MP',
15010
+ _t[exports.GameVolleyballPosition.receiver_attacker] = 'RA',
15011
+ _t[exports.GameVolleyballPosition.dioganal] = 'D',
15012
+ _t),
14592
15013
  _r);
14593
-
14594
- var _a$4;
15014
+ var GameVolleyballPositionShortRuLocalization = (_u = {},
15015
+ _u[Locales.ru] = (_v = {},
15016
+ _v[exports.GameVolleyballPosition.setter] = 'связ.',
15017
+ _v[exports.GameVolleyballPosition.libero] = 'либеро',
15018
+ _v[exports.GameVolleyballPosition.middle_player] = 'блок.',
15019
+ _v[exports.GameVolleyballPosition.receiver_attacker] = 'доигр.',
15020
+ _v[exports.GameVolleyballPosition.dioganal] = 'диаг.',
15021
+ _v),
15022
+ _u[Locales.en] = (_w = {},
15023
+ _w[exports.GameVolleyballPosition.setter] = 'Setter',
15024
+ _w[exports.GameVolleyballPosition.libero] = 'Libero',
15025
+ _w[exports.GameVolleyballPosition.middle_player] = 'Middle blocker',
15026
+ _w[exports.GameVolleyballPosition.receiver_attacker] = 'Outside hitter',
15027
+ _w[exports.GameVolleyballPosition.dioganal] = 'Diagonal',
15028
+ _w),
15029
+ _u);
15030
+ var VolleyballWorkHandLocalization = (_x = {},
15031
+ _x[Locales.ru] = (_y = {},
15032
+ _y[exports.VolleyballWorkHand.left] = 'Левая',
15033
+ _y[exports.VolleyballWorkHand.right] = 'Правая',
15034
+ _y),
15035
+ _x[Locales.en] = (_z = {},
15036
+ _z[exports.WorkHand.left] = 'Left',
15037
+ _z[exports.WorkHand.right] = 'Right',
15038
+ _z),
15039
+ _x);
15040
+ var GameHockeyPositionLocalization = (_0 = {},
15041
+ _0[Locales.ru] = (_1 = {},
15042
+ _1[exports.GameHockeyPosition.goaltender] = 'Вратарь',
15043
+ _1[exports.GameHockeyPosition.defensemen] = 'Защитник',
15044
+ _1[exports.GameHockeyPosition.forward] = 'Нападающий',
15045
+ _1),
15046
+ _0[Locales.en] = (_2 = {},
15047
+ _2[exports.GameHockeyPosition.defensemen] = 'Defender',
15048
+ _2[exports.GameHockeyPosition.forward] = 'Forward',
15049
+ _2[exports.GameHockeyPosition.goaltender] = 'Goalkeeper',
15050
+ _2),
15051
+ _0);
15052
+ var GameFootballPositionLocalization = (_3 = {},
15053
+ _3[Locales.ru] = (_4 = {},
15054
+ _4[exports.GameFootballPosition.goalkeeper] = 'Вратарь',
15055
+ _4[exports.GameFootballPosition.defensemen] = 'Защитник',
15056
+ _4[exports.GameFootballPosition.midfielder] = 'Полузащитник',
15057
+ _4[exports.GameFootballPosition.forward] = 'Нападающий',
15058
+ _4),
15059
+ _3[Locales.en] = (_5 = {},
15060
+ _5[exports.GameFootballPosition.defensemen] = 'Defender',
15061
+ _5[exports.GameFootballPosition.midfielder] = 'Midfielder',
15062
+ _5[exports.GameFootballPosition.forward] = 'Forward',
15063
+ _5[exports.GameFootballPosition.goalkeeper] = 'Goalkeeper',
15064
+ _5),
15065
+ _3);
15066
+ var FootballWorkFootLocalization = (_6 = {},
15067
+ _6[Locales.ru] = (_7 = {},
15068
+ _7[exports.FootballWorkFoot.left] = 'Левая',
15069
+ _7[exports.FootballWorkFoot.right] = 'Правая',
15070
+ _7[exports.FootballWorkFoot.both] = 'Обе',
15071
+ _7),
15072
+ _6[Locales.en] = (_8 = {},
15073
+ _8[exports.FootballWorkFoot.left] = 'Left',
15074
+ _8[exports.FootballWorkFoot.right] = 'Right',
15075
+ _8[exports.FootballWorkFoot.both] = 'Both',
15076
+ _8),
15077
+ _6);
15078
+ var GameHandballPositionLocalization = (_9 = {},
15079
+ _9[Locales.ru] = (_10 = {},
15080
+ _10[exports.GameHandballPosition.goalkeeper] = 'Вратарь',
15081
+ _10[exports.GameHandballPosition.winger] = 'Крайний',
15082
+ _10[exports.GameHandballPosition.pivot] = 'Линейный',
15083
+ _10[exports.GameHandballPosition.centre_back] = 'Центральный',
15084
+ _10[exports.GameHandballPosition.fullback] = 'Полусредний',
15085
+ _10),
15086
+ _9[Locales.en] = (_11 = {},
15087
+ _11[exports.GameHandballPosition.goalkeeper] = 'Goalkeeper',
15088
+ _11[exports.GameHandballPosition.winger] = 'Wing',
15089
+ _11[exports.GameHandballPosition.pivot] = 'Pivot',
15090
+ _11[exports.GameHandballPosition.centre_back] = 'Centre back',
15091
+ _11[exports.GameHandballPosition.fullback] = 'Back',
15092
+ _11),
15093
+ _9);
15094
+ var GameRugbyPositionLocalization = (_12 = {},
15095
+ _12[Locales.ru] = (_13 = {},
15096
+ _13[exports.GameRugbyPosition.front_line] = 'Надающий первой линии',
15097
+ _13[exports.GameRugbyPosition.second_line] = 'Нападающий второй линии',
15098
+ _13[exports.GameRugbyPosition.back_line] = 'Нападающий задней линии',
15099
+ _13[exports.GameRugbyPosition.halfback] = 'Полузащитник',
15100
+ _13[exports.GameRugbyPosition.three_quarter] = 'Трехчетвертный',
15101
+ _13[exports.GameRugbyPosition.fullback] = 'Замыкающий',
15102
+ _13),
15103
+ _12[Locales.en] = (_14 = {},
15104
+ _14[exports.GameRugbyPosition.front_line] = 'The forward of the first line',
15105
+ _14[exports.GameRugbyPosition.second_line] = 'The forward of the second line',
15106
+ _14[exports.GameRugbyPosition.back_line] = 'The forward of the back line',
15107
+ _14[exports.GameRugbyPosition.halfback] = 'Halfback',
15108
+ _14[exports.GameRugbyPosition.three_quarter] = 'Three quarter',
15109
+ _14[exports.GameRugbyPosition.fullback] = 'Fullback',
15110
+ _14),
15111
+ _12);
15112
+ var GameWaterpoloPositionLocalization = (_15 = {},
15113
+ _15[Locales.ru] = (_16 = {},
15114
+ _16[exports.GameWaterpoloPosition.defensemen] = 'Защитник',
15115
+ _16[exports.GameWaterpoloPosition.goalkeeper] = 'Вратарь',
15116
+ _16[exports.GameWaterpoloPosition.center_forward] = 'Центральный нападающий',
15117
+ _16[exports.GameWaterpoloPosition.mobile_forward] = 'Подвижный нападающий',
15118
+ _16),
15119
+ _15[Locales.en] = (_17 = {},
15120
+ _17[exports.GameWaterpoloPosition.defensemen] = 'Defender',
15121
+ _17[exports.GameWaterpoloPosition.goalkeeper] = 'Goalkeeper',
15122
+ _17[exports.GameWaterpoloPosition.center_forward] = 'Center forward',
15123
+ _17[exports.GameWaterpoloPosition.mobile_forward] = 'Mobile forward',
15124
+ _17),
15125
+ _15);
15126
+ var GameWaterpoloPositionShortRuLocalization = (_18 = {},
15127
+ _18[Locales.ru] = (_19 = {},
15128
+ _19[exports.GameWaterpoloPosition.defensemen] = 'З',
15129
+ _19[exports.GameWaterpoloPosition.goalkeeper] = 'Вр',
15130
+ _19[exports.GameWaterpoloPosition.center_forward] = 'ЦН',
15131
+ _19[exports.GameWaterpoloPosition.mobile_forward] = 'ПН',
15132
+ _19),
15133
+ _18[Locales.en] = (_20 = {},
15134
+ _20[exports.GameWaterpoloPosition.defensemen] = 'D',
15135
+ _20[exports.GameWaterpoloPosition.goalkeeper] = 'G',
15136
+ _20[exports.GameWaterpoloPosition.center_forward] = 'CF',
15137
+ _20[exports.GameWaterpoloPosition.mobile_forward] = 'MF',
15138
+ _20),
15139
+ _18);
15140
+ var WaterpoloWorkHandLocalization = (_21 = {},
15141
+ _21[Locales.ru] = (_22 = {},
15142
+ _22[exports.WaterpoloWorkHand.left] = 'Левая',
15143
+ _22[exports.WaterpoloWorkHand.right] = 'Правая',
15144
+ _22),
15145
+ _21[Locales.en] = (_23 = {},
15146
+ _23[exports.WaterpoloWorkHand.left] = 'Left',
15147
+ _23[exports.WaterpoloWorkHand.right] = 'Right',
15148
+ _23),
15149
+ _21);
15150
+ var WrestballWorkHandLocalization = (_24 = {},
15151
+ _24[Locales.ru] = (_25 = {},
15152
+ _25[exports.WrestballWorkHand.left] = 'Левая',
15153
+ _25[exports.WrestballWorkHand.right] = 'Правая',
15154
+ _25),
15155
+ _24[Locales.en] = (_26 = {},
15156
+ _26[exports.WrestballWorkHand.left] = 'Left',
15157
+ _26[exports.WrestballWorkHand.right] = 'Right',
15158
+ _26),
15159
+ _24);
15160
+
15161
+ var _a$4, _b$4, _c$4;
14595
15162
  var VolleyballGameLogTypeLocalization = (_a$4 = {},
14596
- _a$4[exports.VolleyballGameLogType.enter_game] = 'Выход на площадку',
14597
- _a$4[exports.VolleyballGameLogType.exit_game] = 'Уход с площадки',
14598
- _a$4[exports.VolleyballGameLogType.remove_game] = 'Удаление с площадки',
14599
- _a$4[exports.VolleyballGameLogType.serve_ace] = 'Эйс',
14600
- _a$4[exports.VolleyballGameLogType.serve_hit] = 'Подача',
14601
- _a$4[exports.VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
14602
- _a$4[exports.VolleyballGameLogType.good_serve] = 'Усложнённая подача',
14603
- _a$4[exports.VolleyballGameLogType.attack_spike] = 'Результативная атака',
14604
- _a$4[exports.VolleyballGameLogType.attack_shot] = 'Атака',
14605
- _a$4[exports.VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
14606
- _a$4[exports.VolleyballGameLogType.stuff_block] = 'Результативный блок',
14607
- _a$4[exports.VolleyballGameLogType.block_rebound] = 'Блок',
14608
- _a$4[exports.VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
14609
- _a$4[exports.VolleyballGameLogType.excellent_receive] = 'Отличный прием',
14610
- _a$4[exports.VolleyballGameLogType.receive] = 'Прием',
14611
- _a$4[exports.VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
14612
- _a$4[exports.VolleyballGameLogType.serve_receive] = 'Прием подачи',
14613
- _a$4[exports.VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
14614
- _a$4[exports.VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
14615
- _a$4[exports.VolleyballGameLogType.point] = 'Очко',
14616
- _a$4[exports.VolleyballGameLogType.fault] = 'Ошибка',
14617
- _a$4[exports.VolleyballGameLogType.timeout] = 'Таймаут',
14618
- _a$4[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
14619
- _a$4[exports.VolleyballGameLogType.tie_ball] = 'Спорный мяч',
15163
+ _a$4[Locales.ru] = (_b$4 = {},
15164
+ _b$4[exports.VolleyballGameLogType.enter_game] = 'Выход на площадку',
15165
+ _b$4[exports.VolleyballGameLogType.exit_game] = 'Уход с площадки',
15166
+ _b$4[exports.VolleyballGameLogType.remove_game] = 'Удаление с площадки',
15167
+ _b$4[exports.VolleyballGameLogType.serve_ace] = 'Эйс',
15168
+ _b$4[exports.VolleyballGameLogType.serve_hit] = 'Подача',
15169
+ _b$4[exports.VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
15170
+ _b$4[exports.VolleyballGameLogType.good_serve] = 'Усложнённая подача',
15171
+ _b$4[exports.VolleyballGameLogType.attack_spike] = 'Результативная атака',
15172
+ _b$4[exports.VolleyballGameLogType.attack_shot] = 'Атака',
15173
+ _b$4[exports.VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
15174
+ _b$4[exports.VolleyballGameLogType.stuff_block] = 'Результативный блок',
15175
+ _b$4[exports.VolleyballGameLogType.block_rebound] = 'Блок',
15176
+ _b$4[exports.VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
15177
+ _b$4[exports.VolleyballGameLogType.excellent_receive] = 'Отличный прием',
15178
+ _b$4[exports.VolleyballGameLogType.receive] = 'Прием',
15179
+ _b$4[exports.VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
15180
+ _b$4[exports.VolleyballGameLogType.serve_receive] = 'Прием подачи',
15181
+ _b$4[exports.VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
15182
+ _b$4[exports.VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
15183
+ _b$4[exports.VolleyballGameLogType.point] = 'Очко',
15184
+ _b$4[exports.VolleyballGameLogType.fault] = 'Ошибка',
15185
+ _b$4[exports.VolleyballGameLogType.timeout] = 'Таймаут',
15186
+ _b$4[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
15187
+ _b$4[exports.VolleyballGameLogType.tie_ball] = 'Спорный мяч',
15188
+ _b$4),
15189
+ _a$4[Locales.en] = (_c$4 = {},
15190
+ _c$4[exports.VolleyballGameLogType.enter_game] = 'Entering the court',
15191
+ _c$4[exports.VolleyballGameLogType.exit_game] = 'Exit the court',
15192
+ _c$4[exports.VolleyballGameLogType.remove_game] = 'Removed from the court',
15193
+ _c$4[exports.VolleyballGameLogType.serve_ace] = 'Ace',
15194
+ _c$4[exports.VolleyballGameLogType.serve_hit] = 'Serve',
15195
+ _c$4[exports.VolleyballGameLogType.serve_fault] = 'Mistake on a serve',
15196
+ _c$4[exports.VolleyballGameLogType.good_serve] = 'Good serve',
15197
+ _c$4[exports.VolleyballGameLogType.attack_spike] = 'Resulting attack',
15198
+ _c$4[exports.VolleyballGameLogType.attack_shot] = 'Attack',
15199
+ _c$4[exports.VolleyballGameLogType.attack_fault] = 'Attack fault',
15200
+ _c$4[exports.VolleyballGameLogType.stuff_block] = 'Resulting block',
15201
+ _c$4[exports.VolleyballGameLogType.block_rebound] = 'Block',
15202
+ _c$4[exports.VolleyballGameLogType.block_fault] = 'Block fault',
15203
+ _c$4[exports.VolleyballGameLogType.excellent_receive] = 'Excellent receive',
15204
+ _c$4[exports.VolleyballGameLogType.receive] = 'Receive',
15205
+ _c$4[exports.VolleyballGameLogType.receive_fault] = 'Receive fault',
15206
+ _c$4[exports.VolleyballGameLogType.serve_receive] = 'Serve receive',
15207
+ _c$4[exports.VolleyballGameLogType.excellent_serve_receive] = 'Excellent serve receive',
15208
+ _c$4[exports.VolleyballGameLogType.serve_receive_fault] = 'Serve receive fault',
15209
+ _c$4[exports.VolleyballGameLogType.point] = 'Point',
15210
+ _c$4[exports.VolleyballGameLogType.fault] = 'Fault',
15211
+ _c$4[exports.VolleyballGameLogType.timeout] = 'Timeout',
15212
+ _c$4[exports.VolleyballGameLogType.yellow_card] = 'Warning',
15213
+ _c$4[exports.VolleyballGameLogType.tie_ball] = 'Tie ball',
15214
+ _c$4),
14620
15215
  _a$4);
14621
15216
 
14622
- var _a$3;
15217
+ var _a$3, _b$3, _c$3;
14623
15218
  var OrganizationStatusesLocalization = (_a$3 = {},
14624
- _a$3[exports.OrganizationStatuses.active] = 'Активен',
14625
- _a$3[exports.OrganizationStatuses.blocked] = 'Заблокирован',
14626
- _a$3[exports.OrganizationStatuses.not_confirmed] = 'Не подтвержден',
15219
+ _a$3[Locales.ru] = (_b$3 = {},
15220
+ _b$3[exports.OrganizationStatuses.active] = 'Активен',
15221
+ _b$3[exports.OrganizationStatuses.blocked] = 'Заблокирован',
15222
+ _b$3[exports.OrganizationStatuses.not_confirmed] = 'Не подтвержден',
15223
+ _b$3),
15224
+ _a$3[Locales.en] = (_c$3 = {},
15225
+ _c$3[exports.OrganizationStatuses.active] = 'Active',
15226
+ _c$3[exports.OrganizationStatuses.blocked] = 'Blocked',
15227
+ _c$3[exports.OrganizationStatuses.not_confirmed] = 'Not confirmed',
15228
+ _c$3),
14627
15229
  _a$3);
14628
15230
 
14629
- var _a$2;
15231
+ var _a$2, _b$2, _c$2;
14630
15232
  var WrestballGameLogTypeLocalization = (_a$2 = {},
14631
- _a$2[exports.WrestballGameLogTypes.enter_game] = 'Выход на площадку',
14632
- _a$2[exports.WrestballGameLogTypes.exit_game] = 'Ушел с площадки',
14633
- _a$2[exports.WrestballGameLogTypes.remove_game] = 'Удаление с площадки',
14634
- _a$2[exports.WrestballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
14635
- _a$2[exports.WrestballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
14636
- _a$2[exports.WrestballGameLogTypes.free_throw_attempt] = 'Штрафной бросок 1 очко',
14637
- _a$2[exports.WrestballGameLogTypes.two_point_free_throw_attempt] = 'Штрафной бросок 2 очка',
14638
- _a$2[exports.WrestballGameLogTypes.three_point_free_throw_attempt] = 'Штрафной бросок 3 очка',
14639
- _a$2[exports.WrestballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
14640
- _a$2[exports.WrestballGameLogTypes.two_point_made] = '2 очка',
14641
- _a$2[exports.WrestballGameLogTypes.three_point_made] = '3 очка',
14642
- _a$2[exports.WrestballGameLogTypes.free_throw_made] = '1 очко, штрафной',
14643
- _a$2[exports.WrestballGameLogTypes.two_point_free_throw_made] = '2 очка, штрафной',
14644
- _a$2[exports.WrestballGameLogTypes.three_point_free_throw_made] = '3 очка, штрафной',
14645
- _a$2[exports.WrestballGameLogTypes.one_point_made] = '1 очко',
14646
- _a$2[exports.WrestballGameLogTypes.dunk_made] = '2 очка, данк',
14647
- _a$2[exports.WrestballGameLogTypes.dunk_attempt] = 'Попытка данка',
14648
- _a$2[exports.WrestballGameLogTypes.assist] = 'Передача',
14649
- _a$2[exports.WrestballGameLogTypes.block] = 'Блокшот',
14650
- _a$2[exports.WrestballGameLogTypes.rebound] = 'Подбор',
14651
- _a$2[exports.WrestballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
14652
- _a$2[exports.WrestballGameLogTypes.defensive_rebound] = 'Подбор в защите',
14653
- _a$2[exports.WrestballGameLogTypes.steal] = 'Перехват',
14654
- _a$2[exports.WrestballGameLogTypes.turnover] = 'Потеря',
14655
- _a$2[exports.WrestballGameLogTypes.personal_foul] = 'Фол',
14656
- _a$2[exports.WrestballGameLogTypes.timeout] = 'Таймаут',
14657
- _a$2[exports.WrestballGameLogTypes.team_rebound] = 'Командный подбор',
14658
- _a$2[exports.WrestballGameLogTypes.scrum] = 'Схватка',
14659
- _a$2[exports.WrestballGameLogTypes.scrum_won] = 'Схватка выиграна',
14660
- _a$2[exports.WrestballGameLogTypes.scrum_lost] = 'Схватка проиграна',
14661
- _a$2[exports.WrestballGameLogTypes.scrum_tie] = 'Схватка в ничью',
14662
- _a$2[exports.WrestballGameLogTypes.wrestler_scrum] = 'Атака рестлера',
14663
- _a$2[exports.WrestballGameLogTypes.wrestler_scrum_won] = 'Атака рестлера успешна',
14664
- _a$2[exports.WrestballGameLogTypes.wrestler_scrum_lost] = 'Атака рестлера неудачна',
14665
- _a$2[exports.WrestballGameLogTypes.wrestler_scrum_tie] = 'Атака рестлера в ничью',
14666
- _a$2[exports.WrestballGameLogTypes.wrestler_scrum_counterattack] = 'Контратака на рестлере',
14667
- _a$2[exports.WrestballGameLogTypes.scrum_ball_advantage_won] = 'Схватка за начало выиграна',
14668
- _a$2[exports.WrestballGameLogTypes.scrum_ball_advantage_lost] = 'Схватка за начало проиграна',
14669
- _a$2[exports.WrestballGameLogTypes.scrum_ball_advantage_tie] = 'Схватка за начало в ничью',
14670
- _a$2[exports.WrestballGameLogTypes.yellow_card] = 'Желтая карточка',
14671
- _a$2[exports.WrestballGameLogTypes.red_card] = 'Красная карточка',
15233
+ _a$2[Locales.ru] = (_b$2 = {},
15234
+ _b$2[exports.WrestballGameLogTypes.enter_game] = 'Выход на площадку',
15235
+ _b$2[exports.WrestballGameLogTypes.exit_game] = 'Ушел с площадки',
15236
+ _b$2[exports.WrestballGameLogTypes.remove_game] = 'Удаление с площадки',
15237
+ _b$2[exports.WrestballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
15238
+ _b$2[exports.WrestballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
15239
+ _b$2[exports.WrestballGameLogTypes.free_throw_attempt] = 'Штрафной бросок 1 очко',
15240
+ _b$2[exports.WrestballGameLogTypes.two_point_free_throw_attempt] = 'Штрафной бросок 2 очка',
15241
+ _b$2[exports.WrestballGameLogTypes.three_point_free_throw_attempt] = 'Штрафной бросок 3 очка',
15242
+ _b$2[exports.WrestballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
15243
+ _b$2[exports.WrestballGameLogTypes.two_point_made] = '2 очка',
15244
+ _b$2[exports.WrestballGameLogTypes.three_point_made] = '3 очка',
15245
+ _b$2[exports.WrestballGameLogTypes.free_throw_made] = '1 очко, штрафной',
15246
+ _b$2[exports.WrestballGameLogTypes.two_point_free_throw_made] = '2 очка, штрафной',
15247
+ _b$2[exports.WrestballGameLogTypes.three_point_free_throw_made] = '3 очка, штрафной',
15248
+ _b$2[exports.WrestballGameLogTypes.one_point_made] = '1 очко',
15249
+ _b$2[exports.WrestballGameLogTypes.dunk_made] = '2 очка, данк',
15250
+ _b$2[exports.WrestballGameLogTypes.dunk_attempt] = 'Попытка данка',
15251
+ _b$2[exports.WrestballGameLogTypes.assist] = 'Передача',
15252
+ _b$2[exports.WrestballGameLogTypes.block] = 'Блокшот',
15253
+ _b$2[exports.WrestballGameLogTypes.rebound] = 'Подбор',
15254
+ _b$2[exports.WrestballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
15255
+ _b$2[exports.WrestballGameLogTypes.defensive_rebound] = 'Подбор в защите',
15256
+ _b$2[exports.WrestballGameLogTypes.steal] = 'Перехват',
15257
+ _b$2[exports.WrestballGameLogTypes.turnover] = 'Потеря',
15258
+ _b$2[exports.WrestballGameLogTypes.personal_foul] = 'Фол',
15259
+ _b$2[exports.WrestballGameLogTypes.timeout] = 'Таймаут',
15260
+ _b$2[exports.WrestballGameLogTypes.team_rebound] = 'Командный подбор',
15261
+ _b$2[exports.WrestballGameLogTypes.scrum] = 'Схватка',
15262
+ _b$2[exports.WrestballGameLogTypes.scrum_won] = 'Схватка выиграна',
15263
+ _b$2[exports.WrestballGameLogTypes.scrum_lost] = 'Схватка проиграна',
15264
+ _b$2[exports.WrestballGameLogTypes.scrum_tie] = 'Схватка в ничью',
15265
+ _b$2[exports.WrestballGameLogTypes.wrestler_scrum] = 'Атака рестлера',
15266
+ _b$2[exports.WrestballGameLogTypes.wrestler_scrum_won] = 'Атака рестлера успешна',
15267
+ _b$2[exports.WrestballGameLogTypes.wrestler_scrum_lost] = 'Атака рестлера неудачна',
15268
+ _b$2[exports.WrestballGameLogTypes.wrestler_scrum_tie] = 'Атака рестлера в ничью',
15269
+ _b$2[exports.WrestballGameLogTypes.wrestler_scrum_counterattack] = 'Контратака на рестлере',
15270
+ _b$2[exports.WrestballGameLogTypes.scrum_ball_advantage_won] = 'Схватка за начало выиграна',
15271
+ _b$2[exports.WrestballGameLogTypes.scrum_ball_advantage_lost] = 'Схватка за начало проиграна',
15272
+ _b$2[exports.WrestballGameLogTypes.scrum_ball_advantage_tie] = 'Схватка за начало в ничью',
15273
+ _b$2[exports.WrestballGameLogTypes.yellow_card] = 'Желтая карточка',
15274
+ _b$2[exports.WrestballGameLogTypes.red_card] = 'Красная карточка',
15275
+ _b$2),
15276
+ _a$2[Locales.en] = (_c$2 = {},
15277
+ _c$2[exports.WrestballGameLogTypes.enter_game] = 'Entering the court',
15278
+ _c$2[exports.WrestballGameLogTypes.exit_game] = 'Exit the court',
15279
+ _c$2[exports.WrestballGameLogTypes.remove_game] = 'Removal from the court',
15280
+ _c$2[exports.WrestballGameLogTypes.two_point_attempt] = 'Throw 2 points',
15281
+ _c$2[exports.WrestballGameLogTypes.three_point_attempt] = 'Throw 3 points',
15282
+ _c$2[exports.WrestballGameLogTypes.free_throw_attempt] = 'Free throw 1 point',
15283
+ _c$2[exports.WrestballGameLogTypes.two_point_free_throw_attempt] = 'Free throw 2 points',
15284
+ _c$2[exports.WrestballGameLogTypes.three_point_free_throw_attempt] = 'Free throw 3 points',
15285
+ _c$2[exports.WrestballGameLogTypes.one_point_attempt] = 'Throw 1 point',
15286
+ _c$2[exports.WrestballGameLogTypes.two_point_made] = '2 points',
15287
+ _c$2[exports.WrestballGameLogTypes.three_point_made] = '3 points',
15288
+ _c$2[exports.WrestballGameLogTypes.free_throw_made] = '1 point, free throw',
15289
+ _c$2[exports.WrestballGameLogTypes.two_point_free_throw_made] = '2 points, free throw',
15290
+ _c$2[exports.WrestballGameLogTypes.three_point_free_throw_made] = '3 points, free throw',
15291
+ _c$2[exports.WrestballGameLogTypes.one_point_made] = '1 point',
15292
+ _c$2[exports.WrestballGameLogTypes.dunk_made] = '2 points, dunk',
15293
+ _c$2[exports.WrestballGameLogTypes.dunk_attempt] = 'Dunk attempt',
15294
+ _c$2[exports.WrestballGameLogTypes.assist] = 'Assist',
15295
+ _c$2[exports.WrestballGameLogTypes.block] = 'Block',
15296
+ _c$2[exports.WrestballGameLogTypes.rebound] = 'Rebound',
15297
+ _c$2[exports.WrestballGameLogTypes.offensive_rebound] = 'Offensive rebound',
15298
+ _c$2[exports.WrestballGameLogTypes.defensive_rebound] = 'Defensive rebound',
15299
+ _c$2[exports.WrestballGameLogTypes.steal] = 'Steal',
15300
+ _c$2[exports.WrestballGameLogTypes.turnover] = 'Turnover',
15301
+ _c$2[exports.WrestballGameLogTypes.personal_foul] = 'Personal foul',
15302
+ _c$2[exports.WrestballGameLogTypes.timeout] = 'Timeout',
15303
+ _c$2[exports.WrestballGameLogTypes.team_rebound] = 'Team rebound',
15304
+ _c$2[exports.WrestballGameLogTypes.scrum] = 'Scrum',
15305
+ _c$2[exports.WrestballGameLogTypes.scrum_won] = 'Scrum is won',
15306
+ _c$2[exports.WrestballGameLogTypes.scrum_lost] = 'Scrum is lost',
15307
+ _c$2[exports.WrestballGameLogTypes.scrum_tie] = 'Scrum is in a draw',
15308
+ _c$2[exports.WrestballGameLogTypes.wrestler_scrum] = 'Wrestler attack',
15309
+ _c$2[exports.WrestballGameLogTypes.wrestler_scrum_won] = 'Successful Wrestler attack',
15310
+ _c$2[exports.WrestballGameLogTypes.wrestler_scrum_lost] = 'Unsuccessful Wrestler attack',
15311
+ _c$2[exports.WrestballGameLogTypes.wrestler_scrum_tie] = 'Wrestler\'s attack in a draw',
15312
+ _c$2[exports.WrestballGameLogTypes.wrestler_scrum_counterattack] = 'Counterattack on the wrestler',
15313
+ _c$2[exports.WrestballGameLogTypes.scrum_ball_advantage_won] = 'Scrum for the beginning is won',
15314
+ _c$2[exports.WrestballGameLogTypes.scrum_ball_advantage_lost] = 'Scrum for the beginning is lost',
15315
+ _c$2[exports.WrestballGameLogTypes.scrum_ball_advantage_tie] = 'Scrum for the beginning is in draw',
15316
+ _c$2[exports.WrestballGameLogTypes.yellow_card] = 'Yellow card',
15317
+ _c$2[exports.WrestballGameLogTypes.red_card] = 'Red card',
15318
+ _c$2),
14672
15319
  _a$2);
14673
15320
 
14674
- var _a$1;
15321
+ var _a$1, _b$1, _c$1;
14675
15322
  exports.OrganizationBillStatuses = void 0;
14676
15323
  (function (OrganizationBillStatuses) {
14677
15324
  OrganizationBillStatuses[OrganizationBillStatuses["pending"] = 1] = "pending";
@@ -14679,9 +15326,16 @@
14679
15326
  OrganizationBillStatuses[OrganizationBillStatuses["canceled"] = 3] = "canceled";
14680
15327
  })(exports.OrganizationBillStatuses || (exports.OrganizationBillStatuses = {}));
14681
15328
  var OrganizationBillStatusLocalization = (_a$1 = {},
14682
- _a$1[exports.OrganizationBillStatuses.pending] = 'Новый',
14683
- _a$1[exports.OrganizationBillStatuses.paid] = 'Оплачен',
14684
- _a$1[exports.OrganizationBillStatuses.canceled] = 'Отменен',
15329
+ _a$1[Locales.ru] = (_b$1 = {},
15330
+ _b$1[exports.OrganizationBillStatuses.pending] = 'Новый',
15331
+ _b$1[exports.OrganizationBillStatuses.paid] = 'Оплачен',
15332
+ _b$1[exports.OrganizationBillStatuses.canceled] = 'Отменен',
15333
+ _b$1),
15334
+ _a$1[Locales.en] = (_c$1 = {},
15335
+ _c$1[exports.OrganizationBillStatuses.pending] = 'New',
15336
+ _c$1[exports.OrganizationBillStatuses.paid] = 'Paid',
15337
+ _c$1[exports.OrganizationBillStatuses.canceled] = 'Canceled',
15338
+ _c$1),
14685
15339
  _a$1);
14686
15340
  exports.OrganizationBill = /** @class */ (function (_super) {
14687
15341
  __extends(OrganizationBill, _super);
@@ -14723,7 +15377,7 @@
14723
15377
  })
14724
15378
  ], exports.OrganizationBill);
14725
15379
 
14726
- var _a;
15380
+ var _a, _b, _c;
14727
15381
  exports.GameBillStatuses = void 0;
14728
15382
  (function (GameBillStatuses) {
14729
15383
  GameBillStatuses[GameBillStatuses["pending"] = 1] = "pending";
@@ -14731,9 +15385,16 @@
14731
15385
  GameBillStatuses[GameBillStatuses["canceled"] = 3] = "canceled";
14732
15386
  })(exports.GameBillStatuses || (exports.GameBillStatuses = {}));
14733
15387
  var GameBillStatusLocalization = (_a = {},
14734
- _a[exports.GameBillStatuses.pending] = 'Новый',
14735
- _a[exports.GameBillStatuses.paid] = 'Оплачен',
14736
- _a[exports.GameBillStatuses.canceled] = 'Отменен',
15388
+ _a[Locales.ru] = (_b = {},
15389
+ _b[exports.GameBillStatuses.pending] = 'Новый',
15390
+ _b[exports.GameBillStatuses.paid] = 'Оплачен',
15391
+ _b[exports.GameBillStatuses.canceled] = 'Отменен',
15392
+ _b),
15393
+ _a[Locales.en] = (_c = {},
15394
+ _c[exports.GameBillStatuses.pending] = 'New',
15395
+ _c[exports.GameBillStatuses.paid] = 'Paid',
15396
+ _c[exports.GameBillStatuses.canceled] = 'Canceled',
15397
+ _c),
14737
15398
  _a);
14738
15399
  exports.GameBill = /** @class */ (function (_super) {
14739
15400
  __extends(GameBill, _super);
@@ -15357,6 +16018,7 @@
15357
16018
  exports.HockeyGameApi = HockeyGameApi;
15358
16019
  exports.HockeyGameLogTypeLocalization = HockeyGameLogTypeLocalization;
15359
16020
  exports.HockeyPenaltyTypes = HockeyPenaltyTypes;
16021
+ exports.HockeyPenaltyTypesEn = HockeyPenaltyTypesEn;
15360
16022
  exports.HockeyWorkHandLocalization = HockeyWorkHandLocalization;
15361
16023
  exports.HttpCookieInterceptor = HttpCookieInterceptor;
15362
16024
  exports.LeagueApi = LeagueApi;
@@ -15415,6 +16077,7 @@
15415
16077
  exports.WorkHandLocalization = WorkHandLocalization;
15416
16078
  exports.WrestballGameApi = WrestballGameApi;
15417
16079
  exports.WrestballGameLogTypeLocalization = WrestballGameLogTypeLocalization;
16080
+ exports.WrestballWorkHandLocalization = WrestballWorkHandLocalization;
15418
16081
  exports.addItemInArray = addItemInArray;
15419
16082
  exports.addItemsInArray = addItemsInArray;
15420
16083
  exports.applyGameMediaFilters = applyGameMediaFilters;