X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/625599462a8ec82f0e43267d333b3ed74a4401bf..fc9e06426746b5b33d31db68904d4d205537a080:/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);