aboutsummaryrefslogtreecommitdiffstats
path: root/src/io.c
diff options
context:
space:
mode:
authorLukas Fleischer <calcurse@cryptocrack.de>2012-04-21 12:44:11 +0200
committerLukas Fleischer <calcurse@cryptocrack.de>2012-05-19 14:32:43 +0200
commitb4cefe2db9d45dfba9bfd633288a406a8ad2a4c3 (patch)
treefc53a5ffffed8b9599db9b28ba3e3ec18f404b86 /src/io.c
parent162b871682946169871db3622e156ef641c44bf2 (diff)
downloadcalcurse-b4cefe2db9d45dfba9bfd633288a406a8ad2a4c3.tar.gz
calcurse-b4cefe2db9d45dfba9bfd633288a406a8ad2a4c3.zip
Do not localize dates in pcal exports
* Do not localize the word "week" in pcal export headers. * Reset current locale before formatting dates in pcal export data. Addresses BUG#1. Signed-off-by: Lukas Fleischer <calcurse@cryptocrack.de>
Diffstat (limited to 'src/io.c')
-rw-r--r--src/io.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io.c b/src/io.c
index 8709341..21d8b42 100644
--- a/src/io.c
+++ b/src/io.c
@@ -323,7 +323,7 @@ pcal_export_header (FILE *stream)
calendar_week_begins_on_monday () ?
"Monday" : "Sunday");
(void)fprintf (stream, "# Display week number (i.e. 1-52) on every Monday\n");
- (void)fprintf (stream, "all monday in all %s %%w\n", _("Week"));
+ (void)fprintf (stream, "all monday in all week %%w\n");
(void)fprintf (stream, "\n");
}