mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 01:23:52 +00:00
17 lines
476 B
TypeScript
17 lines
476 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020 The Pybricks Authors
|
|
// File: components/button-i18n.ts
|
|
// Button translation keys.
|
|
|
|
export enum TooltipId {
|
|
Open = 'open.tooltip',
|
|
SaveAs = 'saveAs.tooltip',
|
|
Run = 'run.tooltip',
|
|
Stop = 'stop.tooltip',
|
|
Repl = 'repl.tooltip',
|
|
Flash = 'flash.tooltip',
|
|
BluetoothConnect = 'bluetooth.connect.tooltip',
|
|
BluetoothDisconnect = 'bluetooth.disconnect.tooltip',
|
|
Settings = 'settings.tooltip',
|
|
}
|