@mtgame/core 0.1.126 → 0.1.128

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() {
@@ -6090,6 +6090,13 @@
6090
6090
  enumerable: false,
6091
6091
  configurable: true
6092
6092
  });
6093
+ Object.defineProperty(RugbyStatistic.prototype, "totalFouls", {
6094
+ get: function () {
6095
+ return (this.fouls || 0) + (this.teamFouls || 0);
6096
+ },
6097
+ enumerable: false,
6098
+ configurable: true
6099
+ });
6093
6100
  RugbyStatistic.toFront = function (data) { };
6094
6101
  RugbyStatistic.toBack = function (data) { };
6095
6102
  return RugbyStatistic;
@@ -6118,7 +6125,6 @@
6118
6125
  // User statistic
6119
6126
  points: 'points',
6120
6127
  tries: 'tries',
6121
- penalty_tries: 'penaltyTries',
6122
6128
  conversion_kicks: 'conversionKicks',
6123
6129
  conversion_goals: 'conversionGoals',
6124
6130
  conversion_misses: 'conversionMisses',
@@ -6148,6 +6154,7 @@
6148
6154
  plus_minus: 'plusMinus',
6149
6155
  game_time: 'gameTime',
6150
6156
  // Team statistic
6157
+ penalty_tries: 'penaltyTries',
6151
6158
  scrums: 'scrums',
6152
6159
  scrums_won: 'scrumsWon',
6153
6160
  scrums_lost: 'scrumsLost',
@@ -7799,11 +7806,11 @@
7799
7806
  TeamEventTypes[TeamEventTypes["other"] = 2] = "other";
7800
7807
  })(exports.TeamEventTypes || (exports.TeamEventTypes = {}));
7801
7808
 
7802
- var _a$g;
7803
- var TeamEventTypeLocalization = (_a$g = {},
7804
- _a$g[exports.TeamEventTypes.training] = 'Тренировка',
7805
- _a$g[exports.TeamEventTypes.other] = 'Другое',
7806
- _a$g);
7809
+ var _a$h;
7810
+ var TeamEventTypeLocalization = (_a$h = {},
7811
+ _a$h[exports.TeamEventTypes.training] = 'Тренировка',
7812
+ _a$h[exports.TeamEventTypes.other] = 'Другое',
7813
+ _a$h);
7807
7814
 
7808
7815
  exports.TeamEvent = /** @class */ (function (_super) {
7809
7816
  __extends(TeamEvent, _super);
@@ -8347,6 +8354,13 @@
8347
8354
  enumerable: false,
8348
8355
  configurable: true
8349
8356
  });
8357
+ Object.defineProperty(RugbyGameStatistic.prototype, "totalFouls", {
8358
+ get: function () {
8359
+ return (this.fouls || 0) + (this.teamFouls || 0);
8360
+ },
8361
+ enumerable: false,
8362
+ configurable: true
8363
+ });
8350
8364
  RugbyGameStatistic.toFront = function (data) { };
8351
8365
  RugbyGameStatistic.toBack = function (data) { };
8352
8366
  return RugbyGameStatistic;
@@ -8386,6 +8400,8 @@
8386
8400
  carries_over_gainline: 'carriesOverGainline',
8387
8401
  foot_field_shots: 'footFieldShots',
8388
8402
  foot_out_shots: 'footOutShots',
8403
+ fouls: 'fouls',
8404
+ team_fouls: 'teamFouls',
8389
8405
  game_time: 'gameTime',
8390
8406
  plus_minus: 'plusMinus'
8391
8407
  },
@@ -8403,7 +8419,23 @@
8403
8419
  RugbyFoulSanctions[RugbyFoulSanctions["penalty_shot"] = 4] = "penalty_shot";
8404
8420
  RugbyFoulSanctions[RugbyFoulSanctions["yellow_card"] = 5] = "yellow_card";
8405
8421
  RugbyFoulSanctions[RugbyFoulSanctions["red_card"] = 6] = "red_card";
8422
+ RugbyFoulSanctions[RugbyFoulSanctions["start_kick"] = 7] = "start_kick";
8423
+ RugbyFoulSanctions[RugbyFoulSanctions["twenty_two_meters_kick"] = 8] = "twenty_two_meters_kick";
8424
+ RugbyFoulSanctions[RugbyFoulSanctions["conversion_cancel"] = 9] = "conversion_cancel";
8406
8425
  })(exports.RugbyFoulSanctions || (exports.RugbyFoulSanctions = {}));
8426
+ exports.RugbyFoulGameStage = void 0;
8427
+ (function (RugbyFoulGameStage) {
8428
+ RugbyFoulGameStage[RugbyFoulGameStage["start_kick"] = 1] = "start_kick";
8429
+ RugbyFoulGameStage[RugbyFoulGameStage["open_game"] = 2] = "open_game";
8430
+ RugbyFoulGameStage[RugbyFoulGameStage["tackle"] = 3] = "tackle";
8431
+ RugbyFoulGameStage[RugbyFoulGameStage["ruck_or_maul"] = 4] = "ruck_or_maul";
8432
+ RugbyFoulGameStage[RugbyFoulGameStage["scrum"] = 5] = "scrum";
8433
+ RugbyFoulGameStage[RugbyFoulGameStage["out_and_lineout"] = 6] = "out_and_lineout";
8434
+ RugbyFoulGameStage[RugbyFoulGameStage["scoring_field"] = 7] = "scoring_field";
8435
+ RugbyFoulGameStage[RugbyFoulGameStage["kick_on_goal"] = 8] = "kick_on_goal";
8436
+ RugbyFoulGameStage[RugbyFoulGameStage["free_kick"] = 9] = "free_kick";
8437
+ RugbyFoulGameStage[RugbyFoulGameStage["team"] = 10] = "team";
8438
+ })(exports.RugbyFoulGameStage || (exports.RugbyFoulGameStage = {}));
8407
8439
  exports.RugbyFoulType = /** @class */ (function (_super) {
8408
8440
  __extends(RugbyFoulType, _super);
8409
8441
  function RugbyFoulType() {
@@ -8425,14 +8457,16 @@
8425
8457
  id: 'id',
8426
8458
  name: 'name',
8427
8459
  sanction: 'sanction',
8460
+ game_stage: 'gameStage',
8428
8461
  },
8429
8462
  relation: {
8430
- sanction: listField(enumField(exports.RugbyFoulSanctions))
8463
+ sanction: listField(enumField(exports.RugbyFoulSanctions)),
8464
+ gameStage: enumField(exports.RugbyFoulGameStage),
8431
8465
  }
8432
8466
  })
8433
8467
  ], exports.RugbyFoulType);
8434
8468
 
8435
- var _a$f;
8469
+ var _a$g;
8436
8470
  exports.RugbyGameLogTypes = void 0;
8437
8471
  (function (RugbyGameLogTypes) {
8438
8472
  RugbyGameLogTypes[RugbyGameLogTypes["enter_game"] = 1] = "enter_game";
@@ -8478,21 +8512,22 @@
8478
8512
  RugbyGameLogTypes[RugbyGameLogTypes["twenty_two_meters_kick"] = 40] = "twenty_two_meters_kick";
8479
8513
  RugbyGameLogTypes[RugbyGameLogTypes["goal_kick"] = 41] = "goal_kick";
8480
8514
  })(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);
8515
+ var RUGBY_GAME_LOG_TYPE_POINTS = (_a$g = {},
8516
+ _a$g[exports.RugbyGameLogTypes.penalty_try] = 7,
8517
+ _a$g[exports.RugbyGameLogTypes.try] = 5,
8518
+ _a$g[exports.RugbyGameLogTypes.conversion_goal] = 2,
8519
+ _a$g[exports.RugbyGameLogTypes.penalty_goal] = 3,
8520
+ _a$g[exports.RugbyGameLogTypes.drop_goal] = 3,
8521
+ _a$g[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
8522
+ _a$g);
8489
8523
  var RUGBY_TEAM_LOG_TYPES = [
8490
8524
  exports.RugbyGameLogTypes.timeout, exports.RugbyGameLogTypes.scrum_won, exports.RugbyGameLogTypes.scrum_lost, exports.RugbyGameLogTypes.scrum_won_free,
8491
8525
  exports.RugbyGameLogTypes.lineout_won, exports.RugbyGameLogTypes.lineout_lost,
8492
8526
  exports.RugbyGameLogTypes.quick_throw, exports.RugbyGameLogTypes.ruck_won, exports.RugbyGameLogTypes.ruck_lost,
8493
8527
  exports.RugbyGameLogTypes.maul_won, exports.RugbyGameLogTypes.maul_lost, exports.RugbyGameLogTypes.team_foul,
8494
8528
  exports.RugbyGameLogTypes.penalty_kick_to_touch, exports.RugbyGameLogTypes.tap_penalty,
8495
- exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick
8529
+ exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick,
8530
+ exports.RugbyGameLogTypes.penalty_try
8496
8531
  ];
8497
8532
  exports.RugbyGameLog = /** @class */ (function (_super) {
8498
8533
  __extends(RugbyGameLog, _super);
@@ -8567,12 +8602,14 @@
8567
8602
  is_highlight: 'isHighlight',
8568
8603
  foul_type: 'foulType',
8569
8604
  foul_sanction: 'foulSanction',
8605
+ foul_game_stage: 'foulGameStage',
8570
8606
  },
8571
8607
  relation: {
8572
8608
  datetime: DateTimeField,
8573
8609
  logType: enumField(exports.RugbyGameLogTypes),
8574
8610
  foulType: exports.RugbyFoulType,
8575
8611
  foulSanction: enumField(exports.RugbyFoulSanctions),
8612
+ foulGameStage: enumField(exports.RugbyFoulGameStage),
8576
8613
  }
8577
8614
  })
8578
8615
  ], exports.RugbyGameLog);
@@ -11036,215 +11073,232 @@
11036
11073
  { type: ConfigService }
11037
11074
  ]; };
11038
11075
 
11039
- var _a$e;
11040
- var BasketballGameLogTypeLocalization = (_a$e = {},
11041
- _a$e[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
11042
- _a$e[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
11043
- _a$e[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
11044
- _a$e[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
11045
- _a$e[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
11046
- _a$e[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
11047
- _a$e[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
11048
- _a$e[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
11049
- _a$e[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
11050
- _a$e[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
11051
- _a$e[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
11052
- _a$e[exports.BasketballGameLogTypes.assist] = 'Передача',
11053
- _a$e[exports.BasketballGameLogTypes.block] = 'Блокшот',
11054
- _a$e[exports.BasketballGameLogTypes.rebound] = 'Подбор',
11055
- _a$e[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
11056
- _a$e[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
11057
- _a$e[exports.BasketballGameLogTypes.steal] = 'Перехват',
11058
- _a$e[exports.BasketballGameLogTypes.turnover] = 'Потеря',
11059
- _a$e[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
11060
- _a$e[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
11061
- _a$e[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
11062
- _a$e[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
11063
- _a$e[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
11064
- _a$e);
11076
+ var _a$f;
11077
+ var BasketballGameLogTypeLocalization = (_a$f = {},
11078
+ _a$f[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
11079
+ _a$f[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
11080
+ _a$f[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
11081
+ _a$f[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
11082
+ _a$f[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
11083
+ _a$f[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
11084
+ _a$f[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
11085
+ _a$f[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
11086
+ _a$f[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
11087
+ _a$f[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
11088
+ _a$f[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
11089
+ _a$f[exports.BasketballGameLogTypes.assist] = 'Передача',
11090
+ _a$f[exports.BasketballGameLogTypes.block] = 'Блокшот',
11091
+ _a$f[exports.BasketballGameLogTypes.rebound] = 'Подбор',
11092
+ _a$f[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
11093
+ _a$f[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
11094
+ _a$f[exports.BasketballGameLogTypes.steal] = 'Перехват',
11095
+ _a$f[exports.BasketballGameLogTypes.turnover] = 'Потеря',
11096
+ _a$f[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
11097
+ _a$f[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
11098
+ _a$f[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
11099
+ _a$f[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
11100
+ _a$f[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
11101
+ _a$f);
11065
11102
 
11066
- var _a$d;
11067
- var BasketballGameSubLogTypesLocalization = (_a$d = {},
11103
+ var _a$e;
11104
+ var BasketballGameSubLogTypesLocalization = (_a$e = {},
11068
11105
  // Shots
11069
- _a$d[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
11070
- _a$d[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
11071
- _a$d[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
11072
- _a$d[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
11073
- _a$d[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
11074
- _a$d[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
11075
- _a$d[exports.BasketballSubLogTypes.dunk] = 'Данк',
11076
- _a$d[exports.BasketballSubLogTypes.layup] = 'Лэйап',
11077
- _a$d[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
11078
- _a$d[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
11079
- _a$d[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
11106
+ _a$e[exports.BasketballSubLogTypes.jump_shot] = 'Джампшот',
11107
+ _a$e[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Степ-бэк',
11108
+ _a$e[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатинг',
11109
+ _a$e[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Фэйдавэй',
11110
+ _a$e[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Пуллап',
11111
+ _a$e[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Турнэраунд',
11112
+ _a$e[exports.BasketballSubLogTypes.dunk] = 'Данк',
11113
+ _a$e[exports.BasketballSubLogTypes.layup] = 'Лэйап',
11114
+ _a$e[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лэйап',
11115
+ _a$e[exports.BasketballSubLogTypes.alley_oop] = 'Алейуп',
11116
+ _a$e[exports.BasketballSubLogTypes.hook_shot] = 'Хукшот',
11080
11117
  // foul
11081
- _a$d[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
11082
- _a$d[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
11083
- _a$d[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
11118
+ _a$e[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
11119
+ _a$e[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
11120
+ _a$e[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
11084
11121
  // Turnover
11085
- _a$d[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
11086
- _a$d[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
11087
- _a$d[exports.BasketballSubLogTypes.travel] = 'Пробежка',
11088
- _a$d[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
11089
- _a$d[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
11090
- _a$d[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
11091
- _a$d[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
11092
- _a$d[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
11093
- _a$d[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
11122
+ _a$e[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
11123
+ _a$e[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
11124
+ _a$e[exports.BasketballSubLogTypes.travel] = 'Пробежка',
11125
+ _a$e[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
11126
+ _a$e[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
11127
+ _a$e[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
11128
+ _a$e[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
11129
+ _a$e[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
11130
+ _a$e[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
11131
+ _a$e);
11132
+
11133
+ var _a$d;
11134
+ var HockeyGameLogTypeLocalization = (_a$d = {},
11135
+ _a$d[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
11136
+ _a$d[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
11137
+ _a$d[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
11138
+ _a$d[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11139
+ _a$d[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11140
+ _a$d[exports.HockeyGameLogTypes.goal] = 'Гол',
11141
+ _a$d[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
11142
+ _a$d[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
11143
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
11144
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
11145
+ _a$d[exports.HockeyGameLogTypes.assist] = 'Передача',
11146
+ _a$d[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
11147
+ _a$d[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
11148
+ _a$d[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
11149
+ _a$d[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
11150
+ _a$d[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
11151
+ _a$d[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
11152
+ _a$d[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
11153
+ _a$d[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
11154
+ _a$d[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
11155
+ _a$d[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
11156
+ _a$d[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
11157
+ _a$d[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11158
+ _a$d[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
11159
+ _a$d[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
11160
+ _a$d[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
11094
11161
  _a$d);
11095
11162
 
11096
11163
  var _a$c;
11097
- var HockeyGameLogTypeLocalization = (_a$c = {},
11098
- _a$c[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
11099
- _a$c[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
11100
- _a$c[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
11101
- _a$c[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11102
- _a$c[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11103
- _a$c[exports.HockeyGameLogTypes.goal] = 'Гол',
11104
- _a$c[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
11105
- _a$c[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
11106
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
11107
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
11108
- _a$c[exports.HockeyGameLogTypes.assist] = 'Передача',
11109
- _a$c[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
11110
- _a$c[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
11111
- _a$c[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
11112
- _a$c[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
11113
- _a$c[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
11114
- _a$c[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
11115
- _a$c[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
11116
- _a$c[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
11117
- _a$c[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
11118
- _a$c[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
11119
- _a$c[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
11120
- _a$c[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11121
- _a$c[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
11122
- _a$c[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
11123
- _a$c[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
11164
+ var FootballGameLogTypeLocalization = (_a$c = {},
11165
+ _a$c[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
11166
+ _a$c[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
11167
+ _a$c[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
11168
+ _a$c[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
11169
+ _a$c[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
11170
+ _a$c[exports.FootballGameLogTypes.goal] = 'Гол',
11171
+ _a$c[exports.FootballGameLogTypes.assist] = 'Передача',
11172
+ _a$c[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
11173
+ _a$c[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
11174
+ _a$c[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
11175
+ _a$c[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
11176
+ _a$c[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
11177
+ _a$c[exports.FootballGameLogTypes.corner] = 'Угловой',
11178
+ _a$c[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
11179
+ _a$c[exports.FootballGameLogTypes.save] = 'Отражен удар',
11180
+ _a$c[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
11181
+ _a$c[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
11182
+ _a$c[exports.FootballGameLogTypes.foul] = 'Фол',
11183
+ _a$c[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
11184
+ _a$c[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
11185
+ _a$c[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
11186
+ _a$c[exports.FootballGameLogTypes.loss] = 'Потеря',
11187
+ _a$c[exports.FootballGameLogTypes.steal] = 'Перехват',
11188
+ _a$c[exports.FootballGameLogTypes.out] = 'Аут',
11189
+ _a$c[exports.FootballGameLogTypes.timeout] = 'Таймаут',
11190
+ _a$c[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
11191
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
11192
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
11193
+ _a$c[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
11124
11194
  _a$c);
11125
11195
 
11126
11196
  var _a$b;
11127
- var FootballGameLogTypeLocalization = (_a$b = {},
11128
- _a$b[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
11129
- _a$b[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
11130
- _a$b[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
11131
- _a$b[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
11132
- _a$b[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
11133
- _a$b[exports.FootballGameLogTypes.goal] = 'Гол',
11134
- _a$b[exports.FootballGameLogTypes.assist] = 'Передача',
11135
- _a$b[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
11136
- _a$b[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
11137
- _a$b[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
11138
- _a$b[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
11139
- _a$b[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
11140
- _a$b[exports.FootballGameLogTypes.corner] = 'Угловой',
11141
- _a$b[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
11142
- _a$b[exports.FootballGameLogTypes.save] = 'Отражен удар',
11143
- _a$b[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
11144
- _a$b[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
11145
- _a$b[exports.FootballGameLogTypes.foul] = 'Фол',
11146
- _a$b[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
11147
- _a$b[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
11148
- _a$b[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
11149
- _a$b[exports.FootballGameLogTypes.loss] = 'Потеря',
11150
- _a$b[exports.FootballGameLogTypes.steal] = 'Перехват',
11151
- _a$b[exports.FootballGameLogTypes.out] = 'Аут',
11152
- _a$b[exports.FootballGameLogTypes.timeout] = 'Таймаут',
11153
- _a$b[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
11154
- _a$b[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
11155
- _a$b[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
11156
- _a$b[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
11197
+ var HandballGameLogTypeLocalization = (_a$b = {},
11198
+ _a$b[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
11199
+ _a$b[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
11200
+ _a$b[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
11201
+ _a$b[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
11202
+ _a$b[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11203
+ _a$b[exports.HandballGameLogTypes.goal] = 'Гол',
11204
+ _a$b[exports.HandballGameLogTypes.assist] = 'Передача',
11205
+ _a$b[exports.HandballGameLogTypes.penalty_miss] = ' промах',
11206
+ _a$b[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
11207
+ _a$b[exports.HandballGameLogTypes.penalty_goal] = ' гол',
11208
+ _a$b[exports.HandballGameLogTypes.save] = 'Сэйв',
11209
+ _a$b[exports.HandballGameLogTypes.penalty_save] = 'Сэйв ',
11210
+ _a$b[exports.HandballGameLogTypes.foul] = 'Фол',
11211
+ _a$b[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
11212
+ _a$b[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
11213
+ _a$b[exports.HandballGameLogTypes.two_minute_foul] = ' минутный штраф',
11214
+ _a$b[exports.HandballGameLogTypes.turnover] = 'Потеря',
11215
+ _a$b[exports.HandballGameLogTypes.steal] = 'Перехват',
11216
+ _a$b[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
11217
+ _a$b[exports.HandballGameLogTypes.timeout] = 'Таймаут',
11157
11218
  _a$b);
11158
11219
 
11159
11220
  var _a$a;
11160
- var HandballGameLogTypeLocalization = (_a$a = {},
11161
- _a$a[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
11162
- _a$a[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
11163
- _a$a[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
11164
- _a$a[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
11165
- _a$a[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11166
- _a$a[exports.HandballGameLogTypes.goal] = 'Гол',
11167
- _a$a[exports.HandballGameLogTypes.assist] = 'Передача',
11168
- _a$a[exports.HandballGameLogTypes.penalty_miss] = ' промах',
11169
- _a$a[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
11170
- _a$a[exports.HandballGameLogTypes.penalty_goal] = ' гол',
11171
- _a$a[exports.HandballGameLogTypes.save] = 'Сэйв',
11172
- _a$a[exports.HandballGameLogTypes.penalty_save] = 'Сэйв ',
11173
- _a$a[exports.HandballGameLogTypes.foul] = 'Фол',
11174
- _a$a[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
11175
- _a$a[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
11176
- _a$a[exports.HandballGameLogTypes.two_minute_foul] = '2х минутный штраф',
11177
- _a$a[exports.HandballGameLogTypes.turnover] = 'Потеря',
11178
- _a$a[exports.HandballGameLogTypes.steal] = 'Перехват',
11179
- _a$a[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
11180
- _a$a[exports.HandballGameLogTypes.timeout] = 'Таймаут',
11221
+ var WaterpoloGameLogTypeLocalization = (_a$a = {},
11222
+ _a$a[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
11223
+ _a$a[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
11224
+ _a$a[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
11225
+ _a$a[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11226
+ _a$a[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11227
+ _a$a[exports.WaterpoloGameLogTypes.goal] = 'Гол',
11228
+ _a$a[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
11229
+ _a$a[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
11230
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
11231
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
11232
+ _a$a[exports.WaterpoloGameLogTypes.assist] = 'Передача',
11233
+ _a$a[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
11234
+ _a$a[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
11235
+ _a$a[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 4 мин. штраф',
11236
+ _a$a[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление до конца матча',
11237
+ _a$a[exports.WaterpoloGameLogTypes.foul] = 'Фол',
11238
+ _a$a[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
11239
+ _a$a[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
11240
+ _a$a[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
11241
+ _a$a[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
11242
+ _a$a[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
11243
+ _a$a[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок',
11244
+ _a$a[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11245
+ _a$a[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
11246
+ _a$a[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
11247
+ _a$a[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
11248
+ _a$a[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
11249
+ _a$a[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
11250
+ _a$a[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
11251
+ _a$a[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
11252
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Свободный удар - гол',
11253
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Свободный удар в створ',
11254
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Свободный удар мимо',
11255
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Свободный удар пас',
11256
+ _a$a[exports.WaterpoloGameLogTypes.free_kick_self] = 'Свободный удар розыгрыш',
11257
+ _a$a[exports.WaterpoloGameLogTypes.corner_goal] = 'Угловой - гол',
11258
+ _a$a[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Угловой в створ',
11259
+ _a$a[exports.WaterpoloGameLogTypes.corner_miss] = 'Угловой мимо',
11260
+ _a$a[exports.WaterpoloGameLogTypes.corner_pass] = 'Угловой пас',
11261
+ _a$a[exports.WaterpoloGameLogTypes.corner_self] = 'Угловой розыгрыш',
11181
11262
  _a$a);
11182
11263
 
11183
11264
  var _a$9;
11184
- var WaterpoloGameLogTypeLocalization = (_a$9 = {},
11185
- _a$9[exports.WaterpoloGameLogTypes.enter_game] = 'Выход на площадку',
11186
- _a$9[exports.WaterpoloGameLogTypes.exit_game] = 'Ушел с площадки',
11187
- _a$9[exports.WaterpoloGameLogTypes.shot_miss] = 'Бросок мимо',
11188
- _a$9[exports.WaterpoloGameLogTypes.shot_on_goal] = 'Бросок по воротам',
11189
- _a$9[exports.WaterpoloGameLogTypes.shot_blocked] = 'Заблокированный бросок',
11190
- _a$9[exports.WaterpoloGameLogTypes.goal] = 'Гол',
11191
- _a$9[exports.WaterpoloGameLogTypes.shootout_attempt] = 'Пенальти промах',
11192
- _a$9[exports.WaterpoloGameLogTypes.shootout_goal] = 'Пенальти гол',
11193
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_attempt] = 'Пенальти промах',
11194
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_goal] = 'Пенальти гол',
11195
- _a$9[exports.WaterpoloGameLogTypes.assist] = 'Передача',
11196
- _a$9[exports.WaterpoloGameLogTypes.block_shot] = 'Блокировка броска',
11197
- _a$9[exports.WaterpoloGameLogTypes.minor_penalty] = 'Удаление на 20 сек.',
11198
- _a$9[exports.WaterpoloGameLogTypes.major_penalty] = 'Удаление + 4 мин. штраф',
11199
- _a$9[exports.WaterpoloGameLogTypes.match_penalty] = 'Удаление до конца матча',
11200
- _a$9[exports.WaterpoloGameLogTypes.foul] = 'Фол',
11201
- _a$9[exports.WaterpoloGameLogTypes.personal_foul] = 'Персональный фол',
11202
- _a$9[exports.WaterpoloGameLogTypes.penalty_shot] = 'Штрафной бросок',
11203
- _a$9[exports.WaterpoloGameLogTypes.face_off_lose] = 'Проигрыш в спринте',
11204
- _a$9[exports.WaterpoloGameLogTypes.face_off_win] = 'Победа в спринте',
11205
- _a$9[exports.WaterpoloGameLogTypes.save] = 'Отражен бросок',
11206
- _a$9[exports.WaterpoloGameLogTypes.shootout_save] = 'Отражен бросок',
11207
- _a$9[exports.WaterpoloGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
11208
- _a$9[exports.WaterpoloGameLogTypes.timeout] = 'Таймаут',
11209
- _a$9[exports.WaterpoloGameLogTypes.penalty_start] = 'Начало штрафного времени',
11210
- _a$9[exports.WaterpoloGameLogTypes.penalty_end] = 'Конец штрафного времени',
11211
- _a$9[exports.WaterpoloGameLogTypes.yellow_card] = 'Желтая карточка',
11212
- _a$9[exports.WaterpoloGameLogTypes.red_card] = 'Красная карточка',
11213
- _a$9[exports.WaterpoloGameLogTypes.loss] = 'Потеря',
11214
- _a$9[exports.WaterpoloGameLogTypes.steal] = 'Перехват',
11215
- _a$9[exports.WaterpoloGameLogTypes.free_kick_goal] = 'Свободный удар - гол',
11216
- _a$9[exports.WaterpoloGameLogTypes.free_kick_on_goal] = 'Свободный удар в створ',
11217
- _a$9[exports.WaterpoloGameLogTypes.free_kick_miss] = 'Свободный удар мимо',
11218
- _a$9[exports.WaterpoloGameLogTypes.free_kick_pass] = 'Свободный удар пас',
11219
- _a$9[exports.WaterpoloGameLogTypes.free_kick_self] = 'Свободный удар розыгрыш',
11220
- _a$9[exports.WaterpoloGameLogTypes.corner_goal] = 'Угловой - гол',
11221
- _a$9[exports.WaterpoloGameLogTypes.corner_on_goal] = 'Угловой в створ',
11222
- _a$9[exports.WaterpoloGameLogTypes.corner_miss] = 'Угловой мимо',
11223
- _a$9[exports.WaterpoloGameLogTypes.corner_pass] = 'Угловой пас',
11224
- _a$9[exports.WaterpoloGameLogTypes.corner_self] = 'Угловой розыгрыш',
11265
+ var OvertimeTypeLocalization = (_a$9 = {},
11266
+ _a$9[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
11267
+ _a$9[exports.OvertimeTypes.to_score_total] = 'До N очков',
11268
+ _a$9[exports.OvertimeTypes.time] = 'По времени',
11269
+ _a$9[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
11270
+ _a$9[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
11271
+ _a$9[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
11272
+ _a$9[exports.OvertimeTypes.bullitts] = 'Буллиты',
11273
+ _a$9[exports.OvertimeTypes.penalties] = 'Пенальти',
11274
+ _a$9[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
11225
11275
  _a$9);
11226
11276
 
11227
11277
  var _a$8;
11228
- var OvertimeTypeLocalization = (_a$8 = {},
11229
- _a$8[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
11230
- _a$8[exports.OvertimeTypes.to_score_total] = 'До N очков',
11231
- _a$8[exports.OvertimeTypes.time] = 'По времени',
11232
- _a$8[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
11233
- _a$8[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
11234
- _a$8[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
11235
- _a$8[exports.OvertimeTypes.bullitts] = 'Буллиты',
11236
- _a$8[exports.OvertimeTypes.penalties] = 'Пенальти',
11237
- _a$8[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
11278
+ var RugbyFoulSanctionLocalization = (_a$8 = {},
11279
+ _a$8[exports.RugbyFoulSanctions.scrum] = 'Схватка',
11280
+ _a$8[exports.RugbyFoulSanctions.lineout] = 'Корридор',
11281
+ _a$8[exports.RugbyFoulSanctions.start_kick] = 'Начальный удар',
11282
+ _a$8[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
11283
+ _a$8[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
11284
+ _a$8[exports.RugbyFoulSanctions.twenty_two_meters_kick] = 'Удар с 22 метров',
11285
+ _a$8[exports.RugbyFoulSanctions.conversion_cancel] = 'Отмена удара',
11286
+ _a$8[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
11287
+ _a$8[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
11238
11288
  _a$8);
11239
11289
 
11240
11290
  var _a$7;
11241
- var RugbyFoulSanctionLocalization = (_a$7 = {},
11242
- _a$7[exports.RugbyFoulSanctions.scrum] = 'Схватка',
11243
- _a$7[exports.RugbyFoulSanctions.lineout] = 'Корридор',
11244
- _a$7[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
11245
- _a$7[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
11246
- _a$7[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
11247
- _a$7[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
11291
+ var RugbyFoulGameStageLocalization = (_a$7 = {},
11292
+ _a$7[exports.RugbyFoulGameStage.start_kick] = 'Начальные удары',
11293
+ _a$7[exports.RugbyFoulGameStage.open_game] = 'Открытая игра',
11294
+ _a$7[exports.RugbyFoulGameStage.tackle] = 'Игроки на земле, Захват',
11295
+ _a$7[exports.RugbyFoulGameStage.ruck_or_maul] = 'Рак, мол',
11296
+ _a$7[exports.RugbyFoulGameStage.scrum] = 'Схватка',
11297
+ _a$7[exports.RugbyFoulGameStage.out_and_lineout] = 'Аут и коридор',
11298
+ _a$7[exports.RugbyFoulGameStage.scoring_field] = 'Зачетное поле',
11299
+ _a$7[exports.RugbyFoulGameStage.kick_on_goal] = 'Удар по воротам',
11300
+ _a$7[exports.RugbyFoulGameStage.free_kick] = 'Штрафной, свободный удар',
11301
+ _a$7[exports.RugbyFoulGameStage.team] = 'Команда',
11248
11302
  _a$7);
11249
11303
 
11250
11304
  var _a$6;
@@ -12119,6 +12173,7 @@
12119
12173
  exports.RUGBY_GAME_LOG_TYPE_POINTS = RUGBY_GAME_LOG_TYPE_POINTS;
12120
12174
  exports.RUGBY_TEAM_LOG_TYPES = RUGBY_TEAM_LOG_TYPES;
12121
12175
  exports.ReferenceApi = ReferenceApi;
12176
+ exports.RugbyFoulGameStageLocalization = RugbyFoulGameStageLocalization;
12122
12177
  exports.RugbyFoulSanctionLocalization = RugbyFoulSanctionLocalization;
12123
12178
  exports.RugbyGameApi = RugbyGameApi;
12124
12179
  exports.RugbyGameLogTypeLocalization = RugbyGameLogTypeLocalization;