2025-08-28 20:52:14 +00:00
|
|
|
/**
|
|
|
|
|
* @license
|
|
|
|
|
* Copyright 2025 Google LLC
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
export const SCREEN_READER_USER_PREFIX = 'User: ';
|
|
|
|
|
|
|
|
|
|
export const SCREEN_READER_MODEL_PREFIX = 'Model: ';
|
|
|
|
|
|
|
|
|
|
export const SCREEN_READER_LOADING = 'loading';
|
|
|
|
|
|
|
|
|
|
export const SCREEN_READER_RESPONDING = 'responding';
|
2026-01-19 20:07:28 -08:00
|
|
|
|
|
|
|
|
export const REDIRECTION_WARNING_NOTE_LABEL = 'Note: ';
|
|
|
|
|
export const REDIRECTION_WARNING_NOTE_TEXT =
|
|
|
|
|
'Command contains redirection which can be undesirable.';
|
|
|
|
|
export const REDIRECTION_WARNING_TIP_LABEL = 'Tip: '; // Padded to align with "Note: "
|
2026-03-06 18:34:26 +00:00
|
|
|
export const getRedirectionWarningTipText = (shiftTabHint: string) =>
|
|
|
|
|
`Toggle auto-edit (${shiftTabHint}) to allow redirection in the future.`;
|