Merge pull request #17691 from nextcloud/enh/17673/fix-first-day-week
Show first day of the week in correct language
This commit is contained in:
commit
790efdf787
2 changed files with 7 additions and 7 deletions
|
@ -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 a new issue