summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Miika Turkia <miika.turkia@gmail.com>2013-02-10 07:04:25 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2013-02-09 22:04:27 -0800
commit07477056172eec1306ca71897f8a6bbfefaf1b57 (patch)
treec856849ef1866ebda1ce02f1f948e01fa1818cba
parentf0f752b74cb926dc7529851ddd94b21874f08dff (diff)
downloadsubsurface-07477056172eec1306ca71897f8a6bbfefaf1b57.tar.gz
The print header should read Duration
The context for this text is Duration, not Time. The translation for string Time was impossible when considering that on one location it was used to mean 'duration' and on the other it meant 'time'. Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--print.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/print.c b/print.c
index ec37675ac..7b3ea0a4a 100644
--- a/print.c
+++ b/print.c
@@ -498,7 +498,7 @@ static void show_table_header(cairo_t *cr, double w, double h,
int i;
double maxwidth, maxheight, colwidth, curwidth;
PangoLayout *layout;
- char headers[7][80]= { N_("Dive#"), N_("Date"), N_("Depth"), N_("Time"), N_("Master"),
+ char headers[7][80]= { N_("Dive#"), N_("Date"), N_("Depth"), N_("Duration"), N_("Master"),
N_("Buddy"), N_("Location") };
maxwidth = w * PANGO_SCALE;