{{ $t("CreateMatch.FormSeriesType") }}
@@ -479,7 +488,8 @@ export default {
map_pool: [],
spectators: [],
side_type: "standard",
- map_sides: []
+ map_sides: [],
+ wingman: false
},
datemenu: false,
formTitle: this.$t("Seasons.NewFormTitle"),
@@ -527,7 +537,8 @@ export default {
map_pool: [],
spectators: [],
side_type: "standard",
- map_sides: []
+ map_sides: [],
+ wingman: false
};
this.$refs.newSeasonForm.resetValidation();
});
@@ -685,7 +696,8 @@ export default {
map_pool: [],
spectators: [],
side_type: "standard",
- map_sides: []
+ map_sides: [],
+ wingman: false
};
this.$refs.newSeasonForm.resetValidation();
});
@@ -711,6 +723,7 @@ export default {
obj !== "players_per_team" &&
obj !== "maps_to_win" &&
obj !== "skip_veto" &&
+ obj !== "wingman" &&
obj !== "map_pool" &&
obj !== "spectators" &&
obj !== "side_type" &&
@@ -724,7 +737,7 @@ export default {
this.seasonDefaults[obj] = seasonCvars[obj].split(" ");
else if (obj === "maps_to_win")
this.seasonDefaults[obj] = parseInt(seasonCvars[obj]);
- else if (obj === "skip_veto") {
+ else if (obj === "skip_veto" || obj === "wingman") {
seasonCvars[obj] = seasonCvars[obj] == 0 ? false : true;
this.seasonDefaults[obj] = seasonCvars[obj];
} else if (obj === "map_sides") {
diff --git a/src/components/VetoTable.vue b/src/components/VetoTable.vue
index bbaeaa6..c8d2a75 100644
--- a/src/components/VetoTable.vue
+++ b/src/components/VetoTable.vue
@@ -22,7 +22,11 @@
{{ $t("Veto.VetoPick") }}
-
+
{{ $t("Veto.VetoBan") }}
diff --git a/src/translations/translations.json b/src/translations/translations.json
index 7af2ba8..391ae11 100644
--- a/src/translations/translations.json
+++ b/src/translations/translations.json
@@ -112,7 +112,8 @@
"MapSides": "Map Side For Map {map}",
"MapSidesTeam1CT": "Team 1 Starts CT",
"MapSidesTeam2CT": "Team 2 Starts CT",
- "MapSidesKnife": "Teams Knife For Sides"
+ "MapSidesKnife": "Teams Knife For Sides",
+ "Wingman": "Wingman Match?"
},
"PlayerStats": {
"Kills": "Kills",
@@ -478,7 +479,8 @@
"MapSides": "Côté de la map pour la carte {map}",
"MapSidesTeam1CT": "Equipe 1 démarre en CT",
"MapSidesTeam2CT": "Equipe 2 démarre en CT",
- "MapSidesKnife": "Coté décidé par un round au couteau"
+ "MapSidesKnife": "Coté décidé par un round au couteau",
+ "Wingman": "Match d'ailier ?"
},
"PlayerStats": {
"Kills": "Kills",
@@ -840,7 +842,8 @@
"SkipVeto": "ゲーム内拒否権をスキップ?",
"KnifeDefault": "デフォルト",
"KnifeNever": "ネバーナイフ",
- "KnifeAlways": "常にナイフ"
+ "KnifeAlways": "常にナイフ",
+ "Wingman": "ウィングマン・マッチ?"
},
"PlayerStats": {
"Kills": "キルズ",