-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add auto ws map hosting * Add polish translation * bump version
- Loading branch information
Showing
10 changed files
with
105 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace cs2_rockthevote | ||
{ | ||
public class Map | ||
{ | ||
public string? Id { get; set; } | ||
public string Name { get; set; } | ||
|
||
public Map(string name, string? id) | ||
{ | ||
Id = id?.Trim(); | ||
Name = name.Trim().ToLower(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"rtv.prefix": "{red}[RockTheVote]{default}", | ||
"votemap.prefix": "{red}[Votemap]{default}", | ||
"timeleft.prefix": "{red}[Timeleft]{default}", | ||
"timeleft.remaining-rounds": "Pozostało {0} rund(y)", | ||
"timeleft.remaining-time-hour": "Pozostały czas {0}:{1}:{2}", | ||
"timeleft.remaining-time-minute": "Pozostały czas {0} minut(y) i {1} sekund(y)", | ||
"timeleft.remaining-time-second": "Pozostały czas {0} sekund(y)", | ||
"timeleft.no-time-limit": "Nie ma limitu czasowego", | ||
"timeleft.last-round": "To jest ostatnia runda", | ||
"timeleft.time-over": "Czas minął, to jest ostatnia runda", | ||
"votemap.player-voted": "Gracz {green}{0}{default} zagłosował na {green}{1}{default}", | ||
"votemap.already-voted": "Już zagłosowałeś na {green}{0}{default}", | ||
"votemap.in-the-map": "na mapie {0}", | ||
"votemap.changing-map": "Zmieniam mapę na {green}{0}", | ||
"votemap.changing-map-next-round": "Mapa zostanie zmieniona na {green}{0}{default} w następnej rundzie...", | ||
"general.votes-needed": "({0} zagłosowało, potrzeba {1})", | ||
"general.invalid-map": "Nieprawidłowa mapa", | ||
"nominate.nominated": "Gracz {green}{0}{default} nominował mapę {green}{1}{default}, obecnie ma {2} głos(y)", | ||
"nominate.already-nominated": "Już nominowałeś mapę {green}{0}{default}, ma {1} głos(y)", | ||
"general.validation.current-map": "Nie możesz wybrać obecnej mapy", | ||
"general.validation.minimum-rounds": "Minimalna liczba rund do użycia tej komendy to {0}", | ||
"general.validation.warmup": "Komenda wyłączona podczas rozgrzewki.", | ||
"general.validation.minimum-players": "Minimalna liczba graczy do użycia tej komendy to {0}", | ||
"general.validation.disabled": "Komenda obecnie wyłączona", | ||
"rtv.rocked-the-vote": "Gracz {green}{0}{default} chce rozpocząć głosowanie", | ||
"rtv.already-rocked-the-vote": "Już rozpocząłeś głosowanie", | ||
"rtv.votes-reached": "Osiągnięto wymaganą liczbę głosów, rozpoczynam głosowanie...", | ||
"rtv.disabled": "RTV jest obecnie wyłączone", | ||
"emv.you-voted": "Zagłosowałeś na {0}", | ||
"emv.vote-ended": "Głosowanie zakończone, następną mapą będzie {green}{0}{default} ({1:N2}% z {2} głosów)", | ||
"emv.vote-ended-no-votes": "Brak głosów, następną mapą będzie {green}{0}", | ||
"general.changing-map": "Zmieniam mapę na {green}{0}", | ||
"general.changing-map-next-round": "Mapa zostanie zmieniona na {green}{0}{default} w następnej rundzie...", | ||
"emv.hud.menu-title": "Głosuj na następną mapę:", | ||
"emv.hud.hud-timer": "Głosuj na następną mapę: {0}s", | ||
"emv.hud.finished": "Głosowanie zakończone, następna mapa: {0}", | ||
"nextmap": "Następną mapą będzie {green}{0}", | ||
"nextmap.decided-by-vote": "Następna mapa zostanie wybrana głosowaniem" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
//Put your map list here | ||
de_thera:3121217565 | ||
de_vertigo | ||
cs_italy | ||
de_inferno | ||
|