mirror of
https://github.com/balena-io/etcher.git
synced 2025-04-21 13:57:17 +00:00
10 lines
195 B
TypeScript
10 lines
195 B
TypeScript
// @ts-nocheck
|
|
import { main } from './app';
|
|
import './i18n';
|
|
import { langParser } from './i18n';
|
|
import { ipcRenderer } from 'electron';
|
|
|
|
ipcRenderer.send('change-lng', langParser());
|
|
|
|
main();
|