mirror of https://github.com/Gnucash/gnucash
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
943 B
72 lines
943 B
/*
|
|
* dates.c: Include the string definitions for the date names
|
|
*
|
|
* Author:
|
|
* Miguel de Icaza (miguel@kernel.org)
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <glib/gi18n.h>
|
|
#include "gnumeric.h"
|
|
#include "dates.h"
|
|
|
|
/* FIXME : use nl_langinfo */
|
|
const char *day_short [] =
|
|
{
|
|
N_("*Sun"),
|
|
N_("*Mon"),
|
|
N_("*Tue"),
|
|
N_("*Wed"),
|
|
N_("*Thu"),
|
|
N_("*Fri"),
|
|
N_("*Sat"),
|
|
NULL,
|
|
};
|
|
|
|
const char *day_long [] =
|
|
{
|
|
N_("Sunday"),
|
|
N_("Monday"),
|
|
N_("Tuesday"),
|
|
N_("Wednesday"),
|
|
N_("Thursday"),
|
|
N_("Friday"),
|
|
N_("Saturday"),
|
|
NULL
|
|
};
|
|
|
|
const char *month_short [] =
|
|
{
|
|
N_("*Jan"),
|
|
N_("*Feb"),
|
|
N_("*Mar"),
|
|
N_("*Apr"),
|
|
N_("*May"),
|
|
N_("*Jun"),
|
|
N_("*Jul"),
|
|
N_("*Aug"),
|
|
N_("*Sep"),
|
|
N_("*Oct"),
|
|
N_("*Nov"),
|
|
N_("*Dec"),
|
|
NULL
|
|
};
|
|
|
|
const char *month_long [] =
|
|
{
|
|
N_("January"),
|
|
N_("February"),
|
|
N_("March"),
|
|
N_("April"),
|
|
N_("May"),
|
|
N_("June"),
|
|
N_("July"),
|
|
N_("August"),
|
|
N_("September"),
|
|
N_("October"),
|
|
N_("November"),
|
|
N_("December"),
|
|
NULL
|
|
};
|
|
|