@mtgame/core 0.1.126 → 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.
- package/bundles/mtgame-core.umd.js +248 -209
- package/bundles/mtgame-core.umd.js.map +1 -1
- package/esm2015/localization/public-api.js +2 -1
- package/esm2015/localization/rugby-foul-game-stage.js +14 -0
- package/esm2015/localization/rugby-foul-sanction.js +4 -1
- package/esm2015/models/rugby-foul-type.js +20 -2
- package/esm2015/models/rugby-game-log.js +6 -3
- package/esm2015/models/rugby-statistic.js +2 -2
- package/fesm2015/mtgame-core.js +41 -4
- package/fesm2015/mtgame-core.js.map +1 -1
- package/localization/public-api.d.ts +1 -0
- package/localization/rugby-foul-game-stage.d.ts +12 -0
- package/localization/rugby-foul-sanction.d.ts +3 -0
- package/models/rugby-foul-type.d.ts +17 -1
- package/models/rugby-game-log.d.ts +2 -1
- package/mtgame-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -3021,16 +3021,16 @@
|
|
|
3021
3021
|
})
|
|
3022
3022
|
], exports.TournamentDisqualification);
|
|
3023
3023
|
|
|
3024
|
-
var _a$
|
|
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$
|
|
3031
|
-
_a$
|
|
3032
|
-
_a$
|
|
3033
|
-
_a$
|
|
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$
|
|
7803
|
-
var TeamEventTypeLocalization = (_a$
|
|
7804
|
-
_a$
|
|
7805
|
-
_a$
|
|
7806
|
-
_a$
|
|
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$
|
|
8453
|
+
var _a$g;
|
|
8436
8454
|
exports.RugbyGameLogTypes = void 0;
|
|
8437
8455
|
(function (RugbyGameLogTypes) {
|
|
8438
8456
|
RugbyGameLogTypes[RugbyGameLogTypes["enter_game"] = 1] = "enter_game";
|
|
@@ -8478,21 +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$
|
|
8482
|
-
_a$
|
|
8483
|
-
_a$
|
|
8484
|
-
_a$
|
|
8485
|
-
_a$
|
|
8486
|
-
_a$
|
|
8487
|
-
_a$
|
|
8488
|
-
_a$
|
|
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,
|
|
8495
|
-
exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick
|
|
8513
|
+
exports.RugbyGameLogTypes.start_kick, exports.RugbyGameLogTypes.twenty_two_meters_kick, exports.RugbyGameLogTypes.goal_kick,
|
|
8514
|
+
exports.RugbyGameLogTypes.penalty_try
|
|
8496
8515
|
];
|
|
8497
8516
|
exports.RugbyGameLog = /** @class */ (function (_super) {
|
|
8498
8517
|
__extends(RugbyGameLog, _super);
|
|
@@ -8567,12 +8586,14 @@
|
|
|
8567
8586
|
is_highlight: 'isHighlight',
|
|
8568
8587
|
foul_type: 'foulType',
|
|
8569
8588
|
foul_sanction: 'foulSanction',
|
|
8589
|
+
foul_game_stage: 'foulGameStage',
|
|
8570
8590
|
},
|
|
8571
8591
|
relation: {
|
|
8572
8592
|
datetime: DateTimeField,
|
|
8573
8593
|
logType: enumField(exports.RugbyGameLogTypes),
|
|
8574
8594
|
foulType: exports.RugbyFoulType,
|
|
8575
8595
|
foulSanction: enumField(exports.RugbyFoulSanctions),
|
|
8596
|
+
foulGameStage: enumField(exports.RugbyFoulGameStage),
|
|
8576
8597
|
}
|
|
8577
8598
|
})
|
|
8578
8599
|
], exports.RugbyGameLog);
|
|
@@ -11036,215 +11057,232 @@
|
|
|
11036
11057
|
{ type: ConfigService }
|
|
11037
11058
|
]; };
|
|
11038
11059
|
|
|
11039
|
-
var _a$
|
|
11040
|
-
var BasketballGameLogTypeLocalization = (_a$
|
|
11041
|
-
_a$
|
|
11042
|
-
_a$
|
|
11043
|
-
_a$
|
|
11044
|
-
_a$
|
|
11045
|
-
_a$
|
|
11046
|
-
_a$
|
|
11047
|
-
_a$
|
|
11048
|
-
_a$
|
|
11049
|
-
_a$
|
|
11050
|
-
_a$
|
|
11051
|
-
_a$
|
|
11052
|
-
_a$
|
|
11053
|
-
_a$
|
|
11054
|
-
_a$
|
|
11055
|
-
_a$
|
|
11056
|
-
_a$
|
|
11057
|
-
_a$
|
|
11058
|
-
_a$
|
|
11059
|
-
_a$
|
|
11060
|
-
_a$
|
|
11061
|
-
_a$
|
|
11062
|
-
_a$
|
|
11063
|
-
_a$
|
|
11064
|
-
_a$
|
|
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);
|
|
11065
11086
|
|
|
11066
|
-
var _a$
|
|
11067
|
-
var BasketballGameSubLogTypesLocalization = (_a$
|
|
11087
|
+
var _a$e;
|
|
11088
|
+
var BasketballGameSubLogTypesLocalization = (_a$e = {},
|
|
11068
11089
|
// Shots
|
|
11069
|
-
_a$
|
|
11070
|
-
_a$
|
|
11071
|
-
_a$
|
|
11072
|
-
_a$
|
|
11073
|
-
_a$
|
|
11074
|
-
_a$
|
|
11075
|
-
_a$
|
|
11076
|
-
_a$
|
|
11077
|
-
_a$
|
|
11078
|
-
_a$
|
|
11079
|
-
_a$
|
|
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] = 'Хукшот',
|
|
11080
11101
|
// foul
|
|
11081
|
-
_a$
|
|
11082
|
-
_a$
|
|
11083
|
-
_a$
|
|
11102
|
+
_a$e[exports.BasketballSubLogTypes.offensive_foul] = 'В нападении',
|
|
11103
|
+
_a$e[exports.BasketballSubLogTypes.shot_foul] = 'При броксе',
|
|
11104
|
+
_a$e[exports.BasketballSubLogTypes.mutual_foul] = 'Обоюдный фол',
|
|
11084
11105
|
// Turnover
|
|
11085
|
-
_a$
|
|
11086
|
-
_a$
|
|
11087
|
-
_a$
|
|
11088
|
-
_a$
|
|
11089
|
-
_a$
|
|
11090
|
-
_a$
|
|
11091
|
-
_a$
|
|
11092
|
-
_a$
|
|
11093
|
-
_a$
|
|
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] = 'Конец штрафного времени',
|
|
11094
11145
|
_a$d);
|
|
11095
11146
|
|
|
11096
11147
|
var _a$c;
|
|
11097
|
-
var
|
|
11098
|
-
_a$c[exports.
|
|
11099
|
-
_a$c[exports.
|
|
11100
|
-
_a$c[exports.
|
|
11101
|
-
_a$c[exports.
|
|
11102
|
-
_a$c[exports.
|
|
11103
|
-
_a$c[exports.
|
|
11104
|
-
_a$c[exports.
|
|
11105
|
-
_a$c[exports.
|
|
11106
|
-
_a$c[exports.
|
|
11107
|
-
_a$c[exports.
|
|
11108
|
-
_a$c[exports.
|
|
11109
|
-
_a$c[exports.
|
|
11110
|
-
_a$c[exports.
|
|
11111
|
-
_a$c[exports.
|
|
11112
|
-
_a$c[exports.
|
|
11113
|
-
_a$c[exports.
|
|
11114
|
-
_a$c[exports.
|
|
11115
|
-
_a$c[exports.
|
|
11116
|
-
_a$c[exports.
|
|
11117
|
-
_a$c[exports.
|
|
11118
|
-
_a$c[exports.
|
|
11119
|
-
_a$c[exports.
|
|
11120
|
-
_a$c[exports.
|
|
11121
|
-
_a$c[exports.
|
|
11122
|
-
_a$c[exports.
|
|
11123
|
-
_a$c[exports.
|
|
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] = 'Отражен пенальти',
|
|
11124
11178
|
_a$c);
|
|
11125
11179
|
|
|
11126
11180
|
var _a$b;
|
|
11127
|
-
var
|
|
11128
|
-
_a$b[exports.
|
|
11129
|
-
_a$b[exports.
|
|
11130
|
-
_a$b[exports.
|
|
11131
|
-
_a$b[exports.
|
|
11132
|
-
_a$b[exports.
|
|
11133
|
-
_a$b[exports.
|
|
11134
|
-
_a$b[exports.
|
|
11135
|
-
_a$b[exports.
|
|
11136
|
-
_a$b[exports.
|
|
11137
|
-
_a$b[exports.
|
|
11138
|
-
_a$b[exports.
|
|
11139
|
-
_a$b[exports.
|
|
11140
|
-
_a$b[exports.
|
|
11141
|
-
_a$b[exports.
|
|
11142
|
-
_a$b[exports.
|
|
11143
|
-
_a$b[exports.
|
|
11144
|
-
_a$b[exports.
|
|
11145
|
-
_a$b[exports.
|
|
11146
|
-
_a$b[exports.
|
|
11147
|
-
_a$b[exports.
|
|
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] = 'Отражен пенальти',
|
|
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] = '7м промах',
|
|
11190
|
+
_a$b[exports.HandballGameLogTypes.penalty_shot_on_goal] = '7м в створ',
|
|
11191
|
+
_a$b[exports.HandballGameLogTypes.penalty_goal] = '7м гол',
|
|
11192
|
+
_a$b[exports.HandballGameLogTypes.save] = 'Сэйв',
|
|
11193
|
+
_a$b[exports.HandballGameLogTypes.penalty_save] = 'Сэйв 7м',
|
|
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] = '2х минутный штраф',
|
|
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] = 'Таймаут',
|
|
11157
11202
|
_a$b);
|
|
11158
11203
|
|
|
11159
11204
|
var _a$a;
|
|
11160
|
-
var
|
|
11161
|
-
_a$a[exports.
|
|
11162
|
-
_a$a[exports.
|
|
11163
|
-
_a$a[exports.
|
|
11164
|
-
_a$a[exports.
|
|
11165
|
-
_a$a[exports.
|
|
11166
|
-
_a$a[exports.
|
|
11167
|
-
_a$a[exports.
|
|
11168
|
-
_a$a[exports.
|
|
11169
|
-
_a$a[exports.
|
|
11170
|
-
_a$a[exports.
|
|
11171
|
-
_a$a[exports.
|
|
11172
|
-
_a$a[exports.
|
|
11173
|
-
_a$a[exports.
|
|
11174
|
-
_a$a[exports.
|
|
11175
|
-
_a$a[exports.
|
|
11176
|
-
_a$a[exports.
|
|
11177
|
-
_a$a[exports.
|
|
11178
|
-
_a$a[exports.
|
|
11179
|
-
_a$a[exports.
|
|
11180
|
-
_a$a[exports.
|
|
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] = 'Угловой розыгрыш',
|
|
11181
11246
|
_a$a);
|
|
11182
11247
|
|
|
11183
11248
|
var _a$9;
|
|
11184
|
-
var
|
|
11185
|
-
_a$9[exports.
|
|
11186
|
-
_a$9[exports.
|
|
11187
|
-
_a$9[exports.
|
|
11188
|
-
_a$9[exports.
|
|
11189
|
-
_a$9[exports.
|
|
11190
|
-
_a$9[exports.
|
|
11191
|
-
_a$9[exports.
|
|
11192
|
-
_a$9[exports.
|
|
11193
|
-
_a$9[exports.
|
|
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] = 'Угловой розыгрыш',
|
|
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] = 'Дополнительное время + пенальти',
|
|
11225
11259
|
_a$9);
|
|
11226
11260
|
|
|
11227
11261
|
var _a$8;
|
|
11228
|
-
var
|
|
11229
|
-
_a$8[exports.
|
|
11230
|
-
_a$8[exports.
|
|
11231
|
-
_a$8[exports.
|
|
11232
|
-
_a$8[exports.
|
|
11233
|
-
_a$8[exports.
|
|
11234
|
-
_a$8[exports.
|
|
11235
|
-
_a$8[exports.
|
|
11236
|
-
_a$8[exports.
|
|
11237
|
-
_a$8[exports.
|
|
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] = 'Красная карточка',
|
|
11238
11272
|
_a$8);
|
|
11239
11273
|
|
|
11240
11274
|
var _a$7;
|
|
11241
|
-
var
|
|
11242
|
-
_a$7[exports.
|
|
11243
|
-
_a$7[exports.
|
|
11244
|
-
_a$7[exports.
|
|
11245
|
-
_a$7[exports.
|
|
11246
|
-
_a$7[exports.
|
|
11247
|
-
_a$7[exports.
|
|
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] = 'Команда',
|
|
11248
11286
|
_a$7);
|
|
11249
11287
|
|
|
11250
11288
|
var _a$6;
|
|
@@ -12119,6 +12157,7 @@
|
|
|
12119
12157
|
exports.RUGBY_GAME_LOG_TYPE_POINTS = RUGBY_GAME_LOG_TYPE_POINTS;
|
|
12120
12158
|
exports.RUGBY_TEAM_LOG_TYPES = RUGBY_TEAM_LOG_TYPES;
|
|
12121
12159
|
exports.ReferenceApi = ReferenceApi;
|
|
12160
|
+
exports.RugbyFoulGameStageLocalization = RugbyFoulGameStageLocalization;
|
|
12122
12161
|
exports.RugbyFoulSanctionLocalization = RugbyFoulSanctionLocalization;
|
|
12123
12162
|
exports.RugbyGameApi = RugbyGameApi;
|
|
12124
12163
|
exports.RugbyGameLogTypeLocalization = RugbyGameLogTypeLocalization;
|