-
-
Notifications
You must be signed in to change notification settings - Fork 435
/
Copy pathnls.ts
43 lines (38 loc) · 1.41 KB
/
nls.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { nls } from '@theia/core/lib/common/nls';
// TODO: rename constants: `Unknown` should be `unknownLabel`, change `Later` to `laterLabel`, etc.
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'
);
export const SelectManually = nls.localize(
'arduino/common/selectManually',
'Select Manually'
);
export const serialMonitorWidgetLabel = nls.localize(
'arduino/common/serialMonitor',
'Serial Monitor'
);
export const noBoardSelected = nls.localize(
'arduino/common/noBoardSelected',
'No board selected'
);
export const noSketchOpened = nls.localize(
'arduino/common/noSketchOpened',
'No sketch opened'
);
export const userAbort = nls.localize('arduino/common/userAbort', 'User abort');