rename text/{persona,individual}-id as they are not standard
[empathy-mirror.git] / libempathy / empathy-time.h
blob3a22adeee20bd98ac8a0351bbf2b80918f67bd5f
1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
2 /*
3 * Copyright (C) 2004 Imendio AB
4 * Copyright (C) 2007-2010 Collabora Ltd.
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
21 #ifndef __EMPATHY_TIME_H__
22 #define __EMPATHY_TIME_H__
24 #ifndef __USE_XOPEN
25 #define __USE_XOPEN
26 #endif
27 #include <time.h>
29 #include <glib.h>
31 G_BEGIN_DECLS
34 * Translators: use your locale preferred time format.
35 * The fields follow the strftime standard:
36 * look at the manual if you need help (man strftime)
38 #define EMPATHY_TIME_FORMAT_DISPLAY_SHORT _("%H:%M")
39 #define EMPATHY_DATE_FORMAT_DISPLAY_SHORT _("%a %d %b %Y")
40 #define EMPATHY_TIME_DATE_FORMAT_DISPLAY_SHORT _("%a %d %b %Y, %H:%M")
42 gint64 empathy_time_get_current (void);
43 gchar *empathy_time_to_string_utc (gint64 t,
44 const gchar *format);
45 gchar *empathy_time_to_string_local (gint64 t,
46 const gchar *format);
47 gchar *empathy_time_to_string_relative (gint64 t);
48 gchar *empathy_duration_to_string (guint seconds);
50 G_END_DECLS
52 #endif /* __EMPATHY_TIME_H__ */