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

@@ -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