cosmic-terminal/i18n/en/cosmic_term.ftl

165 lines
4.1 KiB
Text
Raw Normal View History

2024-02-27 21:20:00 -07:00
cosmic-terminal = COSMIC Terminal
comment = Terminal emulator for the COSMIC desktop
keywords = Command;Shell;Terminal;CLI;
2024-02-20 10:21:30 -07:00
new-terminal = New terminal
2023-12-22 14:31:01 -07:00
# Context Pages
2024-02-27 21:20:00 -07:00
## About
repository = Repository
support = Support
2024-02-27 21:20:00 -07:00
## Color schemes
color-schemes = Color schemes
rename = Rename
export = Export
delete = Delete
import = Import
import-errors = Import errors
2024-02-09 15:45:46 -07:00
## Profiles
profiles = Profiles
name = Name
command-line = Command line
tab-title = Tab title
tab-title-description = Override the default tab title
add-profile = Add profile
new-profile = New profile
make-default = Make default
2024-04-14 21:17:32 +02:00
working-directory = Working directory
hold = Hold
remain-open = Remain open after child process exits.
2024-02-09 15:45:46 -07:00
2023-12-22 14:31:01 -07:00
## Settings
settings = Settings
### Appearance
appearance = Appearance
theme = Theme
match-desktop = Match desktop
dark = Dark
light = Light
2024-01-31 10:29:35 -07:00
syntax-dark = Color scheme dark
syntax-light = Color scheme light
default-zoom-step = Zoom steps
2024-02-12 12:36:30 -07:00
opacity = Background opacity
2024-01-31 10:29:35 -07:00
### Font
font = Font
advanced-font-settings = Advanced font settings
2024-01-31 10:29:35 -07:00
default-font = Font
default-font-size = Font size
default-font-stretch = Font stretch
default-font-weight = Normal font weight
default-dim-font-weight = Dim font weight
default-bold-font-weight = Bold font weight
use-bright-bold = Make bold text brighter
### Splits
splits = Splits
focus-follow-mouse = Typing focus follows mouse
### Advanced
advanced = Advanced
show-headerbar = Show header
2026-01-31 20:35:27 +01:00
show-header-description = Reveal the header from the right-click menu
tab-new-inherit-working-directory = New tabs and windows use current directory
tab-new-inherit-working-directory-description = Open new tabs and windows in the active tab's working directory
2023-12-22 15:00:50 -07:00
2026-02-02 15:20:28 -08:00
### Keyboard shortcuts
2026-02-05 12:57:56 -07:00
add-another-keybinding = Add another keybinding
cancel = Cancel
close-window = Close window
confirm = Confirm
2026-02-05 12:57:56 -07:00
copy-or-sigint = Copy or SIGINT
disable = Disable
2026-02-05 12:57:56 -07:00
focus-pane-down = Focus pane down
focus-pane-left = Focus pane left
focus-pane-right = Focus pane right
focus-pane-up = Focus pane up
2026-02-02 15:20:28 -08:00
keyboard-shortcuts = Keyboard shortcuts
2026-02-05 11:31:05 -07:00
menu-keyboard-shortcuts = Keyboard shortcuts...
2026-02-02 15:20:28 -08:00
no-shortcuts = No shortcuts
2026-02-05 12:57:56 -07:00
password-manager = Password manager
paste-primary = Paste primary
replace = Replace
reset-to-default = Reset to default
reset = Reset
2026-02-05 13:36:38 -07:00
shortcut-capture-hint = Press the key combination
2026-02-02 15:20:28 -08:00
shortcut-group-clipboard = Clipboard
2026-02-05 12:57:56 -07:00
shortcut-group-other = Other
2026-02-02 15:20:28 -08:00
shortcut-group-tabs = Tabs
shortcut-group-window = Window
shortcut-group-zoom = Zoom
2026-02-05 12:57:56 -07:00
shortcut-replace-body = { $binding } is already assigned to { $existing }. Replace it with { $new_action }?
shortcut-replace-title = Replace shortcut?
2026-02-02 15:20:28 -08:00
tab-activate = Activate tab { $number }
rename-tab = Rename tab
tab-name-placeholder = Tab name
tab-rename-title = Rename tab
2026-02-05 12:57:56 -07:00
toggle-fullscreen = Toggle fullscreen
type-to-search = Type to search...
2026-02-02 15:20:28 -08:00
2024-01-11 13:20:16 -07:00
# Find
find-placeholder = Find...
find-previous = Find previous
find-next = Find next
feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) Implements the first batch of COSMIC_TERMINAL_KONSOLE_PARITY.md: Save output as text: - New SaveOutput action in the Edit menu, terminal context menu and keyboard shortcuts (Ctrl+Shift+S, Konsole parity, rebindable). - Terminal::scrollback_text() extracts history plus visible screen via alacritty bounds_to_string, trimming trailing empty lines. - Save-file dialog through cosmic-files; the file is written in a spawn_blocking task so large scrollbacks never stall the UI. Search options: - Case-sensitive and regex checkboxes in the find bar. - App::find_pattern() escapes the pattern when regex mode is off and prefixes (?i) when case-insensitive (same approach as Alacritty). Per-tab monitors (activity / silence / process finished): - Toggles in the View menu and terminal context menu, state stored in Terminal (monitor_* fields). - Activity alerts on PTY output (Wakeup) for non-active tabs; silence alerts after 10 s without output (Konsole default); process-finished compares the shell pgrp with the tty tpgid via /proc/<pid>/stat and alerts when the foreground job exits. - Silence and process checks run on a 1 s iced::time subscription that is only active while at least one tab needs it. - Tab bar shows an armed icon (view-reveal-symbolic) and per-kind alert icons; activating the tab acknowledges the alert. Profile CLI: - --profile/-p <name-or-id> applies a profile to the first tab only, unknown profiles exit(1) with the available list on stderr. - --list-profiles prints "id<TAB>name" and exits. - Config is now loaded before the daemonize fork so CLI output reaches the launching terminal. - --help now documents -e/--command, --no-daemon and the new flags (-e already worked; audit confirmed everything after it becomes the command and its arguments). i18n: new en/fr strings (save-output, monitor-*, find-case-sensitive, find-regex). Validated with ./check_cosmic_local.sh terminal, cargo fmt, and a debug build exercising the CLI flags and a 6 s live run. The shutdown panic in iced_winit ("async fn resumed after completion") pre-exists and is reproducible with the installed binary. Leyoda 2026 – GPLv3
2026-07-06 09:50:58 +02:00
find-case-sensitive = Case sensitive
find-regex = Regex
2024-01-11 13:20:16 -07:00
2024-01-09 10:16:32 -07:00
# Menu
## File
file = File
new-tab = New tab
new-window = New window
2024-02-09 15:45:46 -07:00
profile = Profile
menu-profiles = Profiles...
ssh = SSH
save-layout = Save layout...
load-layout = Load layout...
load-layout-title = Load layout
load-layout-body = Loading a layout replaces all tabs and splits in this window.
load = Load
2024-01-09 10:16:32 -07:00
close-tab = Close tab
quit = Quit
## Edit
edit = Edit
2023-12-22 15:00:50 -07:00
copy = Copy
paste = Paste
select-all = Select all
2024-01-09 10:16:32 -07:00
find = Find
2024-09-15 23:53:13 +02:00
clear-scrollback = Clear scrollback
feat: Konsole parity phase 1 (save output, search options, monitors, profile CLI) Implements the first batch of COSMIC_TERMINAL_KONSOLE_PARITY.md: Save output as text: - New SaveOutput action in the Edit menu, terminal context menu and keyboard shortcuts (Ctrl+Shift+S, Konsole parity, rebindable). - Terminal::scrollback_text() extracts history plus visible screen via alacritty bounds_to_string, trimming trailing empty lines. - Save-file dialog through cosmic-files; the file is written in a spawn_blocking task so large scrollbacks never stall the UI. Search options: - Case-sensitive and regex checkboxes in the find bar. - App::find_pattern() escapes the pattern when regex mode is off and prefixes (?i) when case-insensitive (same approach as Alacritty). Per-tab monitors (activity / silence / process finished): - Toggles in the View menu and terminal context menu, state stored in Terminal (monitor_* fields). - Activity alerts on PTY output (Wakeup) for non-active tabs; silence alerts after 10 s without output (Konsole default); process-finished compares the shell pgrp with the tty tpgid via /proc/<pid>/stat and alerts when the foreground job exits. - Silence and process checks run on a 1 s iced::time subscription that is only active while at least one tab needs it. - Tab bar shows an armed icon (view-reveal-symbolic) and per-kind alert icons; activating the tab acknowledges the alert. Profile CLI: - --profile/-p <name-or-id> applies a profile to the first tab only, unknown profiles exit(1) with the available list on stderr. - --list-profiles prints "id<TAB>name" and exits. - Config is now loaded before the daemonize fork so CLI output reaches the launching terminal. - --help now documents -e/--command, --no-daemon and the new flags (-e already worked; audit confirmed everything after it becomes the command and its arguments). i18n: new en/fr strings (save-output, monitor-*, find-case-sensitive, find-regex). Validated with ./check_cosmic_local.sh terminal, cargo fmt, and a debug build exercising the CLI flags and a 6 s live run. The shutdown panic in iced_winit ("async fn resumed after completion") pre-exists and is reproducible with the installed binary. Leyoda 2026 – GPLv3
2026-07-06 09:50:58 +02:00
save-output = Save output as text...
## Monitors
monitor-activity = Monitor for activity
monitor-silence = Monitor for silence
monitor-process-finished = Monitor for process finishing
2024-01-09 10:16:32 -07:00
2025-10-16 09:27:00 +02:00
## Open
open-link = Open Link
2026-02-15 10:23:49 +01:00
copy-link = Copy Link
2025-10-16 09:27:00 +02:00
2024-01-09 10:16:32 -07:00
## View
view = View
2024-01-19 11:03:14 -07:00
zoom-in = Larger text
zoom-reset = Default text size
zoom-out = Smaller text
next-tab = Next tab
previous-tab = Previous tab
2024-01-19 11:06:40 -07:00
split-horizontal = Split horizontal
split-vertical = Split vertical
2024-01-19 11:44:59 -07:00
pane-toggle-maximize = Toggle maximized
menu-color-schemes = Color schemes...
2024-01-09 10:16:32 -07:00
menu-settings = Settings...
2024-02-27 21:20:00 -07:00
menu-about = About COSMIC Terminal...
2024-02-09 09:35:24 +01:00
# Password Manager
menu-password-manager = Passwords...
passwords-title = Passwords
add-password = Add Password
password-input = Password
password-input-description = Description