@mtgame/core 0.1.125 → 0.1.127

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.
@@ -3021,16 +3021,16 @@
3021
3021
  })
3022
3022
  ], exports.TournamentDisqualification);
3023
3023
 
3024
- var _a$h;
3024
+ var _a$i;
3025
3025
  exports.Qualification = void 0;
3026
3026
  (function (Qualification) {
3027
3027
  Qualification[Qualification["practician"] = 1] = "practician";
3028
3028
  Qualification[Qualification["amateur"] = 2] = "amateur";
3029
3029
  })(exports.Qualification || (exports.Qualification = {}));
3030
- var QualificationLocalization = (_a$h = {},
3031
- _a$h[exports.Qualification.practician] = 'Практик',
3032
- _a$h[exports.Qualification.amateur] = 'Любитель',
3033
- _a$h);
3030
+ var QualificationLocalization = (_a$i = {},
3031
+ _a$i[exports.Qualification.practician] = 'Практик',
3032
+ _a$i[exports.Qualification.amateur] = 'Любитель',
3033
+ _a$i);
3034
3034
  exports.LeaguePlayer = /** @class */ (function (_super) {
3035
3035
  __extends(LeaguePlayer, _super);
3036
3036
  function LeaguePlayer() {
@@ -6118,7 +6118,6 @@
6118
6118
  // User statistic
6119
6119
  points: 'points',
6120
6120
  tries: 'tries',
6121
- penalty_tries: 'penaltyTries',
6122
6121
  conversion_kicks: 'conversionKicks',
6123
6122
  conversion_goals: 'conversionGoals',
6124
6123
  conversion_misses: 'conversionMisses',
@@ -6148,6 +6147,7 @@
6148
6147
  plus_minus: 'plusMinus',
6149
6148
  game_time: 'gameTime',
6150
6149
  // Team statistic
6150
+ penalty_tries: 'penaltyTries',
6151
6151
  scrums: 'scrums',
6152
6152
  scrums_won: 'scrumsWon',
6153
6153
  scrums_lost: 'scrumsLost',
@@ -7799,11 +7799,11 @@
7799
7799
  TeamEventTypes[TeamEventTypes["other"] = 2] = "other";
7800
7800
  })(exports.TeamEventTypes || (exports.TeamEventTypes = {}));
7801
7801
 
7802
- var _a$g;
7803
- var TeamEventTypeLocalization = (_a$g = {},
7804
- _a$g[exports.TeamEventTypes.training] = 'Тренировка',
7805
- _a$g[exports.TeamEventTypes.other] = 'Другое',
7806
- _a$g);
7802
+ var _a$h;
7803
+ var TeamEventTypeLocalization = (_a$h = {},
7804
+ _a$h[exports.TeamEventTypes.training] = 'Тренировка',
7805
+ _a$h[exports.TeamEventTypes.other] = 'Другое',
7806
+ _a$h);
7807
7807
 
7808
7808
  exports.TeamEvent = /** @class */ (function (_super) {
7809
7809
  __extends(TeamEvent, _super);
@@ -8403,7 +8403,23 @@
8403
8403
  RugbyFoulSanctions[RugbyFoulSanctions["penalty_shot"] = 4] = "penalty_shot";
8404
8404
  RugbyFoulSanctions[RugbyFoulSanctions["yellow_card"] = 5] = "yellow_card";
8405
8405
  RugbyFoulSanctions[RugbyFoulSanctions["red_card"] = 6] = "red_card";
8406
+ RugbyFoulSanctions[RugbyFoulSanctions["start_kick"] = 7] = "start_kick";
8407
+ RugbyFoulSanctions[RugbyFoulSanctions["twenty_two_meters_kick"] = 8] = "twenty_two_meters_kick";
8408
+ RugbyFoulSanctions[RugbyFoulSanctions["conversion_cancel"] = 9] = "conversion_cancel";
8406
8409
  })(exports.RugbyFoulSanctions || (exports.RugbyFoulSanctions = {}));
8410
+ exports.RugbyFoulGameStage = void 0;
8411
+ (function (RugbyFoulGameStage) {
8412
+ RugbyFoulGameStage[RugbyFoulGameStage["start_kick"] = 1] = "start_kick";
8413
+ RugbyFoulGameStage[RugbyFoulGameStage["open_game"] = 2] = "open_game";
8414
+ RugbyFoulGameStage[RugbyFoulGameStage["tackle"] = 3] = "tackle";
8415
+ RugbyFoulGameStage[RugbyFoulGameStage["ruck_or_maul"] = 4] = "ruck_or_maul";
8416
+ RugbyFoulGameStage[RugbyFoulGameStage["scrum"] = 5] = "scrum";
8417
+ RugbyFoulGameStage[RugbyFoulGameStage["out_and_lineout"] = 6] = "out_and_lineout";
8418
+ RugbyFoulGameStage[RugbyFoulGameStage["scoring_field"] = 7] = "scoring_field";
8419
+ RugbyFoulGameStage[RugbyFoulGameStage["kick_on_goal"] = 8] = "kick_on_goal";
8420
+ RugbyFoulGameStage[RugbyFoulGameStage["free_kick"] = 9] = "free_kick";
8421
+ RugbyFoulGameStage[RugbyFoulGameStage["team"] = 10] = "team";
8422
+ })(exports.RugbyFoulGameStage || (exports.RugbyFoulGameStage = {}));
8407
8423
  exports.RugbyFoulType = /** @class */ (function (_super) {
8408
8424
  __extends(RugbyFoulType, _super);
8409
8425
  function RugbyFoulType() {
@@ -8425,14 +8441,16 @@
8425
8441
  id: 'id',
8426
8442
  name: 'name',
8427
8443
  sanction: 'sanction',
8444
+ game_stage: 'gameStage',
8428
8445
  },
8429
8446
  relation: {
8430
- sanction: listField(enumField(exports.RugbyFoulSanctions))
8447
+ sanction: listField(enumField(exports.RugbyFoulSanctions)),
8448
+ gameStage: enumField(exports.RugbyFoulGameStage),
8431
8449
  }
8432
8450
  })
8433
8451
  ], exports.RugbyFoulType);
8434
8452
 
8435
- var _a$f;
8453
+ var _a$g;
8436
8454
  exports.RugbyGameLogTypes = void 0;
8437
8455
  (function (RugbyGameLogTypes) {
8438
8456
  RugbyGameLogTypes[RugbyGameLogTypes["enter_game"] = 1] = "enter_game";
@@ -8478,20 +8496,22 @@
8478
8496
  RugbyGameLogTypes[RugbyGameLogTypes["twenty_two_meters_kick"] = 40] = "twenty_two_meters_kick";
8479
8497
  RugbyGameLogTypes[RugbyGameLogTypes["goal_kick"] = 41] = "goal_kick";
8480
8498
  })(exports.RugbyGameLogTypes || (exports.RugbyGameLogTypes = {}));
8481
- var RUGBY_GAME_LOG_TYPE_POINTS = (_a$f = {},
8482
- _a$f[exports.RugbyGameLogTypes.penalty_try] = 7,
8483
- _a$f[exports.RugbyGameLogTypes.try] = 5,
8484
- _a$f[exports.RugbyGameLogTypes.conversion_goal] = 2,
8485
- _a$f[exports.RugbyGameLogTypes.penalty_goal] = 3,
8486
- _a$f[exports.RugbyGameLogTypes.drop_goal] = 3,
8487
- _a$f[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
8488
- _a$f);
8499
+ var RUGBY_GAME_LOG_TYPE_POINTS = (_a$g = {},
8500
+ _a$g[exports.RugbyGameLogTypes.penalty_try] = 7,
8501
+ _a$g[exports.RugbyGameLogTypes.try] = 5,
8502
+ _a$g[exports.RugbyGameLogTypes.conversion_goal] = 2,
8503
+ _a$g[exports.RugbyGameLogTypes.penalty_goal] = 3,
8504
+ _a$g[exports.RugbyGameLogTypes.drop_goal] = 3,
8505
+ _a$g[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
8506
+ _a$g);
8489
8507
  var RUGBY_TEAM_LOG_TYPES = [
8490
8508
  exports.RugbyGameLogTypes.timeout, exports.RugbyGameLogTypes.scrum_won, exports.RugbyGameLogTypes.scrum_lost, exports.RugbyGameLogTypes.scrum_won_free,
8491
8509
  exports.RugbyGameLogTypes.lineout_won, exports.RugbyGameLogTypes.lineout_lost,
8492
8510
  exports.RugbyGameLogTypes.quick_throw, exports.RugbyGameLogTypes.ruck_won, exports.RugbyGameLogTypes.ruck_lost,
8493
8511
  exports.RugbyGameLogTypes.maul_won, exports.RugbyGameLogTypes.maul_lost, exports.RugbyGameLogTypes.team_foul,
8494
8512
  exports.RugbyGameLogTypes.penalty_kick_to_touch, exports.RugbyGameLogTypes.tap_penalty,
8513
+ exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick,
8514
+ exports.RugbyGameLogTypes.penalty_try
8495
8515
  ];
8496
8516
  exports.RugbyGameLog = /** @class */ (function (_super) {
8497
8517
  __extends(RugbyGameLog, _super);
@@ -8566,12 +8586,14 @@
8566
8586
  is_highlight: 'isHighlight',
8567
8587
  foul_type: 'foulType',
8568
8588
  foul_sanction: 'foulSanction',
8589
+ foul_game_stage: 'foulGameStage',
8569
8590
  },
8570
8591
  relation: {
8571
8592
  datetime: DateTimeField,
8572
8593
  logType: enumField(exports.RugbyGameLogTypes),
8573
8594
  foulType: exports.RugbyFoulType,
8574
8595
  foulSanction: enumField(exports.RugbyFoulSanctions),
8596
+ foulGameStage: enumField(exports.RugbyFoulGameStage),
8575
8597
  }
8576
8598
  })
8577
8599
  ], exports.RugbyGameLog);
@@ -11035,215 +11057,232 @@
11035
11057
  { type: ConfigService }
11036
11058
  ]; };
11037
11059
 
11038
- var _a$e;
11039
- var BasketballGameLogTypeLocalization = (_a$e = {},
11040
- _a$e[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
11041
- _a$e[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
11042
- _a$e[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
11043
- _a$e[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
11044
- _a$e[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
11045
- _a$e[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
11046
- _a$e[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
11047
- _a$e[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
11048
- _a$e[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
11049
- _a$e[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
11050
- _a$e[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
11051
- _a$e[exports.BasketballGameLogTypes.assist] = 'Передача',
11052
- _a$e[exports.BasketballGameLogTypes.block] = 'Блокшот',
11053
- _a$e[exports.BasketballGameLogTypes.rebound] = 'Подбор',
11054
- _a$e[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
11055
- _a$e[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
11056
- _a$e[exports.BasketballGameLogTypes.steal] = 'Перехват',
11057
- _a$e[exports.BasketballGameLogTypes.turnover] = 'Потеря',
11058
- _a$e[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
11059
- _a$e[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
11060
- _a$e[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
11061
- _a$e[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
11062
- _a$e[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
11063
- _a$e);
11060
+ var _a$f;
11061
+ var BasketballGameLogTypeLocalization = (_a$f = {},
11062
+ _a$f[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
11063
+ _a$f[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
11064
+ _a$f[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
11065
+ _a$f[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
11066
+ _a$f[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
11067
+ _a$f[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
11068
+ _a$f[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
11069
+ _a$f[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
11070
+ _a$f[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
11071
+ _a$f[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
11072
+ _a$f[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
11073
+ _a$f[exports.BasketballGameLogTypes.assist] = 'Передача',
11074
+ _a$f[exports.BasketballGameLogTypes.block] = 'Блокшот',
11075
+ _a$f[exports.BasketballGameLogTypes.rebound] = 'Подбор',
11076
+ _a$f[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
11077
+ _a$f[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
11078
+ _a$f[exports.BasketballGameLogTypes.steal] = 'Перехват',
11079
+ _a$f[exports.BasketballGameLogTypes.turnover] = 'Потеря',
11080
+ _a$f[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
11081
+ _a$f[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
11082
+ _a$f[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
11083
+ _a$f[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
11084
+ _a$f[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
11085
+ _a$f);
11064
11086
 
11065
- var _a$d;
11066
- var BasketballGameSubLogTypesLocalization = (_a$d = {},
11087
+ var _a$e;
11088
+ var BasketballGameSubLogTypesLocalization = (_a$e = {},
11067
11089
  // Shots
11068
- _a$d[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
11069
- _a$d[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
11070
- _a$d[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
11071
- _a$d[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
11072
- _a$d[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
11073
- _a$d[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
11074
- _a$d[exports.BasketballSubLogTypes.dunk] = 'Данк',
11075
- _a$d[exports.BasketballSubLogTypes.layup] = 'Лэйап',
11076
- _a$d[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
11077
- _a$d[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
11078
- _a$d[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
11090
+ _a$e[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
11091
+ _a$e[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
11092
+ _a$e[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
11093
+ _a$e[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
11094
+ _a$e[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
11095
+ _a$e[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
11096
+ _a$e[exports.BasketballSubLogTypes.dunk] = 'Данк',
11097
+ _a$e[exports.BasketballSubLogTypes.layup] = 'Лэйап',
11098
+ _a$e[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
11099
+ _a$e[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
11100
+ _a$e[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
11079
11101
  // foul
11080
- _a$d[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
11081
- _a$d[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
11082
- _a$d[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
11102
+ _a$e[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
11103
+ _a$e[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
11104
+ _a$e[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
11083
11105
  // Turnover
11084
- _a$d[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
11085
- _a$d[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
11086
- _a$d[exports.BasketballSubLogTypes.travel] = 'Пробежка',
11087
- _a$d[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
11088
- _a$d[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
11089
- _a$d[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
11090
- _a$d[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
11091
- _a$d[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
11092
- _a$d[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
11106
+ _a$e[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
11107
+ _a$e[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
11108
+ _a$e[exports.BasketballSubLogTypes.travel] = 'Пробежка',
11109
+ _a$e[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
11110
+ _a$e[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
11111
+ _a$e[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
11112
+ _a$e[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
11113
+ _a$e[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
11114
+ _a$e[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
11115
+ _a$e);
11116
+
11117
+ var _a$d;
11118
+ var HockeyGameLogTypeLocalization = (_a$d = {},
11119
+ _a$d[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
11120
+ _a$d[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
11121
+ _a$d[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
11122
+ _a$d[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11123
+ _a$d[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11124
+ _a$d[exports.HockeyGameLogTypes.goal] = 'Гол',
11125
+ _a$d[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
11126
+ _a$d[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
11127
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
11128
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
11129
+ _a$d[exports.HockeyGameLogTypes.assist] = 'Передача',
11130
+ _a$d[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
11131
+ _a$d[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
11132
+ _a$d[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
11133
+ _a$d[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
11134
+ _a$d[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
11135
+ _a$d[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
11136
+ _a$d[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
11137
+ _a$d[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
11138
+ _a$d[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
11139
+ _a$d[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
11140
+ _a$d[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
11141
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11142
+ _a$d[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
11143
+ _a$d[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
11144
+ _a$d[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
11093
11145
  _a$d);
11094
11146
 
11095
11147
  var _a$c;
11096
- var HockeyGameLogTypeLocalization = (_a$c = {},
11097
- _a$c[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
11098
- _a$c[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
11099
- _a$c[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
11100
- _a$c[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11101
- _a$c[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11102
- _a$c[exports.HockeyGameLogTypes.goal] = 'Гол',
11103
- _a$c[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
11104
- _a$c[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
11105
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
11106
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
11107
- _a$c[exports.HockeyGameLogTypes.assist] = 'Передача',
11108
- _a$c[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
11109
- _a$c[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
11110
- _a$c[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
11111
- _a$c[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
11112
- _a$c[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
11113
- _a$c[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
11114
- _a$c[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
11115
- _a$c[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
11116
- _a$c[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
11117
- _a$c[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
11118
- _a$c[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
11119
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11120
- _a$c[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
11121
- _a$c[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
11122
- _a$c[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
11148
+ var FootballGameLogTypeLocalization = (_a$c = {},
11149
+ _a$c[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
11150
+ _a$c[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
11151
+ _a$c[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
11152
+ _a$c[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
11153
+ _a$c[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
11154
+ _a$c[exports.FootballGameLogTypes.goal] = 'Гол',
11155
+ _a$c[exports.FootballGameLogTypes.assist] = 'Передача',
11156
+ _a$c[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
11157
+ _a$c[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
11158
+ _a$c[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
11159
+ _a$c[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
11160
+ _a$c[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
11161
+ _a$c[exports.FootballGameLogTypes.corner] = 'Угловой',
11162
+ _a$c[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
11163
+ _a$c[exports.FootballGameLogTypes.save] = 'Отражен удар',
11164
+ _a$c[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
11165
+ _a$c[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
11166
+ _a$c[exports.FootballGameLogTypes.foul] = 'Фол',
11167
+ _a$c[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
11168
+ _a$c[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
11169
+ _a$c[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
11170
+ _a$c[exports.FootballGameLogTypes.loss] = 'Потеря',
11171
+ _a$c[exports.FootballGameLogTypes.steal] = 'Перехват',
11172
+ _a$c[exports.FootballGameLogTypes.out] = 'Аут',
11173
+ _a$c[exports.FootballGameLogTypes.timeout] = 'Таймаут',
11174
+ _a$c[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
11175
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
11176
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
11177
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
11123
11178
  _a$c);
11124
11179
 
11125
11180
  var _a$b;
11126
- var FootballGameLogTypeLocalization = (_a$b = {},
11127
- _a$b[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
11128
- _a$b[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
11129
- _a$b[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
11130
- _a$b[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
11131
- _a$b[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
11132
- _a$b[exports.FootballGameLogTypes.goal] = 'Гол',
11133
- _a$b[exports.FootballGameLogTypes.assist] = 'Передача',
11134
- _a$b[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
11135
- _a$b[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
11136
- _a$b[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
11137
- _a$b[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
11138
- _a$b[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
11139
- _a$b[exports.FootballGameLogTypes.corner] = 'Угловой',
11140
- _a$b[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
11141
- _a$b[exports.FootballGameLogTypes.save] = 'Отражен удар',
11142
- _a$b[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
11143
- _a$b[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
11144
- _a$b[exports.FootballGameLogTypes.foul] = 'Фол',
11145
- _a$b[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
11146
- _a$b[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
11147
- _a$b[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
11148
- _a$b[exports.FootballGameLogTypes.loss] = 'Потеря',
11149
- _a$b[exports.FootballGameLogTypes.steal] = 'Перехват',
11150
- _a$b[exports.FootballGameLogTypes.out] = 'Аут',
11151
- _a$b[exports.FootballGameLogTypes.timeout] = 'Таймаут',
11152
- _a$b[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
11153
- _a$b[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
11154
- _a$b[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
11155
- _a$b[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
11181
+ var HandballGameLogTypeLocalization = (_a$b = {},
11182
+ _a$b[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
11183
+ _a$b[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
11184
+ _a$b[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
11185
+ _a$b[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
11186
+ _a$b[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11187
+ _a$b[exports.HandballGameLogTypes.goal] = 'Гол',
11188
+ _a$b[exports.HandballGameLogTypes.assist] = 'Передача',
11189
+ _a$b[exports.HandballGameLogTypes.penalty_miss] = ' промах',
11190
+ _a$b[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
11191
+ _a$b[exports.HandballGameLogTypes.penalty_goal] = ' гол',
11192
+ _a$b[exports.HandballGameLogTypes.save] = 'Сэйв',
11193
+ _a$b[exports.HandballGameLogTypes.penalty_save] = 'Сэйв ',
11194
+ _a$b[exports.HandballGameLogTypes.foul] = 'Фол',
11195
+ _a$b[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
11196
+ _a$b[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
11197
+ _a$b[exports.HandballGameLogTypes.two_minute_foul] = ' минутный штраф',
11198
+ _a$b[exports.HandballGameLogTypes.turnover] = 'Потеря',
11199
+ _a$b[exports.HandballGameLogTypes.steal] = 'Перехват',
11200
+ _a$b[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
11201
+ _a$b[exports.HandballGameLogTypes.timeout] = 'Таймаут',
11156
11202
  _a$b);
11157
11203
 
11158
11204
  var _a$a;
11159
- var HandballGameLogTypeLocalization = (_a$a = {},
11160
- _a$a[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
11161
- _a$a[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
11162
- _a$a[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
11163
- _a$a[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
11164
- _a$a[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11165
- _a$a[exports.HandballGameLogTypes.goal] = 'Гол',
11166
- _a$a[exports.HandballGameLogTypes.assist] = 'Передача',
11167
- _a$a[exports.HandballGameLogTypes.penalty_miss] = ' промах',
11168
- _a$a[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
11169
- _a$a[exports.HandballGameLogTypes.penalty_goal] = ' гол',
11170
- _a$a[exports.HandballGameLogTypes.save] = 'Сэйв',
11171
- _a$a[exports.HandballGameLogTypes.penalty_save] = 'Сэйв ',
11172
- _a$a[exports.HandballGameLogTypes.foul] = 'Фол',
11173
- _a$a[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
11174
- _a$a[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
11175
- _a$a[exports.HandballGameLogTypes.two_minute_foul] = '2х минутный штраф',
11176
- _a$a[exports.HandballGameLogTypes.turnover] = 'Потеря',
11177
- _a$a[exports.HandballGameLogTypes.steal] = 'Перехват',
11178
- _a$a[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
11179
- _a$a[exports.HandballGameLogTypes.timeout] = 'Таймаут',
11205
+ var WaterpoloGameLogTypeLocalization = (_a$a = {},
11206
+ _a$a[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
11207
+ _a$a[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
11208
+ _a$a[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
11209
+ _a$a[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11210
+ _a$a[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11211
+ _a$a[exports.WaterpoloGameLogTypes.goal] = 'Гол',
11212
+ _a$a[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
11213
+ _a$a[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
11214
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
11215
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
11216
+ _a$a[exports.WaterpoloGameLogTypes.assist] = 'Передача',
11217
+ _a$a[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
11218
+ _a$a[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
11219
+ _a$a[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 4 мин. штраф',
11220
+ _a$a[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление до конца матча',
11221
+ _a$a[exports.WaterpoloGameLogTypes.foul] = 'Фол',
11222
+ _a$a[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
11223
+ _a$a[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
11224
+ _a$a[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
11225
+ _a$a[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
11226
+ _a$a[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
11227
+ _a$a[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок',
11228
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11229
+ _a$a[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
11230
+ _a$a[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
11231
+ _a$a[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
11232
+ _a$a[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
11233
+ _a$a[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
11234
+ _a$a[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
11235
+ _a$a[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
11236
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Свободный удар - гол',
11237
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Свободный удар в створ',
11238
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Свободный удар мимо',
11239
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Свободный удар пас',
11240
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_self] = 'Свободный удар розыгрыш',
11241
+ _a$a[exports.WaterpoloGameLogTypes.corner_goal] = 'Угловой - гол',
11242
+ _a$a[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Угловой в створ',
11243
+ _a$a[exports.WaterpoloGameLogTypes.corner_miss] = 'Угловой мимо',
11244
+ _a$a[exports.WaterpoloGameLogTypes.corner_pass] = 'Угловой пас',
11245
+ _a$a[exports.WaterpoloGameLogTypes.corner_self] = 'Угловой розыгрыш',
11180
11246
  _a$a);
11181
11247
 
11182
11248
  var _a$9;
11183
- var WaterpoloGameLogTypeLocalization = (_a$9 = {},
11184
- _a$9[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
11185
- _a$9[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
11186
- _a$9[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
11187
- _a$9[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11188
- _a$9[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11189
- _a$9[exports.WaterpoloGameLogTypes.goal] = 'Гол',
11190
- _a$9[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
11191
- _a$9[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
11192
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
11193
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
11194
- _a$9[exports.WaterpoloGameLogTypes.assist] = 'Передача',
11195
- _a$9[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
11196
- _a$9[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
11197
- _a$9[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 4 мин. штраф',
11198
- _a$9[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление до конца матча',
11199
- _a$9[exports.WaterpoloGameLogTypes.foul] = 'Фол',
11200
- _a$9[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
11201
- _a$9[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
11202
- _a$9[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
11203
- _a$9[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
11204
- _a$9[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
11205
- _a$9[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок',
11206
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11207
- _a$9[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
11208
- _a$9[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
11209
- _a$9[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
11210
- _a$9[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
11211
- _a$9[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
11212
- _a$9[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
11213
- _a$9[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
11214
- _a$9[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Свободный удар - гол',
11215
- _a$9[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Свободный удар в створ',
11216
- _a$9[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Свободный удар мимо',
11217
- _a$9[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Свободный удар пас',
11218
- _a$9[exports.WaterpoloGameLogTypes.free_kick_self] = 'Свободный удар розыгрыш',
11219
- _a$9[exports.WaterpoloGameLogTypes.corner_goal] = 'Угловой - гол',
11220
- _a$9[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Угловой в створ',
11221
- _a$9[exports.WaterpoloGameLogTypes.corner_miss] = 'Угловой мимо',
11222
- _a$9[exports.WaterpoloGameLogTypes.corner_pass] = 'Угловой пас',
11223
- _a$9[exports.WaterpoloGameLogTypes.corner_self] = 'Угловой розыгрыш',
11249
+ var OvertimeTypeLocalization = (_a$9 = {},
11250
+ _a$9[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
11251
+ _a$9[exports.OvertimeTypes.to_score_total] = 'До N очков',
11252
+ _a$9[exports.OvertimeTypes.time] = 'По времени',
11253
+ _a$9[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
11254
+ _a$9[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
11255
+ _a$9[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
11256
+ _a$9[exports.OvertimeTypes.bullitts] = 'Буллиты',
11257
+ _a$9[exports.OvertimeTypes.penalties] = 'Пенальти',
11258
+ _a$9[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
11224
11259
  _a$9);
11225
11260
 
11226
11261
  var _a$8;
11227
- var OvertimeTypeLocalization = (_a$8 = {},
11228
- _a$8[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
11229
- _a$8[exports.OvertimeTypes.to_score_total] = 'До N очков',
11230
- _a$8[exports.OvertimeTypes.time] = 'По времени',
11231
- _a$8[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
11232
- _a$8[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
11233
- _a$8[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
11234
- _a$8[exports.OvertimeTypes.bullitts] = 'Буллиты',
11235
- _a$8[exports.OvertimeTypes.penalties] = 'Пенальти',
11236
- _a$8[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
11262
+ var RugbyFoulSanctionLocalization = (_a$8 = {},
11263
+ _a$8[exports.RugbyFoulSanctions.scrum] = 'Схватка',
11264
+ _a$8[exports.RugbyFoulSanctions.lineout] = 'Корридор',
11265
+ _a$8[exports.RugbyFoulSanctions.start_kick] = 'Начальный удар',
11266
+ _a$8[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
11267
+ _a$8[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
11268
+ _a$8[exports.RugbyFoulSanctions.twenty_two_meters_kick] = 'Удар с 22 метров',
11269
+ _a$8[exports.RugbyFoulSanctions.conversion_cancel] = 'Отмена удара',
11270
+ _a$8[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
11271
+ _a$8[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
11237
11272
  _a$8);
11238
11273
 
11239
11274
  var _a$7;
11240
- var RugbyFoulSanctionLocalization = (_a$7 = {},
11241
- _a$7[exports.RugbyFoulSanctions.scrum] = 'Схватка',
11242
- _a$7[exports.RugbyFoulSanctions.lineout] = 'Корридор',
11243
- _a$7[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
11244
- _a$7[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
11245
- _a$7[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
11246
- _a$7[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
11275
+ var RugbyFoulGameStageLocalization = (_a$7 = {},
11276
+ _a$7[exports.RugbyFoulGameStage.start_kick] = 'Начальные удары',
11277
+ _a$7[exports.RugbyFoulGameStage.open_game] = 'Открытая игра',
11278
+ _a$7[exports.RugbyFoulGameStage.tackle] = 'Игроки на земле, Захват',
11279
+ _a$7[exports.RugbyFoulGameStage.ruck_or_maul] = 'Рак, мол',
11280
+ _a$7[exports.RugbyFoulGameStage.scrum] = 'Схватка',
11281
+ _a$7[exports.RugbyFoulGameStage.out_and_lineout] = 'Аут и коридор',
11282
+ _a$7[exports.RugbyFoulGameStage.scoring_field] = 'Зачетное поле',
11283
+ _a$7[exports.RugbyFoulGameStage.kick_on_goal] = 'Удар по воротам',
11284
+ _a$7[exports.RugbyFoulGameStage.free_kick] = 'Штрафной, свободный удар',
11285
+ _a$7[exports.RugbyFoulGameStage.team] = 'Команда',
11247
11286
  _a$7);
11248
11287
 
11249
11288
  var _a$6;
@@ -12118,6 +12157,7 @@
12118
12157
  exports.RUGBY_GAME_LOG_TYPE_POINTS = RUGBY_GAME_LOG_TYPE_POINTS;
12119
12158
  exports.RUGBY_TEAM_LOG_TYPES = RUGBY_TEAM_LOG_TYPES;
12120
12159
  exports.ReferenceApi = ReferenceApi;
12160
+ exports.RugbyFoulGameStageLocalization = RugbyFoulGameStageLocalization;
12121
12161
  exports.RugbyFoulSanctionLocalization = RugbyFoulSanctionLocalization;
12122
12162
  exports.RugbyGameApi = RugbyGameApi;
12123
12163
  exports.RugbyGameLogTypeLocalization = RugbyGameLogTypeLocalization;