diff options
| author | grunfink <grunfink@comam.es> | 2026-02-02 17:51:40 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-02-02 17:51:40 +0100 |
| commit | 7d24c6ff9460066479421473956bfce360ceb608 (patch) | |
| tree | 45781f86496d8e5de1bcaeaf0cf4378f93887b18 /data.c | |
| parent | 1f41a45091c387421299e934066106057ad0e194 (diff) | |
Added translatable month names.
Diffstat (limited to 'data.c')
| -rw-r--r-- | data.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -41,6 +41,19 @@ int srv_open(const char *basedir, int auto_upgrade) FILE *f; xs_str *error = NULL; + months[0] = LL("Jan"); + months[1] = LL("Feb"); + months[2] = LL("Mar"); + months[3] = LL("Apr"); + months[4] = LL("May"); + months[5] = LL("Jun"); + months[6] = LL("Jul"); + months[7] = LL("Aug"); + months[8] = LL("Sep"); + months[9] = LL("Oct"); + months[10] = LL("Nov"); + months[11] = LL("Dec"); + pthread_mutex_init(&data_mutex, NULL); srv_basedir = xs_str_new(basedir); |