1<?php
2/**
3 * Settings translation for the CountdownV2 plugin
4 *
5 * @author Frank Kosanke <digger@barumerror-404.de>
6 */
7
8// keys need to match the config setting name
9$lang['colordefault'] = 'Default color for output, if empty system default is used';
10$lang['colorok'] = 'Color for OK messages';
11$lang['colorwarning'] = 'Color for output when close to end date';
12$lang['colorcritical'] = 'Color for output when end date is exceeded';
13
14// when left this seconds or lesser, than use warning color
15$lang['yearwarning'] = 'Time in seconds when display interval for years';
16$lang['monthwarning'] = 'Time in seconds when display interval for months';
17$lang['weekwarning'] = 'Time in seconds when display interval for weeks';
18$lang['daywarning'] = 'Time in seconds when display interval for days';
19$lang['hourwarning'] = 'Time in seconds when display interval for hours';
20$lang['minutewarning'] = 'Time in seconds when display interval for minutes';
21
22// time formats
23$lang['dateformat'] = 'Date format for the ##DATE## placeholder';
24$lang['timeformat'] = 'Date format for the ##TIME## placeholder';
25$lang['datetimeformat'] = 'Date format for the ##DATETIME## placeholder';
26