mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 09:36:27 +00:00
This removes the polyfill for using older chrome browsers before the writeWithResponse and writeWithoutResponse APIs were added.
16 lines
567 B
TypeScript
16 lines
567 B
TypeScript
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2020 The Pybricks Authors
|
|
// File: components/notification-i18n.ts
|
|
// Notification translation keys.
|
|
|
|
export enum MessageId {
|
|
BleConnectFailed = 'ble.connectFailed',
|
|
BleGattPermission = 'ble.gattPermission',
|
|
BleGattServiceNotFound = 'ble.gattServiceNotFound',
|
|
BleNoWebBluetooth = 'ble.noWebBluetooth',
|
|
ProgramChanged = 'editor.programChanged',
|
|
ServiceWorkerSuccess = 'serviceWorker.success',
|
|
ServiceWorkerUpdate = 'serviceWorker.update',
|
|
YesReloadProgram = 'editor.yesReloadProgram',
|
|
}
|