X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/625599462a8ec82f0e43267d333b3ed74a4401bf..a4240f6c2285c87de5763b4924fbc1c954b4408c:/src/dolphintabbar.cpp diff --git a/src/dolphintabbar.cpp b/src/dolphintabbar.cpp index b942c4fd3..4df25263f 100644 --- a/src/dolphintabbar.cpp +++ b/src/dolphintabbar.cpp @@ -177,7 +177,7 @@ void DolphinTabBar::contextMenuEvent(QContextMenuEvent *event) Q_EMIT tabCloseRequested(index); } else if (selectedAction == renameTabAction) { bool renamed = false; - const QString tabNewName = QInputDialog::getText(this, i18n("Rename Tab"), i18n("New tab name:"), QLineEdit::Normal, tabText(index), &renamed); + const QString tabNewName = QInputDialog::getText(this, i18nc("@title:window for text input", "Rename Tab"), i18n("New tab name:"), QLineEdit::Normal, tabText(index), &renamed); if (renamed) { Q_EMIT tabRenamed(index, tabNewName);