Merge pull request #21780 from nextcloud/backport/21778/stable19
[stable19] Set the moment locale even earlier
This commit is contained in:
commit
1e695d4a43
File diff suppressed because one or more lines are too long
|
@ -98,15 +98,15 @@ const initLiveTimestamps = () => {
|
||||||
}, 30 * 1000)
|
}, 30 * 1000)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set users locale to moment.js as soon as possible
|
||||||
|
*/
|
||||||
|
moment.locale(OC.getLocale())
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes core
|
* Initializes core
|
||||||
*/
|
*/
|
||||||
export const initCore = () => {
|
export const initCore = () => {
|
||||||
/**
|
|
||||||
* Set users locale to moment.js as soon as possible
|
|
||||||
*/
|
|
||||||
moment.locale(OC.getLocale())
|
|
||||||
|
|
||||||
const userAgent = window.navigator.userAgent
|
const userAgent = window.navigator.userAgent
|
||||||
const msie = userAgent.indexOf('MSIE ')
|
const msie = userAgent.indexOf('MSIE ')
|
||||||
const trident = userAgent.indexOf('Trident/')
|
const trident = userAgent.indexOf('Trident/')
|
||||||
|
|
Loading…
Reference in New Issue