German side of code is now avaliable for use

This commit is contained in:
mrmarcus007
2023-05-04 15:53:45 +01:00
committed by GitHub
parent d8c8e7ccaf
commit aca9ac0f42
+51 -2
View File
@@ -14,7 +14,7 @@ RyzenADJI = ()
USBdevices = ()
TotalUSBpower = ()
TotalPower = ()
Lang = ("1")
Lang = ()
def lang():
global Lang
@@ -31,12 +31,18 @@ def start():
try:
print("Ladt... Loading...")
load()
if lang == "1":
configdisplay()
input("press any key to go to the menu")
input("press enter to go to the menu")
Menu()
elif lang == "2":
configdisplay()
input("Drücken Sie die Eingabetaste, um zum Menü zu gelangen")
Menu()
except:
print("This is first time setup, please wait...")
time.sleep(2)
lang()
time.sleep(0.5987654321)
editor()
@@ -104,6 +110,7 @@ def Menu():
Menu()
def editor():
if lang == "1":
my_system = platform.uname()
os.system('cls')
print(graphics.Warning)
@@ -141,6 +148,48 @@ def editor():
file.write(json.dumps(data))
load()
Menu()
if lang == "2":
my_system = platform.uname()
os.system('cls')
print(graphics.Warning)
print(" Sie bearbeiten Daten!")
print(" Verwenden Sie keine Einheiten")
CPUPowerLimit = float(input("Prozessorleistungsgrenze (W): "))
CPUClock = float(input("Prozessoruhr (Ghz): "))
Gprocessor = input("GPU: ")
GPUpowerLimit = float(input("GPU-Leistungsbegrenzung (W): "))
GPUClock = float(input("GPU-Takt (Mhz): "))
GPUMemoryClock = float(input("GPU-Speichertakt (Mhz): "))
BusClock = float(input("Busuhr (Mhz): "))
RyzenADJI = input("Ryzen ADJI voreingestellt (falls vorhanden, falls nicht leer lassen): ")
USBdevices = int(input("Anzahl statischer USB-Geräte: " ))
TotalUSBpower = USBdevices * 4.5
TotalPower = (TotalUSBpower + GPUpowerLimit + CPUPowerLimit * 1.352)
data = {
"PCname": my_system.node,
"System": f"{my_system.system} {my_system.version}",
"Processor": my_system.processor,
"CPUPowerLimit": CPUPowerLimit,
"CPUClock": CPUClock,
"BusClock": BusClock,
"Gprocessor": Gprocessor,
"GPUpowerLimit": GPUpowerLimit,
"GPUClock": GPUClock,
"GPUMemoryclock": GPUMemoryClock,
"RyzenADJI": RyzenADJI,
"USBdevices": USBdevices,
"TotalUSBPower": TotalUSBpower,
"TotalPower": TotalPower,
"lang": Lang,
}
with open("Configuationtable.json", "w") as file:
file.write(json.dumps(data))
load()
Menu()
else:
error = "1"
funchtion = (editor)
errorhandler(error, funchtion)
def configdisplay():
if lang == "1":