summaryrefslogtreecommitdiffstats
path: root/uemis-downloader.c
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2012-12-01 13:32:33 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2012-12-01 13:32:33 -0800
commit8562364bd95b3c049b515ec56077c40d9106daee (patch)
treeaff21ed941b6c7a2d11568be9b3b50543f324acc /uemis-downloader.c
parent96091e8238fa7f28010196f9155fd3b116643680 (diff)
downloadsubsurface-8562364bd95b3c049b515ec56077c40d9106daee.tar.gz
Small cosmetic cleanups of Uemis downloader code
Just improving the messages a user gets. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'uemis-downloader.c')
-rw-r--r--uemis-downloader.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/uemis-downloader.c b/uemis-downloader.c
index fc5944cea..009faee3b 100644
--- a/uemis-downloader.c
+++ b/uemis-downloader.c
@@ -25,7 +25,7 @@
#include "display.h"
#include "display-gtk.h"
-#define ERR_FS_ALMOST_FULL N_("Uemis Zurich: File System is almost full\nDisconnect/reconnect the dive computer\nand try again")
+#define ERR_FS_ALMOST_FULL N_("Uemis Zurich: File System is almost full\nDisconnect/reconnect the dive computer\nand click \'Retry\'")
#define ERR_FS_FULL N_("Uemis Zurich: File System is full\nDisconnect/reconnect the dive computer\nand try again")
#define ERR_FS_SHORT_WRITE N_("Short write to req.txt file\nIs the Uemis Zurich plugged in correctly?")
#define BUFLEN 2048
@@ -136,7 +136,7 @@ static struct dive *uemis_start_dive(int deviceid)
/* send text to the importer progress bar */
static void uemis_info(const char *fmt, ...)
{
- static char buffer[32];
+ static char buffer[40];
va_list ap;
va_start(ap, fmt);
@@ -375,7 +375,7 @@ static gboolean uemis_get_answer(const char *path, char *request, int n_param_in
else if (!strcmp(request, "getDivespot"))
what = _("divespot data id");
else if (!strcmp(request, "getDive"))
- what = _("additional data dive id");
+ what = _("more data dive id");
}
str_append_with_delim(sb, "");
file_length = strlen(sb);