-
-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Korean translation for additional text #205
Merged
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,6 +9,7 @@ pub fn new_version_available_translation(language: Language) -> &'static str { | |
Language::RU => "Новая версия доступна на GitHub", | ||
Language::EL => "Μια νεότερη έκδοση είναι διαθέσιμη στο GitHub", | ||
Language::FA => "یک نسخه جدیدتر روی GitHub موجود است", | ||
Language::KO => "GitHub에 새로운 버전이 출시되었습니다.", | ||
_ => "A newer version is available on GitHub", | ||
} | ||
} | ||
|
@@ -22,6 +23,7 @@ pub fn inspect_translation(language: Language) -> &'static str { | |
Language::PL => "Sprawdź", | ||
Language::DE => "Überprüfen", | ||
Language::RU => "Инспектировать", | ||
Language::KO => "검사", | ||
_ => "Inspect", | ||
} | ||
} | ||
|
@@ -30,6 +32,7 @@ pub fn connection_details_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Connection details", | ||
Language::IT => "Dettagli della connessione", | ||
Language::KO => "연결 상세", | ||
_ => "Connection details", | ||
} | ||
} | ||
|
@@ -38,6 +41,7 @@ pub fn dropped_packets_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Dropped packets", | ||
Language::IT => "Pacchetti mancati", | ||
Language::KO => "손실 패킷", | ||
_ => "Dropped packets", | ||
} | ||
} | ||
|
@@ -46,6 +50,7 @@ pub fn data_representation_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Data representation", | ||
Language::IT => "Rappresentazione dei dati", | ||
Language::KO => "데이터 단위", | ||
_ => "Data representation", | ||
} | ||
} | ||
|
@@ -54,6 +59,7 @@ pub fn host_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Network host", | ||
Language::IT => "Host di rete", | ||
Language::KO => "네트워크 호스트", | ||
_ => "Network host", | ||
} | ||
} | ||
|
@@ -62,6 +68,7 @@ pub fn only_top_30_hosts_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Only the top 30 hosts are displayed here", | ||
Language::IT => "Solo i maggiori 30 host sono mostrati qui", | ||
Language::KO => "상위 30개의 호스트만 노출됩니다", | ||
_ => "Only the top 30 hosts are displayed here", | ||
} | ||
} | ||
|
@@ -70,6 +77,7 @@ pub fn sort_by_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Sort by", | ||
Language::IT => "Ordina per", | ||
Language::KO => "정렬", | ||
_ => "Sort by", | ||
} | ||
} | ||
|
@@ -78,6 +86,7 @@ pub fn local_translation(language: Language) -> String { | |
match language { | ||
Language::EN => "Local network", | ||
Language::IT => "Rete locale", | ||
Language::KO => "로컬 네트워크", | ||
_ => "Local network", | ||
} | ||
.to_string() | ||
|
@@ -87,6 +96,7 @@ pub fn unknown_translation(language: Language) -> String { | |
match language { | ||
Language::EN => "Unknown location", | ||
Language::IT => "Localizzazione sconosciuta", | ||
Language::KO => "알 수 없는 위치", | ||
_ => "Unknown location", | ||
} | ||
.to_string() | ||
|
@@ -96,6 +106,7 @@ pub fn your_network_adapter_translation(language: Language) -> String { | |
match language { | ||
Language::EN => "Your network adapter", | ||
Language::IT => "La tua scheda di rete", | ||
Language::KO => "네트워크 어댑터", | ||
_ => "Your network adapter", | ||
} | ||
.to_string() | ||
|
@@ -105,6 +116,7 @@ pub fn socket_address_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Socket address", | ||
Language::IT => "Indirizzo del socket", | ||
Language::KO => "소켓 어드레스", | ||
_ => "Socket address", | ||
} | ||
} | ||
|
@@ -113,6 +125,7 @@ pub fn mac_address_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "MAC address", | ||
Language::IT => "Indirizzo MAC", | ||
Language::KO => "맥 어드레스", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. MAC 주소 |
||
_ => "MAC address", | ||
} | ||
} | ||
|
@@ -121,6 +134,7 @@ pub fn source_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Source", | ||
Language::IT => "Sorgente", | ||
Language::KO => "소스", | ||
_ => "Source", | ||
} | ||
} | ||
|
@@ -129,6 +143,7 @@ pub fn destination_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Destination", | ||
Language::IT => "Destinazione", | ||
Language::KO => "목적지", | ||
_ => "Destination", | ||
} | ||
} | ||
|
@@ -137,6 +152,7 @@ pub fn fqdn_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Fully qualified domain name", | ||
Language::IT => "Nome di dominio completo", | ||
Language::KO => "절대 도메인 네임", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 전체 주소 도메인 네임 |
||
_ => "Fully qualified domain name", | ||
} | ||
} | ||
|
@@ -145,6 +161,7 @@ pub fn administrative_entity_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Administrative entity", | ||
Language::IT => "Entità amministrativa", | ||
Language::KO => "관리 엔티티", | ||
_ => "Administrative entity", | ||
} | ||
} | ||
|
@@ -153,6 +170,7 @@ pub fn transmitted_data_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Transmitted data", | ||
Language::IT => "Dati trasmessi", | ||
Language::KO => "수신된 데이터", | ||
_ => "Transmitted data", | ||
} | ||
} | ||
|
@@ -161,6 +179,7 @@ pub fn country_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Country", | ||
Language::IT => "Paese", | ||
Language::KO => "국가", | ||
_ => "Country", | ||
} | ||
} | ||
|
@@ -169,6 +188,7 @@ pub fn domain_name_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Domain name", | ||
Language::IT => "Nome di dominio", | ||
Language::KO => "도메인 네임", | ||
_ => "Domain name", | ||
} | ||
} | ||
|
@@ -177,6 +197,7 @@ pub fn only_show_favorites_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Only show favorites", | ||
Language::IT => "Mostra solo i preferiti", | ||
Language::KO => "즐겨찾기만 보기", | ||
_ => "Only show favorites", | ||
} | ||
} | ||
|
@@ -185,6 +206,7 @@ pub fn search_filters_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Search filters", | ||
Language::IT => "Filtri di ricerca", | ||
Language::KO => "검색 필터", | ||
_ => "Search filters", | ||
} | ||
} | ||
|
@@ -193,6 +215,7 @@ pub fn no_search_results_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "No result available according to the specified search filters", | ||
Language::IT => "Nessun risultato disponibile secondo i filtri di ricerca specificati", | ||
Language::KO => "해당 검색 필터로 검색된 결과가 없습니다.", | ||
_ => "No result available according to the specified search filters", | ||
} | ||
} | ||
|
@@ -206,6 +229,7 @@ pub fn showing_results_translation( | |
match language { | ||
Language::EN => format!("Showing {start}-{end} of {total} total results"), | ||
Language::IT => format!("Sono mostrati {start}-{end} di {total} risultati totali"), | ||
Language::KO => format!("총 {total}개의 결과 중 {start}-{end}을(를) 보여줍니다") | ||
_ => format!("Showing {start}-{end} of {total} total results"), | ||
} | ||
} | ||
|
@@ -215,6 +239,7 @@ pub fn color_gradients_translation(language: Language) -> &'static str { | |
match language { | ||
Language::EN => "Apply color gradients", | ||
Language::IT => "Applica sfumature di colore", | ||
Language::KO => "그라디언트 색상 적용", | ||
_ => "Apply color gradients", | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
소켓 주소