@mtgame/core 0.1.86 → 0.1.88

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.
@@ -1325,6 +1325,7 @@
1325
1325
  (function (OrganizationStatuses) {
1326
1326
  OrganizationStatuses[OrganizationStatuses["active"] = 1] = "active";
1327
1327
  OrganizationStatuses[OrganizationStatuses["blocked"] = 2] = "blocked";
1328
+ OrganizationStatuses[OrganizationStatuses["not_confirmed"] = 3] = "not_confirmed";
1328
1329
  })(exports.OrganizationStatuses || (exports.OrganizationStatuses = {}));
1329
1330
  exports.Organization = /** @class */ (function (_super) {
1330
1331
  __extends(Organization, _super);
@@ -5547,7 +5548,7 @@
5547
5548
  });
5548
5549
  Object.defineProperty(VolleyballStatistic.prototype, "totalServes", {
5549
5550
  get: function () {
5550
- return Math.floor(10 * (this.serveAces + this.serveHits + this.serveFaults)) / 10;
5551
+ return Math.floor(10 * (this.serveAces + this.serveHits + this.serveFaults + this.goodServes)) / 10;
5551
5552
  },
5552
5553
  enumerable: false,
5553
5554
  configurable: true
@@ -5593,6 +5594,7 @@
5593
5594
  serve_faults: 'serveFaults',
5594
5595
  serve_aces: 'serveAces',
5595
5596
  serve_percent: 'servePercent',
5597
+ good_serves: 'goodServes',
5596
5598
  ace_percent: 'acePercent',
5597
5599
  stuff_blocks: 'stuffBlocks',
5598
5600
  block_faults: 'blockFaults',
@@ -7179,11 +7181,11 @@
7179
7181
  TeamEventTypes[TeamEventTypes["other"] = 2] = "other";
7180
7182
  })(exports.TeamEventTypes || (exports.TeamEventTypes = {}));
7181
7183
 
7182
- var _a$e;
7183
- var TeamEventTypeLocalization = (_a$e = {},
7184
- _a$e[exports.TeamEventTypes.training] = 'Тренировка',
7185
- _a$e[exports.TeamEventTypes.other] = 'Другое',
7186
- _a$e);
7184
+ var _a$f;
7185
+ var TeamEventTypeLocalization = (_a$f = {},
7186
+ _a$f[exports.TeamEventTypes.training] = 'Тренировка',
7187
+ _a$f[exports.TeamEventTypes.other] = 'Другое',
7188
+ _a$f);
7187
7189
 
7188
7190
  exports.TeamEvent = /** @class */ (function (_super) {
7189
7191
  __extends(TeamEvent, _super);
@@ -7796,7 +7798,7 @@
7796
7798
  })
7797
7799
  ], exports.RugbyFoulType);
7798
7800
 
7799
- var _a$d;
7801
+ var _a$e;
7800
7802
  exports.RugbyGameLogTypes = void 0;
7801
7803
  (function (RugbyGameLogTypes) {
7802
7804
  RugbyGameLogTypes[RugbyGameLogTypes["enter_game"] = 1] = "enter_game";
@@ -7837,14 +7839,14 @@
7837
7839
  RugbyGameLogTypes[RugbyGameLogTypes["maul_lost"] = 35] = "maul_lost";
7838
7840
  RugbyGameLogTypes[RugbyGameLogTypes["team_foul"] = 36] = "team_foul";
7839
7841
  })(exports.RugbyGameLogTypes || (exports.RugbyGameLogTypes = {}));
7840
- var RUGBY_GAME_LOG_TYPE_POINTS = (_a$d = {},
7841
- _a$d[exports.RugbyGameLogTypes.penalty_try] = 7,
7842
- _a$d[exports.RugbyGameLogTypes.try] = 5,
7843
- _a$d[exports.RugbyGameLogTypes.conversion_goal] = 2,
7844
- _a$d[exports.RugbyGameLogTypes.penalty_goal] = 3,
7845
- _a$d[exports.RugbyGameLogTypes.drop_goal] = 3,
7846
- _a$d[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
7847
- _a$d);
7842
+ var RUGBY_GAME_LOG_TYPE_POINTS = (_a$e = {},
7843
+ _a$e[exports.RugbyGameLogTypes.penalty_try] = 7,
7844
+ _a$e[exports.RugbyGameLogTypes.try] = 5,
7845
+ _a$e[exports.RugbyGameLogTypes.conversion_goal] = 2,
7846
+ _a$e[exports.RugbyGameLogTypes.penalty_goal] = 3,
7847
+ _a$e[exports.RugbyGameLogTypes.drop_goal] = 3,
7848
+ _a$e[exports.RugbyGameLogTypes.end_game_penalty_goal] = 1,
7849
+ _a$e);
7848
7850
  var RUGBY_TEAM_LOG_TYPES = [
7849
7851
  exports.RugbyGameLogTypes.timeout, exports.RugbyGameLogTypes.scrum_won, exports.RugbyGameLogTypes.scrum_lost, exports.RugbyGameLogTypes.scrum_won_free,
7850
7852
  exports.RugbyGameLogTypes.lineout_won, exports.RugbyGameLogTypes.lineout_lost,
@@ -9405,7 +9407,7 @@
9405
9407
  });
9406
9408
  Object.defineProperty(VolleyballGameStatistic.prototype, "totalServes", {
9407
9409
  get: function () {
9408
- return Math.floor(10 * (this.serveAces + this.serveHits + this.serveFaults)) / 10;
9410
+ return Math.floor(10 * (this.serveAces + this.serveHits + this.serveFaults + this.goodServes)) / 10;
9409
9411
  },
9410
9412
  enumerable: false,
9411
9413
  configurable: true
@@ -9441,6 +9443,7 @@
9441
9443
  serve_hits: 'serveHits',
9442
9444
  serve_faults: 'serveFaults',
9443
9445
  serve_aces: 'serveAces',
9446
+ good_serves: 'goodServes',
9444
9447
  stuff_blocks: 'stuffBlocks',
9445
9448
  block_faults: 'blockFaults',
9446
9449
  block_rebounds: 'blockRebounds',
@@ -9485,6 +9488,7 @@
9485
9488
  VolleyballGameLogType[VolleyballGameLogType["timeout"] = 21] = "timeout";
9486
9489
  VolleyballGameLogType[VolleyballGameLogType["yellow_card"] = 22] = "yellow_card";
9487
9490
  VolleyballGameLogType[VolleyballGameLogType["tie_ball"] = 23] = "tie_ball";
9491
+ VolleyballGameLogType[VolleyballGameLogType["good_serve"] = 24] = "good_serve";
9488
9492
  })(exports.VolleyballGameLogType || (exports.VolleyballGameLogType = {}));
9489
9493
  var SCORE_LOG_TYPES = [
9490
9494
  exports.VolleyballGameLogType.serve_ace, exports.VolleyballGameLogType.stuff_block,
@@ -9526,7 +9530,8 @@
9526
9530
  return [
9527
9531
  exports.VolleyballGameLogType.serve_hit,
9528
9532
  exports.VolleyballGameLogType.serve_ace,
9529
- exports.VolleyballGameLogType.serve_fault
9533
+ exports.VolleyballGameLogType.serve_fault,
9534
+ exports.VolleyballGameLogType.good_serve,
9530
9535
  ].includes(this.logType);
9531
9536
  };
9532
9537
  VolleyballGameLog.prototype.isAttack = function () {
@@ -9724,234 +9729,234 @@
9724
9729
  { type: ConfigService }
9725
9730
  ]; };
9726
9731
 
9727
- var _a$c;
9728
- var BasketballGameLogTypeLocalization = (_a$c = {},
9729
- _a$c[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
9730
- _a$c[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
9731
- _a$c[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
9732
- _a$c[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
9733
- _a$c[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
9734
- _a$c[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
9735
- _a$c[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
9736
- _a$c[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
9737
- _a$c[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
9738
- _a$c[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
9739
- _a$c[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
9740
- _a$c[exports.BasketballGameLogTypes.assist] = 'Передача',
9741
- _a$c[exports.BasketballGameLogTypes.block] = 'Блокшот',
9742
- _a$c[exports.BasketballGameLogTypes.rebound] = 'Подбор',
9743
- _a$c[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
9744
- _a$c[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
9745
- _a$c[exports.BasketballGameLogTypes.steal] = 'Перехват',
9746
- _a$c[exports.BasketballGameLogTypes.turnover] = 'Потеря',
9747
- _a$c[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
9748
- _a$c[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
9749
- _a$c[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
9750
- _a$c[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
9751
- _a$c[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
9752
- _a$c);
9732
+ var _a$d;
9733
+ var BasketballGameLogTypeLocalization = (_a$d = {},
9734
+ _a$d[exports.BasketballGameLogTypes.enter_game] = 'Выход на площадку',
9735
+ _a$d[exports.BasketballGameLogTypes.exit_game] = 'Ушел с площадки',
9736
+ _a$d[exports.BasketballGameLogTypes.remove_game] = 'Удаление с площадки',
9737
+ _a$d[exports.BasketballGameLogTypes.two_point_attempt] = 'Бросок 2 очка',
9738
+ _a$d[exports.BasketballGameLogTypes.three_point_attempt] = 'Бросок 3 очка',
9739
+ _a$d[exports.BasketballGameLogTypes.free_throw_attempt] = 'Штрафной бросок',
9740
+ _a$d[exports.BasketballGameLogTypes.one_point_attempt] = 'Бросок 1 очко',
9741
+ _a$d[exports.BasketballGameLogTypes.two_point_made] = '2 очка',
9742
+ _a$d[exports.BasketballGameLogTypes.three_point_made] = '3 очка',
9743
+ _a$d[exports.BasketballGameLogTypes.free_throw_made] = '1 очко, штрафной',
9744
+ _a$d[exports.BasketballGameLogTypes.one_point_made] = '1 очко',
9745
+ _a$d[exports.BasketballGameLogTypes.assist] = 'Передача',
9746
+ _a$d[exports.BasketballGameLogTypes.block] = 'Блокшот',
9747
+ _a$d[exports.BasketballGameLogTypes.rebound] = 'Подбор',
9748
+ _a$d[exports.BasketballGameLogTypes.offensive_rebound] = 'Подбор в нападении',
9749
+ _a$d[exports.BasketballGameLogTypes.defensive_rebound] = 'Подбор в защите',
9750
+ _a$d[exports.BasketballGameLogTypes.steal] = 'Перехват',
9751
+ _a$d[exports.BasketballGameLogTypes.turnover] = 'Потеря',
9752
+ _a$d[exports.BasketballGameLogTypes.personal_foul] = 'Фол',
9753
+ _a$d[exports.BasketballGameLogTypes.technical_foul] = 'Технический фол',
9754
+ _a$d[exports.BasketballGameLogTypes.unsportsmanlike_foul] = 'Неспортиный фол',
9755
+ _a$d[exports.BasketballGameLogTypes.timeout] = 'Таймаут',
9756
+ _a$d[exports.BasketballGameLogTypes.team_rebound] = 'Командный подбор',
9757
+ _a$d);
9753
9758
 
9754
- var _a$b;
9755
- var BasketballGameSubLogTypesLocalization = (_a$b = {},
9759
+ var _a$c;
9760
+ var BasketballGameSubLogTypesLocalization = (_a$c = {},
9756
9761
  // Shots
9757
- _a$b[exports.BasketballSubLogTypes.jump_shot] = 'Бросок в прыжке',
9758
- _a$b[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Бросок в прыжке после степ-бэка',
9759
- _a$b[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатер',
9760
- _a$b[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Бросок с отклонением',
9761
- _a$b[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Бросок в прыжке после фейка',
9762
- _a$b[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Бросок с разварота',
9763
- _a$b[exports.BasketballSubLogTypes.dunk] = 'Данк',
9764
- _a$b[exports.BasketballSubLogTypes.layup] = 'Лейап',
9765
- _a$b[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лейап',
9766
- _a$b[exports.BasketballSubLogTypes.alley_oop] = 'С навеса',
9767
- _a$b[exports.BasketballSubLogTypes.hook_shot] = 'Крюк',
9762
+ _a$c[exports.BasketballSubLogTypes.jump_shot] = 'Бросок в прыжке',
9763
+ _a$c[exports.BasketballSubLogTypes.step_back_jump_shot] = 'Бросок в прыжке после степ-бэка',
9764
+ _a$c[exports.BasketballSubLogTypes.floating_jump_shot] = 'Флоатер',
9765
+ _a$c[exports.BasketballSubLogTypes.fade_away_jump_shot] = 'Бросок с отклонением',
9766
+ _a$c[exports.BasketballSubLogTypes.pull_up_jump_shot] = 'Бросок в прыжке после фейка',
9767
+ _a$c[exports.BasketballSubLogTypes.turnaround_jump_shot] = 'Бросок с разварота',
9768
+ _a$c[exports.BasketballSubLogTypes.dunk] = 'Данк',
9769
+ _a$c[exports.BasketballSubLogTypes.layup] = 'Лейап',
9770
+ _a$c[exports.BasketballSubLogTypes.driving_layup] = 'Драйвинг лейап',
9771
+ _a$c[exports.BasketballSubLogTypes.alley_oop] = 'С навеса',
9772
+ _a$c[exports.BasketballSubLogTypes.hook_shot] = 'Крюк',
9768
9773
  // foul
9769
- _a$b[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
9770
- _a$b[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
9774
+ _a$c[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
9775
+ _a$c[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
9771
9776
  // Turnover
9772
- _a$b[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
9773
- _a$b[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
9774
- _a$b[exports.BasketballSubLogTypes.travel] = 'Пробежка',
9775
- _a$b[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
9776
- _a$b[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
9777
- _a$b[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
9778
- _a$b[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
9779
- _a$b[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
9780
- _a$b[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
9777
+ _a$c[exports.BasketballSubLogTypes.bad_pass] = 'Плохой пас',
9778
+ _a$c[exports.BasketballSubLogTypes.ball_handling] = 'На ведении',
9779
+ _a$c[exports.BasketballSubLogTypes.travel] = 'Пробежка',
9780
+ _a$c[exports.BasketballSubLogTypes.double_dribble] = 'Двойная пробежка',
9781
+ _a$c[exports.BasketballSubLogTypes.out_of_bounds] = 'Заступ в аут',
9782
+ _a$c[exports.BasketballSubLogTypes.three_seconds] = '3 секунды',
9783
+ _a$c[exports.BasketballSubLogTypes.five_seconds] = '5 секунд',
9784
+ _a$c[exports.BasketballSubLogTypes.eight_seconds] = '8 секунд',
9785
+ _a$c[exports.BasketballSubLogTypes.twenty_four_seconds] = '24 секунды',
9786
+ _a$c);
9787
+
9788
+ var _a$b;
9789
+ var HockeyGameLogTypeLocalization = (_a$b = {},
9790
+ _a$b[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
9791
+ _a$b[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
9792
+ _a$b[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
9793
+ _a$b[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
9794
+ _a$b[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
9795
+ _a$b[exports.HockeyGameLogTypes.goal] = 'Гол',
9796
+ _a$b[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
9797
+ _a$b[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
9798
+ _a$b[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
9799
+ _a$b[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
9800
+ _a$b[exports.HockeyGameLogTypes.assist] = 'Передача',
9801
+ _a$b[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
9802
+ _a$b[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
9803
+ _a$b[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
9804
+ _a$b[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
9805
+ _a$b[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
9806
+ _a$b[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
9807
+ _a$b[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
9808
+ _a$b[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
9809
+ _a$b[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
9810
+ _a$b[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
9811
+ _a$b[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
9812
+ _a$b[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
9813
+ _a$b[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
9814
+ _a$b[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
9815
+ _a$b[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
9781
9816
  _a$b);
9782
9817
 
9783
9818
  var _a$a;
9784
- var HockeyGameLogTypeLocalization = (_a$a = {},
9785
- _a$a[exports.HockeyGameLogTypes.enter_game] = 'Выход на площадку',
9786
- _a$a[exports.HockeyGameLogTypes.exit_game] = 'Ушел с площадки',
9787
- _a$a[exports.HockeyGameLogTypes.shot_miss] = 'Бросок мимо',
9788
- _a$a[exports.HockeyGameLogTypes.shot_on_goal] = 'Бросок по воротам',
9789
- _a$a[exports.HockeyGameLogTypes.shot_blocked] = 'Заблокированный бросок',
9790
- _a$a[exports.HockeyGameLogTypes.goal] = 'Гол',
9791
- _a$a[exports.HockeyGameLogTypes.shootout_attempt] = 'Буллит промах',
9792
- _a$a[exports.HockeyGameLogTypes.shootout_goal] = 'Буллит гол',
9793
- _a$a[exports.HockeyGameLogTypes.after_game_shootout_attempt] = 'Буллит промах',
9794
- _a$a[exports.HockeyGameLogTypes.after_game_shootout_goal] = 'Буллит гол',
9795
- _a$a[exports.HockeyGameLogTypes.assist] = 'Передача',
9796
- _a$a[exports.HockeyGameLogTypes.block_shot] = 'Блокировка броска',
9797
- _a$a[exports.HockeyGameLogTypes.minor_penalty] = 'Малый штраф',
9798
- _a$a[exports.HockeyGameLogTypes.major_penalty] = 'Большой штраф',
9799
- _a$a[exports.HockeyGameLogTypes.misconduct_penalty] = 'Дисциплинарный штраф',
9800
- _a$a[exports.HockeyGameLogTypes.game_misconduct_penalty] = 'Дисциплинарный штраф до конца игры',
9801
- _a$a[exports.HockeyGameLogTypes.match_penalty] = 'Матч-штраф',
9802
- _a$a[exports.HockeyGameLogTypes.penalty_shot] = 'Штрафной бросок',
9803
- _a$a[exports.HockeyGameLogTypes.face_off_lose] = 'Проигрыш в вбрасывании',
9804
- _a$a[exports.HockeyGameLogTypes.face_off_win] = 'Победа в вбрасывании',
9805
- _a$a[exports.HockeyGameLogTypes.save] = 'Отражен бросок',
9806
- _a$a[exports.HockeyGameLogTypes.shootout_save] = 'Отражен бросок',
9807
- _a$a[exports.HockeyGameLogTypes.after_game_shootout_save] = 'Отражен бросок',
9808
- _a$a[exports.HockeyGameLogTypes.timeout] = 'Таймаут',
9809
- _a$a[exports.HockeyGameLogTypes.penalty_start] = 'Начало штрафного времени',
9810
- _a$a[exports.HockeyGameLogTypes.penalty_end] = 'Конец штрафного времени',
9819
+ var FootballGameLogTypeLocalization = (_a$a = {},
9820
+ _a$a[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
9821
+ _a$a[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
9822
+ _a$a[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
9823
+ _a$a[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
9824
+ _a$a[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
9825
+ _a$a[exports.FootballGameLogTypes.goal] = 'Гол',
9826
+ _a$a[exports.FootballGameLogTypes.assist] = 'Передача',
9827
+ _a$a[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
9828
+ _a$a[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
9829
+ _a$a[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
9830
+ _a$a[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
9831
+ _a$a[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
9832
+ _a$a[exports.FootballGameLogTypes.corner] = 'Угловой',
9833
+ _a$a[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
9834
+ _a$a[exports.FootballGameLogTypes.save] = 'Отражен удар',
9835
+ _a$a[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
9836
+ _a$a[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
9837
+ _a$a[exports.FootballGameLogTypes.foul] = 'Фол',
9838
+ _a$a[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
9839
+ _a$a[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
9840
+ _a$a[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
9841
+ _a$a[exports.FootballGameLogTypes.loss] = 'Потеря',
9842
+ _a$a[exports.FootballGameLogTypes.steal] = 'Перехват',
9843
+ _a$a[exports.FootballGameLogTypes.out] = 'Аут',
9844
+ _a$a[exports.FootballGameLogTypes.timeout] = 'Таймаут',
9845
+ _a$a[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
9846
+ _a$a[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
9847
+ _a$a[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
9848
+ _a$a[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
9811
9849
  _a$a);
9812
9850
 
9813
9851
  var _a$9;
9814
- var FootballGameLogTypeLocalization = (_a$9 = {},
9815
- _a$9[exports.FootballGameLogTypes.enter_game] = 'Выход на поле',
9816
- _a$9[exports.FootballGameLogTypes.exit_game] = 'Ушел с поля',
9817
- _a$9[exports.FootballGameLogTypes.shot_miss] = 'Удар мимо',
9818
- _a$9[exports.FootballGameLogTypes.shot_on_goal] = 'Удар в створ',
9819
- _a$9[exports.FootballGameLogTypes.shot_blocked] = 'Заблокированный удар',
9820
- _a$9[exports.FootballGameLogTypes.goal] = 'Гол',
9821
- _a$9[exports.FootballGameLogTypes.assist] = 'Передача',
9822
- _a$9[exports.FootballGameLogTypes.penalty_attempt] = 'Пенальти промах',
9823
- _a$9[exports.FootballGameLogTypes.penalty_goal] = 'Пенальти гол',
9824
- _a$9[exports.FootballGameLogTypes.small_penalty_attempt] = '10-метровый промах',
9825
- _a$9[exports.FootballGameLogTypes.small_penalty_goal] = '10-метровый гол',
9826
- _a$9[exports.FootballGameLogTypes.block_shot] = 'Блокировка удара',
9827
- _a$9[exports.FootballGameLogTypes.corner] = 'Угловой',
9828
- _a$9[exports.FootballGameLogTypes.free_kick] = 'Штрафной удар',
9829
- _a$9[exports.FootballGameLogTypes.save] = 'Отражен удар',
9830
- _a$9[exports.FootballGameLogTypes.penalty_save] = 'Отражен пенальти',
9831
- _a$9[exports.FootballGameLogTypes.small_penalty_save] = 'Отражен 10 метровый',
9832
- _a$9[exports.FootballGameLogTypes.foul] = 'Фол',
9833
- _a$9[exports.FootballGameLogTypes.yellow_card] = 'Желтая карточка',
9834
- _a$9[exports.FootballGameLogTypes.red_card] = 'Красная карточка',
9835
- _a$9[exports.FootballGameLogTypes.perfect_pass] = 'Пас',
9836
- _a$9[exports.FootballGameLogTypes.loss] = 'Потеря',
9837
- _a$9[exports.FootballGameLogTypes.steal] = 'Перехват',
9838
- _a$9[exports.FootballGameLogTypes.out] = 'Аут',
9839
- _a$9[exports.FootballGameLogTypes.timeout] = 'Таймаут',
9840
- _a$9[exports.FootballGameLogTypes.auto_goal] = 'Автогол',
9841
- _a$9[exports.FootballGameLogTypes.end_game_penalty_goal] = 'Пенальти гол',
9842
- _a$9[exports.FootballGameLogTypes.end_game_penalty_miss] = 'Пенальти промах',
9843
- _a$9[exports.FootballGameLogTypes.end_game_penalty_save] = 'Отражен пенальти',
9852
+ var HandballGameLogTypeLocalization = (_a$9 = {},
9853
+ _a$9[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
9854
+ _a$9[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
9855
+ _a$9[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
9856
+ _a$9[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
9857
+ _a$9[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
9858
+ _a$9[exports.HandballGameLogTypes.goal] = 'Гол',
9859
+ _a$9[exports.HandballGameLogTypes.assist] = 'Передача',
9860
+ _a$9[exports.HandballGameLogTypes.penalty_miss] = ' промах',
9861
+ _a$9[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
9862
+ _a$9[exports.HandballGameLogTypes.penalty_goal] = ' гол',
9863
+ _a$9[exports.HandballGameLogTypes.save] = 'Сэйв',
9864
+ _a$9[exports.HandballGameLogTypes.penalty_save] = 'Сэйв ',
9865
+ _a$9[exports.HandballGameLogTypes.foul] = 'Фол',
9866
+ _a$9[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
9867
+ _a$9[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
9868
+ _a$9[exports.HandballGameLogTypes.two_minute_foul] = ' минутный штраф',
9869
+ _a$9[exports.HandballGameLogTypes.turnover] = 'Потеря',
9870
+ _a$9[exports.HandballGameLogTypes.steal] = 'Перехват',
9871
+ _a$9[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
9872
+ _a$9[exports.HandballGameLogTypes.timeout] = 'Таймаут',
9844
9873
  _a$9);
9845
9874
 
9846
9875
  var _a$8;
9847
- var HandballGameLogTypeLocalization = (_a$8 = {},
9848
- _a$8[exports.HandballGameLogTypes.enter_game] = 'Выход на поле',
9849
- _a$8[exports.HandballGameLogTypes.exit_game] = 'Ушел с поля',
9850
- _a$8[exports.HandballGameLogTypes.shot_miss] = 'Бросок мимо',
9851
- _a$8[exports.HandballGameLogTypes.shot_on_goal] = 'Бросок в створ',
9852
- _a$8[exports.HandballGameLogTypes.shot_blocked] = 'Заблокированный бросок',
9853
- _a$8[exports.HandballGameLogTypes.goal] = 'Гол',
9854
- _a$8[exports.HandballGameLogTypes.assist] = 'Передача',
9855
- _a$8[exports.HandballGameLogTypes.penalty_miss] = '7м промах',
9856
- _a$8[exports.HandballGameLogTypes.penalty_shot_on_goal] = ' в створ',
9857
- _a$8[exports.HandballGameLogTypes.penalty_goal] = '7м гол',
9858
- _a$8[exports.HandballGameLogTypes.save] = 'Сэйв',
9859
- _a$8[exports.HandballGameLogTypes.penalty_save] = 'Сэйв 7м',
9860
- _a$8[exports.HandballGameLogTypes.foul] = 'Фол',
9861
- _a$8[exports.HandballGameLogTypes.yellow_card] = 'Желлтая карточка',
9862
- _a$8[exports.HandballGameLogTypes.red_card] = 'Красная карточка',
9863
- _a$8[exports.HandballGameLogTypes.two_minute_foul] = '2х минутный штраф',
9864
- _a$8[exports.HandballGameLogTypes.turnover] = 'Потеря',
9865
- _a$8[exports.HandballGameLogTypes.steal] = 'Перехват',
9866
- _a$8[exports.HandballGameLogTypes.block_shot] = 'Блок броска',
9867
- _a$8[exports.HandballGameLogTypes.timeout] = 'Таймаут',
9876
+ var OvertimeTypeLocalization = (_a$8 = {},
9877
+ _a$8[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
9878
+ _a$8[exports.OvertimeTypes.to_score_total] = 'До N очков',
9879
+ _a$8[exports.OvertimeTypes.time] = 'По времени',
9880
+ _a$8[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
9881
+ _a$8[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
9882
+ _a$8[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
9883
+ _a$8[exports.OvertimeTypes.bullitts] = 'Буллиты',
9884
+ _a$8[exports.OvertimeTypes.penalties] = 'Пенальти',
9885
+ _a$8[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
9868
9886
  _a$8);
9869
9887
 
9870
9888
  var _a$7;
9871
- var OvertimeTypeLocalization = (_a$7 = {},
9872
- _a$7[exports.OvertimeTypes.to_score_diff] = 'До разницы в N мячей',
9873
- _a$7[exports.OvertimeTypes.to_score_total] = 'До N очков',
9874
- _a$7[exports.OvertimeTypes.time] = 'По времени',
9875
- _a$7[exports.OvertimeTypes.without_overtime] = 'Без овертайма',
9876
- _a$7[exports.OvertimeTypes.to_first_goal] = 'На N минут до первой шайбы',
9877
- _a$7[exports.OvertimeTypes.to_first_goal_and_bullitts] = 'На N минут до первой шайбы + буллиты',
9878
- _a$7[exports.OvertimeTypes.bullitts] = 'Буллиты',
9879
- _a$7[exports.OvertimeTypes.penalties] = 'Пенальти',
9880
- _a$7[exports.OvertimeTypes.time_and_penalties] = 'Дополнительное время + пенальти',
9889
+ var RugbyFoulSanctionLocalization = (_a$7 = {},
9890
+ _a$7[exports.RugbyFoulSanctions.scrum] = 'Схватка',
9891
+ _a$7[exports.RugbyFoulSanctions.lineout] = 'Корридор',
9892
+ _a$7[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
9893
+ _a$7[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
9894
+ _a$7[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
9895
+ _a$7[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
9881
9896
  _a$7);
9882
9897
 
9883
9898
  var _a$6;
9884
- var RugbyFoulSanctionLocalization = (_a$6 = {},
9885
- _a$6[exports.RugbyFoulSanctions.scrum] = 'Схватка',
9886
- _a$6[exports.RugbyFoulSanctions.lineout] = 'Корридор',
9887
- _a$6[exports.RugbyFoulSanctions.free_kick] = 'Свободный удар',
9888
- _a$6[exports.RugbyFoulSanctions.penalty_shot] = 'Штрафной удар',
9889
- _a$6[exports.RugbyFoulSanctions.yellow_card] = 'Желтая карточка',
9890
- _a$6[exports.RugbyFoulSanctions.red_card] = 'Красная карточка',
9899
+ var RugbyGameLogTypeLocalization = (_a$6 = {},
9900
+ _a$6[exports.RugbyGameLogTypes.enter_game] = 'Выход на площадку',
9901
+ _a$6[exports.RugbyGameLogTypes.exit_game] = 'Ушел с площадки',
9902
+ _a$6[exports.RugbyGameLogTypes.try] = 'Попытка',
9903
+ _a$6[exports.RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
9904
+ _a$6[exports.RugbyGameLogTypes.conversion_goal] = 'Реализация',
9905
+ _a$6[exports.RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
9906
+ _a$6[exports.RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
9907
+ _a$6[exports.RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
9908
+ _a$6[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
9909
+ _a$6[exports.RugbyGameLogTypes.tap_penalty] = 'Штрафной розыгран',
9910
+ _a$6[exports.RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
9911
+ _a$6[exports.RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
9912
+ _a$6[exports.RugbyGameLogTypes.free_kick] = 'Свободный удар',
9913
+ _a$6[exports.RugbyGameLogTypes.foul] = 'Фол',
9914
+ _a$6[exports.RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
9915
+ _a$6[exports.RugbyGameLogTypes.red_card] = 'Красная карточка',
9916
+ _a$6[exports.RugbyGameLogTypes.offload] = 'Скидка при завхвате',
9917
+ _a$6[exports.RugbyGameLogTypes.tackle] = 'Успешный захват',
9918
+ _a$6[exports.RugbyGameLogTypes.handling_error] = 'Ошибка приема',
9919
+ _a$6[exports.RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
9920
+ _a$6[exports.RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
9921
+ _a$6[exports.RugbyGameLogTypes.head_injury] = 'Травма головы',
9922
+ _a$6[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
9923
+ _a$6[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
9924
+ _a$6[exports.RugbyGameLogTypes.timeout] = 'Таймаут',
9925
+ _a$6[exports.RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
9926
+ _a$6[exports.RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
9927
+ _a$6[exports.RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
9928
+ _a$6[exports.RugbyGameLogTypes.lineout_won] = 'Корридор выиграно',
9929
+ _a$6[exports.RugbyGameLogTypes.lineout_lost] = 'Корридор проиграно',
9930
+ _a$6[exports.RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
9931
+ _a$6[exports.RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
9932
+ _a$6[exports.RugbyGameLogTypes.ruck_lost] = 'Рак проиграно',
9933
+ _a$6[exports.RugbyGameLogTypes.maul_won] = 'Мол выиграно',
9934
+ _a$6[exports.RugbyGameLogTypes.maul_lost] = 'Мол проиграно',
9935
+ _a$6[exports.RugbyGameLogTypes.team_foul] = 'Фол',
9891
9936
  _a$6);
9892
9937
 
9893
9938
  var _a$5;
9894
- var RugbyGameLogTypeLocalization = (_a$5 = {},
9895
- _a$5[exports.RugbyGameLogTypes.enter_game] = 'Выход на площадку',
9896
- _a$5[exports.RugbyGameLogTypes.exit_game] = 'Ушел с площадки',
9897
- _a$5[exports.RugbyGameLogTypes.try] = 'Попытка',
9898
- _a$5[exports.RugbyGameLogTypes.penalty_try] = 'Штрафная попытка',
9899
- _a$5[exports.RugbyGameLogTypes.conversion_goal] = 'Реализация',
9900
- _a$5[exports.RugbyGameLogTypes.conversion_miss] = 'Реализация промах',
9901
- _a$5[exports.RugbyGameLogTypes.penalty_miss] = 'Штрафной промах',
9902
- _a$5[exports.RugbyGameLogTypes.penalty_goal] = 'Штрафной гол',
9903
- _a$5[exports.RugbyGameLogTypes.penalty_kick_to_touch] = 'Штрафной в аут',
9904
- _a$5[exports.RugbyGameLogTypes.tap_penalty] = 'Штрафной розыгран',
9905
- _a$5[exports.RugbyGameLogTypes.drop_goal] = 'Дроп-гол',
9906
- _a$5[exports.RugbyGameLogTypes.drop_goal_miss] = 'Дроп-гол промах',
9907
- _a$5[exports.RugbyGameLogTypes.free_kick] = 'Свободный удар',
9908
- _a$5[exports.RugbyGameLogTypes.foul] = 'Фол',
9909
- _a$5[exports.RugbyGameLogTypes.yellow_card] = 'Желтая карточка',
9910
- _a$5[exports.RugbyGameLogTypes.red_card] = 'Красная карточка',
9911
- _a$5[exports.RugbyGameLogTypes.offload] = 'Скидка при завхвате',
9912
- _a$5[exports.RugbyGameLogTypes.tackle] = 'Успешный захват',
9913
- _a$5[exports.RugbyGameLogTypes.handling_error] = 'Ошибка приема',
9914
- _a$5[exports.RugbyGameLogTypes.carries_over_gainline] = 'Прорыв линии',
9915
- _a$5[exports.RugbyGameLogTypes.bleeding_injury] = 'Кровоточащая травма',
9916
- _a$5[exports.RugbyGameLogTypes.head_injury] = 'Травма головы',
9917
- _a$5[exports.RugbyGameLogTypes.end_game_penalty_miss] = 'Штрафной промах',
9918
- _a$5[exports.RugbyGameLogTypes.end_game_penalty_goal] = 'Штрафной гол',
9919
- _a$5[exports.RugbyGameLogTypes.timeout] = 'Таймаут',
9920
- _a$5[exports.RugbyGameLogTypes.scrum_won] = 'Схватка выиграна',
9921
- _a$5[exports.RugbyGameLogTypes.scrum_lost] = 'Схватка проиграна',
9922
- _a$5[exports.RugbyGameLogTypes.scrum_won_free] = 'Схватка выиграна без сопротивления',
9923
- _a$5[exports.RugbyGameLogTypes.lineout_won] = 'Корридор выиграно',
9924
- _a$5[exports.RugbyGameLogTypes.lineout_lost] = 'Корридор проиграно',
9925
- _a$5[exports.RugbyGameLogTypes.quick_throw] = 'Быстрый вброс',
9926
- _a$5[exports.RugbyGameLogTypes.ruck_won] = 'Рак выиграно',
9927
- _a$5[exports.RugbyGameLogTypes.ruck_lost] = 'Рак проиграно',
9928
- _a$5[exports.RugbyGameLogTypes.maul_won] = 'Мол выиграно',
9929
- _a$5[exports.RugbyGameLogTypes.maul_lost] = 'Мол проиграно',
9930
- _a$5[exports.RugbyGameLogTypes.team_foul] = 'Фол',
9939
+ var TeamUserRoleLocalization = (_a$5 = {},
9940
+ _a$5[exports.TeamUserRole.member] = 'Пользователь',
9941
+ _a$5[exports.TeamUserRole.moderator] = 'Модератор',
9942
+ _a$5[exports.TeamUserRole.admin] = 'Владелец',
9943
+ _a$5[exports.TeamUserRole.coach] = 'Тренер',
9944
+ _a$5[exports.TeamUserRole.head_coach] = 'Главный тренер',
9945
+ _a$5[exports.TeamUserRole.playing_coach] = 'Играющий тренер',
9946
+ _a$5[exports.TeamUserRole.manager] = 'Менеджер',
9947
+ _a$5[exports.TeamUserRole.head_manager] = 'Генеральный менеджер',
9948
+ _a$5[exports.TeamUserRole.captain] = 'Капитан',
9949
+ _a$5[exports.TeamUserRole.assistant] = 'Ассистент',
9931
9950
  _a$5);
9932
9951
 
9933
- var _a$4;
9934
- var TeamUserRoleLocalization = (_a$4 = {},
9935
- _a$4[exports.TeamUserRole.member] = 'Пользователь',
9936
- _a$4[exports.TeamUserRole.moderator] = 'Модератор',
9937
- _a$4[exports.TeamUserRole.admin] = 'Владелец',
9938
- _a$4[exports.TeamUserRole.coach] = 'Тренер',
9939
- _a$4[exports.TeamUserRole.head_coach] = 'Главный тренер',
9940
- _a$4[exports.TeamUserRole.playing_coach] = 'Играющий тренер',
9941
- _a$4[exports.TeamUserRole.manager] = 'Менеджер',
9942
- _a$4[exports.TeamUserRole.head_manager] = 'Генеральный менеджер',
9943
- _a$4[exports.TeamUserRole.captain] = 'Капитан',
9944
- _a$4[exports.TeamUserRole.assistant] = 'Ассистент',
9952
+ var _a$4, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
9953
+ var GameBasketballPositionLocalization = (_a$4 = {},
9954
+ _a$4[exports.GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
9955
+ _a$4[exports.GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
9956
+ _a$4[exports.GameBasketballPosition.small_forward] = 'Легкий форвард',
9957
+ _a$4[exports.GameBasketballPosition.power_forward] = 'Мощный форвард',
9958
+ _a$4[exports.GameBasketballPosition.center] = 'Центровой',
9945
9959
  _a$4);
9946
-
9947
- var _a$3, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m;
9948
- var GameBasketballPositionLocalization = (_a$3 = {},
9949
- _a$3[exports.GameBasketballPosition.point_guard] = 'Разыгрывающий защитник',
9950
- _a$3[exports.GameBasketballPosition.shooting_guard] = 'Атакующий защитник',
9951
- _a$3[exports.GameBasketballPosition.small_forward] = 'Легкий форвард',
9952
- _a$3[exports.GameBasketballPosition.power_forward] = 'Мощный форвард',
9953
- _a$3[exports.GameBasketballPosition.center] = 'Центровой',
9954
- _a$3);
9955
9960
  var GameBasketballPositionShortLocalization = (_b = {},
9956
9961
  _b[exports.GameBasketballPosition.point_guard] = 'PG',
9957
9962
  _b[exports.GameBasketballPosition.shooting_guard] = 'SG',
@@ -10020,31 +10025,39 @@
10020
10025
  _m[exports.GameRugbyPosition.fullback] = 'Замыкающий',
10021
10026
  _m);
10022
10027
 
10028
+ var _a$3;
10029
+ var VolleyballGameLogTypeLocalization = (_a$3 = {},
10030
+ _a$3[exports.VolleyballGameLogType.enter_game] = 'Выход на площадку',
10031
+ _a$3[exports.VolleyballGameLogType.exit_game] = 'Уход с площадки',
10032
+ _a$3[exports.VolleyballGameLogType.remove_game] = 'Удаление с площадки',
10033
+ _a$3[exports.VolleyballGameLogType.serve_ace] = 'Эйс',
10034
+ _a$3[exports.VolleyballGameLogType.serve_hit] = 'Подача',
10035
+ _a$3[exports.VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
10036
+ _a$3[exports.VolleyballGameLogType.good_serve] = 'Усложнённая подача',
10037
+ _a$3[exports.VolleyballGameLogType.attack_spike] = 'Результативная атака',
10038
+ _a$3[exports.VolleyballGameLogType.attack_shot] = 'Атака',
10039
+ _a$3[exports.VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
10040
+ _a$3[exports.VolleyballGameLogType.stuff_block] = 'Результативный блок',
10041
+ _a$3[exports.VolleyballGameLogType.block_rebound] = 'Блок',
10042
+ _a$3[exports.VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
10043
+ _a$3[exports.VolleyballGameLogType.excellent_receive] = 'Отличный прием',
10044
+ _a$3[exports.VolleyballGameLogType.receive] = 'Прием',
10045
+ _a$3[exports.VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
10046
+ _a$3[exports.VolleyballGameLogType.serve_receive] = 'Прием подачи',
10047
+ _a$3[exports.VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
10048
+ _a$3[exports.VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
10049
+ _a$3[exports.VolleyballGameLogType.point] = 'Очко',
10050
+ _a$3[exports.VolleyballGameLogType.fault] = 'Ошибка',
10051
+ _a$3[exports.VolleyballGameLogType.timeout] = 'Таймаут',
10052
+ _a$3[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
10053
+ _a$3[exports.VolleyballGameLogType.tie_ball] = 'Спорный мяч',
10054
+ _a$3);
10055
+
10023
10056
  var _a$2;
10024
- var VolleyballGameLogTypeLocalization = (_a$2 = {},
10025
- _a$2[exports.VolleyballGameLogType.enter_game] = 'Выход на площадку',
10026
- _a$2[exports.VolleyballGameLogType.exit_game] = 'Уход с площадки',
10027
- _a$2[exports.VolleyballGameLogType.remove_game] = 'Удаление с площадки',
10028
- _a$2[exports.VolleyballGameLogType.serve_ace] = 'Эйс',
10029
- _a$2[exports.VolleyballGameLogType.serve_hit] = 'Подача',
10030
- _a$2[exports.VolleyballGameLogType.serve_fault] = 'Ошибка на подаче',
10031
- _a$2[exports.VolleyballGameLogType.attack_spike] = 'Результативная атака',
10032
- _a$2[exports.VolleyballGameLogType.attack_shot] = 'Атака',
10033
- _a$2[exports.VolleyballGameLogType.attack_fault] = 'Ошибка атаки',
10034
- _a$2[exports.VolleyballGameLogType.stuff_block] = 'Результативный блок',
10035
- _a$2[exports.VolleyballGameLogType.block_rebound] = 'Блок',
10036
- _a$2[exports.VolleyballGameLogType.block_fault] = 'Ошибка на блоке',
10037
- _a$2[exports.VolleyballGameLogType.excellent_receive] = 'Отличный прием',
10038
- _a$2[exports.VolleyballGameLogType.receive] = 'Прием',
10039
- _a$2[exports.VolleyballGameLogType.receive_fault] = 'Ошибка на приеме',
10040
- _a$2[exports.VolleyballGameLogType.serve_receive] = 'Прием подачи',
10041
- _a$2[exports.VolleyballGameLogType.excellent_serve_receive] = 'Отличный прием подачи',
10042
- _a$2[exports.VolleyballGameLogType.serve_receive_fault] = 'Ошибка приема подачи',
10043
- _a$2[exports.VolleyballGameLogType.point] = 'Очко',
10044
- _a$2[exports.VolleyballGameLogType.fault] = 'Ошибка',
10045
- _a$2[exports.VolleyballGameLogType.timeout] = 'Таймаут',
10046
- _a$2[exports.VolleyballGameLogType.yellow_card] = 'Предупреждение',
10047
- _a$2[exports.VolleyballGameLogType.tie_ball] = 'Спорный мяч',
10057
+ var OrganizationStatusesLocalization = (_a$2 = {},
10058
+ _a$2[exports.OrganizationStatuses.active] = 'Активен',
10059
+ _a$2[exports.OrganizationStatuses.blocked] = 'Заблокирован',
10060
+ _a$2[exports.OrganizationStatuses.not_confirmed] = 'Не подтвержден',
10048
10061
  _a$2);
10049
10062
 
10050
10063
  var _a$1;
@@ -10705,6 +10718,7 @@
10705
10718
  exports.NotificationBaseApi = NotificationBaseApi;
10706
10719
  exports.OrgNotificationApi = OrgNotificationApi;
10707
10720
  exports.OrganizationBillStatusLocalization = OrganizationBillStatusLocalization;
10721
+ exports.OrganizationStatusesLocalization = OrganizationStatusesLocalization;
10708
10722
  exports.OvertimeTypeLocalization = OvertimeTypeLocalization;
10709
10723
  exports.PublicTeamApi = PublicTeamApi;
10710
10724
  exports.PublicUserApi = PublicUserApi;