Translation into Czech added to the file.

CZ - Czech Republic
This commit is contained in:
Michal Zboril
2025-09-11 08:09:57 +02:00
committed by GitHub
parent 59a1483223
commit 28043f6299

View File

@@ -5,6 +5,7 @@
pub fn filter_traffic_translation(language: Language) -> String {
match language {
Language::EN => "Filter traffic",
Language::CZ => "Filtr provozu",
Language::IT => "Filtra il traffico",
_ => "Filter traffic",
}
@@ -15,6 +16,7 @@ pub fn filter_traffic_translation(language: Language) -> String {
pub fn traffic_source_translation(language: Language) -> &'static str {
match language {
Language::EN => "Traffic source",
Language::CZ => "Zdroj provozu",
Language::IT => "Fonte del traffico",
_ => "Traffic source",
}