2023-04-20 17:23:19 -04:00
|
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
|
|
|
import { ipcRenderer } from 'electron';
|
|
|
|
|
|
|
|
export const localeMessages = ipcRenderer.sendSync('locale-data');
|
2023-11-08 12:39:56 -08:00
|
|
|
export const localeDisplayNames = ipcRenderer.sendSync('locale-display-names');
|
2024-02-08 15:19:03 -08:00
|
|
|
export const countryDisplayNames = ipcRenderer.sendSync(
|
|
|
|
'country-display-names'
|
|
|
|
);
|