Skip to content

Commit

Permalink
update translation files
Browse files Browse the repository at this point in the history
  • Loading branch information
rafatosta committed Dec 3, 2024
1 parent 7c1180c commit 33ddd43
Show file tree
Hide file tree
Showing 49 changed files with 2,039 additions and 48 deletions.
30 changes: 26 additions & 4 deletions _run/run.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,36 @@
import os

# Build the windows from the .ui file
os.system('./_scripts/build-windows.sh')
#os.system('./_scripts/build-windows.sh')

# Build the translations
os.system('./_scripts/build-translations.sh')

# Activate Custom Debug Settings
debug = True
# debug = False

# Run the app
os.system('python -m zapzap ' + ('--zapDebug' if debug ==
True else ''))
# os.system('python -m zapzap ' + ('--zapDebug' if debug ==
# True else ''))
""" import os
def get_linux_distro():
distro_name = "Desconhecida"
distro_id = "0"
if os.path.exists("/etc/os-release"):
with open("/etc/os-release") as f:
for line in f:
#print(line)
if line.startswith("PRETTY_NAME"):
# Extrair o nome da distribuição
distro_name = line.split("=")[1].strip().replace('"', '')
#break
if line.startswith("ID"):
# Extrair o ID da distribuição
distro_id = line.split("=")[1].strip().replace('"', '')
#break
return distro_name, distro_id
print(f"\nDistro: {get_linux_distro()}\n") """
3 changes: 2 additions & 1 deletion po/LINGUAS
Original file line number Diff line number Diff line change
Expand Up @@ -40,4 +40,5 @@ am
el
sr
da
bn
bn
bs
2 changes: 1 addition & 1 deletion po/am.po
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-26 10:58-0300\n"
"POT-Creation-Date: 2024-12-03 10:19-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
Expand Down
2 changes: 1 addition & 1 deletion po/ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-26 10:58-0300\n"
"POT-Creation-Date: 2024-12-03 10:19-0300\n"
"PO-Revision-Date: 2022-07-22 15:18+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
Expand Down
Loading

0 comments on commit 33ddd43

Please sign in to comment.