2023-04-20 21:23:19 +00: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 20:39:56 +00:00
|
|
|
export const localeDisplayNames = ipcRenderer.sendSync('locale-display-names');
|
2024-02-08 23:19:03 +00:00
|
|
|
export const countryDisplayNames = ipcRenderer.sendSync(
|
|
|
|
'country-display-names'
|
|
|
|
);
|