2023-01-03 19:55:46 +00:00
|
|
|
// Copyright 2020 Signal Messenger, LLC
|
2020-10-30 20:34:04 +00:00
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2023-04-20 21:23:19 +00:00
|
|
|
import { setupI18n } from '../../util/setupI18n';
|
|
|
|
|
|
|
|
window.i18n = setupI18n(
|
|
|
|
window.SignalContext.getI18nLocale(),
|
|
|
|
window.SignalContext.getI18nLocaleMessages()
|
|
|
|
);
|
|
|
|
|
2021-09-17 22:12:58 +00:00
|
|
|
const message = document.getElementById('message');
|
|
|
|
if (message) {
|
2023-04-20 21:23:19 +00:00
|
|
|
message.innerHTML = window.i18n('icu:optimizingApplication');
|
2021-09-17 22:12:58 +00:00
|
|
|
}
|