Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improvements #531

Merged
merged 5 commits into from
Dec 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions WingetUI.iss
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
; Script generated by the Inno Setup Script Wizard.
; Script generated by the Inno Setup Script Wizard.
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "WingetUI"
#define MyAppVersion "1.5.2"
#define MyAppPublisher "Mart� Climent"
#define MyAppPublisher "Martí Climent"
#define MyAppURL "https://github.com/marticliment/WingetUI"
#define MyAppExeName "WingetUI.exe"

Expand Down
11 changes: 6 additions & 5 deletions apply_versions.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
import sys,os
import sys

try:

sys.path.append("wingetui")

from versions import *


def fileReplaceLinesWith(filename: str, list: dict[str, str]):
f = open(filename, "r+", encoding="utf-8", errors="ignore")
def fileReplaceLinesWith(filename: str, list: dict[str, str], encoding="utf-8"):
f = open(filename, "r+", encoding=encoding, errors="ignore")
data = ""
for line in f.readlines():
match = False
Expand All @@ -27,12 +28,12 @@ def fileReplaceLinesWith(filename: str, list: dict[str, str]):
fileReplaceLinesWith("WingetUI.iss", {
"#define MyAppVersion": f" \"{versionName}\"\n",
"VersionInfoVersion=": f"{versionISS}\n",
})
}, encoding = "utf-8-sig")

fileReplaceLinesWith("wingetui-version-file", {
" StringStruct(u'FileVersion'": f", u'{versionName}'),\n",
" StringStruct(u'ProductVersion'": f", u'{versionName}'),\n",
})
print("donwe!")
print("done!")
except Exception as e:
print(e)
14 changes: 7 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ In order to translate WingetUI to other languages or to update an old translatio
| Language | Translated | Translator(s) |
| :-- | :-- | --- |
| <img src='https://flagcdn.com/bn.svg' width=20> &nbsp; Bangla - বাংলা | 19% | Nilavra Bhattacharya |
| <img src='https://flagcdn.com/ad.svg' width=20> &nbsp; Catalan - Català | 100% | Martí Climent |
| <img src='https://flagcdn.com/cz.svg' width=20> &nbsp; Czech - Čeština | 100% | @panther7, Petr Janeček |
| <img src='https://flagcdn.com/ad.svg' width=20> &nbsp; Catalan - Català | 100% | [marticliment](https://github.com/marticliment) |
| <img src='https://flagcdn.com/cz.svg' width=20> &nbsp; Czech - Čeština | 100% | [panther7](https://github.com/panther7), Petr Janeček |
| <img src='https://flagcdn.com/de.svg' width=20> &nbsp; German - Deutsch | 93% | Datacra5H |
| <img src='https://flagcdn.com/gb.svg' width=20> &nbsp; English - English | 100% | Martí Climent, ppvnf |
| <img src='https://flagcdn.com/gb.svg' width=20> &nbsp; English - English | 100% | [marticliment](https://github.com/marticliment), ppvnf |
| <img src='https://flagcdn.com/fr.svg' width=20> &nbsp; French - Français | 93% | Evans Costa |
| <img src='https://flagcdn.com/in.svg' width=20> &nbsp; Hindi - हिंदी | 86% | Satyam Singh Niranjan |
| <img src='https://flagcdn.com/hu.svg' width=20> &nbsp; Hungarian - Magyar | 95% | gidano |
| <img src='https://flagcdn.com/it.svg' width=20> &nbsp; Italian - Italiano | 90% | GiacoBot, Maicol Battistini, Rosario Di Mauro |
| <img src='https://flagcdn.com/hu.svg' width=20> &nbsp; Hungarian - Magyar | 100% | gidano |
| <img src='https://flagcdn.com/it.svg' width=20> &nbsp; Italian - Italiano | 100% | GiacoBot, Maicol Battistini, Rosario Di Mauro |
| <img src='https://flagcdn.com/jp.svg' width=20> &nbsp; Japanese - 日本語 | 90% | sho9029, Yuki Takase |
| <img src='https://flagcdn.com/pl.svg' width=20> &nbsp; Polish - Polski | 39% | regulargvy13 |
| <img src='https://flagcdn.com/br.svg' width=20> &nbsp; Portuguese (Brazil) | 100% | ppvnf |
Expand All @@ -92,10 +92,10 @@ In order to translate WingetUI to other languages or to update an old translatio
| <img src='https://flagcdn.com/rs.svg' width=20> &nbsp; Serbian - Srpski | 22% | Nemanja Djurcic |
| <img src='https://flagcdn.com/tr.svg' width=20> &nbsp; Turkish - Türkçe | 90% | Ahmet Özmetin |
| <img src='https://flagcdn.com/ua.svg' width=20> &nbsp; Ukranian - Yкраї́нська | 86% | Artem Moldovanenko, Operator404 |
| <img src='https://flagcdn.com/cn.svg' width=20> &nbsp; Simplified Chinese (China) | 95% | Aaron Liu, BUGP Association, ciaran, Cololi |
| <img src='https://flagcdn.com/cn.svg' width=20> &nbsp; Simplified Chinese (China) | 97% | Aaron Liu, BUGP Association, ciaran, Cololi |
| <img src='https://flagcdn.com/tw.svg' width=20> &nbsp; Traditional Chinese (Taiwan) | 90% | Aaron Liu, Cololi, yrctw |

Last updated: Wed Dec 28 00:56:04 2022
Last updated: Wed Dec 28 10:37:04 2022
<!-- END Autogenerated translations -->


Expand Down
2 changes: 1 addition & 1 deletion wingetui/lang/lang_ca.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"{0} {0} {0} Contributors, please add your names/usernames separated by comas (for credit purposes)" : "Martí Climent",
"{0} {0} {0} Contributors, please add your names/usernames separated by comas (for credit purposes)" : "@marticliment",
"{0} {1} failed" : "La {1} de {0} ha fallat",
"{0} apps can be updated" : "Es poden actualitzar {0} aplicacions",
"{0} failed" : "{0} fallida",
Expand Down
2 changes: 1 addition & 1 deletion wingetui/lang/lang_en.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"{0} {0} {0} Contributors, please add your names/usernames separated by comas (for credit purposes)" : "Martí Climent, ppvnf",
"{0} {0} {0} Contributors, please add your names/usernames separated by comas (for credit purposes)" : "@marticliment, ppvnf",
"{0} {1} failed" : null,
"{0} apps can be updated" : null,
"{0} failed" : null,
Expand Down
30 changes: 15 additions & 15 deletions wingetui/lang/lang_hu.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"Action when double-clicking packages, hide successful installations" : "Művelet a csomagokra való dupla kattintáskor, a sikeres telepítések elrejtése",
"Add" : "Hozzáadás",
"Add a bucket to Scoop" : "Egy bucket hozzáadása a Scoop-hoz",
"Add bucket" : null,
"Add bucket" : "Bucket hozzáadás",
"Administrator privileges" : "Rendszergazdai jogosultságok",
"Allow parallel installs (NOT RECOMMENDED)" : "Párhuzamos telepítések engedélyezése (NEM AJÁNLOTT)",
"Application theme:" : "Alkalmazás téma:",
Expand All @@ -42,7 +42,7 @@
"Available Updates" : "Elérhető frissítések",
"Available updates: {0}" : "Elérhető frissítések: {0}",
"Available updates: {0}, not finished yet..." : "Elérhető frissítések: {0}, még nincs kész...",
"Beta features and other options that shouldn't be touched" : "Béta funkciók és egyéb opciók, amelyekhez nem szabad hozzányúlni",
"Beta features and other options that shouldn't be touched" : "Béta funkciók és egyéb opciók, amelyekhez nem szabadna hozzányúlni",
"Blacklist apps" : "Feketelistás appok",
"buy me a coffee" : "hívj meg egy kávéra",
"By Icons8" : "By Icons8",
Expand Down Expand Up @@ -74,9 +74,9 @@
"Do you find WingetUI useful? You'd like to support the developer? If so, you can {0}, it helps a lot!" : "Hasznosnak találja a WingetUI-t? Szeretné támogatni a fejlesztőt? Ha igen, megteheti {0}, ezzel sokat segít!",
"Do you really want to uninstall {0}?" : "Biztosan el akarja távolítani a következőt: {0}?",
"Do you want to translate WingetUI to your language? See how to contribute <a style=\"color:{0}\" href=\"{1}\"a>HERE!</a>" : "Szeretné lefordítani a WingetUI-t a saját nyelvére? Tekintse meg a hozzájárulás módját <a style=\"color:{0}\" href=\"{1}\"a>ITT!</a>\n",
"Enable Scoop" : null,
"Enable Scoop" : "Scoop engedélyezése",
"Enable Scoop cleanup on launch" : "Scoop tisztítás engedélyezése indításkor",
"Enable Winget" : null,
"Enable Winget" : "Winget engedélyezése",
"Experimental settings and developer options" : "Kísérleti beállítások és fejlesztői lehetőségek",
"Export all" : "Az összes exportálása",
"Export log" : "Napló exportálás",
Expand Down Expand Up @@ -126,7 +126,7 @@
"Is this package missing the icon?" : "Hiányzik ebből a csomagból az ikon?",
"It looks like you ran WingetUI as administrator, which is not recommended. You can still use the program, but we highly recommend not running WingetUI with administrator privileges. Click on \"Show details\" to see why." : "Úgy tűnik, a WingetUI-t rendszergazdaként futtatta, ami nem ajánlott. Továbbra is használhatja a programot, de erősen javasoljuk, hogy ne futtassa a WingetUI-t rendszergazdai jogosultságokkal. Kattintson a \"Részletek megjelenítése\" gombra, hogy megtudja, miért.",
"Language, theme and other miscellaneous preferences" : "Nyelv, téma és más egyéb beállítások",
"Last updated:" : null,
"Last updated:" : "Utolsó frissítés:",
"Latest" : "Legújabb",
"Latest details..." : "Legújabb részletek...",
"Latest Version" : "Legújabb verzió",
Expand All @@ -137,18 +137,18 @@
"Light" : "Világos",
"Live command-line output" : "Élő parancssori kimenet",
"Loading..." : "Betöltés...",
"Loading buckets..." : null,
"Loading buckets..." : "Bucket-ek betöltése",
"Loading UI components..." : "UI összetevők betöltése...",
"Loading WingetUI..." : "WingetUI betöltése...",
"Locating Scoop..." : "Scoop keresése...",
"Locating sudo..." : "Sudo keresése...",
"Locating Winget..." : "Winget keresése...",
"Manage scoop buckets" : null,
"Manage scoop buckets" : "Scoop bucket-ek kezelése",
"Manifest" : "Jegyzék",
"Manifest:" : "Jegyzék:",
"Manifests" : null,
"Manifests" : "Jegyzékek",
"MIT License" : "MIT Licenc",
"Name" : null,
"Name" : "Név",
"New version" : "Új verzió",
"New Version" : "Új Verzió",
"No" : "Nem",
Expand All @@ -158,7 +158,7 @@
"Ok" : "Ok",
"OK" : "OK",
"Package ID" : "Csomag azonosító",
"Package manager preferences" : null,
"Package manager preferences" : "Csomagkezelő preferenciái",
"Package Name" : "Csomagnév",
"Please wait..." : "Kis türelmet...",
"Program ID:" : "Program azonosító:",
Expand All @@ -167,7 +167,7 @@
"Publisher" : "Kiadó",
"Publisher:" : "Kiadó:",
"Quit" : "Kilépés",
"Release notes:" : null,
"Release notes:" : "Kiadási megjegyzések:",
"Reload log" : "Napló újratöltése",
"Remove" : "Eltávolítás",
"Remove a bucket from Scoop" : "Egy bucket eltávolítása a Scoop-ból",
Expand All @@ -176,7 +176,7 @@
"Reset" : "Alaphelyzet",
"Reset blacklist" : "Feketelista visszaállítása",
"Reset Winget sources (might help if no packages are listed)" : "Winget források visszaállítása (segíthet, ha nincs csomag a listán)",
"Reset WingetUI and its preferences" : null,
"Reset WingetUI and its preferences" : "A WingetUI és beállításai alaphelyzetbe állítása",
"Restart WingetUI" : "Indítsa újra a WingetUI-t",
"Run as admin" : "Futtatás rendszergazdaként",
"Run as administrator" : "Futtatás rendszergazdaként",
Expand Down Expand Up @@ -215,7 +215,7 @@
"Startup options" : "Indítási lehetőségek",
"Status" : "Állapot",
"Sudo found: {0}" : "Sudo találat: {0}",
"Text file" : null,
"Text file" : "Szövegfájl",
"The icons and screenshots are maintained by users like you!" : "Az ikonokat és a képernyőképeket Önhöz hasonló felhasználók tartják karban!",
"The main goal of this project is to create an intuitive UI to manage the most common CLI package managers for Windows, such as Winget and Scoop." : "A projekt fő célja egy intuitív felhasználói felület létrehozása a Windows leggyakoribb CLI csomagkezelőihez, mint például a Winget és a Scoop",
"There are two main reasons to not run WingetUI as administrator:\n The first one is that the Scoop package manager might cause problems with some commands when ran with administrator rights.\n The second one is that running WingetUI as administrator means that any package that you download will be ran as administrator (and this is not safe).\n Remeber that if you need to install a specific package as administrator, you can always right-click the item -> Install/Update/Uninstall as administrator." : "Két fő oka van annak, hogy ne futtassuk a WingetUI-t rendszergazdaként: Az első az, hogy a Scoop csomagkezelő problémákat okozhat bizonyos parancsokkal, ha rendszergazdai jogokkal fut. A második az, hogy a WingetUI rendszergazdaként való futtatása azt jelenti, hogy minden letöltött csomag rendszergazdaként fut (és ez nem biztonságos). Ne feledje, hogy ha egy adott csomagot rendszergazdaként kell telepítenie, mindig kattintson a jobb gombbal az elemre -> Telepítés/Frissítés/Eltávolítás rendszergazdaként.",
Expand All @@ -236,12 +236,12 @@
"Uninstall selected packages" : "A kiválasztott csomagok eltávolítása",
"Uninstall with administrator privileges" : "Eltávolítás rendszergazdai jogosultságokkal",
"Unknown" : "Ismeretlen",
"Unlicense" : null,
"Unlicense" : "Licenc nélkül",
"Update" : "Frissítés",
"Update all" : "Az összes frissítése",
"Update as administrator" : "Frissítés rendszergazdaként",
"updated" : "frissítve",
"Update date" : null,
"Update date" : "Frissítés dátuma",
"Updated Scoop sources" : "Frissített Scoop források",
"Updated Winget sources" : "Frissített Winget források",
"Update found!" : "Frissítés található!",
Expand Down
Loading