mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-07 20:13:24 +00:00
Two small string changes
Reported by Ettore Atalan on Trnasifex. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
7bbd60a4fd
commit
708fd2fe84
2 changed files with 2 additions and 2 deletions
|
@ -694,7 +694,7 @@ void MainWindow::on_actionReplanDive_triggered()
|
||||||
if (!plannerStateClean() || !current_dive || !current_dive->dc.model)
|
if (!plannerStateClean() || !current_dive || !current_dive->dc.model)
|
||||||
return;
|
return;
|
||||||
else if (strcmp(current_dive->dc.model, "planned dive")) {
|
else if (strcmp(current_dive->dc.model, "planned dive")) {
|
||||||
if (QMessageBox::warning(this, tr("Warning"), tr("trying to replan a dive that's not a planned dive."),
|
if (QMessageBox::warning(this, tr("Warning"), tr("Trying to replan a dive that's not a planned dive."),
|
||||||
QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel)
|
QMessageBox::Ok | QMessageBox::Cancel) == QMessageBox::Cancel)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,7 @@
|
||||||
#include "divelist.h"
|
#include "divelist.h"
|
||||||
|
|
||||||
#define ERR_FS_ALMOST_FULL QT_TRANSLATE_NOOP("gettextFromC", "Uemis Zurich: the file system is almost full.\nDisconnect/reconnect the dive computer\nand click \'Retry\'")
|
#define ERR_FS_ALMOST_FULL QT_TRANSLATE_NOOP("gettextFromC", "Uemis Zurich: the file system is almost full.\nDisconnect/reconnect the dive computer\nand click \'Retry\'")
|
||||||
#define ERR_FS_FULL QT_TRANSLATE_NOOP("gettextFromC", "Uemis Zurich: the file system is full.\nDisconnect/reconnect the dive computer\nand try again")
|
#define ERR_FS_FULL QT_TRANSLATE_NOOP("gettextFromC", "Uemis Zurich: the file system is full.\nDisconnect/reconnect the dive computer\nand click Retry")
|
||||||
#define ERR_FS_SHORT_WRITE QT_TRANSLATE_NOOP("gettextFromC", "Short write to req.txt file.\nIs the Uemis Zurich plugged in correctly?")
|
#define ERR_FS_SHORT_WRITE QT_TRANSLATE_NOOP("gettextFromC", "Short write to req.txt file.\nIs the Uemis Zurich plugged in correctly?")
|
||||||
#define BUFLEN 2048
|
#define BUFLEN 2048
|
||||||
#define NUM_PARAM_BUFS 10
|
#define NUM_PARAM_BUFS 10
|
||||||
|
|
Loading…
Add table
Reference in a new issue