summaryrefslogtreecommitdiffstats
path: root/divelist.c
diff options
context:
space:
mode:
Diffstat (limited to 'divelist.c')
-rw-r--r--divelist.c64
1 files changed, 0 insertions, 64 deletions
diff --git a/divelist.c b/divelist.c
index 6df961808..858d61533 100644
--- a/divelist.c
+++ b/divelist.c
@@ -460,70 +460,6 @@ void update_cylinder_related_info(struct dive *dive)
}
}
-#define MAX_DATE_STRING 256
-/* caller needs to free the string */
-char *get_dive_date_string(timestamp_t when)
-{
- char *buffer = malloc(MAX_DATE_STRING);
- if (buffer) {
- struct tm tm;
- utc_mkdate(when, &tm);
- snprintf(buffer, MAX_DATE_STRING,
- /*++GETTEXT 60 char buffer weekday, monthname, day of month, year, hour:min */
- translate("gettextFromC","%1$s, %2$s %3$d, %4$d %5$02d:%6$02d"),
- weekday(tm.tm_wday),
- monthname(tm.tm_mon),
- tm.tm_mday, tm.tm_year + 1900,
- tm.tm_hour, tm.tm_min);
- }
- return buffer;
-}
-
-char *get_short_dive_date_string(timestamp_t when)
-{
- char *buffer = malloc(MAX_DATE_STRING);
- if (buffer) {
- struct tm tm;
- utc_mkdate(when, &tm);
- snprintf(buffer, MAX_DATE_STRING,
- /*++GETTEXT 40 char buffer monthname, day of month, year, hour:min */
- translate("gettextFromC","%1$s %2$d, %3$d\n%4$02d:%5$02d"),
- monthname(tm.tm_mon),
- tm.tm_mday, tm.tm_year +1900,
- tm.tm_hour, tm.tm_min);
- }
- return buffer;
-}
-
-/* caller needs to free the string */
-char *get_trip_date_string(timestamp_t when, int nr)
-{
- char *buffer = malloc(MAX_DATE_STRING);
- if (buffer) {
- struct tm tm;
- utc_mkdate(when, &tm);
- if (nr != 1) {
- snprintf(buffer, MAX_DATE_STRING,
-#if PLURAL_HANDLING_IN_TRANLATION
- /*++GETTEXT 60 char buffer monthname, year, nr dives */
- ngettext("%1$s %2$d (%3$d dive)",
- "%1$s %2$d (%3$d dives)", nr),
-#else
- translate("gettextFromC","%1$s %2$d (%3$d dives)"),
-#endif
- monthname(tm.tm_mon),
- tm.tm_year + 1900,
- nr);
- } else {
- snprintf(buffer, MAX_DATE_STRING,
- translate("gettextFromC","%1$s %2$d (1 dive)"),
- monthname(tm.tm_mon),
- tm.tm_year + 1900);
- }
- }
- return buffer;
-}
-
#define MAX_NITROX_STRING 80
#define UTF8_ELLIPSIS "\xE2\x80\xA6"