mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-03-13 15:40:57 -07:00
23 lines
714 B
TypeScript
23 lines
714 B
TypeScript
/**
|
|
* @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';
|
|
|
|
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: "
|
|
export const REDIRECTION_WARNING_TIP_TEXT =
|
|
'Toggle auto-edit (Shift+Tab) to allow redirection in the future.';
|
|
|
|
export const GENERIC_WORKING_LABEL = 'Working...';
|