* changes in translation file: added 'months_calendar' array for duedate picker - full names of months like 'months_long' in previous versions; 'months_long' - now used only for date formatting, month names can be in regional form.

This commit is contained in:
maxpozdeev 2022-08-01 12:48:58 +03:00
parent 485bef2c94
commit fb6a51cc92
3 changed files with 29 additions and 1 deletions

View file

@ -109,7 +109,7 @@ class Lang
$a['daysMin'] = $this->get('days_min');
$a['daysLong'] = $this->get('days_long');
$a['monthsShort'] = $this->get('months_short');
$a['monthsLong'] = $this->get('months_long');
$a['monthsLong'] = $this->get('months_calendar');
$this->fillWithValues($a, [
'confirmDelete',

View file

@ -72,6 +72,20 @@
"November",
"December"
],
"months_calendar": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"days_min": [
"Su",
"Mo",

View file

@ -59,6 +59,20 @@
"Дек"
],
"months_long": [
"января",
"февраля",
"марта",
"апреля",
"мая",
"июня",
"июля",
"августа",
"сентября",
"октября",
"ноября",
"декабря"
],
"months_calendar": [
"Январь",
"Февраль",
"Март",