mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 17:45:22 +00:00
14 lines
352 B
TypeScript
14 lines
352 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020 The Pybricks Authors
|
|
// File: components/editor-i18n.ts
|
|
// Editor translation keys.
|
|
|
|
export enum EditorStringId {
|
|
Placeholder = 'editor.placeholder',
|
|
Copy = 'editor.copy',
|
|
Paste = 'editor.paste',
|
|
SelectAll = 'editor.selectAll',
|
|
Undo = 'editor.undo',
|
|
Redo = 'editor.redo',
|
|
}
|