Skip to content

Commit

Permalink
Fix wording in encoding message box
Browse files Browse the repository at this point in the history
  • Loading branch information
MKleusberg committed May 12, 2017
1 parent 037b3c0 commit e404b22
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2319,9 +2319,9 @@ void MainWindow::browseDataSetTableEncoding(bool forAllTables)
bool ok;
QString question;
if(forAllTables)
question = tr("Please choose a new encoding for this table.");
else
question = tr("Please choose a new encoding for all tables.");
else
question = tr("Please choose a new encoding for this table.");
encoding = QInputDialog::getText(this,
tr("Set encoding"),
tr("%1\nLeave the field empty for using the database encoding.").arg(question),
Expand Down

0 comments on commit e404b22

Please sign in to comment.