Show first day of the week in correct language
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
459e71638d
commit
a7f4d54d0f
|
@ -6,7 +6,9 @@ module.exports = {
|
|||
$: true,
|
||||
moment: true,
|
||||
escapeHTML: true,
|
||||
oc_userconfig: true
|
||||
oc_userconfig: true,
|
||||
dayNames: true,
|
||||
firstDay: true
|
||||
},
|
||||
extends: ['nextcloud']
|
||||
}
|
||||
|
|
|
@ -369,11 +369,9 @@ $(document).ready(function () {
|
|||
});
|
||||
|
||||
window.setInterval(function() {
|
||||
$('#localeexample-time').text(moment().format('LTS'));
|
||||
$('#localeexample-date').text(moment().format('L'));
|
||||
$('#localeexample-fdow').text(t('settings', 'Week starts on {fdow}',
|
||||
{fdow: moment().weekday(0).format('dddd')}));
|
||||
|
||||
}, 1000);
|
||||
$('#localeexample-time').text(moment().format('LTS'))
|
||||
$('#localeexample-date').text(moment().format('L'))
|
||||
$('#localeexample-fdow').text(t('settings', 'Week starts on {fdow}', { fdow: dayNames[firstDay] }))
|
||||
}, 1000)
|
||||
|
||||
OC.Settings.updateAvatar = updateAvatar;
|
||||
|
|
Loading…
Reference in New Issue