Skip to content

Commit 20c1b32

Browse files
committed
Update French language author and reorder radio buttons
Changed the author of the French translation to 'Locktix' in strings/fr_FR.py. Reordered the French and Romanian language radio buttons in the change_language dialog for consistency.
1 parent a55cc6b commit 20c1b32

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

dialogs/change_language.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ def show():
2222

2323
custom_ui.Radiobutton(window, text = strings.lang.lang_system_default, value = "default", variable = language).pack(anchor = "w")
2424
custom_ui.Radiobutton(window, text = strings.en_US.language, value = "en_US", variable = language).pack(anchor = "w")
25-
custom_ui.Radiobutton(window, text = strings.ro_RO.language, value = "ro_RO", variable = language).pack(anchor = "w")
2625
custom_ui.Radiobutton(window, text = strings.fr_FR.language, value = "fr_FR", variable = language).pack(anchor = "w")
26+
custom_ui.Radiobutton(window, text = strings.ro_RO.language, value = "ro_RO", variable = language).pack(anchor = "w")
27+
2728

2829
buttons = ttk.Frame(window)
2930
buttons.pack(pady = preferences.get_scaled_value(16), fill = "x")

strings/fr_FR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Informations sur la langue
44
language = "Français"
55
language_en = "French"
6-
author = "Valer100"
6+
author = "Locktix"
77

88
# Fenêtre principale
99
choose_a_file = "Choisir un fichier"

0 commit comments

Comments
 (0)