-
-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathnls.ts
21 lines (20 loc) · 838 Bytes
/
nls.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { nls } from '@theia/core/lib/common/nls';
export const Unknown = nls.localize('arduino/common/unknown', 'Unknown');
export const Later = nls.localize('arduino/common/later', 'Later');
export const Updatable = nls.localize('arduino/common/updateable', 'Updatable');
export const All = nls.localize('arduino/common/all', 'All');
export const Type = nls.localize('arduino/common/type', 'Type');
export const Partner = nls.localize('arduino/common/partner', 'Partner');
export const Contributed = nls.localize(
'arduino/common/contributed',
'Contributed'
);
export const Recommended = nls.localize(
'arduino/common/recommended',
'Recommended'
);
export const Retired = nls.localize('arduino/common/retired', 'Retired');
export const InstallManually = nls.localize(
'arduino/common/installManually',
'Install Manually'
);