Skip to content

Commit

Permalink
update base of translations for changed user prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinhendricks committed Feb 22, 2024
1 parent 1a846b0 commit e75085a
Show file tree
Hide file tree
Showing 4 changed files with 382 additions and 376 deletions.
1 change: 1 addition & 0 deletions ChangeLog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Sigil-2.1.0
- update 3rdparty zlib to version 1.3.1 for security fixes
- update 3rdparty pcre2 to version 10.42 for security fixes
- update to Qt 6.6.2 for security fixes, accessibility improvements
- allow cancelling of Save if mend on save set and not well formed

Bug Fixes
- multiple bug fixes from Qt 6.6.2 such as the transient child window resize bug on Windows, etc
Expand Down
2 changes: 1 addition & 1 deletion docs/Translating.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ manner for some reason (a bug in Qt?)
1. Make sure the Qt project "bin" directory is in your path so that
the right version of "lconvert" can be found. For me this is:

export MYQTHOME=~/Qt653
export MYQTHOME=~/Qt662
export PATH=${MYQTHOME}/bin:${PATH}

2. Open a terminal and change to the Sigil/src/Resource_Files/ts directory.
Expand Down
2 changes: 1 addition & 1 deletion src/MainUI/MainWindow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5477,7 +5477,7 @@ bool MainWindow::SaveFile(const QString &fullfilepath, bool update_current_filen
QApplication::restoreOverrideCursor();
QMessageBox::StandardButton button_pressed = Utility::warning(this, tr("Sigil"),
tr("This EPUB has HTML files that are not well formed and "
"your current Clean Source preferences are set to automatically mend on Save.\n\n"
"your current Clean Source preferences are set to mend on Save.\n\n"
"Do you want to automatically mend the files before saving? Or cancel the Save?"),
QMessageBox::Yes|QMessageBox::No|QMessageBox::Cancel);
if (button_pressed == QMessageBox::Cancel) {
Expand Down
Loading

0 comments on commit e75085a

Please sign in to comment.