Skip to content

Commit 444a279

Browse files
committed
Add a translated window title
1 parent 86f1385 commit 444a279

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/app/qgsvectorlayerproperties.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -1775,7 +1775,8 @@ void QgsVectorLayerProperties::onAuxiliaryLayerDeleteField()
17751775
const QString msg = tr( "Are you sure you want to delete auxiliary field %1 for %2?" ).arg( item->text( 1 ), item->text( 0 ) );
17761776

17771777
QMessageBox::StandardButton reply;
1778-
reply = QMessageBox::question( this, "Delete Auxiliary Field", msg, QMessageBox::Yes | QMessageBox::No );
1778+
const QString title = QObject::tr( "Delete Auxiliary Field" );
1779+
reply = QMessageBox::question( this, title, msg, QMessageBox::Yes | QMessageBox::No );
17791780

17801781
if ( reply == QMessageBox::Yes )
17811782
{

0 commit comments

Comments
 (0)