Skip to content

Commit fdd335f

Browse files
committed
feat: idioma alemán (v1.2.2)
1 parent 9aa0e62 commit fdd335f

5 files changed

Lines changed: 386 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.2] - 2026-04-08
10+
11+
### UX / UI
12+
- Nuevo idioma: Alemán.
13+
914
## [1.2.1] - 2026-04-08
1015

1116
### UX / UI

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.1
8-
AppVerName=Yagua 1.2.1
7+
AppVersion=1.2.2
8+
AppVerName=Yagua 1.2.2
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.1
20+
OutputBaseFilename=Yagua_Setup_1.2.2
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
@@ -27,6 +27,7 @@
2727
'English': 'English',
2828
'Portugues': 'Portugues',
2929
'Français': 'Français',
30+
'Deutsch': 'Deutsch',
3031
}
3132

3233
# Idioma por defecto cuando no hay configuracion guardada
@@ -133,6 +134,8 @@ def get_translations(lang=None):
133134
from app.translations.pt import TRANSLATIONS
134135
elif lang == 'Français':
135136
from app.translations.fr import TRANSLATIONS
137+
elif lang == 'Deutsch':
138+
from app.translations.de import TRANSLATIONS
136139
else:
137140
# Fallback a ingles si el idioma no se reconoce
138141
from app.translations.en import TRANSLATIONS

0 commit comments

Comments
 (0)