diff options
author | Miika Turkia <miika.turkia@gmail.com> | 2013-02-10 07:04:25 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-09 22:04:27 -0800 |
commit | 07477056172eec1306ca71897f8a6bbfefaf1b57 (patch) | |
tree | c856849ef1866ebda1ce02f1f948e01fa1818cba /print.c | |
parent | f0f752b74cb926dc7529851ddd94b21874f08dff (diff) | |
download | subsurface-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>
Diffstat (limited to 'print.c')
-rw-r--r-- | print.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |