fixed some stuff and translated somethings

This commit is contained in:
2025-09-13 17:51:44 +02:00
parent d9efaa4620
commit 5b51c67069
6 changed files with 34 additions and 41 deletions

View File

@@ -2,6 +2,10 @@
# #
# AUTOGENERATED BY SETUPKEYTOOL V1.0.03 #
# THIS IS SENSITIVE INFORMATION #
# #
# THIS IS FILLED IN BY THE #
# GUI ASSISTANT #
# #
# @ZockerKatze/@rattatwinko #
# #
#########################################
@@ -11,4 +15,4 @@ from tgtg import TgtgClient
# Don't ever give this Info to someone you dont trust!
# This is the Private Key to your TGTG Account
client = TgtgClient(access_token="asdf", refresh_token="asdf", cookie="asdf")
client = TgtgClient(access_token="", refresh_token="", cookie="")

View File

@@ -61,10 +61,10 @@ def ask_for_tokens():
# Create Tkinter window
root = tk.Tk()
root.title("Enter API Credentials")
root.title("API Kredenzen")
title_label = tk.Label(root, text="Enter your API Credentials", font=("Arial", 14, "bold"))
title_label = tk.Label(root, text="Gebe deine API Kredenzen ein!", font=("Arial", 14, "bold"))
title_label.grid(row=0, columnspan=2, pady=10)
# Add labels and entry fields for the tokens and cookie
@@ -81,7 +81,7 @@ def ask_for_tokens():
cookie_entry.grid(row=3, column=1)
# Submit button to process the tokens
submit_button = tk.Button(root, text="Submit", command=submit_tokens)
submit_button = tk.Button(root, text="Speichern", command=submit_tokens)
submit_button.grid(row=4, columnspan=2)
# Keep the window on top