diff --git a/.githooks/pre-commit b/.githooks/pre-commit index e82b70bc..e10f150b 100755 --- a/.githooks/pre-commit +++ b/.githooks/pre-commit @@ -1,8 +1,4 @@ #!/bin/bash - -# DISABLED for now -exit 0 - set -euo pipefail HOOK_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" @@ -10,18 +6,61 @@ REPO_ROOT="$(cd "$HOOK_DIR/.." && pwd)" cd "$REPO_ROOT" -if [[ -z "${POEDITOR_API_TOKEN:-}" ]] || [[ -z "${POEDITOR_PROJECT_ID:-}" ]]; then - exit 0 +# ============================================================================= +# Go CI checks (when core/ files are staged) +# ============================================================================= +STAGED_CORE_FILES=$(git diff --cached --name-only --diff-filter=ACMR | grep '^core/' || true) + +if [[ -n "$STAGED_CORE_FILES" ]]; then + echo "Go files staged in core/, running CI checks..." + cd "$REPO_ROOT/core" + + # Format check + echo " Checking gofmt..." + UNFORMATTED=$(gofmt -s -l . 2>/dev/null || true) + if [[ -n "$UNFORMATTED" ]]; then + echo "The following files are not formatted:" + echo "$UNFORMATTED" + echo "" + echo "Run: cd core && gofmt -s -w ." + exit 1 + fi + + # golangci-lint + if command -v golangci-lint &>/dev/null; then + echo " Running golangci-lint..." + golangci-lint run ./... + else + echo " Warning: golangci-lint not installed, skipping lint" + echo " Install: go install github.com/golangci/golangci-lint/cmd/golangci-lint@latest" + fi + + # Tests + echo " Running tests..." + go test ./... > /dev/null + + # Build checks + echo " Building..." + mkdir -p bin + go build -buildvcs=false -o bin/dms ./cmd/dms + go build -buildvcs=false -o bin/dms-distro -tags distro_binary ./cmd/dms + go build -buildvcs=false -o bin/dankinstall ./cmd/dankinstall + + echo "All Go CI checks passed!" + cd "$REPO_ROOT" fi -if ! command -v python3 &>/dev/null; then - exit 0 -fi - -if ! python3 scripts/i18nsync.py check &>/dev/null; then - echo "Translations out of sync" - echo "run python3 scripts/i18nsync.py sync" - exit 1 -fi +# ============================================================================= +# i18n sync check (DISABLED for now) +# ============================================================================= +# if [[ -n "${POEDITOR_API_TOKEN:-}" ]] && [[ -n "${POEDITOR_PROJECT_ID:-}" ]]; then +# if command -v python3 &>/dev/null; then +# if ! python3 scripts/i18nsync.py check &>/dev/null; then +# echo "Translations out of sync" +# echo "Run: python3 scripts/i18nsync.py sync" +# exit 1 +# fi +# fi +# fi exit 0 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index eadadec0..6bf43d68 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -4,6 +4,14 @@ Contributions are welcome and encouraged. To contribute fork this repository, make your changes, and open a pull request. +## Setup + +Enable pre-commit hooks to catch CI failures before pushing: + +```bash +git config core.hooksPath .githooks +``` + ## VSCode Setup This is a monorepo, the easiest thing to do is to open an editor in either `quickshell`, `core`, or both depending on which part of the project you are working on. diff --git a/core/README.md b/core/README.md index b28aad9c..a3b5d3b6 100644 --- a/core/README.md +++ b/core/README.md @@ -72,6 +72,13 @@ sudo make install # Install to /usr/local/bin/dms ## Development +**Setup pre-commit hooks:** +```bash +git config core.hooksPath .githooks +``` + +This runs gofmt, golangci-lint, tests, and builds before each commit when `core/` files are staged. + **Regenerating Wayland Protocol Bindings:** ```bash go install github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner@latest diff --git a/core/internal/tui/views_selection.go b/core/internal/tui/views_selection.go index 915d0842..e45105ec 100644 --- a/core/internal/tui/views_selection.go +++ b/core/internal/tui/views_selection.go @@ -3,7 +3,6 @@ package tui import ( "context" "fmt" - "os/exec" "strings" "github.com/AvengeMedia/DankMaterialShell/core/internal/deps" @@ -179,11 +178,6 @@ func (m Model) updateSelectWindowManagerState(msg tea.Msg) (tea.Model, tea.Cmd) return m, m.listenForLogs() } -func (m Model) commandExists(cmd string) bool { - _, err := exec.LookPath(cmd) - return err == nil -} - func (m Model) detectDependencies() tea.Cmd { return func() tea.Msg { if m.osInfo == nil { diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index a81d1c6b..4dafbbcd 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -11,6 +11,12 @@ "reference": "Modules/Notepad/NotepadTextEditor.qml:565", "comment": "" }, + { + "term": "%1 class(es)", + "context": "%1 class(es)", + "reference": "Modules/Settings/PrinterTab.qml:1239", + "comment": "" + }, { "term": "%1 connected", "context": "%1 connected", @@ -23,6 +29,18 @@ "reference": "Modules/Settings/DankBarTab.qml:1243", "comment": "" }, + { + "term": "%1 job(s)", + "context": "%1 job(s)", + "reference": "Modules/Settings/PrinterTab.qml:696", + "comment": "" + }, + { + "term": "%1 printer(s)", + "context": "%1 printer(s)", + "reference": "Modules/Settings/PrinterTab.qml:550, Modules/Settings/PrinterTab.qml:1302", + "comment": "" + }, { "term": "%1 widgets", "context": "%1 widgets", @@ -83,10 +101,34 @@ "reference": "Modals/FileBrowser/FileBrowserOverwriteDialog.qml:61", "comment": "" }, + { + "term": "API", + "context": "API", + "reference": "Modules/Settings/AboutTab.qml:664", + "comment": "" + }, + { + "term": "Aborted", + "context": "Aborted", + "reference": "Services/CupsService.qml:751", + "comment": "" + }, { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:72, Modules/Settings/AboutTab.qml:408", + "reference": "Modals/Settings/SettingsSidebar.qml:78, Modules/Settings/AboutTab.qml:408", + "comment": "" + }, + { + "term": "Accept Jobs", + "context": "Accept Jobs", + "reference": "Modules/Settings/PrinterTab.qml:970", + "comment": "" + }, + { + "term": "Accepting", + "context": "Accepting", + "reference": "Modules/Settings/PrinterTab.qml:832", "comment": "" }, { @@ -155,6 +197,12 @@ "reference": "Modules/Settings/DankBarTab.qml:1159", "comment": "" }, + { + "term": "Add Printer", + "context": "Add Printer", + "reference": "Modules/Settings/PrinterTab.qml:210", + "comment": "" + }, { "term": "Add Widget", "context": "Add Widget", @@ -482,7 +530,7 @@ { "term": "Available", "context": "Available", - "reference": "Modules/ProcessList/SystemTab.qml:464", + "reference": "Modules/ProcessList/SystemTab.qml:464, Modules/Settings/PrinterTab.qml:145", "comment": "" }, { @@ -524,7 +572,7 @@ { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/NetworkTab.qml:116", + "reference": "Modules/Settings/AboutTab.qml:626, Modules/Settings/NetworkTab.qml:116", "comment": "" }, { @@ -686,13 +734,19 @@ { "term": "CUPS Insecure Filter Warning", "context": "CUPS Insecure Filter Warning", - "reference": "Services/CupsService.qml:336", + "reference": "Services/CupsService.qml:807", "comment": "" }, { "term": "CUPS Missing Filter Warning", "context": "CUPS Missing Filter Warning", - "reference": "Services/CupsService.qml:335", + "reference": "Services/CupsService.qml:806", + "comment": "" + }, + { + "term": "CUPS Print Server", + "context": "CUPS Print Server", + "reference": "Modules/Settings/PrinterTab.qml:108", "comment": "" }, { @@ -707,6 +761,18 @@ "reference": "Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:264, Modals/WifiPasswordModal.qml:605, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:634", "comment": "" }, + { + "term": "Canceled", + "context": "Canceled", + "reference": "Services/CupsService.qml:749", + "comment": "" + }, + { + "term": "Capabilities", + "context": "Capabilities", + "reference": "Modules/Settings/AboutTab.qml:719", + "comment": "" + }, { "term": "Capacity", "context": "Capacity", @@ -830,13 +896,13 @@ { "term": "Clear", "context": "Clear", - "reference": "Modules/Notifications/Center/NotificationHeader.qml:98", + "reference": "Modules/Settings/PrinterTab.qml:1050, Modules/Notifications/Center/NotificationHeader.qml:98", "comment": "" }, { "term": "Clear All", "context": "Clear All", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:163", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:163, Modules/Settings/PrinterTab.qml:1034", "comment": "" }, { @@ -845,6 +911,12 @@ "reference": "Modals/Clipboard/ClipboardContent.qml:33", "comment": "" }, + { + "term": "Clear All Jobs", + "context": "Clear All Jobs", + "reference": "Modules/Settings/PrinterTab.qml:1048", + "comment": "" + }, { "term": "Click Import to add a .ovpn or .conf", "context": "Click Import to add a .ovpn or .conf", @@ -965,6 +1037,12 @@ "reference": "Modules/Settings/WidgetsTabSection.qml:485", "comment": "" }, + { + "term": "Completed", + "context": "Completed", + "reference": "Services/CupsService.qml:753", + "comment": "" + }, { "term": "Compositor", "context": "Compositor", @@ -977,6 +1055,12 @@ "reference": "Services/DMSNetworkService.qml:389", "comment": "" }, + { + "term": "Configure a new printer", + "context": "Configure a new printer", + "reference": "Modules/Settings/PrinterTab.qml:217", + "comment": "" + }, { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", @@ -1028,7 +1112,7 @@ { "term": "Connected", "context": "Connected", - "reference": "Modules/Settings/NetworkTab.qml:384, Modules/Settings/NetworkTab.qml:1105, Modules/Settings/NetworkTab.qml:1429, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", + "reference": "Modules/Settings/AboutTab.qml:704, Modules/Settings/NetworkTab.qml:384, Modules/Settings/NetworkTab.qml:1105, Modules/Settings/NetworkTab.qml:1429, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", "comment": "" }, { @@ -1040,7 +1124,7 @@ { "term": "Connecting to Device", "context": "Connecting to Device", - "reference": "Services/CupsService.qml:327", + "reference": "Services/CupsService.qml:798", "comment": "" }, { @@ -1106,7 +1190,7 @@ { "term": "Cover Open", "context": "Cover Open", - "reference": "Services/CupsService.qml:316", + "reference": "Services/CupsService.qml:787", "comment": "" }, { @@ -1115,6 +1199,18 @@ "reference": "Modules/Settings/PluginsTab.qml:150", "comment": "" }, + { + "term": "Create Printer", + "context": "Create Printer", + "reference": "Modules/Settings/PrinterTab.qml:490", + "comment": "" + }, + { + "term": "Creating...", + "context": "Creating...", + "reference": "Modules/Settings/PrinterTab.qml:490", + "comment": "" + }, { "term": "Critical Priority", "context": "Critical Priority", @@ -1202,7 +1298,7 @@ { "term": "DMS out of date", "context": "DMS out of date", - "reference": "Services/DMSService.qml:304", + "reference": "Services/DMSService.qml:300", "comment": "" }, { @@ -1304,7 +1400,19 @@ { "term": "Delete", "context": "Delete", - "reference": "Widgets/VpnDetailContent.qml:326, Modules/Settings/NetworkTab.qml:1692", + "reference": "Widgets/VpnDetailContent.qml:326, Modules/Settings/PrinterTab.qml:758, Modules/Settings/PrinterTab.qml:1338, Modules/Settings/NetworkTab.qml:1692", + "comment": "" + }, + { + "term": "Delete Class", + "context": "Delete Class", + "reference": "Modules/Settings/PrinterTab.qml:1336", + "comment": "" + }, + { + "term": "Delete Printer", + "context": "Delete Printer", + "reference": "Modules/Settings/PrinterTab.qml:756", "comment": "" }, { @@ -1319,6 +1427,12 @@ "reference": "Common/Theme.qml:221", "comment": "" }, + { + "term": "Description", + "context": "Description", + "reference": "Modules/Settings/PrinterTab.qml:466", + "comment": "" + }, { "term": "Desktop background images", "context": "Desktop background images", @@ -1334,7 +1448,7 @@ { "term": "Device", "context": "Device", - "reference": "Modules/ProcessList/SystemTab.qml:420", + "reference": "Modules/ProcessList/SystemTab.qml:420, Modules/Settings/PrinterTab.qml:278", "comment": "" }, { @@ -1508,13 +1622,13 @@ { "term": "Donate on Ko-fi", "context": "Donate on Ko-fi", - "reference": "Modules/Settings/AboutTab.qml:641", + "reference": "Modules/Settings/AboutTab.qml:794", "comment": "" }, { "term": "Door Open", "context": "Door Open", - "reference": "Services/CupsService.qml:317", + "reference": "Services/CupsService.qml:788", "comment": "" }, { @@ -1526,7 +1640,7 @@ { "term": "Driver", "context": "Driver", - "reference": "Modules/Settings/NetworkTab.qml:547", + "reference": "Modules/Settings/PrinterTab.qml:356, Modules/Settings/NetworkTab.qml:547", "comment": "" }, { @@ -1706,7 +1820,7 @@ { "term": "Error", "context": "Error", - "reference": "Services/CupsService.qml:345", + "reference": "Services/CupsService.qml:816", "comment": "" }, { @@ -1751,16 +1865,22 @@ "reference": "Services/DMSNetworkService.qml:385", "comment": "" }, + { + "term": "Failed to add printer to class", + "context": "Failed to add printer to class", + "reference": "Services/CupsService.qml:692", + "comment": "" + }, { "term": "Failed to cancel all jobs", "context": "Failed to cancel all jobs", - "reference": "Services/CupsService.qml:281", + "reference": "Services/CupsService.qml:436", "comment": "" }, { "term": "Failed to cancel selected job", "context": "Failed to cancel selected job", - "reference": "Services/CupsService.qml:264", + "reference": "Services/CupsService.qml:420", "comment": "" }, { @@ -1775,12 +1895,36 @@ "reference": "Services/DMSNetworkService.qml:356", "comment": "" }, + { + "term": "Failed to create printer", + "context": "Failed to create printer", + "reference": "Services/CupsService.qml:502", + "comment": "" + }, { "term": "Failed to delete VPN", "context": "Failed to delete VPN", "reference": "Services/VPNService.qml:156", "comment": "" }, + { + "term": "Failed to delete class", + "context": "Failed to delete class", + "reference": "Services/CupsService.qml:725", + "comment": "" + }, + { + "term": "Failed to delete printer", + "context": "Failed to delete printer", + "reference": "Services/CupsService.qml:519", + "comment": "" + }, + { + "term": "Failed to disable job acceptance", + "context": "Failed to disable job acceptance", + "reference": "Services/CupsService.qml:555", + "comment": "" + }, { "term": "Failed to disconnect VPN", "context": "Failed to disconnect VPN", @@ -1805,6 +1949,18 @@ "reference": "Services/DMSNetworkService.qml:580", "comment": "" }, + { + "term": "Failed to enable job acceptance", + "context": "Failed to enable job acceptance", + "reference": "Services/CupsService.qml:539", + "comment": "" + }, + { + "term": "Failed to hold job", + "context": "Failed to hold job", + "reference": "Services/CupsService.qml:675", + "comment": "" + }, { "term": "Failed to import VPN", "context": "Failed to import VPN", @@ -1817,10 +1973,22 @@ "reference": "Services/VPNService.qml:114", "comment": "" }, + { + "term": "Failed to move job", + "context": "Failed to move job", + "reference": "Services/CupsService.qml:640", + "comment": "" + }, { "term": "Failed to pause printer", "context": "Failed to pause printer", - "reference": "Services/CupsService.qml:229", + "reference": "Services/CupsService.qml:387", + "comment": "" + }, + { + "term": "Failed to print test page", + "context": "Failed to print test page", + "reference": "Services/CupsService.qml:622", "comment": "" }, { @@ -1829,10 +1997,22 @@ "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:624", "comment": "" }, + { + "term": "Failed to remove printer from class", + "context": "Failed to remove printer from class", + "reference": "Services/CupsService.qml:709", + "comment": "" + }, + { + "term": "Failed to restart job", + "context": "Failed to restart job", + "reference": "Services/CupsService.qml:656", + "comment": "" + }, { "term": "Failed to resume printer", "context": "Failed to resume printer", - "reference": "Services/CupsService.qml:246", + "reference": "Services/CupsService.qml:403", "comment": "" }, { @@ -1865,12 +2045,36 @@ "reference": "Services/DMSNetworkService.qml:936", "comment": "" }, + { + "term": "Failed to update description", + "context": "Failed to update description", + "reference": "Services/CupsService.qml:606", + "comment": "" + }, + { + "term": "Failed to update location", + "context": "Failed to update location", + "reference": "Services/CupsService.qml:589", + "comment": "" + }, + { + "term": "Failed to update sharing", + "context": "Failed to update sharing", + "reference": "Services/CupsService.qml:572", + "comment": "" + }, { "term": "Feels Like", "context": "Feels Like", "reference": "Modules/DankDash/WeatherTab.qml:260, Modules/Settings/TimeWeatherTab.qml:1082", "comment": "" }, + { + "term": "File", + "context": "File", + "reference": "Services/CupsService.qml:134", + "comment": "" + }, { "term": "File Already Exists", "context": "File Already Exists", @@ -2093,6 +2297,12 @@ "reference": "Modules/ControlCenter/Details/BatteryDetail.qml:136, Modules/DankBar/Popouts/BatteryPopout.qml:307, Modules/DankBar/Popouts/BatteryPopout.qml:463", "comment": "" }, + { + "term": "Held", + "context": "Held", + "reference": "Services/CupsService.qml:743", + "comment": "" + }, { "term": "Hex", "context": "Hex", @@ -2204,7 +2414,7 @@ { "term": "Idle", "context": "Idle", - "reference": "Services/CupsService.qml:289", + "reference": "Services/CupsService.qml:760", "comment": "" }, { @@ -2306,7 +2516,7 @@ { "term": "Interlock Open", "context": "Interlock Open", - "reference": "Services/CupsService.qml:318", + "reference": "Services/CupsService.qml:789", "comment": "" }, { @@ -2330,7 +2540,7 @@ { "term": "Jobs", "context": "Jobs", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:169", + "reference": "Modules/Settings/PrinterTab.qml:1003, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:169", "comment": "" }, { @@ -2426,7 +2636,7 @@ { "term": "Launcher", "context": "Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:52", + "reference": "Modals/Settings/SettingsSidebar.qml:58", "comment": "" }, { @@ -2480,7 +2690,19 @@ { "term": "Loading...", "context": "Loading...", - "reference": "Widgets/VpnDetailContent.qml:363, Modules/Settings/NetworkTab.qml:617, Modules/Settings/NetworkTab.qml:1271, Modules/Settings/NetworkTab.qml:1729", + "reference": "Widgets/VpnDetailContent.qml:363, Modules/Settings/PrinterTab.qml:370, Modules/Settings/PrinterTab.qml:389, Modules/Settings/NetworkTab.qml:617, Modules/Settings/NetworkTab.qml:1271, Modules/Settings/NetworkTab.qml:1729", + "comment": "" + }, + { + "term": "Local", + "context": "Local", + "reference": "Services/CupsService.qml:128", + "comment": "" + }, + { + "term": "Location", + "context": "Location", + "reference": "Modules/Settings/PrinterTab.qml:444, Modules/Settings/PrinterTab.qml:828", "comment": "" }, { @@ -2588,25 +2810,25 @@ { "term": "Marker Supply Empty", "context": "Marker Supply Empty", - "reference": "Services/CupsService.qml:303", + "reference": "Services/CupsService.qml:774", "comment": "" }, { "term": "Marker Supply Low", "context": "Marker Supply Low", - "reference": "Services/CupsService.qml:302", + "reference": "Services/CupsService.qml:773", "comment": "" }, { "term": "Marker Waste Almost Full", "context": "Marker Waste Almost Full", - "reference": "Services/CupsService.qml:304", + "reference": "Services/CupsService.qml:775", "comment": "" }, { "term": "Marker Waste Full", "context": "Marker Waste Full", - "reference": "Services/CupsService.qml:305", + "reference": "Services/CupsService.qml:776", "comment": "" }, { @@ -2654,25 +2876,25 @@ { "term": "Media Empty", "context": "Media Empty", - "reference": "Services/CupsService.qml:310", + "reference": "Services/CupsService.qml:781", "comment": "" }, { "term": "Media Jam", "context": "Media Jam", - "reference": "Services/CupsService.qml:312", + "reference": "Services/CupsService.qml:783", "comment": "" }, { "term": "Media Low", "context": "Media Low", - "reference": "Services/CupsService.qml:309", + "reference": "Services/CupsService.qml:780", "comment": "" }, { "term": "Media Needed", "context": "Media Needed", - "reference": "Services/CupsService.qml:311", + "reference": "Services/CupsService.qml:782", "comment": "" }, { @@ -2762,7 +2984,7 @@ { "term": "Model", "context": "Model", - "reference": "Modules/Settings/DisplaysTab.qml:628", + "reference": "Modules/Settings/PrinterTab.qml:823, Modules/Settings/DisplaysTab.qml:628", "comment": "" }, { @@ -2798,7 +3020,7 @@ { "term": "Moving to Paused", "context": "Moving to Paused", - "reference": "Services/CupsService.qml:341", + "reference": "Services/CupsService.qml:812", "comment": "" }, { @@ -2816,7 +3038,7 @@ { "term": "Name", "context": "Name", - "reference": "Modules/Settings/DisplaysTab.qml:628", + "reference": "Modules/Settings/PrinterTab.qml:422, Modules/Settings/DisplaysTab.qml:628", "comment": "" }, { @@ -2834,7 +3056,7 @@ { "term": "Network", "context": "Network", - "reference": "Modals/Settings/SettingsSidebar.qml:46, Modules/ProcessList/PerformanceTab.qml:342, Modules/Settings/WidgetsTabSection.qml:757", + "reference": "Services/CupsService.qml:131, Modals/Settings/SettingsSidebar.qml:46, Modules/ProcessList/PerformanceTab.qml:342, Modules/Settings/WidgetsTabSection.qml:757", "comment": "" }, { @@ -2906,7 +3128,7 @@ { "term": "No", "context": "No", - "reference": "Widgets/VpnDetailContent.qml:419, Modules/Settings/NetworkTab.qml:1785", + "reference": "Widgets/VpnDetailContent.qml:419, Modules/Settings/PrinterTab.qml:833, Modules/Settings/NetworkTab.qml:1785", "comment": "" }, { @@ -2957,6 +3179,18 @@ "reference": "Modals/Clipboard/ClipboardContent.qml:119", "comment": "" }, + { + "term": "No devices found", + "context": "No devices found", + "reference": "Modules/Settings/PrinterTab.qml:300, Modules/Settings/PrinterTab.qml:304", + "comment": "" + }, + { + "term": "No drivers found", + "context": "No drivers found", + "reference": "Modules/Settings/PrinterTab.qml:383, Modules/Settings/PrinterTab.qml:389", + "comment": "" + }, { "term": "No files found", "context": "No files found", @@ -2993,10 +3227,22 @@ "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:25, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:55", "comment": "" }, + { + "term": "No printers configured", + "context": "No printers configured", + "reference": "Modules/Settings/PrinterTab.qml:549", + "comment": "" + }, + { + "term": "No printers found", + "context": "No printers found", + "reference": "Modules/Settings/PrinterTab.qml:589", + "comment": "" + }, { "term": "None", "context": "None", - "reference": "Services/CupsService.qml:295", + "reference": "Services/CupsService.qml:766", "comment": "" }, { @@ -3014,7 +3260,7 @@ { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:452, Modules/Settings/DankBarTab.qml:527", + "reference": "DMSShell.qml:477, Modules/Settings/DankBarTab.qml:527", "comment": "" }, { @@ -3104,7 +3350,7 @@ { "term": "Offline Report", "context": "Offline Report", - "reference": "Services/CupsService.qml:340", + "reference": "Services/CupsService.qml:811", "comment": "" }, { @@ -3155,10 +3401,22 @@ "reference": "Modules/Notepad/NotepadSettings.qml:192", "comment": "" }, + { + "term": "Optional description", + "context": "Optional description", + "reference": "Modules/Settings/PrinterTab.qml:477", + "comment": "" + }, + { + "term": "Optional location", + "context": "Optional location", + "reference": "Modules/Settings/PrinterTab.qml:455", + "comment": "" + }, { "term": "Other", "context": "Other", - "reference": "Services/CupsService.qml:296", + "reference": "Services/CupsService.qml:767", "comment": "" }, { @@ -3182,19 +3440,19 @@ { "term": "Output Area Almost Full", "context": "Output Area Almost Full", - "reference": "Services/CupsService.qml:320", + "reference": "Services/CupsService.qml:791", "comment": "" }, { "term": "Output Area Full", "context": "Output Area Full", - "reference": "Services/CupsService.qml:321", + "reference": "Services/CupsService.qml:792", "comment": "" }, { "term": "Output Tray Missing", "context": "Output Tray Missing", - "reference": "Services/CupsService.qml:319", + "reference": "Services/CupsService.qml:790", "comment": "" }, { @@ -3260,13 +3518,19 @@ { "term": "Pause", "context": "Pause", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", + "reference": "Modules/Settings/PrinterTab.qml:896, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", "comment": "" }, { "term": "Paused", "context": "Paused", - "reference": "Services/CupsService.qml:325", + "reference": "Services/CupsService.qml:796", + "comment": "" + }, + { + "term": "Pending", + "context": "Pending", + "reference": "Services/CupsService.qml:741", "comment": "" }, { @@ -3380,7 +3644,7 @@ { "term": "Plugins", "context": "Plugins", - "reference": "Modals/Settings/SettingsSidebar.qml:67", + "reference": "Modals/Settings/SettingsSidebar.qml:73", "comment": "" }, { @@ -3416,7 +3680,7 @@ { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:62", + "reference": "Modals/Settings/SettingsSidebar.qml:68", "comment": "" }, { @@ -3497,10 +3761,34 @@ "reference": "Modules/Settings/WidgetsTabSection.qml:799", "comment": "" }, + { + "term": "Printer Classes", + "context": "Printer Classes", + "reference": "Modules/Settings/PrinterTab.qml:1232", + "comment": "" + }, + { + "term": "Printer created successfully", + "context": "Printer created successfully", + "reference": "Services/CupsService.qml:504", + "comment": "" + }, + { + "term": "Printer deleted", + "context": "Printer deleted", + "reference": "Services/CupsService.qml:521", + "comment": "" + }, + { + "term": "Printer name (no spaces)", + "context": "Printer name (no spaces)", + "reference": "Modules/Settings/PrinterTab.qml:433", + "comment": "" + }, { "term": "Printers", "context": "Printers", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:17", + "reference": "Modals/Settings/SettingsSidebar.qml:52, Modules/Settings/PrinterTab.qml:153, Modules/Settings/PrinterTab.qml:539, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:17", "comment": "" }, { @@ -3530,7 +3818,7 @@ { "term": "Processing", "context": "Processing", - "reference": "Services/CupsService.qml:290", + "reference": "Services/CupsService.qml:745, Services/CupsService.qml:761", "comment": "" }, { @@ -3596,7 +3884,7 @@ { "term": "Reason", "context": "Reason", - "reference": "Services/CupsService.qml:193", + "reference": "Services/CupsService.qml:352, Modules/Settings/PrinterTab.qml:818", "comment": "" }, { @@ -3617,12 +3905,24 @@ "reference": "Modules/Settings/LauncherTab.qml:708", "comment": "" }, + { + "term": "Recommended available", + "context": "Recommended available", + "reference": "Modules/Settings/PrinterTab.qml:379", + "comment": "" + }, { "term": "Refresh", "context": "Refresh", "reference": "Modules/DankDash/Overview/WeatherOverviewCard.qml:36", "comment": "" }, + { + "term": "Reject Jobs", + "context": "Reject Jobs", + "reference": "Modules/Settings/PrinterTab.qml:970", + "comment": "" + }, { "term": "Reload Plugin", "context": "Reload Plugin", @@ -3638,7 +3938,7 @@ { "term": "Report", "context": "Report", - "reference": "Services/CupsService.qml:347", + "reference": "Services/CupsService.qml:818", "comment": "" }, { @@ -3680,7 +3980,7 @@ { "term": "Resume", "context": "Resume", - "reference": "Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", + "reference": "Modules/Settings/PrinterTab.qml:896, Modules/ControlCenter/BuiltinPlugins/CupsWidget.qml:124", "comment": "" }, { @@ -3794,7 +4094,7 @@ { "term": "Scanning...", "context": "Scanning...", - "reference": "Modules/Settings/NetworkTab.qml:987", + "reference": "Modules/Settings/PrinterTab.qml:292, Modules/Settings/PrinterTab.qml:304, Modules/Settings/NetworkTab.qml:987", "comment": "" }, { @@ -3848,7 +4148,7 @@ { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:268", + "reference": "Widgets/DankDropdown.qml:279", "comment": "" }, { @@ -3884,19 +4184,19 @@ { "term": "Select Profile Image", "context": "profile image file browser title", - "reference": "Modals/Settings/SettingsModal.qml:75", + "reference": "Modals/Settings/SettingsModal.qml:84", "comment": "" }, { "term": "Select Wallpaper", "context": "dark mode wallpaper file browser title | light mode wallpaper file browser title | wallpaper file browser title", - "reference": "Modals/Settings/SettingsModal.qml:94, Modules/Settings/PersonalizationTab.qml:2144, Modules/Settings/PersonalizationTab.qml:2163, Modules/Settings/PersonalizationTab.qml:2180", + "reference": "Modals/Settings/SettingsModal.qml:103, Modules/Settings/PersonalizationTab.qml:2144, Modules/Settings/PersonalizationTab.qml:2163, Modules/Settings/PersonalizationTab.qml:2180", "comment": "" }, { "term": "Select Wallpaper Directory", "context": "wallpaper directory file browser title", - "reference": "Modules/DankDash/WallpaperTab.qml:292", + "reference": "Modules/DankDash/WallpaperTab.qml:299", "comment": "" }, { @@ -3923,6 +4223,18 @@ "reference": "Modules/Settings/LauncherTab.qml:155", "comment": "" }, + { + "term": "Select device...", + "context": "Select device...", + "reference": "Modules/Settings/PrinterTab.qml:295", + "comment": "" + }, + { + "term": "Select driver...", + "context": "Select driver...", + "reference": "Modules/Settings/PrinterTab.qml:379", + "comment": "" + }, { "term": "Select font weight", "context": "Select font weight", @@ -3998,7 +4310,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:269, Modals/Settings/SettingsModal.qml:41, Modals/Settings/SettingsModal.qml:184, Modules/DankDash/DankDashPopout.qml:290", + "reference": "Services/AppSearchService.qml:269, Modals/Settings/SettingsModal.qml:41, Modals/Settings/SettingsModal.qml:193, Modules/DankDash/DankDashPopout.qml:290", "comment": "" }, { @@ -4232,7 +4544,7 @@ { "term": "Shutdown", "context": "Shutdown", - "reference": "Services/CupsService.qml:326", + "reference": "Services/CupsService.qml:797", "comment": "" }, { @@ -4292,7 +4604,7 @@ { "term": "Spool Area Full", "context": "Spool Area Full", - "reference": "Services/CupsService.qml:334", + "reference": "Services/CupsService.qml:805", "comment": "" }, { @@ -4316,31 +4628,31 @@ { "term": "State", "context": "State", - "reference": "Modules/Settings/NetworkTab.qml:551", + "reference": "Modules/Settings/PrinterTab.qml:813, Modules/Settings/NetworkTab.qml:551", "comment": "" }, { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:49, Modules/Settings/NetworkTab.qml:128", + "reference": "Widgets/DankIconPicker.qml:49, Modules/Settings/AboutTab.qml:687, Modules/Settings/PrinterTab.qml:129, Modules/Settings/NetworkTab.qml:128", "comment": "" }, { "term": "Stopped", "context": "Stopped", - "reference": "Services/CupsService.qml:291", + "reference": "Services/CupsService.qml:747, Services/CupsService.qml:762", "comment": "" }, { "term": "Stopped Partly", "context": "Stopped Partly", - "reference": "Services/CupsService.qml:330", + "reference": "Services/CupsService.qml:801", "comment": "" }, { "term": "Stopping", "context": "Stopping", - "reference": "Services/CupsService.qml:329", + "reference": "Services/CupsService.qml:800", "comment": "" }, { @@ -4352,7 +4664,7 @@ { "term": "Support Development", "context": "Support Development", - "reference": "Modules/Settings/AboutTab.qml:626", + "reference": "Modules/Settings/AboutTab.qml:779", "comment": "" }, { @@ -4499,6 +4811,18 @@ "reference": "Modules/Settings/ThemeColorsTab.qml:1221", "comment": "" }, + { + "term": "Test Page", + "context": "Test Page", + "reference": "Modules/Settings/PrinterTab.qml:936", + "comment": "" + }, + { + "term": "Test page sent to printer", + "context": "Test page sent to printer", + "reference": "Services/CupsService.qml:624", + "comment": "" + }, { "term": "Text", "context": "Text", @@ -4526,7 +4850,7 @@ { "term": "Theme & Colors", "context": "Theme & Colors", - "reference": "Modals/Settings/SettingsSidebar.qml:57", + "reference": "Modals/Settings/SettingsSidebar.qml:63", "comment": "" }, { @@ -4574,7 +4898,7 @@ { "term": "Timed Out", "context": "Timed Out", - "reference": "Services/CupsService.qml:328", + "reference": "Services/CupsService.qml:799", "comment": "" }, { @@ -4586,7 +4910,7 @@ { "term": "To update, run the following command:", "context": "To update, run the following command:", - "reference": "Services/DMSService.qml:304", + "reference": "Services/DMSService.qml:300", "comment": "" }, { @@ -4628,13 +4952,13 @@ { "term": "Toner Empty", "context": "Toner Empty", - "reference": "Services/CupsService.qml:301", + "reference": "Services/CupsService.qml:772", "comment": "" }, { "term": "Toner Low", "context": "Toner Low", - "reference": "Services/CupsService.qml:300", + "reference": "Services/CupsService.qml:771", "comment": "" }, { @@ -4655,6 +4979,12 @@ "reference": "Modules/Settings/DankBarTab.qml:3230", "comment": "" }, + { + "term": "Total Jobs", + "context": "Total Jobs", + "reference": "Modules/Settings/PrinterTab.qml:165", + "comment": "" + }, { "term": "Transition Effect", "context": "Transition Effect", @@ -4670,7 +5000,7 @@ { "term": "Unavailable", "context": "Unavailable", - "reference": "Modules/Settings/NetworkTab.qml:388", + "reference": "Modules/Settings/PrinterTab.qml:145, Modules/Settings/NetworkTab.qml:388", "comment": "" }, { @@ -4682,7 +5012,7 @@ { "term": "Unknown", "context": "Unknown", - "reference": "Modules/Settings/NetworkTab.qml:121, Modules/Settings/NetworkTab.qml:163, Modules/Settings/NetworkTab.qml:369, Modules/Settings/NetworkTab.qml:390, Modules/Settings/NetworkTab.qml:552, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1085", + "reference": "Modules/Settings/PrinterTab.qml:1296, Modules/Settings/NetworkTab.qml:121, Modules/Settings/NetworkTab.qml:163, Modules/Settings/NetworkTab.qml:369, Modules/Settings/NetworkTab.qml:390, Modules/Settings/NetworkTab.qml:552, Modules/Settings/NetworkTab.qml:681, Modules/Settings/NetworkTab.qml:1085", "comment": "" }, { @@ -4883,6 +5213,12 @@ "reference": "Modals/DisplayConfirmationModal.qml:144", "comment": "" }, + { + "term": "Version", + "context": "Version", + "reference": "Modules/Settings/AboutTab.qml:641", + "comment": "" + }, { "term": "Vertical Deck", "context": "Vertical Deck", @@ -4976,7 +5312,7 @@ { "term": "Warning", "context": "Warning", - "reference": "Services/CupsService.qml:346", + "reference": "Services/CupsService.qml:817", "comment": "" }, { @@ -5126,7 +5462,7 @@ { "term": "Yes", "context": "Yes", - "reference": "Widgets/VpnDetailContent.qml:419, Modules/Settings/NetworkTab.qml:1785", + "reference": "Widgets/VpnDetailContent.qml:419, Modules/Settings/PrinterTab.qml:833, Modules/Settings/NetworkTab.qml:1785", "comment": "" }, { diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index eabcce51..945d998e 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1 caratteri" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "%1 display(s)" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "%1 widgets" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "Un file con questo nome esiste già. Vuoi sovrascriverlo?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "Info" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "Accesso cronologia clipboard" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "Aggiungi Barra" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "Aggiungi Widget" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "Avviso Filtro Mancante CUPS" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "Fotocamera" }, "Cancel": { "Cancel": "Annulla" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "Capacità" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "Pulire tutta la cronologia?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "Modo Compatto" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "Compositor\n" }, "Configuration activated": { "Configuration activated": "Configurazione attivata" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Configura le icone per i workspaces con nome. Le icone hanno la priorità su numeri quando sono entrambi abilitati" }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "Crea Cartella" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "Priorità Critica" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "Deriva colori che si avvicinano all'immagine sottostante" }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "Immagini sfondo desktop" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "Impossibile attivare configurazione" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "Impossibile cancellare tutti i lavori" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "Impossibile connettersi a " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Impossibile disconnettersi dalla VPN" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "Impossibile abilitare WiFi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "Impossibile mettere in pausa la stampante" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "Impossibile rimuovere dispositivo" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "Impossibile riavviare la stampante" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "Impossibile aggiornare connessione automatica" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "Temperatura" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "File già esistente" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "Hex" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "Ricerca Posizione" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "Nessun appunto trovato" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "Nessun file trovato" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "Nessuna stampante trovata" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "Nulla" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "Apri barra di ricerca per cercare testo" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "Altro" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "Messo in Pausa" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "Sfondo Per Modalità" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "Stampanti" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "Apps Usate Recentemente" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "Aggiorna" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "Ricarica Plugin" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "Seleziona un'immagine" }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "Seleziona peso font" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminali - Usa sempre Tema Scuro" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "Testo" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "Sezione Superiore" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "Effetto Transizione" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "VRR:" }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "Deck Verticale" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index 9d401061..12d23efc 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1 文字" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "%1 表示" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "%1 ウィジェット" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "この名前のファイルは既に存在します。上書きしてもよろしいですか?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "詳細" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "クリップボードの履歴へのアクセス" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "バーを作る" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "ウィジェットを追加" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "CUPS の欠落フィルターの警告" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "カメラ" }, "Cancel": { "Cancel": "キャンセル" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "容量" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "すべての履歴をクリアしますか?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "コンパクトモード" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "コンポジター" }, "Configuration activated": { "Configuration activated": "設定が適用されました" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "名前付きワークスペースのアイコンを設定します。両方が有効になっている場合、アイコンが数字よりも優先されます。" }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "ディレクトリを作成" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "最優先事項" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "下にある画像に密接に一致する色を導き出します。" }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "デスクトップの背景画像" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "設定が適用できませんでした" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "すべてのジョブの取り消しに失敗しました" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "接続ができませんでした " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "VPNへの切断が失敗しました" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "WiFiを有効化にできませんでした" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "プリンターの一時中断に失敗しました" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "デバイスの削除に失敗しました" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "プリンタの再開に失敗しました" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "自動接続の更新が失敗しました" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "どうやら" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "ファイルが既に存在します" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "エッジギャップまでの高さ(排他ゾーン)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "16進数" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "ロケーション検索" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "クリップボードのエントリが見つかりませんでした" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "ファイルが見つかりませんでした" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "プリンターが見つかりませんでした" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "ない" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "検索バーを開いてテキストを検索" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "他" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "一時停止" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "モードごとの壁紙" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "プリンター" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "最近使用したアプリ" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "リフレッシュ" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "プラグインをリロード" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "画像ファイルを選ぶ..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "フォントの太さを選ぶ" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "端末 - 常にダークテーマを使用" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "テキスト" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "トップセクション" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "トランジション効果" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "VRR: " }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "垂直デッキ" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index bffdfed4..7a53a58a 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1 znaków" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "%1 wyświetlaczy" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "%1 widżetów" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "Plik o takiej nazwie już istnieje. Czy chcesz go nadpisać?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "O programie" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "Dostęp do historii schowka" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "Dodaj pasek" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "Dodaj widżet" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "CUPS: Ostrzeżenie o brakującym filtrze" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "Kamera" }, "Cancel": { "Cancel": "Anuluj" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "Pojemność" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "Usunąć całą historię?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "Tryb kompaktowy" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "Kompozytor" }, "Configuration activated": { "Configuration activated": "Konfiguracja aktywowana" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Skonfiguruj ikony dla nazwanych obszarów roboczych. Ikony mają pierwszeństwo przed numerami, gdy obie opcje są włączone." }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "Utwórz katalog" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "Priorytet krytyczny" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "Uzyskuje kolory, które ściśle pasują do obrazu bazowego." }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "Obrazy tła pulpitu" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "Nie udało się aktywować konfiguracji" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "Anulowanie wszystkich zadań nie powiodło się" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "Nie udało się połączyć z " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Nie udało się rozłączyć z VPN" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "Nie udało się włączyć Wi-Fi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "Wstrzymanie drukarki nie powiodło się" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "Nie udało się usunąć urządzenia" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "Wznowienie drukarki nie powiodło się" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "Nie udało się zaktualizować automatycznego łączenia" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "Odczuwalna" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "Plik już istnieje" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "Klątwa" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "Wyszukiwanie lokalizacji" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "Nie znaleziono wpisów w schowku" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "Nie znaleziono plików" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "Nie znaleziono drukarki" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "Brak" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "Otwórz pasek wyszukiwania, aby znaleźć tekst" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "Inne" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "Wstrzymano" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "Tapety dla każdego trybu" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "Drukarki" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "Ostatnio używane aplikacje" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "Odśwież" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "Wczytaj ponownie wtyczkę" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "Wybierz plik obrazu..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "Wybierz grubość czcionki" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminal - Zawsze używaj ciemnego motywu" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "Tekst" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "Górna sekcja" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "Efekt przejścia" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "VRR: " }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "Pionowy pokład" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index d68497ae..4bcd44f0 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1 caracteres" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "Um arquivo com esse nome já existe. Você quer sobrescrevê-lo?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "Sobre" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "Acesso ao histórico área de transferência" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "Adicionar Widget" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "" }, "Cancel": { "Cancel": "Cancelar" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "Capacidade" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "Apagar Todo o Histórico?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "Modo Compacto" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "Compositor" }, "Configuration activated": { "Configuration activated": "Configuração ativada" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Configurações de ícones para área de trabalho nomeadas. Ícones têm prioridade sobre números quando ambos estão habilitados." }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "Criar pasta" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "Prioridade Crítica" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "Deriva cores que combinam de perto com a imagem de fundo." }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "Imagens de fundo da área de trabalho" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "Erro ao ativar configuração" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "Erro ao conectar a " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "Erro ao desconectar VPN" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "Erro ao habilitar WiFi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "Erro ao remover dispositivo" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "Sensação Térmica" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "Arquivo já existe" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "Distância da Borda (Zona Exclusiva)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "Procurar Localização" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "Área de transferência vazia" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "Nenhum arquivo encontrado" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "Abrir barra de pesquisa e encontrar texto" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "Papéis de Parede por Modo" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "Apps Usados Recentemente" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "Recarregar" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "Reiniciar Plugin" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "Selecione um arquivo de imagem..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "Selecionar espessura da fonte" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "Texto" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "Seção do topo" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "Efeito de Transição" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "" }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "" }, diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index a3c37d5d..eb52563a 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -1,16 +1,25 @@ { "%1 adapter(s), none connected": { - "%1 adapter(s), none connected": "" + "%1 adapter(s), none connected": "%1 bağdaştırıcı, hiçbiri bağlı değil" }, "%1 characters": { "%1 characters": "%1 karakter" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { - "%1 connected": "" + "%1 connected": "%1 bağlı" }, "%1 display(s)": { "%1 display(s)": "%1 ekran" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "%1 widget" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "Bu isimde bir dosya zaten var. Üzerine yazmak istiyor musunuz?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "Hakkında" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "Pano geçmişine eriş" }, @@ -57,19 +78,19 @@ "Actions": "Eylemler" }, "Activate": { - "Activate": "" + "Activate": "Etkinleştir" }, "Active": { - "Active": "" + "Active": "Etkin" }, "Active: ": { - "Active: ": "" + "Active: ": "Etkin: " }, "Active: None": { - "Active: None": "" + "Active: None": "Etkin: Hiçbiri" }, "Adapters": { - "Adapters": "" + "Adapters": "Bağdaştırıcılar" }, "Add": { "Add": "Ekle" @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "Bar Ekle" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "Widget Ekle" }, @@ -84,7 +108,7 @@ "Add Widget to ": "Şuraya Widget ekle:" }, "Add Widget to %1 Section": { - "Add Widget to %1 Section": "" + "Add Widget to %1 Section": "%1 Bölümüne Widget Ekle" }, "Add a VPN in NetworkManager": { "Add a VPN in NetworkManager": "NetworkManager'da VPN ekle" @@ -117,7 +141,7 @@ "Animation Speed": "Animasyon Hızı" }, "Anonymous Identity": { - "Anonymous Identity": "" + "Anonymous Identity": "Anonim Kimlik" }, "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonim Kimlik (isteğe bağlı)" @@ -162,7 +186,7 @@ "Are you sure you want to suspend the system?": "Sistemi askıya almak istediğinizden emin misiniz?" }, "Audio": { - "Audio": "" + "Audio": "Ses" }, "Audio Codec": { "Audio Codec": "Ses Codec'i" @@ -180,16 +204,16 @@ "Audio Output Devices (": "Ses Çıkış Aygıtları (" }, "Auth": { - "Auth": "" + "Auth": "Kimlik" }, "Auth Type": { - "Auth Type": "" + "Auth Type": "Kimlik Türü" }, "Authenticate": { "Authenticate": "Kimlik Doğrula" }, "Authentication": { - "Authentication": "" + "Authentication": "Kimlik Doğrulama" }, "Authentication Required": { "Authentication Required": "Kimlik Doğrulama Gerekli" @@ -207,7 +231,7 @@ "Authorize service for ": "Şunun için servisi yetkilendir: " }, "Auto": { - "Auto": "" + "Auto": "Oto" }, "Auto Location": { "Auto Location": "Otomatik Konum" @@ -225,7 +249,7 @@ "Auto-saving...": "Otomatik kaydetme..." }, "Autoconnect": { - "Autoconnect": "" + "Autoconnect": "Otomatik Bağlan" }, "Autoconnect disabled": { "Autoconnect disabled": "Otomatik bağlanma devre dışı" @@ -270,7 +294,7 @@ "Available Layouts": "Mevcut Düzenler" }, "Available Networks": { - "Available Networks": "" + "Available Networks": "Kullanılabilir Ağlar" }, "Available Plugins": { "Available Plugins": "Kullanılabilir Eklentiler" @@ -279,13 +303,13 @@ "Available Screens (": "Kullanılabilir Ekranlar (" }, "BSSID": { - "BSSID": "" + "BSSID": "BSSID" }, "Back": { "Back": "Geri" }, "Backend": { - "Backend": "" + "Backend": "Arka Uç" }, "Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)." @@ -306,7 +330,7 @@ "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen": "Kilit ekranını loginctl'den gelen dbus sinyallerine bağlayın. Harici bir kilit ekranı kullanıyorsanız devre dışı bırakın" }, "Bluetooth": { - "Bluetooth": "" + "Bluetooth": "Bluetooth" }, "Bluetooth Icon": { "Bluetooth Icon": "Bluetooth Simgesi" @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "CUPS Eksik Filtre Uyarısı" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "Kamera" }, "Cancel": { "Cancel": "İptal" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "Kapasite" }, @@ -399,7 +432,7 @@ "Center Tiling": "Merkez Döşeme" }, "Certificate Password": { - "Certificate Password": "" + "Certificate Password": "Sertifika Parolası" }, "Change bar appearance": { "Change bar appearance": "Bar görünümünü değiştir" @@ -408,7 +441,7 @@ "Changes:": "Değişiklikler:" }, "Channel": { - "Channel": "" + "Channel": "Kanal" }, "Check for system updates": { "Check for system updates": "Sistem güncellemelerini kontrol et" @@ -432,7 +465,7 @@ "Choose the logo displayed on the launcher button in DankBar": "DankBar'daki başlatıcı düğmesinde görüntülenen logoyu seçin" }, "Choose the widget outline accent color": { - "Choose the widget outline accent color": "" + "Choose the widget outline accent color": "Widget çerçeve vurgu rengini seçin" }, "Choose where notification popups appear on screen": { "Choose where notification popups appear on screen": "Bildirim açılır pencerelerinin ekranda nerede görüneceğini seçin" @@ -441,7 +474,7 @@ "Choose where on-screen displays appear on screen": "Ekran gösterimlerinin ekranda nerede gösterileceğini seç" }, "Cipher": { - "Cipher": "" + "Cipher": "Şifre" }, "Clear": { "Clear": "Temizle" @@ -452,8 +485,11 @@ "Clear All History?": { "Clear All History?": "Tüm Geçmişi Temizle?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { - "Click Import to add a .ovpn or .conf": "" + "Click Import to add a .ovpn or .conf": ".ovpn veya .conf dosyası eklemek için İçe Aktar'ı tıklayın." }, "Clipboard History": { "Clipboard History": "Pano Geçmişi" @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "Kompakt Mod" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "Kompozitör" }, "Configuration activated": { "Configuration activated": "Yapılandırma aktifleştirildi" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "Adlandırılmış çalışma alanları için simgeleri yapılandırın. Her ikisi de etkinleştirildiğinde simgeler sayılara göre önceliklidir." }, @@ -543,7 +585,7 @@ "Connect to Wi-Fi": "Wi-Fi'ye Bağlan" }, "Connected": { - "Connected": "" + "Connected": "Bağlı" }, "Connected Displays": { "Connected Displays": "Bağlı Ekranlar" @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "Dizin Oluştur" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "Kritik Öncelik" }, @@ -693,14 +741,23 @@ "Del: Clear • Shift+Del: Clear All • 1-9: Actions • F10: Help • Esc: Close": "Del: Temizle • Shift+Del: Tümünü Temizle • 1-9: Eylemler • F10: Yardım • Esc: Kapat" }, "Delete": { - "Delete": "" + "Delete": "Sil" + }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" }, "Delete VPN": { - "Delete VPN": "" + "Delete VPN": "VPN'i Sil" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "Altta yatan görüntüye çok yakın renkler türetir" }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "Masaüstü arkaplan resimleri" }, @@ -723,7 +780,7 @@ "Disconnect": "Bağlantıyı Kes" }, "Disconnected": { - "Disconnected": "" + "Disconnected": "Bağlantı Kesildi" }, "Disconnected from WiFi": { "Disconnected from WiFi": "WiFi bağlantısı kesildi" @@ -759,7 +816,7 @@ "Display currently focused application title": "Şu anda odaklanmış uygulamanın başlığını göster" }, "Display only workspaces that contain windows": { - "Display only workspaces that contain windows": "" + "Display only workspaces that contain windows": "Yalnızca pencere içeren çalışma alanlarını göster" }, "Display power menu actions in a grid instead of a list": { "Display power menu actions in a grid instead of a list": "Güç menüsü eylemlerini liste yerine ızgara şeklinde göster" @@ -804,7 +861,7 @@ "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.": "Widget'ları sürükleyerek bölümler içinde yeniden sıralayın. Göz simgesini kullanarak widget'ları gizleyin/gösterin (aralıkları korur) veya X simgesini kullanarak tamamen kaldırın." }, "Driver": { - "Driver": "" + "Driver": "Sürücü" }, "Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": "Duvar kağıdını bulanıklık ile çoğalt" @@ -891,13 +948,13 @@ "Enter this passkey on ": "Bu şifreyi şuraya gir: " }, "Enterprise": { - "Enterprise": "" + "Enterprise": "Kurumsal" }, "Error": { "Error": "Hata" }, "Ethernet": { - "Ethernet": "" + "Ethernet": "Ethernet" }, "Exclusive Zone Offset": { "Exclusive Zone Offset": "Özel Bölge Ofseti" @@ -909,14 +966,17 @@ "F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım" }, "Fade grace period": { - "Fade grace period": "" + "Fade grace period": "Solma Toleransı" }, "Fade to lock screen": { - "Fade to lock screen": "" + "Fade to lock screen": "Kilit Ekranı Solması" }, "Failed to activate configuration": { "Failed to activate configuration": "Yapılandırma etkinleştirilemedi" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "Tüm işler iptal edemedi" }, @@ -929,8 +989,20 @@ "Failed to connect to ": { "Failed to connect to ": "Bağlanılamadı " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { - "Failed to delete VPN": "" + "Failed to delete VPN": "VPN silinemedi" + }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "VPN bağlantısı kesilemedi" @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "WiFi etkinleştirilemedi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { - "Failed to import VPN": "" + "Failed to import VPN": "VPN içe aktarılamadı" }, "Failed to load VPN config": { - "Failed to load VPN config": "" + "Failed to load VPN config": "VPN ayarı yüklenemedi" + }, + "Failed to move job": { + "Failed to move job": "" }, "Failed to pause printer": { "Failed to pause printer": "Yazıcıyı duraklatma başarısız" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "Cihaz kaldırılamadı" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "Yazıcıyı devam ettirme başarısız" }, @@ -969,14 +1059,26 @@ "Failed to start connection to ": "Bağlantı başlatılamadı " }, "Failed to update VPN": { - "Failed to update VPN": "" + "Failed to update VPN": "VPN güncellenemedi" }, "Failed to update autoconnect": { "Failed to update autoconnect": "Otomatik bağlanma güncellenemedi" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "Hissedilen" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "Dosya Zaten Mevcut" }, @@ -1014,7 +1116,7 @@ "Force terminal applications to always use dark color schemes": "Terminal uygulamalarının her zaman koyu renk şemalarını kullanmasını zorla" }, "Forget": { - "Forget": "" + "Forget": "Unut" }, "Forget Device": { "Forget Device": "Aygıtı Unut" @@ -1029,7 +1131,7 @@ "Format Legend": "Biçim Açıklaması" }, "Frequency": { - "Frequency": "" + "Frequency": "Frekans" }, "Fun": { "Fun": "Eğlence" @@ -1065,7 +1167,7 @@ "Goth Corners": "Gotik Köşeler" }, "Gradually fade the screen before locking with a configurable grace period": { - "Gradually fade the screen before locking with a configurable grace period": "" + "Gradually fade the screen before locking with a configurable grace period": "Yapılandırılabilir bir bekleme süresi ile kilitlemeden önce ekranı kademeli olarak karartın" }, "Graphics": { "Graphics": "Grafik" @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "Hex" }, @@ -1110,16 +1215,16 @@ "High-fidelity palette that preserves source hues.": "Kaynak tonları koruyan yüksek sadakatli palet" }, "Hold Duration": { - "Hold Duration": "" + "Hold Duration": "Tutma Süresi" }, "Hold longer to confirm": { - "Hold longer to confirm": "" + "Hold longer to confirm": "Onaylamak için daha uzun süre basılı tutun" }, "Hold to Confirm Power Actions": { - "Hold to Confirm Power Actions": "" + "Hold to Confirm Power Actions": "Güç Eylemlerini Onaylamak İçin Basılı Tutun" }, "Hold to confirm (%1s)": { - "Hold to confirm (%1s)": "" + "Hold to confirm (%1s)": "Onaylamak için basılı tutun (%1s)" }, "Hour": { "Hour": "Saat" @@ -1134,10 +1239,10 @@ "I Understand": "Anladım" }, "IP": { - "IP": "" + "IP": "IP" }, "IP Address:": { - "IP Address:": "" + "IP Address:": "IP Adresi:" }, "Icon Size": { "Icon Size": "Simge Boyutu" @@ -1164,10 +1269,10 @@ "Image": "Resim" }, "Import": { - "Import": "" + "Import": "İçe Aktar" }, "Import VPN": { - "Import VPN": "" + "Import VPN": "VPN'i İçe Aktar" }, "Include Transitions": { "Include Transitions": "Geçişleri Dahil Et" @@ -1194,7 +1299,7 @@ "Install plugins from the DMS plugin registry": "DMS eklenti deposundan eklentiler yükle" }, "Interface:": { - "Interface:": "" + "Interface:": "Arayüz:" }, "Interlock Open": { "Interlock Open": "Kilit Açık" @@ -1284,7 +1389,13 @@ "Loading plugins...": "Eklentiler yükleniyor..." }, "Loading...": { - "Loading...": "" + "Loading...": "Yükleniyor..." + }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" }, "Location Search": { "Location Search": "Konum Arama" @@ -1314,10 +1425,10 @@ "Low Priority": "Düşük Öncelik" }, "MAC": { - "MAC": "" + "MAC": "MAC" }, "MTU": { - "MTU": "" + "MTU": "MTU" }, "Manage and configure plugins for extending DMS functionality": { "Manage and configure plugins for extending DMS functionality": "DMS işlevselliğini genişletmek için eklentileri yönetin ve yapılandırın" @@ -1416,7 +1527,7 @@ "Minute": "Dakika" }, "Mode": { - "Mode": "" + "Mode": "Mod" }, "Mode:": { "Mode:": "Mod:" @@ -1479,7 +1590,7 @@ "Network Speed Monitor": "Ağ Hız Monitörü" }, "Network Status": { - "Network Status": "" + "Network Status": "Ağ Durumu" }, "Network download and upload speed display": { "Network download and upload speed display": "Ağ indirme ve yükleme hız gösterimi" @@ -1500,7 +1611,7 @@ "Night Temperature": "Gece Sıcaklığı" }, "No": { - "No": "" + "No": "Hayır" }, "No Active Players": { "No Active Players": "Aktif Oynatıcı Yok" @@ -1515,7 +1626,7 @@ "No Media": "Medya Yok" }, "No VPN profiles": { - "No VPN profiles": "" + "No VPN profiles": "VPN profili yok" }, "No VPN profiles found": { "No VPN profiles found": "VPN profilleri bulunamadı" @@ -1524,11 +1635,17 @@ "No Weather Data Available": "Hava Durumu Verileri Mevcut Değil" }, "No adapters": { - "No adapters": "" + "No adapters": "Bağdaştırıcı yok" }, "No clipboard entries found": { "No clipboard entries found": "Pano girişleri bulunamadı" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "Dosya bulunamadı" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "Yazıcı Bulunamadı" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "Hiçbiri" }, @@ -1554,7 +1677,7 @@ "Normal Priority": "Normal Öncelik" }, "Not connected": { - "Not connected": "" + "Not connected": "Bağlı değil" }, "Notepad": { "Notepad": "Not Defteri" @@ -1628,17 +1751,23 @@ "Open search bar to find text": { "Open search bar to find text": "Metin bulmak için arama çubuğunu aç" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "Diğer" }, "Outline Color": { - "Outline Color": "" + "Outline Color": "Çerçeve Rengi" }, "Outline Opacity": { - "Outline Opacity": "" + "Outline Opacity": "Çerçeve Opaklığı" }, "Outline Thickness": { - "Outline Thickness": "" + "Outline Thickness": "Çerçeve Kalınlığı" }, "Output Area Almost Full": { "Output Area Almost Full": "Çıkış Alanı Neredeyse Dolu" @@ -1653,13 +1782,13 @@ "Overview": "Genel Görünüm" }, "Overview of your network connections": { - "Overview of your network connections": "" + "Overview of your network connections": "Ağ bağlantılarınızın genel görünümü" }, "Overwrite": { "Overwrite": "Üstüne Yaz" }, "PIN": { - "PIN": "" + "PIN": "PİN" }, "Padding": { "Padding": "Dolgu" @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "Duraklatıldı" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "Moda Özel Duvar Kağıtları" }, @@ -1725,7 +1857,7 @@ "Play sounds for system events": "Sistem etkinlikleri için ses çal" }, "Playback": { - "Playback": "" + "Playback": "Oynatma" }, "Plugged In": { "Plugged In": "Bağlandı" @@ -1779,7 +1911,7 @@ "Power Profile OSD": "Güç Profili OSD" }, "Preference": { - "Preference": "" + "Preference": "Tercih" }, "Pressure": { "Pressure": "Basınç" @@ -1797,7 +1929,19 @@ "Print Server not available": "Yazıcı Sunucusu Kullanılamıyor" }, "Printer": { - "Printer": "" + "Printer": "Yazıcı" + }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" }, "Printers": { "Printers": "Yazıcılar" @@ -1809,7 +1953,7 @@ "Privacy Indicator": "Gizlilik Göstergesi" }, "Private Key Password": { - "Private Key Password": "" + "Private Key Password": "Özel Anahtar Parolası" }, "Process": { "Process": "Süreç" @@ -1824,7 +1968,7 @@ "Profile image is too large. Please use a smaller image.": "Profil resmi çok büyük. Lütfen daha küçük bir resim kullanın." }, "Protocol": { - "Protocol": "" + "Protocol": "Protokol" }, "Quick access to application launcher": { "Quick access to application launcher": "Uygulama başlatıcısına hızlı erişim" @@ -1845,7 +1989,7 @@ "Rain Chance": "Yağış İhtimali" }, "Rate": { - "Rate": "" + "Rate": "Oran" }, "Reason": { "Reason": "Sebep" @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "Son Kullanılan Uygulamalar" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "Yenile" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "Eklentiyi Yeniden Yükle" }, @@ -1875,7 +2025,7 @@ "Request confirmation on power off, restart, suspend, hibernate and logout actions": "Kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerinde onay iste" }, "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": { - "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "" + "Require holding button/key to confirm power off, restart, suspend, hibernate and logout": "Güç kapatma, yeniden başlatma, askıya alma, hazırda bekletme ve oturumu kapatma işlemlerini onaylamak için düğmeyi/tuşu basılı tutmak gerekir" }, "Requires DWL compositor": { "Requires DWL compositor": "DWL kompozitör gerektirir" @@ -1941,7 +2091,7 @@ "Saved": "Kaydedildi" }, "Saved Configurations": { - "Saved Configurations": "" + "Saved Configurations": "Kaydedilen Yapılandırmalar" }, "Scale DankBar font sizes independently": { "Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir" @@ -1953,7 +2103,7 @@ "Scan": "Tara" }, "Scanning...": { - "Scanning...": "" + "Scanning...": "Taranıyor..." }, "Science": { "Science": "Bilim" @@ -1977,7 +2127,7 @@ "Search plugins...": "Eklentileri ara..." }, "Search widgets...": { - "Search widgets...": "" + "Search widgets...": "Widget ara..." }, "Search...": { "Search...": "Ara..." @@ -1986,10 +2136,10 @@ "Searching...": "Arıyor..." }, "Secured": { - "Secured": "" + "Secured": "Güvenli" }, "Security": { - "Security": "" + "Security": "Güvenlik" }, "Select Launcher Logo": { "Select Launcher Logo": "Başlatıcı Logosu Seç" @@ -2004,11 +2154,17 @@ "Select a widget to add to the ": "Eklemek için widget seçin: " }, "Select a widget to add. You can add multiple instances of the same widget if needed.": { - "Select a widget to add. You can add multiple instances of the same widget if needed.": "" + "Select a widget to add. You can add multiple instances of the same widget if needed.": "Eklemek için bir widget seçin. Gerekirse aynı widget'ın birden fazla örneğini ekleyebilirsiniz." }, "Select an image file...": { "Select an image file...": "Bir resim dosyası seçin..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "Yazı tipi ağırlığını seçin" }, @@ -2037,7 +2193,7 @@ "Separator": "Ayraç" }, "Server": { - "Server": "" + "Server": "Sunucu" }, "Set different wallpapers for each connected monitor": { "Set different wallpapers for each connected monitor": "Bağlı her monitör için farklı duvar kağıtları ayarlayın" @@ -2073,7 +2229,7 @@ "Show Log Out": "Çıkışı Göster" }, "Show Occupied Workspaces Only": { - "Show Occupied Workspaces Only": "" + "Show Occupied Workspaces Only": "Sadece Dolu Çalışma Alanlarını Göster" }, "Show Power Actions": { "Show Power Actions": "Güç Eylemlerini Göster" @@ -2169,10 +2325,10 @@ "Shutdown": "Kapat" }, "Signal": { - "Signal": "" + "Signal": "Sinyal" }, "Signal:": { - "Signal:": "" + "Signal:": "Sinyal:" }, "Size": { "Size": "Boyut" @@ -2193,7 +2349,7 @@ "Spacing": "Boşluk" }, "Speed": { - "Speed": "" + "Speed": "Hız" }, "Spool Area Full": { "Spool Area Full": "Aktarım Alanı Dolu" @@ -2208,7 +2364,7 @@ "Start typing your notes here...": "Notunuzu buraya yazmaya başlayın..." }, "State": { - "State": "" + "State": "Durum" }, "Status": { "Status": "Durum" @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "Terminaller - Her zaman Karanlı Tema kullan" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "Metin" }, @@ -2361,7 +2523,7 @@ "Toggle visibility of this bar configuration": "Bu bar yapılandırmasının görünürlüğünü değiştir" }, "Toggling...": { - "Toggling...": "" + "Toggling...": "Geçiş yapılıyor..." }, "Tomorrow": { "Tomorrow": "Yarın" @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "Üst Bölüm" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "Geçiş Efekti" }, @@ -2388,13 +2553,13 @@ "Turn off monitors after": "Şu zaman sonra monitörleri kapat" }, "Unavailable": { - "Unavailable": "" + "Unavailable": "Mevcut Değil" }, "Uninstall Plugin": { "Uninstall Plugin": "Eklentiyi Kaldır" }, "Unknown": { - "Unknown": "" + "Unknown": "Bilinmeyen" }, "Unpin from Dock": { "Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır" @@ -2484,16 +2649,16 @@ "VPN Connections": "VPN Bağlantıları" }, "VPN Password": { - "VPN Password": "" + "VPN Password": "VPN Parolası" }, "VPN configuration updated": { - "VPN configuration updated": "" + "VPN configuration updated": "VPN ayarı güncellendi" }, "VPN deleted": { - "VPN deleted": "" + "VPN deleted": "VPN silindi" }, "VPN imported: ": { - "VPN imported: ": "" + "VPN imported: ": "VPN içe aktarıldı: " }, "VPN status and quick connect": { "VPN status and quick connect": "VPN durumu ve hızlı bağlanma" @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "VRR: " }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "Dikey Deck" }, @@ -2535,7 +2703,7 @@ "Volume, brightness, and other system OSDs": "Ses, parlaklık ve diğer sistem ekran üstü gösterimleri" }, "WPA/WPA2": { - "WPA/WPA2": "" + "WPA/WPA2": "WPA/WPA2" }, "Wallpaper": { "Wallpaper": "Duvar Kağıdı" @@ -2565,13 +2733,13 @@ "When enabled, apps are sorted alphabetically. When disabled, apps are sorted by usage frequency.": "Etkinleştirildiğinde, uygulamalar alfabetik olarak sıralanır. Devre dışı bırakıldığında, uygulamalar kullanım sıklığına göre sıralanır." }, "Wi-Fi Password": { - "Wi-Fi Password": "" + "Wi-Fi Password": "Wi-Fi Parolası" }, "WiFi": { - "WiFi": "" + "WiFi": "WiFi" }, "WiFi Device": { - "WiFi Device": "" + "WiFi Device": "WiFi Aygıtı" }, "WiFi disabled": { "WiFi disabled": "WiFi devre dışı" @@ -2589,7 +2757,7 @@ "Widget Management": "Widget Yönetimi" }, "Widget Outline": { - "Widget Outline": "" + "Widget Outline": "Widget Çerçevesi" }, "Widget Style": { "Widget Style": "Widget Stili" @@ -2622,7 +2790,7 @@ "Workspace Switcher": "Çalışma Alanı Değiştirici" }, "Yes": { - "Yes": "" + "Yes": "Evet" }, "You have unsaved changes. Save before closing this tab?": { "You have unsaved changes. Save before closing this tab?": "Kaydedilmemiş değişiklikleriniz var. Sekmeyi kapatmadan önce kaydedelim mi?" diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index 5d3aacd0..86d45459 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1个字符" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "%1 显示" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "%1 小挂件" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "已存在同名文件,是否覆盖?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "关于" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "访问剪切板记录" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "添加状态栏" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "添加小组件" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "CUPS 警告:缺少打印过滤器" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "摄像头" }, "Cancel": { "Cancel": "取消" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "电池容量" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "清空历史记录?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "紧凑模式" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "合成器" }, "Configuration activated": { "Configuration activated": "已应用配置" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "为已命名工作区配置图标。当数字和图标同时启用时,图标优先生效。" }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "创建目录" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "紧急通知" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "提取与壁纸高度匹配的颜色。" }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "桌面壁纸" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "无法应用配置" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "无法取消所有任务" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "无法连接至 " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "断开 VPN 失败" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "无法启用 Wi-Fi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "无法暂停打印机" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "删除设备失败" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "无法恢复打印机" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "无法更新自动连接" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "体感温度" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "文件已存在" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "与屏幕边缘的间距(独占区)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "十六进制" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "位置搜索" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "无可用记录" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "未找到文件" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "未找到打印机" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "无" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "打开搜索栏以查找文本" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "其他" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "暂停" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "按模式设置壁纸" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "打印机" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "最近使用的应用" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "刷新" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "重载插件" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "选择一张图片..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "选择字体粗细" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "终端总使用暗色主题" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "文本" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "顶部区域" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "过渡效果" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "可变刷新率: " }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "垂直 Deck" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index 07e693c7..2f063bc0 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -5,12 +5,21 @@ "%1 characters": { "%1 characters": "%1 個字元" }, + "%1 class(es)": { + "%1 class(es)": "" + }, "%1 connected": { "%1 connected": "" }, "%1 display(s)": { "%1 display(s)": "" }, + "%1 job(s)": { + "%1 job(s)": "" + }, + "%1 printer(s)": { + "%1 printer(s)": "" + }, "%1 widgets": { "%1 widgets": "" }, @@ -41,9 +50,21 @@ "A file with this name already exists. Do you want to overwrite it?": { "A file with this name already exists. Do you want to overwrite it?": "檔案名稱已存在。是否要覆蓋它?" }, + "API": { + "API": "" + }, + "Aborted": { + "Aborted": "" + }, "About": { "About": "關於" }, + "Accept Jobs": { + "Accept Jobs": "" + }, + "Accepting": { + "Accepting": "" + }, "Access clipboard history": { "Access clipboard history": "剪貼簿歷史記錄" }, @@ -77,6 +98,9 @@ "Add Bar": { "Add Bar": "" }, + "Add Printer": { + "Add Printer": "" + }, "Add Widget": { "Add Widget": "新增部件" }, @@ -377,12 +401,21 @@ "CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": "CUPS 缺少過濾器警告" }, + "CUPS Print Server": { + "CUPS Print Server": "" + }, "Camera": { "Camera": "相機" }, "Cancel": { "Cancel": "取消" }, + "Canceled": { + "Canceled": "" + }, + "Capabilities": { + "Capabilities": "" + }, "Capacity": { "Capacity": "容量" }, @@ -452,6 +485,9 @@ "Clear All History?": { "Clear All History?": "清除所有紀錄?" }, + "Clear All Jobs": { + "Clear All Jobs": "" + }, "Click Import to add a .ovpn or .conf": { "Click Import to add a .ovpn or .conf": "" }, @@ -512,12 +548,18 @@ "Compact Mode": { "Compact Mode": "緊湊模式" }, + "Completed": { + "Completed": "" + }, "Compositor": { "Compositor": "合成器" }, "Configuration activated": { "Configuration activated": "配置已啟動" }, + "Configure a new printer": { + "Configure a new printer": "" + }, "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": { "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.": "為命名工作區配置圖示。當同時啟用圖示和數字時,圖示優先於數字。" }, @@ -593,6 +635,12 @@ "Create Dir": { "Create Dir": "新建資料夾" }, + "Create Printer": { + "Create Printer": "" + }, + "Creating...": { + "Creating...": "" + }, "Critical Priority": { "Critical Priority": "關鍵優先級" }, @@ -695,12 +743,21 @@ "Delete": { "Delete": "" }, + "Delete Class": { + "Delete Class": "" + }, + "Delete Printer": { + "Delete Printer": "" + }, "Delete VPN": { "Delete VPN": "" }, "Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": "提取與底層圖像高度匹配的顏色。" }, + "Description": { + "Description": "" + }, "Desktop background images": { "Desktop background images": "桌面背景圖片" }, @@ -917,6 +974,9 @@ "Failed to activate configuration": { "Failed to activate configuration": "無法啟動配置" }, + "Failed to add printer to class": { + "Failed to add printer to class": "" + }, "Failed to cancel all jobs": { "Failed to cancel all jobs": "無法取消所有工作" }, @@ -929,9 +989,21 @@ "Failed to connect to ": { "Failed to connect to ": "無法連線到 " }, + "Failed to create printer": { + "Failed to create printer": "" + }, "Failed to delete VPN": { "Failed to delete VPN": "" }, + "Failed to delete class": { + "Failed to delete class": "" + }, + "Failed to delete printer": { + "Failed to delete printer": "" + }, + "Failed to disable job acceptance": { + "Failed to disable job acceptance": "" + }, "Failed to disconnect VPN": { "Failed to disconnect VPN": "無法斷開 VPN" }, @@ -944,18 +1016,36 @@ "Failed to enable WiFi": { "Failed to enable WiFi": "無法啟用 WiFi" }, + "Failed to enable job acceptance": { + "Failed to enable job acceptance": "" + }, + "Failed to hold job": { + "Failed to hold job": "" + }, "Failed to import VPN": { "Failed to import VPN": "" }, "Failed to load VPN config": { "Failed to load VPN config": "" }, + "Failed to move job": { + "Failed to move job": "" + }, "Failed to pause printer": { "Failed to pause printer": "無法暫停印表機" }, + "Failed to print test page": { + "Failed to print test page": "" + }, "Failed to remove device": { "Failed to remove device": "無法移除裝置" }, + "Failed to remove printer from class": { + "Failed to remove printer from class": "" + }, + "Failed to restart job": { + "Failed to restart job": "" + }, "Failed to resume printer": { "Failed to resume printer": "印表機恢復失敗" }, @@ -974,9 +1064,21 @@ "Failed to update autoconnect": { "Failed to update autoconnect": "自動連線更新失敗" }, + "Failed to update description": { + "Failed to update description": "" + }, + "Failed to update location": { + "Failed to update location": "" + }, + "Failed to update sharing": { + "Failed to update sharing": "" + }, "Feels Like": { "Feels Like": "體感溫度" }, + "File": { + "File": "" + }, "File Already Exists": { "File Already Exists": "檔案已經存在" }, @@ -1091,6 +1193,9 @@ "Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": "邊緣間隙高度 (獨佔區域)" }, + "Held": { + "Held": "" + }, "Hex": { "Hex": "Hex" }, @@ -1286,6 +1391,12 @@ "Loading...": { "Loading...": "" }, + "Local": { + "Local": "" + }, + "Location": { + "Location": "" + }, "Location Search": { "Location Search": "位置搜尋" }, @@ -1529,6 +1640,12 @@ "No clipboard entries found": { "No clipboard entries found": "剪貼簿無內容" }, + "No devices found": { + "No devices found": "" + }, + "No drivers found": { + "No drivers found": "" + }, "No files found": { "No files found": "沒有找到" }, @@ -1547,6 +1664,12 @@ "No printer found": { "No printer found": "未找到印表機" }, + "No printers configured": { + "No printers configured": "" + }, + "No printers found": { + "No printers found": "" + }, "None": { "None": "無" }, @@ -1628,6 +1751,12 @@ "Open search bar to find text": { "Open search bar to find text": "打開搜尋欄尋找文本" }, + "Optional description": { + "Optional description": "" + }, + "Optional location": { + "Optional location": "" + }, "Other": { "Other": "其他" }, @@ -1685,6 +1814,9 @@ "Paused": { "Paused": "暫停" }, + "Pending": { + "Pending": "" + }, "Per-Mode Wallpapers": { "Per-Mode Wallpapers": "以主題區分桌布" }, @@ -1799,6 +1931,18 @@ "Printer": { "Printer": "" }, + "Printer Classes": { + "Printer Classes": "" + }, + "Printer created successfully": { + "Printer created successfully": "" + }, + "Printer deleted": { + "Printer deleted": "" + }, + "Printer name (no spaces)": { + "Printer name (no spaces)": "" + }, "Printers": { "Printers": "印表機" }, @@ -1859,9 +2003,15 @@ "Recently Used Apps": { "Recently Used Apps": "最近使用的應用程式" }, + "Recommended available": { + "Recommended available": "" + }, "Refresh": { "Refresh": "重新整理" }, + "Reject Jobs": { + "Reject Jobs": "" + }, "Reload Plugin": { "Reload Plugin": "重新載入插件" }, @@ -2009,6 +2159,12 @@ "Select an image file...": { "Select an image file...": "選擇一張圖片..." }, + "Select device...": { + "Select device...": "" + }, + "Select driver...": { + "Select driver...": "" + }, "Select font weight": { "Select font weight": "選擇字體粗細" }, @@ -2303,6 +2459,12 @@ "Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": "終端 - 始終使用深色主題" }, + "Test Page": { + "Test Page": "" + }, + "Test page sent to printer": { + "Test page sent to printer": "" + }, "Text": { "Text": "文字" }, @@ -2381,6 +2543,9 @@ "Top Section": { "Top Section": "上方區塊" }, + "Total Jobs": { + "Total Jobs": "" + }, "Transition Effect": { "Transition Effect": "切換動畫效果" }, @@ -2501,6 +2666,9 @@ "VRR: ": { "VRR: ": "VRR:" }, + "Version": { + "Version": "" + }, "Vertical Deck": { "Vertical Deck": "垂直甲板" }, diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 35fb4926..ecd1dfe3 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -13,6 +13,13 @@ "reference": "", "comment": "" }, + { + "term": "%1 class(es)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 connected", "translation": "", @@ -27,6 +34,20 @@ "reference": "", "comment": "" }, + { + "term": "%1 job(s)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "%1 printer(s)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "%1 widgets", "translation": "", @@ -97,6 +118,20 @@ "reference": "", "comment": "" }, + { + "term": "API", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Aborted", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "About", "translation": "", @@ -104,6 +139,20 @@ "reference": "", "comment": "" }, + { + "term": "Accept Jobs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Accepting", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Access clipboard history", "translation": "", @@ -181,6 +230,13 @@ "reference": "", "comment": "" }, + { + "term": "Add Printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Add Widget", "translation": "", @@ -811,6 +867,13 @@ "reference": "", "comment": "" }, + { + "term": "CUPS Print Server", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Camera", "translation": "", @@ -825,6 +888,20 @@ "reference": "", "comment": "" }, + { + "term": "Canceled", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Capabilities", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Capacity", "translation": "", @@ -986,6 +1063,13 @@ "reference": "", "comment": "" }, + { + "term": "Clear All Jobs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Click Import to add a .ovpn or .conf", "translation": "", @@ -1126,6 +1210,13 @@ "reference": "", "comment": "" }, + { + "term": "Completed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Compositor", "translation": "", @@ -1140,6 +1231,13 @@ "reference": "", "comment": "" }, + { + "term": "Configure a new printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "translation": "", @@ -1301,6 +1399,20 @@ "reference": "", "comment": "" }, + { + "term": "Create Printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Creating...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Critical Priority", "translation": "", @@ -1525,6 +1637,20 @@ "reference": "", "comment": "" }, + { + "term": "Delete Class", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Delete Printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Delete VPN", "translation": "", @@ -1539,6 +1665,13 @@ "reference": "", "comment": "" }, + { + "term": "Description", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Desktop background images", "translation": "", @@ -2043,6 +2176,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to add printer to class", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to cancel all jobs", "translation": "", @@ -2071,6 +2211,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to create printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to delete VPN", "translation": "", @@ -2078,6 +2225,27 @@ "reference": "", "comment": "" }, + { + "term": "Failed to delete class", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to delete printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to disable job acceptance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to disconnect VPN", "translation": "", @@ -2106,6 +2274,20 @@ "reference": "", "comment": "" }, + { + "term": "Failed to enable job acceptance", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to hold job", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to import VPN", "translation": "", @@ -2120,6 +2302,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to move job", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to pause printer", "translation": "", @@ -2127,6 +2316,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to print test page", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to remove device", "translation": "", @@ -2134,6 +2330,20 @@ "reference": "", "comment": "" }, + { + "term": "Failed to remove printer from class", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to restart job", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Failed to resume printer", "translation": "", @@ -2176,6 +2386,27 @@ "reference": "", "comment": "" }, + { + "term": "Failed to update description", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to update location", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Failed to update sharing", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Feels Like", "translation": "", @@ -2183,6 +2414,13 @@ "reference": "", "comment": "" }, + { + "term": "File", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "File Already Exists", "translation": "", @@ -2442,6 +2680,13 @@ "reference": "", "comment": "" }, + { + "term": "Held", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hex", "translation": "", @@ -2897,6 +3142,20 @@ "reference": "", "comment": "" }, + { + "term": "Local", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Location", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Location Search", "translation": "", @@ -3450,6 +3709,20 @@ "reference": "", "comment": "" }, + { + "term": "No devices found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No drivers found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No files found", "translation": "", @@ -3492,6 +3765,20 @@ "reference": "", "comment": "" }, + { + "term": "No printers configured", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No printers found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "None", "translation": "", @@ -3681,6 +3968,20 @@ "reference": "", "comment": "" }, + { + "term": "Optional description", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Optional location", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Other", "translation": "", @@ -3814,6 +4115,13 @@ "reference": "", "comment": "" }, + { + "term": "Pending", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Per-Mode Wallpapers", "translation": "", @@ -4080,6 +4388,34 @@ "reference": "", "comment": "" }, + { + "term": "Printer Classes", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Printer created successfully", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Printer deleted", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Printer name (no spaces)", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Printers", "translation": "", @@ -4220,6 +4556,13 @@ "reference": "", "comment": "" }, + { + "term": "Recommended available", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Refresh", "translation": "", @@ -4227,6 +4570,13 @@ "reference": "", "comment": "" }, + { + "term": "Reject Jobs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Reload Plugin", "translation": "", @@ -4577,6 +4927,20 @@ "reference": "", "comment": "" }, + { + "term": "Select device...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Select driver...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select font weight", "translation": "", @@ -5249,6 +5613,20 @@ "reference": "", "comment": "" }, + { + "term": "Test Page", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Test page sent to printer", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Text", "translation": "", @@ -5431,6 +5809,13 @@ "reference": "", "comment": "" }, + { + "term": "Total Jobs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Transition Effect", "translation": "", @@ -5697,6 +6082,13 @@ "reference": "", "comment": "" }, + { + "term": "Version", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Vertical Deck", "translation": "",