mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
23 lines
1.2 KiB
TypeScript
23 lines
1.2 KiB
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2022 The Pybricks Authors
|
|
//
|
|
// Explorer translation keys.
|
|
|
|
export enum I18nId {
|
|
HeaderToolbarTitle = 'header.toolbar.title',
|
|
HeaderToolbarExportAll = 'header.toolbar.exportAll',
|
|
HeaderToolbarImport = 'header.toolbar.import',
|
|
HeaderToolbarAddNew = 'header.toolbar.addNew',
|
|
TreeLabel = 'tree.label',
|
|
TreeLiveDescriptorIntroAccessibilityGuide = 'tree.liveDescriptor.intro.accessibilityGuide',
|
|
TreeLiveDescriptorIntroNavigation = 'tree.liveDescriptor.intro.navigation',
|
|
TreeLiveDescriptorIntroKeybindingsPrimaryAction = 'tree.liveDescriptor.intro.keybindings.primaryAction',
|
|
TreeLiveDescriptorIntroKeybindingsDuplicate = 'tree.liveDescriptor.intro.keybindings.duplicate',
|
|
TreeLiveDescriptorIntroKeybindingsExport = 'tree.liveDescriptor.intro.keybindings.export',
|
|
TreeLiveDescriptorIntroKeybindingsDelete = 'tree.liveDescriptor.intro.keybindings.delete',
|
|
TreeLiveDescriptorSearching = 'tree.liveDescriptor.searching',
|
|
TreeItemDeleteTooltip = 'treeItem.deleteTooltip',
|
|
TreeItemExportTooltip = 'treeItem.exportTooltip',
|
|
TreeItemDuplicateTooltip = 'treeItem.duplicateTooltip',
|
|
}
|