Path: blob/main/src/vs/code/electron-utility/sharedProcess/contrib/localizationsUpdater.ts
3296 views
/*---------------------------------------------------------------------------------------------1* Copyright (c) Microsoft Corporation. All rights reserved.2* Licensed under the MIT License. See License.txt in the project root for license information.3*--------------------------------------------------------------------------------------------*/45import { Disposable } from '../../../../base/common/lifecycle.js';6import { ILanguagePackService } from '../../../../platform/languagePacks/common/languagePacks.js';7import { NativeLanguagePackService } from '../../../../platform/languagePacks/node/languagePacks.js';89export class LocalizationsUpdater extends Disposable {1011constructor(12@ILanguagePackService private readonly localizationsService: NativeLanguagePackService13) {14super();1516this.updateLocalizations();17}1819private updateLocalizations(): void {20this.localizationsService.update();21}22}232425