Skip to content

Commit 6c4ddbf

Browse files
committed
feat: agregar idioma francés (v1.2.1)
1 parent 4c7961c commit 6c4ddbf

5 files changed

Lines changed: 403 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ Todos los cambios notables del proyecto se documentan en este archivo.
66

77
_Sin cambios documentados todavía._
88

9+
## [1.2.1] - 2026-04-08
10+
11+
### UX / UI
12+
- Nuevo idioma: Francés.
13+
914
## [1.2.0] - 2026-04-08
1015

1116
### Nuevas features

Yagua.iss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
[Setup]
55
AppId={{2A0F8C4B-6E0D-4E7B-9E92-9B8D3D34B6F1}}
66
AppName=Yagua
7-
AppVersion=1.2.0
8-
AppVerName=Yagua 1.2.0
7+
AppVersion=1.2.1
8+
AppVerName=Yagua 1.2.1
99
AppPublisher=GuilleBouix
1010
AppPublisherURL=https://github.com/GuilleBouix
1111
AppSupportURL=https://github.com/GuilleBouix
@@ -17,7 +17,7 @@ DefaultDirName={pf}\Yagua
1717
DefaultGroupName=Yagua
1818
UninstallDisplayIcon={app}\Yagua.exe
1919
OutputDir=installer
20-
OutputBaseFilename=Yagua_Setup_1.2.0
20+
OutputBaseFilename=Yagua_Setup_1.2.1
2121
Compression=lzma
2222
SolidCompression=yes
2323
ArchitecturesInstallIn64BitMode=x64

app/translations/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
'Español': 'Español',
2727
'English': 'English',
2828
'Portugues': 'Portugues',
29+
'Français': 'Français',
2930
}
3031

3132
# Idioma por defecto cuando no hay configuracion guardada
@@ -130,6 +131,8 @@ def get_translations(lang=None):
130131
from app.translations.en import TRANSLATIONS
131132
elif lang == 'Portugues':
132133
from app.translations.pt import TRANSLATIONS
134+
elif lang == 'Français':
135+
from app.translations.fr import TRANSLATIONS
133136
else:
134137
# Fallback a ingles si el idioma no se reconoce
135138
from app.translations.en import TRANSLATIONS

0 commit comments

Comments
 (0)