Drop the provider note, and reshoot the API tab

The line under Speech to text repeated the provider box directly above it,
so nothing was lost by removing it.
This commit is contained in:
yusufipk
2026-07-25 23:05:40 +07:00
parent 761245a305
commit 1dc7eceee4
3 changed files with 2 additions and 17 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 62 KiB

After

Width:  |  Height:  |  Size: 61 KiB

-6
View File
@@ -154,12 +154,6 @@ TR = {
"sk-or-… (falls back to OPENROUTER_API_KEY)": "sk-or-… (boşsa OPENROUTER_API_KEY kullanılır)",
"Test": "Test et",
"Trying…": "Deneniyor…",
"Runs on OpenAI, with the key above.":
"Yukarıdaki anahtarla OpenAI üzerinde çalışır.",
"Runs on OpenRouter, with the key above. Word hints reach the cleanup "
"model only.":
"Yukarıdaki anahtarla OpenRouter üzerinde çalışır. Kelime ipuçları "
"yalnızca temizleme modeline gider.",
"Runs on OpenRouter.": "OpenRouter üzerinde çalışır.",
"Connection works. {count} audio models visible.":
"Bağlantı tamam. {count} ses modeli görünüyor.",
+2 -11
View File
@@ -211,11 +211,8 @@ class SettingsWindow(QDialog):
self.refresh_transcribe_models.clicked.connect(self._load_transcribe_models)
stt_form.addRow(t("Model"),
self._row(self.transcribe_model, self.refresh_transcribe_models))
# Spanning rows: in the narrow field column a wrapped label gets a height
# that fits one line, and the rest of the text is cut off.
self.transcribe_note = QLabel("")
self.transcribe_note.setWordWrap(True)
stt_form.addRow(self.transcribe_note)
# A spanning row: in the narrow field column a wrapped label gets a
# height that fits one line, and the rest of the text is cut off.
self.transcribe_status = QLabel("")
self.transcribe_status.setWordWrap(True)
stt_form.addRow(self.transcribe_status)
@@ -533,12 +530,6 @@ class SettingsWindow(QDialog):
self.transcribe_model.addItems(TRANSCRIBE_MODELS[provider])
self.transcribe_model.setCurrentText(self._models[provider])
self.transcribe_status.setText("")
self.transcribe_note.setText(
t("Runs on OpenRouter, with the key above. Word hints reach the "
"cleanup model only.")
if provider == "openrouter" else
t("Runs on OpenAI, with the key above.")
)
def _load_transcribe_models(self):
"""The model list of whichever provider is selected."""