-
-
Notifications
You must be signed in to change notification settings - Fork 600
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 all commits
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
Binary file not shown.
Binary file not shown.
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 |
---|---|---|
|
@@ -13,6 +13,7 @@ pub fn new_version_available_translation(language: Language) -> &'static str { | |
Language::DE => "Eine neue Version ist auf GitHub verfügbar", | ||
Language::TR => "Daha yeni bir versiyon GitHub'ta mevcut", | ||
Language::ES => "Hay una nueva versión disponible en GitHub", | ||
Language::KO => "GitHub에 새로운 버전이 출시되었습니다.", | ||
_ => "A newer version is available on GitHub", | ||
} | ||
} | ||
|
@@ -29,6 +30,7 @@ pub fn inspect_translation(language: Language) -> &'static str { | |
Language::SV => "Inspektera", | ||
Language::TR => "İncele", | ||
Language::FA => "بازرسی", | ||
Language::KO => "검사", | ||
_ => "Inspect", | ||
} | ||
} | ||
|
@@ -43,6 +45,7 @@ pub fn connection_details_translation(language: Language) -> &'static str { | |
Language::TR => "Bağlantı detayları", | ||
Language::FA => "مشخصات اتصال", | ||
Language::ES => "Detalles de la Conexión", | ||
Language::KO => "연결 상세", | ||
_ => "Connection details", | ||
} | ||
} | ||
|
@@ -57,6 +60,7 @@ pub fn dropped_packets_translation(language: Language) -> &'static str { | |
Language::TR => "Düşen paketler", | ||
Language::FA => "بسته های رها شده", | ||
Language::ES => "Paquetes perdidos", | ||
Language::KO => "손실 패킷", | ||
_ => "Dropped packets", | ||
} | ||
} | ||
|
@@ -71,6 +75,7 @@ pub fn data_representation_translation(language: Language) -> &'static str { | |
Language::TR => "Veri gösterimi", | ||
Language::FA => "بازنمایی داده ها", // TODO: or نمایندگی داده ها depending on context | ||
Language::ES => "Representación de los datos", | ||
Language::KO => "데이터 단위", | ||
_ => "Data representation", | ||
} | ||
} | ||
|
@@ -85,6 +90,7 @@ pub fn host_translation(language: Language) -> &'static str { | |
Language::TR => "Ağ sunucusu", | ||
Language::FA => "میزبان شبکه", | ||
Language::ES => "Host de red", | ||
Language::KO => "네트워크 호스트", | ||
_ => "Network host", | ||
} | ||
} | ||
|
@@ -99,6 +105,7 @@ pub fn only_top_30_hosts_translation(language: Language) -> &'static str { | |
Language::TR => "Sadece ilk 30 sunucu burda gösterilmektedir", | ||
Language::FA => "تنها ۳۰ میزبان برتر در اینجا نمایش داده شده اند", | ||
Language::ES => "Aquí sólo se muestran los 30 mejores anfitriones", | ||
Language::KO => "상위 30개의 호스트만 노출됩니다", | ||
_ => "Only the top 30 hosts are displayed here", | ||
} | ||
} | ||
|
@@ -113,6 +120,7 @@ pub fn sort_by_translation(language: Language) -> &'static str { | |
Language::TR => "Şuna göre sırala", | ||
Language::FA => "مرتب سازی بر اساس", | ||
Language::ES => "Ordenar por", | ||
Language::KO => "정렬", | ||
_ => "Sort by", | ||
} | ||
} | ||
|
@@ -127,6 +135,7 @@ pub fn local_translation(language: Language) -> String { | |
Language::TR => "Yerel ağ", | ||
Language::FA => "شبکه محلی", | ||
Language::ES => "Red local", | ||
Language::KO => "로컬 네트워크", | ||
_ => "Local network", | ||
} | ||
.to_string() | ||
|
@@ -142,6 +151,7 @@ pub fn unknown_translation(language: Language) -> String { | |
Language::TR => "Bilinmeyen yer", | ||
Language::FA => "محل نامعلوم", | ||
Language::ES => "Localización desconocida", | ||
Language::KO => "알 수 없는 위치", | ||
_ => "Unknown location", | ||
} | ||
.to_string() | ||
|
@@ -157,6 +167,7 @@ pub fn your_network_adapter_translation(language: Language) -> String { | |
Language::TR => "Ağ adaptörün", | ||
Language::FA => "مبدل شبکه شما", | ||
Language::ES => "Su adaptador de red", | ||
Language::KO => "네트워크 어댑터", | ||
_ => "Your network adapter", | ||
} | ||
.to_string() | ||
|
@@ -172,6 +183,7 @@ pub fn socket_address_translation(language: Language) -> &'static str { | |
Language::TR => "Soket adresi", | ||
Language::FA => "پریز شبکه", | ||
Language::ES => "Dirección del socket", | ||
Language::KO => "소켓 어드레스", | ||
_ => "Socket address", | ||
} | ||
} | ||
|
@@ -186,6 +198,7 @@ pub fn mac_address_translation(language: Language) -> &'static str { | |
Language::TR => "MAC adresi", | ||
Language::FA => "آدرس MAC", | ||
Language::ES => "Dirección 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", | ||
} | ||
} | ||
|
@@ -200,6 +213,7 @@ pub fn source_translation(language: Language) -> &'static str { | |
Language::TR => "Kaynak", | ||
Language::FA => "منبع", | ||
Language::ES => "Origen", | ||
Language::KO => "소스", | ||
_ => "Source", | ||
} | ||
} | ||
|
@@ -213,6 +227,7 @@ pub fn destination_translation(language: Language) -> &'static str { | |
Language::TR => "Hedef", | ||
Language::FA => "مقصد", | ||
Language::ES => "Destino", | ||
Language::KO => "목적지", | ||
_ => "Destination", | ||
} | ||
} | ||
|
@@ -227,6 +242,7 @@ pub fn fqdn_translation(language: Language) -> &'static str { | |
Language::TR => "Tam nitelikli alan adı", | ||
Language::FA => "نام دامنه جامع الشرایط", | ||
Language::ES => "Nombre de 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", | ||
} | ||
} | ||
|
@@ -241,6 +257,7 @@ pub fn administrative_entity_translation(language: Language) -> &'static str { | |
Language::TR => "Yönetim varlığı", | ||
Language::FA => "واحد اجرایی", // TODO: or واحد اداری depending on context | ||
Language::ES => "Entidad Administrativa", | ||
Language::KO => "관리 엔티티", | ||
_ => "Autonomous System name", | ||
} | ||
} | ||
|
@@ -255,6 +272,7 @@ pub fn transmitted_data_translation(language: Language) -> &'static str { | |
Language::TR => "Aktarılan veri", | ||
Language::FA => "دادهٔ منتقل شده", | ||
Language::ES => "Datos transmitidos", | ||
Language::KO => "수신된 데이터", | ||
_ => "Transmitted data", | ||
} | ||
} | ||
|
@@ -269,6 +287,7 @@ pub fn country_translation(language: Language) -> &'static str { | |
Language::TR => "Ülke", | ||
Language::FA => "کشور", | ||
Language::ES => "País", | ||
Language::KO => "국가", | ||
_ => "Country", | ||
} | ||
} | ||
|
@@ -283,6 +302,7 @@ pub fn domain_name_translation(language: Language) -> &'static str { | |
Language::TR => "Alan adı", | ||
Language::FA => "نام دامنه", | ||
Language::ES => "Nombre de dominio", | ||
Language::KO => "도메인 네임", | ||
_ => "Domain name", | ||
} | ||
} | ||
|
@@ -297,6 +317,7 @@ pub fn only_show_favorites_translation(language: Language) -> &'static str { | |
Language::TR => "Sadece favorileri göster", | ||
Language::FA => "فقط پسندیده ها را نمایش بده", | ||
Language::ES => "Mostrar solo los favoritos", | ||
Language::KO => "즐겨찾기만 보기", | ||
_ => "Only show favorites", | ||
} | ||
} | ||
|
@@ -311,6 +332,7 @@ pub fn search_filters_translation(language: Language) -> &'static str { | |
Language::TR => "Arama filtresi", | ||
Language::FA => "صافی های جستجو", | ||
Language::ES => "Filtros de búsqueda", | ||
Language::KO => "검색 필터", | ||
_ => "Search filters", | ||
} | ||
} | ||
|
@@ -325,6 +347,7 @@ pub fn no_search_results_translation(language: Language) -> &'static str { | |
Language::TR => "Belirtilen arama filtrelerine göre herhangi bir sonuç bulunmamaktadır", | ||
Language::FA => "هیچ نتیجه ای بر اساس صافی های جستجوی تعیین شده وجود ندارد", | ||
Language::ES => "No hay resultados disponibles según los filtros de búsqueda especificados", | ||
Language::KO => "해당 검색 필터로 검색된 결과가 없습니다.", | ||
_ => "No result available according to the specified search filters", | ||
} | ||
} | ||
|
@@ -344,6 +367,7 @@ pub fn showing_results_translation( | |
Language::TR => format!("{total} sonuç içinde {start}-{end}"), | ||
Language::FA => format!("نمایش {start}-{end} از تمامی {total} نتیجه"), | ||
Language::ES => format!("Mostrando {start}-{end} de {total} resultados totales"), | ||
Language::KO => format!("총 {total}개의 결과 중 {start}-{end}을(를) 보여줍니다"), | ||
_ => format!("Showing {start}-{end} of {total} total results"), | ||
} | ||
} | ||
|
@@ -359,6 +383,7 @@ pub fn color_gradients_translation(language: Language) -> &'static str { | |
Language::TR => "Renk grandyanı uygula", | ||
Language::FA => "اعمال گرادیان های رنگ", | ||
Language::ES => "Aplicar gradientes de color", | ||
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.
소켓 주소