mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
* 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:
parent
485bef2c94
commit
fb6a51cc92
3 changed files with 29 additions and 1 deletions
|
|
@ -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',
|
||||
|
|
|
|||
|
|
@ -72,6 +72,20 @@
|
|||
"November",
|
||||
"December"
|
||||
],
|
||||
"months_calendar": [
|
||||
"January",
|
||||
"February",
|
||||
"March",
|
||||
"April",
|
||||
"May",
|
||||
"June",
|
||||
"July",
|
||||
"August",
|
||||
"September",
|
||||
"October",
|
||||
"November",
|
||||
"December"
|
||||
],
|
||||
"days_min": [
|
||||
"Su",
|
||||
"Mo",
|
||||
|
|
|
|||
|
|
@ -59,6 +59,20 @@
|
|||
"Дек"
|
||||
],
|
||||
"months_long": [
|
||||
"января",
|
||||
"февраля",
|
||||
"марта",
|
||||
"апреля",
|
||||
"мая",
|
||||
"июня",
|
||||
"июля",
|
||||
"августа",
|
||||
"сентября",
|
||||
"октября",
|
||||
"ноября",
|
||||
"декабря"
|
||||
],
|
||||
"months_calendar": [
|
||||
"Январь",
|
||||
"Февраль",
|
||||
"Март",
|
||||
|
|
|
|||
Loading…
Reference in a new issue