Skip to content

Commit

Permalink
Merge pull request #139 from fuzunspm/main
Browse files Browse the repository at this point in the history
Added Turkish Translation
  • Loading branch information
GyulyVGC authored Apr 13, 2023
2 parents 5e49be4 + fcd3470 commit f631996
Show file tree
Hide file tree
Showing 7 changed files with 97 additions and 17 deletions.
6 changes: 6 additions & 0 deletions resources/fonts/full/subset_characters.txt
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ z
¿
Ê
Î
Ö
Ü
à
á
Expand All @@ -120,9 +121,14 @@ z
ą
ć
ę
ğ
İ
ı
ł
ń
ś
Ş
ş
ź
ż
Ș
Expand Down
Binary file modified resources/fonts/subset/sarasa-mono-sc-bold.subset.ttf
Binary file not shown.
Binary file modified resources/fonts/subset/sarasa-mono-sc-regular.subset.ttf
Binary file not shown.
5 changes: 4 additions & 1 deletion src/gui/pages/settings_language_page.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,13 @@ pub fn settings_language_page(sniffer: &Sniffer) -> Container<Message> {
language_radios(language_active, &Language::COL1, font, sniffer.style);
let col_language_radio_2 =
language_radios(language_active, &Language::COL2, font, sniffer.style);
let col_language_radio_3 =
language_radios(language_active, &Language::COL3, font, sniffer.style);
let row_language_radio = Row::new()
.spacing(50)
.push(col_language_radio_1)
.push(col_language_radio_2);
.push(col_language_radio_2)
.push(col_language_radio_3);

let content = Column::new()
.align_items(Alignment::Center)
Expand Down
Loading

0 comments on commit f631996

Please sign in to comment.