fixed some stuff and translated somethings
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user