Removed multiple instances of list of days
This commit is contained in:
@@ -4112,11 +4112,12 @@ variables:
|
||||
off: вимк
|
||||
heat: нагрів
|
||||
please_confirm: Будь ласка, підтвердіть
|
||||
mui_weekday_today: "{{ mui[language].weekdays[['mon','tue','wed','thu','fri','sat','sun'][now().weekday()]] ~ ', ' ~ as_timestamp(now()) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_tomorrow: "{{ mui[language].weekdays[['mon','tue','wed','thu','fri','sat','sun'][(now() + timedelta(days=1)).weekday()]] ~ ', ' ~ as_timestamp(now() + timedelta(days=1)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_2_days: "{{ mui[language].weekdays[['mon','tue','wed','thu','fri','sat','sun'][(now() + timedelta(days=2)).weekday()]] ~ ', ' ~ as_timestamp(now() + timedelta(days=2)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_3_days: "{{ mui[language].weekdays[['mon','tue','wed','thu','fri','sat','sun'][(now() + timedelta(days=3)).weekday()]] ~ ', ' ~ as_timestamp(now() + timedelta(days=3)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_4_days: "{{ mui[language].weekdays[['mon','tue','wed','thu','fri','sat','sun'][(now() + timedelta(days=4)).weekday()]] ~ ', ' ~ as_timestamp(now() + timedelta(days=4)) | timestamp_custom('%d.%m') }}"
|
||||
|
||||
mui_weekday_today: "{{ (dict.values(mui[language].weekdays) | list)[now().weekday()] ~ ', ' ~ as_timestamp(now()) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_tomorrow: "{{ (dict.values(mui[language].weekdays) | list)[(now() + timedelta(days=1)).weekday()] ~ ', ' ~ as_timestamp(now() + timedelta(days=1)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_2_days: "{{ (dict.values(mui[language].weekdays) | list)[(now() + timedelta(days=2)).weekday()] ~ ', ' ~ as_timestamp(now() + timedelta(days=2)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_3_days: "{{ (dict.values(mui[language].weekdays) | list)[(now() + timedelta(days=3)).weekday()] ~ ', ' ~ as_timestamp(now() + timedelta(days=3)) | timestamp_custom('%d.%m') }}"
|
||||
mui_weekday_in_4_days: "{{ (dict.values(mui[language].weekdays) | list)[(now() + timedelta(days=4)).weekday()] ~ ', ' ~ as_timestamp(now() + timedelta(days=4)) | timestamp_custom('%d.%m') }}"
|
||||
#heat_mui: "{{ mui[language].climate.heat }}"
|
||||
|
||||
##### FORCAST ACCUWEATHER - DAY 0 #####
|
||||
|
||||
Reference in New Issue
Block a user