1
0
mirror of https://github.com/AvengeMedia/DankMaterialShell.git synced 2025-12-06 05:25:41 -05:00

Compare commits

...

3 Commits

Author SHA1 Message Date
xdenotte
cbd1fd908c Fix ProcessList context menu visibility in DankPopout (#857) 2025-11-30 11:21:15 -05:00
bbedward
b2cf20f3d8 core: add pre-commit hooks for go CI checks 2025-11-30 11:04:12 -05:00
bbedward
915f1a5036 cli: remove distribution enforcement from tui 2025-11-30 10:51:38 -05:00
16 changed files with 2171 additions and 222 deletions

View File

@@ -1,8 +1,4 @@
#!/bin/bash #!/bin/bash
# DISABLED for now
exit 0
set -euo pipefail set -euo pipefail
HOOK_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" HOOK_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@@ -10,18 +6,61 @@ REPO_ROOT="$(cd "$HOOK_DIR/.." && pwd)"
cd "$REPO_ROOT" 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 fi
if ! command -v python3 &>/dev/null; then # =============================================================================
exit 0 # i18n sync check (DISABLED for now)
fi # =============================================================================
# if [[ -n "${POEDITOR_API_TOKEN:-}" ]] && [[ -n "${POEDITOR_PROJECT_ID:-}" ]]; then
if ! python3 scripts/i18nsync.py check &>/dev/null; then # if command -v python3 &>/dev/null; then
echo "Translations out of sync" # if ! python3 scripts/i18nsync.py check &>/dev/null; then
echo "run python3 scripts/i18nsync.py sync" # echo "Translations out of sync"
exit 1 # echo "Run: python3 scripts/i18nsync.py sync"
fi # exit 1
# fi
# fi
# fi
exit 0 exit 0

View File

@@ -4,6 +4,14 @@ Contributions are welcome and encouraged.
To contribute fork this repository, make your changes, and open a pull request. 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 ## 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. 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.

View File

@@ -72,6 +72,13 @@ sudo make install # Install to /usr/local/bin/dms
## Development ## 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:** **Regenerating Wayland Protocol Bindings:**
```bash ```bash
go install github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner@latest go install github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner@latest

View File

@@ -1,14 +1,12 @@
package main package main
import ( import (
"errors"
"fmt" "fmt"
"os" "os"
"path/filepath" "path/filepath"
"strings" "strings"
"github.com/AvengeMedia/DankMaterialShell/core/internal/config" "github.com/AvengeMedia/DankMaterialShell/core/internal/config"
"github.com/AvengeMedia/DankMaterialShell/core/internal/distros"
"github.com/AvengeMedia/DankMaterialShell/core/internal/dms" "github.com/AvengeMedia/DankMaterialShell/core/internal/dms"
"github.com/AvengeMedia/DankMaterialShell/core/internal/log" "github.com/AvengeMedia/DankMaterialShell/core/internal/log"
tea "github.com/charmbracelet/bubbletea" tea "github.com/charmbracelet/bubbletea"
@@ -76,14 +74,7 @@ func findConfig(cmd *cobra.Command, args []string) error {
return nil return nil
} }
func runInteractiveMode(cmd *cobra.Command, args []string) { func runInteractiveMode(cmd *cobra.Command, args []string) {
detector, err := dms.NewDetector() detector, _ := dms.NewDetector()
if err != nil && !errors.Is(err, &distros.UnsupportedDistributionError{}) {
log.Fatalf("Error initializing DMS detector: %v", err)
} else if errors.Is(err, &distros.UnsupportedDistributionError{}) {
log.Error("Interactive mode is not supported on this distribution.")
log.Info("Please run 'dms --help' for available commands.")
os.Exit(1)
}
if !detector.IsDMSInstalled() { if !detector.IsDMSInstalled() {
log.Error("DankMaterialShell (DMS) is not detected as installed on this system.") log.Error("DankMaterialShell (DMS) is not detected as installed on this system.")

View File

@@ -3,7 +3,6 @@ package tui
import ( import (
"context" "context"
"fmt" "fmt"
"os/exec"
"strings" "strings"
"github.com/AvengeMedia/DankMaterialShell/core/internal/deps" "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() return m, m.listenForLogs()
} }
func (m Model) commandExists(cmd string) bool {
_, err := exec.LookPath(cmd)
return err == nil
}
func (m Model) detectDependencies() tea.Cmd { func (m Model) detectDependencies() tea.Cmd {
return func() tea.Msg { return func() tea.Msg {
if m.osInfo == nil { if m.osInfo == nil {

View File

@@ -12,26 +12,26 @@ Popup {
property var processData: null property var processData: null
function show(x, y) { function show(x, y) {
if (!processContextMenu.parent && typeof Overlay !== "undefined" && Overlay.overlay) {
processContextMenu.parent = Overlay.overlay;
}
const menuWidth = 180;
const menuHeight = menuColumn.implicitHeight + Theme.spacingS * 2;
const screenWidth = Screen.width;
const screenHeight = Screen.height;
let finalX = x; let finalX = x;
let finalY = y; let finalY = y;
if (x + menuWidth > screenWidth - 20) {
finalX = x - menuWidth; if (processContextMenu.parent) {
const parentWidth = processContextMenu.parent.width;
const parentHeight = processContextMenu.parent.height;
const menuWidth = processContextMenu.width;
const menuHeight = processContextMenu.height;
if (finalX + menuWidth > parentWidth) {
finalX = Math.max(0, parentWidth - menuWidth);
}
if (finalY + menuHeight > parentHeight) {
finalY = Math.max(0, parentHeight - menuHeight);
}
} }
if (y + menuHeight > screenHeight - 20) { processContextMenu.x = finalX;
finalY = y - menuHeight; processContextMenu.y = finalY;
}
processContextMenu.x = Math.max(20, finalX);
processContextMenu.y = Math.max(20, finalY);
open(); open();
} }

View File

@@ -37,7 +37,12 @@ DankPopout {
screen: triggerScreen screen: triggerScreen
shouldBeVisible: false shouldBeVisible: false
onBackgroundClicked: close() onBackgroundClicked: {
if (processContextMenu.visible) {
processContextMenu.close();
}
close();
}
Ref { Ref {
service: DgopService service: DgopService
@@ -63,6 +68,7 @@ DankPopout {
if (processListPopout.shouldBeVisible) { if (processListPopout.shouldBeVisible) {
forceActiveFocus(); forceActiveFocus();
} }
processContextMenu.parent = processListContent;
} }
Keys.onPressed: (event) => { Keys.onPressed: (event) => {
if (event.key === Qt.Key_Escape) { if (event.key === Qt.Key_Escape) {

File diff suppressed because it is too large Load Diff

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 caratteri" "%1 characters": "%1 caratteri"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%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": "%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?": {
"A file with this name already exists. Do you want to overwrite it?": "Un file con questo nome esiste già. Vuoi sovrascriverlo?" "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": {
"About": "Info" "About": "Info"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "Accesso cronologia clipboard" "Access clipboard history": "Accesso cronologia clipboard"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "Aggiungi Barra" "Add Bar": "Aggiungi Barra"
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Aggiungi Widget" "Add Widget": "Aggiungi Widget"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "Avviso Filtro Mancante CUPS" "CUPS Missing Filter Warning": "Avviso Filtro Mancante CUPS"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "Fotocamera" "Camera": "Fotocamera"
}, },
"Cancel": { "Cancel": {
"Cancel": "Annulla" "Cancel": "Annulla"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "Capacità" "Capacity": "Capacità"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"Clear All History?": "Pulire tutta la cronologia?" "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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "Modo Compatto" "Compact Mode": "Modo Compatto"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "Compositor\n" "Compositor": "Compositor\n"
}, },
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Configurazione attivata" "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.": {
"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" "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": {
"Create Dir": "Crea Cartella" "Create Dir": "Crea Cartella"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "Priorità Critica" "Critical Priority": "Priorità Critica"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": {
"Derives colors that closely match the underlying image.": "Deriva colori che si avvicinano all'immagine sottostante" "Derives colors that closely match the underlying image.": "Deriva colori che si avvicinano all'immagine sottostante"
}, },
"Description": {
"Description": ""
},
"Desktop background images": { "Desktop background images": {
"Desktop background images": "Immagini sfondo desktop" "Desktop background images": "Immagini sfondo desktop"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"Failed to activate configuration": "Impossibile attivare configurazione" "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": {
"Failed to cancel all jobs": "Impossibile cancellare tutti i lavori" "Failed to cancel all jobs": "Impossibile cancellare tutti i lavori"
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"Failed to connect to ": "Impossibile connettersi a " "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 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": {
"Failed to disconnect VPN": "Impossibile disconnettersi dalla VPN" "Failed to disconnect VPN": "Impossibile disconnettersi dalla VPN"
}, },
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "Impossibile abilitare 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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 pause printer": "Impossibile mettere in pausa la stampante" "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": {
"Failed to remove device": "Impossibile rimuovere dispositivo" "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": {
"Failed to resume printer": "Impossibile riavviare la stampante" "Failed to resume printer": "Impossibile riavviare la stampante"
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"Failed to update autoconnect": "Impossibile aggiornare connessione automatica" "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": {
"Feels Like": "Temperatura" "Feels Like": "Temperatura"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "File già esistente" "File Already Exists": "File già esistente"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)" "Height to Edge Gap (Exclusive Zone)": "Altezza Gap Angolo (Zona Esclusa)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "Hex" "Hex": "Hex"
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "Ricerca Posizione" "Location Search": "Ricerca Posizione"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"No clipboard entries found": "Nessun appunto trovato" "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": {
"No files found": "Nessun file trovato" "No files found": "Nessun file trovato"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "Nessuna stampante trovata" "No printer found": "Nessuna stampante trovata"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "Nulla" "None": "Nulla"
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "Apri barra di ricerca per cercare testo" "Open search bar to find text": "Apri barra di ricerca per cercare testo"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "Altro" "Other": "Altro"
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "Messo in Pausa" "Paused": "Messo in Pausa"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "Sfondo Per Modalità" "Per-Mode Wallpapers": "Sfondo Per Modalità"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "Stampanti" "Printers": "Stampanti"
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Apps Usate Recentemente" "Recently Used Apps": "Apps Usate Recentemente"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "Aggiorna" "Refresh": "Aggiorna"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Ricarica Plugin" "Reload Plugin": "Ricarica Plugin"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "Seleziona un'immagine" "Select an image file...": "Seleziona un'immagine"
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "Seleziona peso font" "Select font weight": "Seleziona peso font"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": "Terminali - Usa sempre Tema Scuro" "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": {
"Text": "Testo" "Text": "Testo"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "Sezione Superiore" "Top Section": "Sezione Superiore"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "Effetto Transizione" "Transition Effect": "Effetto Transizione"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "VRR:" "VRR: ": "VRR:"
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "Deck Verticale" "Vertical Deck": "Deck Verticale"
}, },

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 文字" "%1 characters": "%1 文字"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 表示" "%1 display(s)": "%1 表示"
}, },
"%1 job(s)": {
"%1 job(s)": ""
},
"%1 printer(s)": {
"%1 printer(s)": ""
},
"%1 widgets": { "%1 widgets": {
"%1 widgets": "%1 ウィジェット" "%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?": {
"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": {
"About": "詳細" "About": "詳細"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "クリップボードの履歴へのアクセス" "Access clipboard history": "クリップボードの履歴へのアクセス"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "バーを作る" "Add Bar": "バーを作る"
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "ウィジェットを追加" "Add Widget": "ウィジェットを追加"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "CUPS の欠落フィルターの警告" "CUPS Missing Filter Warning": "CUPS の欠落フィルターの警告"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "カメラ" "Camera": "カメラ"
}, },
"Cancel": { "Cancel": {
"Cancel": "キャンセル" "Cancel": "キャンセル"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "容量" "Capacity": "容量"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "コンパクトモード" "Compact Mode": "コンパクトモード"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "コンポジター" "Compositor": "コンポジター"
}, },
"Configuration activated": { "Configuration activated": {
"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.": {
"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 Dir": "ディレクトリを作成" "Create Dir": "ディレクトリを作成"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "最優先事項" "Critical Priority": "最優先事項"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": {
"Derives colors that closely match the underlying image.": "下にある画像に密接に一致する色を導き出します。" "Derives colors that closely match the underlying image.": "下にある画像に密接に一致する色を導き出します。"
}, },
"Description": {
"Description": ""
},
"Desktop background images": { "Desktop background images": {
"Desktop background images": "デスクトップの背景画像" "Desktop background images": "デスクトップの背景画像"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"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": {
"Failed to cancel all jobs": "すべてのジョブの取り消しに失敗しました" "Failed to cancel all jobs": "すべてのジョブの取り消しに失敗しました"
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"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 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": {
"Failed to disconnect VPN": "VPNへの切断が失敗しました" "Failed to disconnect VPN": "VPNへの切断が失敗しました"
}, },
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 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 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": {
"Failed to resume printer": "プリンタの再開に失敗しました" "Failed to resume printer": "プリンタの再開に失敗しました"
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"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": {
"Feels Like": "どうやら" "Feels Like": "どうやら"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "ファイルが既に存在します" "File Already Exists": "ファイルが既に存在します"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "エッジギャップまでの高さ(排他ゾーン)" "Height to Edge Gap (Exclusive Zone)": "エッジギャップまでの高さ(排他ゾーン)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "16進数" "Hex": "16進数"
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "ロケーション検索" "Location Search": "ロケーション検索"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"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": {
"No files found": "ファイルが見つかりませんでした" "No files found": "ファイルが見つかりませんでした"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "プリンターが見つかりませんでした" "No printer found": "プリンターが見つかりませんでした"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "ない" "None": "ない"
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "検索バーを開いてテキストを検索" "Open search bar to find text": "検索バーを開いてテキストを検索"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "他" "Other": "他"
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "一時停止" "Paused": "一時停止"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "モードごとの壁紙" "Per-Mode Wallpapers": "モードごとの壁紙"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "プリンター" "Printers": "プリンター"
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用したアプリ" "Recently Used Apps": "最近使用したアプリ"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "リフレッシュ" "Refresh": "リフレッシュ"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "プラグインをリロード" "Reload Plugin": "プラグインをリロード"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "画像ファイルを選ぶ..." "Select an image file...": "画像ファイルを選ぶ..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "フォントの太さを選ぶ" "Select font weight": "フォントの太さを選ぶ"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"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": {
"Text": "テキスト" "Text": "テキスト"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "トップセクション" "Top Section": "トップセクション"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "トランジション効果" "Transition Effect": "トランジション効果"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "VRR: " "VRR: ": "VRR: "
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "垂直デッキ" "Vertical Deck": "垂直デッキ"
}, },

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 znaków" "%1 characters": "%1 znaków"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 wyświetlaczy" "%1 display(s)": "%1 wyświetlaczy"
}, },
"%1 job(s)": {
"%1 job(s)": ""
},
"%1 printer(s)": {
"%1 printer(s)": ""
},
"%1 widgets": { "%1 widgets": {
"%1 widgets": "%1 widżetów" "%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?": {
"A file with this name already exists. Do you want to overwrite it?": "Plik o takiej nazwie już istnieje. Czy chcesz go nadpisać?" "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": {
"About": "O programie" "About": "O programie"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "Dostęp do historii schowka" "Access clipboard history": "Dostęp do historii schowka"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "Dodaj pasek" "Add Bar": "Dodaj pasek"
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Dodaj widżet" "Add Widget": "Dodaj widżet"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "CUPS: Ostrzeżenie o brakującym filtrze" "CUPS Missing Filter Warning": "CUPS: Ostrzeżenie o brakującym filtrze"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "Kamera" "Camera": "Kamera"
}, },
"Cancel": { "Cancel": {
"Cancel": "Anuluj" "Cancel": "Anuluj"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "Pojemność" "Capacity": "Pojemność"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"Clear All History?": "Usunąć całą historię?" "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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "Tryb kompaktowy" "Compact Mode": "Tryb kompaktowy"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "Kompozytor" "Compositor": "Kompozytor"
}, },
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Konfiguracja aktywowana" "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.": {
"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." "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": {
"Create Dir": "Utwórz katalog" "Create Dir": "Utwórz katalog"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "Priorytet krytyczny" "Critical Priority": "Priorytet krytyczny"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "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." "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": {
"Desktop background images": "Obrazy tła pulpitu" "Desktop background images": "Obrazy tła pulpitu"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"Failed to activate configuration": "Nie udało się aktywować konfiguracji" "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": {
"Failed to cancel all jobs": "Anulowanie wszystkich zadań nie powiodło się" "Failed to cancel all jobs": "Anulowanie wszystkich zadań nie powiodło się"
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"Failed to connect to ": "Nie udało się połączyć z " "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 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": {
"Failed to disconnect VPN": "Nie udało się rozłączyć z 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": {
"Failed to enable WiFi": "Nie udało się włączyć Wi-Fi" "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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 pause printer": "Wstrzymanie drukarki nie powiodło się" "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": {
"Failed to remove device": "Nie udało się usunąć urządzenia" "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": {
"Failed to resume printer": "Wznowienie drukarki nie powiodło się" "Failed to resume printer": "Wznowienie drukarki nie powiodło się"
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"Failed to update autoconnect": "Nie udało się zaktualizować automatycznego łączenia" "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": {
"Feels Like": "Odczuwalna" "Feels Like": "Odczuwalna"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "Plik już istnieje" "File Already Exists": "Plik już istnieje"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)" "Height to Edge Gap (Exclusive Zone)": "Odstęp od krawędzi (strefa wyłączności)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "Klątwa" "Hex": "Klątwa"
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "Wyszukiwanie lokalizacji" "Location Search": "Wyszukiwanie lokalizacji"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"No clipboard entries found": "Nie znaleziono wpisów w schowku" "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": {
"No files found": "Nie znaleziono plików" "No files found": "Nie znaleziono plików"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "Nie znaleziono drukarki" "No printer found": "Nie znaleziono drukarki"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "Brak" "None": "Brak"
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "Otwórz pasek wyszukiwania, aby znaleźć tekst" "Open search bar to find text": "Otwórz pasek wyszukiwania, aby znaleźć tekst"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "Inne" "Other": "Inne"
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "Wstrzymano" "Paused": "Wstrzymano"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "Tapety dla każdego trybu" "Per-Mode Wallpapers": "Tapety dla każdego trybu"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "Drukarki" "Printers": "Drukarki"
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Ostatnio używane aplikacje" "Recently Used Apps": "Ostatnio używane aplikacje"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "Odśwież" "Refresh": "Odśwież"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Wczytaj ponownie wtyczkę" "Reload Plugin": "Wczytaj ponownie wtyczkę"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "Wybierz plik obrazu..." "Select an image file...": "Wybierz plik obrazu..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "Wybierz grubość czcionki" "Select font weight": "Wybierz grubość czcionki"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": "Terminal - Zawsze używaj ciemnego motywu" "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": {
"Text": "Tekst" "Text": "Tekst"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "Górna sekcja" "Top Section": "Górna sekcja"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "Efekt przejścia" "Transition Effect": "Efekt przejścia"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "VRR: " "VRR: ": "VRR: "
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "Pionowy pokład" "Vertical Deck": "Pionowy pokład"
}, },

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 caracteres" "%1 characters": "%1 caracteres"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%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": "" "%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?": {
"A file with this name already exists. Do you want to overwrite it?": "Um arquivo com esse nome já existe. Você quer sobrescrevê-lo?" "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": {
"About": "Sobre" "About": "Sobre"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "Acesso ao histórico área de transferência" "Access clipboard history": "Acesso ao histórico área de transferência"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "" "Add Bar": ""
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Adicionar Widget" "Add Widget": "Adicionar Widget"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "" "CUPS Missing Filter Warning": ""
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "" "Camera": ""
}, },
"Cancel": { "Cancel": {
"Cancel": "Cancelar" "Cancel": "Cancelar"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "Capacidade" "Capacity": "Capacidade"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"Clear All History?": "Apagar Todo o Histórico?" "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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "Modo Compacto" "Compact Mode": "Modo Compacto"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "Compositor" "Compositor": "Compositor"
}, },
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Configuração ativada" "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.": {
"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." "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": {
"Create Dir": "Criar pasta" "Create Dir": "Criar pasta"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "Prioridade Crítica" "Critical Priority": "Prioridade Crítica"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "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." "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": {
"Desktop background images": "Imagens de fundo da área de trabalho" "Desktop background images": "Imagens de fundo da área de trabalho"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"Failed to activate configuration": "Erro ao ativar configuração" "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": {
"Failed to cancel all jobs": "" "Failed to cancel all jobs": ""
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"Failed to connect to ": "Erro ao conectar a " "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 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": {
"Failed to disconnect VPN": "Erro ao desconectar VPN" "Failed to disconnect VPN": "Erro ao desconectar VPN"
}, },
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "Erro ao habilitar 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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 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 device": "Erro ao remover dispositivo" "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": {
"Failed to resume printer": "" "Failed to resume printer": ""
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"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": {
"Feels Like": "Sensação Térmica" "Feels Like": "Sensação Térmica"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "Arquivo já existe" "File Already Exists": "Arquivo já existe"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "Distância da Borda (Zona Exclusiva)" "Height to Edge Gap (Exclusive Zone)": "Distância da Borda (Zona Exclusiva)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "" "Hex": ""
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "Procurar Localização" "Location Search": "Procurar Localização"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"No clipboard entries found": "Área de transferência vazia" "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": {
"No files found": "Nenhum arquivo encontrado" "No files found": "Nenhum arquivo encontrado"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "" "No printer found": ""
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "" "None": ""
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "Abrir barra de pesquisa e encontrar texto" "Open search bar to find text": "Abrir barra de pesquisa e encontrar texto"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "" "Other": ""
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "" "Paused": ""
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "Papéis de Parede por Modo" "Per-Mode Wallpapers": "Papéis de Parede por Modo"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "" "Printers": ""
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Apps Usados Recentemente" "Recently Used Apps": "Apps Usados Recentemente"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "Recarregar" "Refresh": "Recarregar"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Reiniciar Plugin" "Reload Plugin": "Reiniciar Plugin"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "Selecione um arquivo de imagem..." "Select an image file...": "Selecione um arquivo de imagem..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "Selecionar espessura da fonte" "Select font weight": "Selecionar espessura da fonte"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"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": {
"Text": "Texto" "Text": "Texto"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "Seção do topo" "Top Section": "Seção do topo"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "Efeito de Transição" "Transition Effect": "Efeito de Transição"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "" "VRR: ": ""
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "" "Vertical Deck": ""
}, },

View File

@@ -1,16 +1,25 @@
{ {
"%1 adapter(s), none connected": { "%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 characters": "%1 karakter" "%1 characters": "%1 karakter"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": "%1 bağlı"
}, },
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 ekran" "%1 display(s)": "%1 ekran"
}, },
"%1 job(s)": {
"%1 job(s)": ""
},
"%1 printer(s)": {
"%1 printer(s)": ""
},
"%1 widgets": { "%1 widgets": {
"%1 widgets": "%1 widget" "%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?": {
"A file with this name already exists. Do you want to overwrite it?": "Bu isimde bir dosya zaten var. Üzerine yazmak istiyor musunuz?" "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": {
"About": "Hakkında" "About": "Hakkında"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "Pano geçmişine eriş" "Access clipboard history": "Pano geçmişine eriş"
}, },
@@ -57,19 +78,19 @@
"Actions": "Eylemler" "Actions": "Eylemler"
}, },
"Activate": { "Activate": {
"Activate": "" "Activate": "Etkinleştir"
}, },
"Active": { "Active": {
"Active": "" "Active": "Etkin"
}, },
"Active: ": { "Active: ": {
"Active: ": "" "Active: ": "Etkin: "
}, },
"Active: None": { "Active: None": {
"Active: None": "" "Active: None": "Etkin: Hiçbiri"
}, },
"Adapters": { "Adapters": {
"Adapters": "" "Adapters": "Bağdaştırıcılar"
}, },
"Add": { "Add": {
"Add": "Ekle" "Add": "Ekle"
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "Bar Ekle" "Add Bar": "Bar Ekle"
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "Widget Ekle" "Add Widget": "Widget Ekle"
}, },
@@ -84,7 +108,7 @@
"Add Widget to ": "Şuraya Widget ekle:" "Add Widget to ": "Şuraya Widget ekle:"
}, },
"Add Widget to %1 Section": { "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": {
"Add a VPN in NetworkManager": "NetworkManager'da VPN ekle" "Add a VPN in NetworkManager": "NetworkManager'da VPN ekle"
@@ -117,7 +141,7 @@
"Animation Speed": "Animasyon Hızı" "Animation Speed": "Animasyon Hızı"
}, },
"Anonymous Identity": { "Anonymous Identity": {
"Anonymous Identity": "" "Anonymous Identity": "Anonim Kimlik"
}, },
"Anonymous Identity (optional)": { "Anonymous Identity (optional)": {
"Anonymous Identity (optional)": "Anonim Kimlik (isteğe bağlı)" "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?" "Are you sure you want to suspend the system?": "Sistemi askıya almak istediğinizden emin misiniz?"
}, },
"Audio": { "Audio": {
"Audio": "" "Audio": "Ses"
}, },
"Audio Codec": { "Audio Codec": {
"Audio Codec": "Ses Codec'i" "Audio Codec": "Ses Codec'i"
@@ -180,16 +204,16 @@
"Audio Output Devices (": "Ses Çıkış Aygıtları (" "Audio Output Devices (": "Ses Çıkış Aygıtları ("
}, },
"Auth": { "Auth": {
"Auth": "" "Auth": "Kimlik"
}, },
"Auth Type": { "Auth Type": {
"Auth Type": "" "Auth Type": "Kimlik Türü"
}, },
"Authenticate": { "Authenticate": {
"Authenticate": "Kimlik Doğrula" "Authenticate": "Kimlik Doğrula"
}, },
"Authentication": { "Authentication": {
"Authentication": "" "Authentication": "Kimlik Doğrulama"
}, },
"Authentication Required": { "Authentication Required": {
"Authentication Required": "Kimlik Doğrulama Gerekli" "Authentication Required": "Kimlik Doğrulama Gerekli"
@@ -207,7 +231,7 @@
"Authorize service for ": "Şunun için servisi yetkilendir: " "Authorize service for ": "Şunun için servisi yetkilendir: "
}, },
"Auto": { "Auto": {
"Auto": "" "Auto": "Oto"
}, },
"Auto Location": { "Auto Location": {
"Auto Location": "Otomatik Konum" "Auto Location": "Otomatik Konum"
@@ -225,7 +249,7 @@
"Auto-saving...": "Otomatik kaydetme..." "Auto-saving...": "Otomatik kaydetme..."
}, },
"Autoconnect": { "Autoconnect": {
"Autoconnect": "" "Autoconnect": "Otomatik Bağlan"
}, },
"Autoconnect disabled": { "Autoconnect disabled": {
"Autoconnect disabled": "Otomatik bağlanma devre dışı" "Autoconnect disabled": "Otomatik bağlanma devre dışı"
@@ -270,7 +294,7 @@
"Available Layouts": "Mevcut Düzenler" "Available Layouts": "Mevcut Düzenler"
}, },
"Available Networks": { "Available Networks": {
"Available Networks": "" "Available Networks": "Kullanılabilir Ağlar"
}, },
"Available Plugins": { "Available Plugins": {
"Available Plugins": "Kullanılabilir Eklentiler" "Available Plugins": "Kullanılabilir Eklentiler"
@@ -279,13 +303,13 @@
"Available Screens (": "Kullanılabilir Ekranlar (" "Available Screens (": "Kullanılabilir Ekranlar ("
}, },
"BSSID": { "BSSID": {
"BSSID": "" "BSSID": "BSSID"
}, },
"Back": { "Back": {
"Back": "Geri" "Back": "Geri"
}, },
"Backend": { "Backend": {
"Backend": "" "Backend": "Arka Uç"
}, },
"Balanced palette with focused accents (default).": { "Balanced palette with focused accents (default).": {
"Balanced palette with focused accents (default).": "Odaklanmış vurgularla dengeli palet (varsayılan)." "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" "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"
}, },
"Bluetooth Icon": { "Bluetooth Icon": {
"Bluetooth Icon": "Bluetooth Simgesi" "Bluetooth Icon": "Bluetooth Simgesi"
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "CUPS Eksik Filtre Uyarısı" "CUPS Missing Filter Warning": "CUPS Eksik Filtre Uyarısı"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "Kamera" "Camera": "Kamera"
}, },
"Cancel": { "Cancel": {
"Cancel": "İptal" "Cancel": "İptal"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "Kapasite" "Capacity": "Kapasite"
}, },
@@ -399,7 +432,7 @@
"Center Tiling": "Merkez Döşeme" "Center Tiling": "Merkez Döşeme"
}, },
"Certificate Password": { "Certificate Password": {
"Certificate Password": "" "Certificate Password": "Sertifika Parolası"
}, },
"Change bar appearance": { "Change bar appearance": {
"Change bar appearance": "Bar görünümünü değiştir" "Change bar appearance": "Bar görünümünü değiştir"
@@ -408,7 +441,7 @@
"Changes:": "Değişiklikler:" "Changes:": "Değişiklikler:"
}, },
"Channel": { "Channel": {
"Channel": "" "Channel": "Kanal"
}, },
"Check for system updates": { "Check for system updates": {
"Check for system updates": "Sistem güncellemelerini kontrol et" "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 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": "" "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": {
"Choose where notification popups appear on screen": "Bildirim açılır pencerelerinin ekranda nerede görüneceğini seçin" "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ç" "Choose where on-screen displays appear on screen": "Ekran gösterimlerinin ekranda nerede gösterileceğini seç"
}, },
"Cipher": { "Cipher": {
"Cipher": "" "Cipher": "Şifre"
}, },
"Clear": { "Clear": {
"Clear": "Temizle" "Clear": "Temizle"
@@ -452,8 +485,11 @@
"Clear All History?": { "Clear All History?": {
"Clear All History?": "Tüm Geçmişi Temizle?" "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": "" "Click Import to add a .ovpn or .conf": ".ovpn veya .conf dosyası eklemek için İçe Aktar'ı tıklayın."
}, },
"Clipboard History": { "Clipboard History": {
"Clipboard History": "Pano Geçmişi" "Clipboard History": "Pano Geçmişi"
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "Kompakt Mod" "Compact Mode": "Kompakt Mod"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "Kompozitör" "Compositor": "Kompozitör"
}, },
"Configuration activated": { "Configuration activated": {
"Configuration activated": "Yapılandırma aktifleştirildi" "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.": {
"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." "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" "Connect to Wi-Fi": "Wi-Fi'ye Bağlan"
}, },
"Connected": { "Connected": {
"Connected": "" "Connected": "Bağlı"
}, },
"Connected Displays": { "Connected Displays": {
"Connected Displays": "Bağlı Ekranlar" "Connected Displays": "Bağlı Ekranlar"
@@ -593,6 +635,12 @@
"Create Dir": { "Create Dir": {
"Create Dir": "Dizin Oluştur" "Create Dir": "Dizin Oluştur"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "Kritik Öncelik" "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" "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": "" "Delete": "Sil"
},
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
}, },
"Delete VPN": { "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.": {
"Derives colors that closely match the underlying image.": "Altta yatan görüntüye çok yakın renkler türetir" "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": {
"Desktop background images": "Masaüstü arkaplan resimleri" "Desktop background images": "Masaüstü arkaplan resimleri"
}, },
@@ -723,7 +780,7 @@
"Disconnect": "Bağlantıyı Kes" "Disconnect": "Bağlantıyı Kes"
}, },
"Disconnected": { "Disconnected": {
"Disconnected": "" "Disconnected": "Bağlantı Kesildi"
}, },
"Disconnected from WiFi": { "Disconnected from WiFi": {
"Disconnected from WiFi": "WiFi bağlantısı kesildi" "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 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": "" "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": {
"Display power menu actions in a grid instead of a list": "Güç menüsü eylemlerini liste yerine ızgara şeklinde göster" "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." "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": "" "Driver": "Sürücü"
}, },
"Duplicate Wallpaper with Blur": { "Duplicate Wallpaper with Blur": {
"Duplicate Wallpaper with Blur": "Duvar kağıdını bulanıklık ile çoğalt" "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: " "Enter this passkey on ": "Bu şifreyi şuraya gir: "
}, },
"Enterprise": { "Enterprise": {
"Enterprise": "" "Enterprise": "Kurumsal"
}, },
"Error": { "Error": {
"Error": "Hata" "Error": "Hata"
}, },
"Ethernet": { "Ethernet": {
"Ethernet": "" "Ethernet": "Ethernet"
}, },
"Exclusive Zone Offset": { "Exclusive Zone Offset": {
"Exclusive Zone Offset": "Özel Bölge Ofseti" "Exclusive Zone Offset": "Özel Bölge Ofseti"
@@ -909,14 +966,17 @@
"F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım" "F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım"
}, },
"Fade grace period": { "Fade grace period": {
"Fade grace period": "" "Fade grace period": "Solma Toleransı"
}, },
"Fade to lock screen": { "Fade to lock screen": {
"Fade to lock screen": "" "Fade to lock screen": "Kilit Ekranı Solması"
}, },
"Failed to activate configuration": { "Failed to activate configuration": {
"Failed to activate configuration": "Yapılandırma etkinleştirilemedi" "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": {
"Failed to cancel all jobs": "Tüm işler iptal edemedi" "Failed to cancel all jobs": "Tüm işler iptal edemedi"
}, },
@@ -929,8 +989,20 @@
"Failed to connect to ": { "Failed to connect to ": {
"Failed to connect to ": "Bağlanılamadı " "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": "" "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": {
"Failed to disconnect VPN": "VPN bağlantısı kesilemedi" "Failed to disconnect VPN": "VPN bağlantısı kesilemedi"
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "WiFi etkinleştirilemedi" "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": "" "Failed to import VPN": "VPN içe aktarılamadı"
}, },
"Failed to load VPN config": { "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": {
"Failed to pause printer": "Yazıcıyı duraklatma başarısız" "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": {
"Failed to remove device": "Cihaz kaldırılamadı" "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": {
"Failed to resume printer": "Yazıcıyı devam ettirme başarısız" "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 start connection to ": "Bağlantı başlatılamadı "
}, },
"Failed to update VPN": { "Failed to update VPN": {
"Failed to update VPN": "" "Failed to update VPN": "VPN güncellenemedi"
}, },
"Failed to update autoconnect": { "Failed to update autoconnect": {
"Failed to update autoconnect": "Otomatik bağlanma güncellenemedi" "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": {
"Feels Like": "Hissedilen" "Feels Like": "Hissedilen"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "Dosya Zaten Mevcut" "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" "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": "" "Forget": "Unut"
}, },
"Forget Device": { "Forget Device": {
"Forget Device": "Aygıtı Unut" "Forget Device": "Aygıtı Unut"
@@ -1029,7 +1131,7 @@
"Format Legend": "Biçim Açıklaması" "Format Legend": "Biçim Açıklaması"
}, },
"Frequency": { "Frequency": {
"Frequency": "" "Frequency": "Frekans"
}, },
"Fun": { "Fun": {
"Fun": "Eğlence" "Fun": "Eğlence"
@@ -1065,7 +1167,7 @@
"Goth Corners": "Gotik Köşeler" "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": "" "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": {
"Graphics": "Grafik" "Graphics": "Grafik"
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)" "Height to Edge Gap (Exclusive Zone)": "Kenar Boşluğu Yüksekliği (Özel Bölge)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "Hex" "Hex": "Hex"
}, },
@@ -1110,16 +1215,16 @@
"High-fidelity palette that preserves source hues.": "Kaynak tonları koruyan yüksek sadakatli palet" "High-fidelity palette that preserves source hues.": "Kaynak tonları koruyan yüksek sadakatli palet"
}, },
"Hold Duration": { "Hold Duration": {
"Hold Duration": "" "Hold Duration": "Tutma Süresi"
}, },
"Hold longer to confirm": { "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": "" "Hold to Confirm Power Actions": "Güç Eylemlerini Onaylamak İçin Basılı Tutun"
}, },
"Hold to confirm (%1s)": { "Hold to confirm (%1s)": {
"Hold to confirm (%1s)": "" "Hold to confirm (%1s)": "Onaylamak için basılı tutun (%1s)"
}, },
"Hour": { "Hour": {
"Hour": "Saat" "Hour": "Saat"
@@ -1134,10 +1239,10 @@
"I Understand": "Anladım" "I Understand": "Anladım"
}, },
"IP": { "IP": {
"IP": "" "IP": "IP"
}, },
"IP Address:": { "IP Address:": {
"IP Address:": "" "IP Address:": "IP Adresi:"
}, },
"Icon Size": { "Icon Size": {
"Icon Size": "Simge Boyutu" "Icon Size": "Simge Boyutu"
@@ -1164,10 +1269,10 @@
"Image": "Resim" "Image": "Resim"
}, },
"Import": { "Import": {
"Import": "" "Import": "İçe Aktar"
}, },
"Import VPN": { "Import VPN": {
"Import VPN": "" "Import VPN": "VPN'i İçe Aktar"
}, },
"Include Transitions": { "Include Transitions": {
"Include Transitions": "Geçişleri Dahil Et" "Include Transitions": "Geçişleri Dahil Et"
@@ -1194,7 +1299,7 @@
"Install plugins from the DMS plugin registry": "DMS eklenti deposundan eklentiler yükle" "Install plugins from the DMS plugin registry": "DMS eklenti deposundan eklentiler yükle"
}, },
"Interface:": { "Interface:": {
"Interface:": "" "Interface:": "Arayüz:"
}, },
"Interlock Open": { "Interlock Open": {
"Interlock Open": "Kilit Açık" "Interlock Open": "Kilit Açık"
@@ -1284,7 +1389,13 @@
"Loading plugins...": "Eklentiler yükleniyor..." "Loading plugins...": "Eklentiler yükleniyor..."
}, },
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": "Yükleniyor..."
},
"Local": {
"Local": ""
},
"Location": {
"Location": ""
}, },
"Location Search": { "Location Search": {
"Location Search": "Konum Arama" "Location Search": "Konum Arama"
@@ -1314,10 +1425,10 @@
"Low Priority": "Düşük Öncelik" "Low Priority": "Düşük Öncelik"
}, },
"MAC": { "MAC": {
"MAC": "" "MAC": "MAC"
}, },
"MTU": { "MTU": {
"MTU": "" "MTU": "MTU"
}, },
"Manage and configure plugins for extending DMS functionality": { "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" "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" "Minute": "Dakika"
}, },
"Mode": { "Mode": {
"Mode": "" "Mode": "Mod"
}, },
"Mode:": { "Mode:": {
"Mode:": "Mod:" "Mode:": "Mod:"
@@ -1479,7 +1590,7 @@
"Network Speed Monitor": "Ağ Hız Monitörü" "Network Speed Monitor": "Ağ Hız Monitörü"
}, },
"Network Status": { "Network Status": {
"Network Status": "" "Network Status": "Ağ Durumu"
}, },
"Network download and upload speed display": { "Network download and upload speed display": {
"Network download and upload speed display": "Ağ indirme ve yükleme hız gösterimi" "Network download and upload speed display": "Ağ indirme ve yükleme hız gösterimi"
@@ -1500,7 +1611,7 @@
"Night Temperature": "Gece Sıcaklığı" "Night Temperature": "Gece Sıcaklığı"
}, },
"No": { "No": {
"No": "" "No": "Hayır"
}, },
"No Active Players": { "No Active Players": {
"No Active Players": "Aktif Oynatıcı Yok" "No Active Players": "Aktif Oynatıcı Yok"
@@ -1515,7 +1626,7 @@
"No Media": "Medya Yok" "No Media": "Medya Yok"
}, },
"No VPN profiles": { "No VPN profiles": {
"No VPN profiles": "" "No VPN profiles": "VPN profili yok"
}, },
"No VPN profiles found": { "No VPN profiles found": {
"No VPN profiles found": "VPN profilleri bulunamadı" "No VPN profiles found": "VPN profilleri bulunamadı"
@@ -1524,11 +1635,17 @@
"No Weather Data Available": "Hava Durumu Verileri Mevcut Değil" "No Weather Data Available": "Hava Durumu Verileri Mevcut Değil"
}, },
"No adapters": { "No adapters": {
"No adapters": "" "No adapters": "Bağdaştırıcı yok"
}, },
"No clipboard entries found": { "No clipboard entries found": {
"No clipboard entries found": "Pano girişleri bulunamadı" "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": {
"No files found": "Dosya bulunamadı" "No files found": "Dosya bulunamadı"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "Yazıcı Bulunamadı" "No printer found": "Yazıcı Bulunamadı"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "Hiçbiri" "None": "Hiçbiri"
}, },
@@ -1554,7 +1677,7 @@
"Normal Priority": "Normal Öncelik" "Normal Priority": "Normal Öncelik"
}, },
"Not connected": { "Not connected": {
"Not connected": "" "Not connected": "Bağlı değil"
}, },
"Notepad": { "Notepad": {
"Notepad": "Not Defteri" "Notepad": "Not Defteri"
@@ -1628,17 +1751,23 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "Metin bulmak için arama çubuğunu aç" "Open search bar to find text": "Metin bulmak için arama çubuğunu aç"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "Diğer" "Other": "Diğer"
}, },
"Outline Color": { "Outline Color": {
"Outline Color": "" "Outline Color": "Çerçeve Rengi"
}, },
"Outline Opacity": { "Outline Opacity": {
"Outline Opacity": "" "Outline Opacity": "Çerçeve Opaklığı"
}, },
"Outline Thickness": { "Outline Thickness": {
"Outline Thickness": "" "Outline Thickness": "Çerçeve Kalınlığı"
}, },
"Output Area Almost Full": { "Output Area Almost Full": {
"Output Area Almost Full": ıkış Alanı Neredeyse Dolu" "Output Area Almost Full": ıkış Alanı Neredeyse Dolu"
@@ -1653,13 +1782,13 @@
"Overview": "Genel Görünüm" "Overview": "Genel Görünüm"
}, },
"Overview of your network connections": { "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": {
"Overwrite": "Üstüne Yaz" "Overwrite": "Üstüne Yaz"
}, },
"PIN": { "PIN": {
"PIN": "" "PIN": "PİN"
}, },
"Padding": { "Padding": {
"Padding": "Dolgu" "Padding": "Dolgu"
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "Duraklatıldı" "Paused": "Duraklatıldı"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "Moda Özel Duvar Kağıtları" "Per-Mode Wallpapers": "Moda Özel Duvar Kağıtları"
}, },
@@ -1725,7 +1857,7 @@
"Play sounds for system events": "Sistem etkinlikleri için ses çal" "Play sounds for system events": "Sistem etkinlikleri için ses çal"
}, },
"Playback": { "Playback": {
"Playback": "" "Playback": "Oynatma"
}, },
"Plugged In": { "Plugged In": {
"Plugged In": "Bağlandı" "Plugged In": "Bağlandı"
@@ -1779,7 +1911,7 @@
"Power Profile OSD": "Güç Profili OSD" "Power Profile OSD": "Güç Profili OSD"
}, },
"Preference": { "Preference": {
"Preference": "" "Preference": "Tercih"
}, },
"Pressure": { "Pressure": {
"Pressure": "Basınç" "Pressure": "Basınç"
@@ -1797,7 +1929,19 @@
"Print Server not available": "Yazıcı Sunucusu Kullanılamıyor" "Print Server not available": "Yazıcı Sunucusu Kullanılamıyor"
}, },
"Printer": { "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": {
"Printers": "Yazıcılar" "Printers": "Yazıcılar"
@@ -1809,7 +1953,7 @@
"Privacy Indicator": "Gizlilik Göstergesi" "Privacy Indicator": "Gizlilik Göstergesi"
}, },
"Private Key Password": { "Private Key Password": {
"Private Key Password": "" "Private Key Password": "Özel Anahtar Parolası"
}, },
"Process": { "Process": {
"Process": "Süreç" "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." "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": "" "Protocol": "Protokol"
}, },
"Quick access to application launcher": { "Quick access to application launcher": {
"Quick access to application launcher": "Uygulama başlatıcısına hızlı erişim" "Quick access to application launcher": "Uygulama başlatıcısına hızlı erişim"
@@ -1845,7 +1989,7 @@
"Rain Chance": "Yağış İhtimali" "Rain Chance": "Yağış İhtimali"
}, },
"Rate": { "Rate": {
"Rate": "" "Rate": "Oran"
}, },
"Reason": { "Reason": {
"Reason": "Sebep" "Reason": "Sebep"
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "Son Kullanılan Uygulamalar" "Recently Used Apps": "Son Kullanılan Uygulamalar"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "Yenile" "Refresh": "Yenile"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "Eklentiyi Yeniden Yükle" "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" "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": "" "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": {
"Requires DWL compositor": "DWL kompozitör gerektirir" "Requires DWL compositor": "DWL kompozitör gerektirir"
@@ -1941,7 +2091,7 @@
"Saved": "Kaydedildi" "Saved": "Kaydedildi"
}, },
"Saved Configurations": { "Saved Configurations": {
"Saved Configurations": "" "Saved Configurations": "Kaydedilen Yapılandırmalar"
}, },
"Scale DankBar font sizes independently": { "Scale DankBar font sizes independently": {
"Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir" "Scale DankBar font sizes independently": "DankBar yazı tipi boyutlarını bağımsız olarak ölçeklendir"
@@ -1953,7 +2103,7 @@
"Scan": "Tara" "Scan": "Tara"
}, },
"Scanning...": { "Scanning...": {
"Scanning...": "" "Scanning...": "Taranıyor..."
}, },
"Science": { "Science": {
"Science": "Bilim" "Science": "Bilim"
@@ -1977,7 +2127,7 @@
"Search plugins...": "Eklentileri ara..." "Search plugins...": "Eklentileri ara..."
}, },
"Search widgets...": { "Search widgets...": {
"Search widgets...": "" "Search widgets...": "Widget ara..."
}, },
"Search...": { "Search...": {
"Search...": "Ara..." "Search...": "Ara..."
@@ -1986,10 +2136,10 @@
"Searching...": "Arıyor..." "Searching...": "Arıyor..."
}, },
"Secured": { "Secured": {
"Secured": "" "Secured": "Güvenli"
}, },
"Security": { "Security": {
"Security": "" "Security": "Güvenlik"
}, },
"Select Launcher Logo": { "Select Launcher Logo": {
"Select Launcher Logo": "Başlatıcı Logosu Seç" "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 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.": "" "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...": {
"Select an image file...": "Bir resim dosyası seçin..." "Select an image file...": "Bir resim dosyası seçin..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "Yazı tipi ağırlığını seçin" "Select font weight": "Yazı tipi ağırlığını seçin"
}, },
@@ -2037,7 +2193,7 @@
"Separator": "Ayraç" "Separator": "Ayraç"
}, },
"Server": { "Server": {
"Server": "" "Server": "Sunucu"
}, },
"Set different wallpapers for each connected monitor": { "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" "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 Log Out": ıkışı Göster"
}, },
"Show Occupied Workspaces Only": { "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": {
"Show Power Actions": "Güç Eylemlerini Göster" "Show Power Actions": "Güç Eylemlerini Göster"
@@ -2169,10 +2325,10 @@
"Shutdown": "Kapat" "Shutdown": "Kapat"
}, },
"Signal": { "Signal": {
"Signal": "" "Signal": "Sinyal"
}, },
"Signal:": { "Signal:": {
"Signal:": "" "Signal:": "Sinyal:"
}, },
"Size": { "Size": {
"Size": "Boyut" "Size": "Boyut"
@@ -2193,7 +2349,7 @@
"Spacing": "Boşluk" "Spacing": "Boşluk"
}, },
"Speed": { "Speed": {
"Speed": "" "Speed": "Hız"
}, },
"Spool Area Full": { "Spool Area Full": {
"Spool Area Full": "Aktarım Alanı Dolu" "Spool Area Full": "Aktarım Alanı Dolu"
@@ -2208,7 +2364,7 @@
"Start typing your notes here...": "Notunuzu buraya yazmaya başlayın..." "Start typing your notes here...": "Notunuzu buraya yazmaya başlayın..."
}, },
"State": { "State": {
"State": "" "State": "Durum"
}, },
"Status": { "Status": {
"Status": "Durum" "Status": "Durum"
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"Terminals - Always use Dark Theme": "Terminaller - Her zaman Karanlı Tema kullan" "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": {
"Text": "Metin" "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" "Toggle visibility of this bar configuration": "Bu bar yapılandırmasının görünürlüğünü değiştir"
}, },
"Toggling...": { "Toggling...": {
"Toggling...": "" "Toggling...": "Geçiş yapılıyor..."
}, },
"Tomorrow": { "Tomorrow": {
"Tomorrow": "Yarın" "Tomorrow": "Yarın"
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "Üst Bölüm" "Top Section": "Üst Bölüm"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "Geçiş Efekti" "Transition Effect": "Geçiş Efekti"
}, },
@@ -2388,13 +2553,13 @@
"Turn off monitors after": "Şu zaman sonra monitörleri kapat" "Turn off monitors after": "Şu zaman sonra monitörleri kapat"
}, },
"Unavailable": { "Unavailable": {
"Unavailable": "" "Unavailable": "Mevcut Değil"
}, },
"Uninstall Plugin": { "Uninstall Plugin": {
"Uninstall Plugin": "Eklentiyi Kaldır" "Uninstall Plugin": "Eklentiyi Kaldır"
}, },
"Unknown": { "Unknown": {
"Unknown": "" "Unknown": "Bilinmeyen"
}, },
"Unpin from Dock": { "Unpin from Dock": {
"Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır" "Unpin from Dock": "Dock'tan Sabitlemeyi Kaldır"
@@ -2484,16 +2649,16 @@
"VPN Connections": "VPN Bağlantıları" "VPN Connections": "VPN Bağlantıları"
}, },
"VPN Password": { "VPN Password": {
"VPN Password": "" "VPN Password": "VPN Parolası"
}, },
"VPN configuration updated": { "VPN configuration updated": {
"VPN configuration updated": "" "VPN configuration updated": "VPN ayarı güncellendi"
}, },
"VPN deleted": { "VPN deleted": {
"VPN deleted": "" "VPN deleted": "VPN silindi"
}, },
"VPN imported: ": { "VPN imported: ": {
"VPN imported: ": "" "VPN imported: ": "VPN içe aktarıldı: "
}, },
"VPN status and quick connect": { "VPN status and quick connect": {
"VPN status and quick connect": "VPN durumu ve hızlı bağlanma" "VPN status and quick connect": "VPN durumu ve hızlı bağlanma"
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "VRR: " "VRR: ": "VRR: "
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "Dikey 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" "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": "WPA/WPA2"
}, },
"Wallpaper": { "Wallpaper": {
"Wallpaper": "Duvar Kağıdı" "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." "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 Password": "Wi-Fi Parolası"
}, },
"WiFi": { "WiFi": {
"WiFi": "" "WiFi": "WiFi"
}, },
"WiFi Device": { "WiFi Device": {
"WiFi Device": "" "WiFi Device": "WiFi Aygıtı"
}, },
"WiFi disabled": { "WiFi disabled": {
"WiFi disabled": "WiFi devre dışı" "WiFi disabled": "WiFi devre dışı"
@@ -2589,7 +2757,7 @@
"Widget Management": "Widget Yönetimi" "Widget Management": "Widget Yönetimi"
}, },
"Widget Outline": { "Widget Outline": {
"Widget Outline": "" "Widget Outline": "Widget Çerçevesi"
}, },
"Widget Style": { "Widget Style": {
"Widget Style": "Widget Stili" "Widget Style": "Widget Stili"
@@ -2622,7 +2790,7 @@
"Workspace Switcher": "Çalışma Alanı Değiştirici" "Workspace Switcher": "Çalışma Alanı Değiştirici"
}, },
"Yes": { "Yes": {
"Yes": "" "Yes": "Evet"
}, },
"You have unsaved changes. Save before closing this tab?": { "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?" "You have unsaved changes. Save before closing this tab?": "Kaydedilmemiş değişiklikleriniz var. Sekmeyi kapatmadan önce kaydedelim mi?"

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1个字符" "%1 characters": "%1个字符"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%1 display(s)": {
"%1 display(s)": "%1 显示" "%1 display(s)": "%1 显示"
}, },
"%1 job(s)": {
"%1 job(s)": ""
},
"%1 printer(s)": {
"%1 printer(s)": ""
},
"%1 widgets": { "%1 widgets": {
"%1 widgets": "%1 小挂件" "%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?": {
"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": {
"About": "关于" "About": "关于"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "访问剪切板记录" "Access clipboard history": "访问剪切板记录"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "添加状态栏" "Add Bar": "添加状态栏"
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "添加小组件" "Add Widget": "添加小组件"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "CUPS 警告:缺少打印过滤器" "CUPS Missing Filter Warning": "CUPS 警告:缺少打印过滤器"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "摄像头" "Camera": "摄像头"
}, },
"Cancel": { "Cancel": {
"Cancel": "取消" "Cancel": "取消"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "电池容量" "Capacity": "电池容量"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "紧凑模式" "Compact Mode": "紧凑模式"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "合成器" "Compositor": "合成器"
}, },
"Configuration activated": { "Configuration activated": {
"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.": {
"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 Dir": "创建目录" "Create Dir": "创建目录"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "紧急通知" "Critical Priority": "紧急通知"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": {
"Derives colors that closely match the underlying image.": "提取与壁纸高度匹配的颜色。" "Derives colors that closely match the underlying image.": "提取与壁纸高度匹配的颜色。"
}, },
"Description": {
"Description": ""
},
"Desktop background images": { "Desktop background images": {
"Desktop background images": "桌面壁纸" "Desktop background images": "桌面壁纸"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"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": {
"Failed to cancel all jobs": "无法取消所有任务" "Failed to cancel all jobs": "无法取消所有任务"
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"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 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": {
"Failed to disconnect VPN": "断开 VPN 失败" "Failed to disconnect VPN": "断开 VPN 失败"
}, },
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "无法启用 Wi-Fi" "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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 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 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": {
"Failed to resume printer": "无法恢复打印机" "Failed to resume printer": "无法恢复打印机"
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"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": {
"Feels Like": "体感温度" "Feels Like": "体感温度"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "文件已存在" "File Already Exists": "文件已存在"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "与屏幕边缘的间距(独占区)" "Height to Edge Gap (Exclusive Zone)": "与屏幕边缘的间距(独占区)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "十六进制" "Hex": "十六进制"
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "位置搜索" "Location Search": "位置搜索"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"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": {
"No files found": "未找到文件" "No files found": "未找到文件"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "未找到打印机" "No printer found": "未找到打印机"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "无" "None": "无"
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "打开搜索栏以查找文本" "Open search bar to find text": "打开搜索栏以查找文本"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "其他" "Other": "其他"
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "暂停" "Paused": "暂停"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "按模式设置壁纸" "Per-Mode Wallpapers": "按模式设置壁纸"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "打印机" "Printers": "打印机"
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用的应用" "Recently Used Apps": "最近使用的应用"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "刷新" "Refresh": "刷新"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "重载插件" "Reload Plugin": "重载插件"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "选择一张图片..." "Select an image file...": "选择一张图片..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "选择字体粗细" "Select font weight": "选择字体粗细"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"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": {
"Text": "文本" "Text": "文本"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "顶部区域" "Top Section": "顶部区域"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "过渡效果" "Transition Effect": "过渡效果"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "可变刷新率: " "VRR: ": "可变刷新率: "
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "垂直 Deck" "Vertical Deck": "垂直 Deck"
}, },

View File

@@ -5,12 +5,21 @@
"%1 characters": { "%1 characters": {
"%1 characters": "%1 個字元" "%1 characters": "%1 個字元"
}, },
"%1 class(es)": {
"%1 class(es)": ""
},
"%1 connected": { "%1 connected": {
"%1 connected": "" "%1 connected": ""
}, },
"%1 display(s)": { "%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": "" "%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?": {
"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": {
"About": "關於" "About": "關於"
}, },
"Accept Jobs": {
"Accept Jobs": ""
},
"Accepting": {
"Accepting": ""
},
"Access clipboard history": { "Access clipboard history": {
"Access clipboard history": "剪貼簿歷史記錄" "Access clipboard history": "剪貼簿歷史記錄"
}, },
@@ -77,6 +98,9 @@
"Add Bar": { "Add Bar": {
"Add Bar": "" "Add Bar": ""
}, },
"Add Printer": {
"Add Printer": ""
},
"Add Widget": { "Add Widget": {
"Add Widget": "新增部件" "Add Widget": "新增部件"
}, },
@@ -377,12 +401,21 @@
"CUPS Missing Filter Warning": { "CUPS Missing Filter Warning": {
"CUPS Missing Filter Warning": "CUPS 缺少過濾器警告" "CUPS Missing Filter Warning": "CUPS 缺少過濾器警告"
}, },
"CUPS Print Server": {
"CUPS Print Server": ""
},
"Camera": { "Camera": {
"Camera": "相機" "Camera": "相機"
}, },
"Cancel": { "Cancel": {
"Cancel": "取消" "Cancel": "取消"
}, },
"Canceled": {
"Canceled": ""
},
"Capabilities": {
"Capabilities": ""
},
"Capacity": { "Capacity": {
"Capacity": "容量" "Capacity": "容量"
}, },
@@ -452,6 +485,9 @@
"Clear All History?": { "Clear All History?": {
"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": {
"Click Import to add a .ovpn or .conf": "" "Click Import to add a .ovpn or .conf": ""
}, },
@@ -512,12 +548,18 @@
"Compact Mode": { "Compact Mode": {
"Compact Mode": "緊湊模式" "Compact Mode": "緊湊模式"
}, },
"Completed": {
"Completed": ""
},
"Compositor": { "Compositor": {
"Compositor": "合成器" "Compositor": "合成器"
}, },
"Configuration activated": { "Configuration activated": {
"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.": {
"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 Dir": "新建資料夾" "Create Dir": "新建資料夾"
}, },
"Create Printer": {
"Create Printer": ""
},
"Creating...": {
"Creating...": ""
},
"Critical Priority": { "Critical Priority": {
"Critical Priority": "關鍵優先級" "Critical Priority": "關鍵優先級"
}, },
@@ -695,12 +743,21 @@
"Delete": { "Delete": {
"Delete": "" "Delete": ""
}, },
"Delete Class": {
"Delete Class": ""
},
"Delete Printer": {
"Delete Printer": ""
},
"Delete VPN": { "Delete VPN": {
"Delete VPN": "" "Delete VPN": ""
}, },
"Derives colors that closely match the underlying image.": { "Derives colors that closely match the underlying image.": {
"Derives colors that closely match the underlying image.": "提取與底層圖像高度匹配的顏色。" "Derives colors that closely match the underlying image.": "提取與底層圖像高度匹配的顏色。"
}, },
"Description": {
"Description": ""
},
"Desktop background images": { "Desktop background images": {
"Desktop background images": "桌面背景圖片" "Desktop background images": "桌面背景圖片"
}, },
@@ -917,6 +974,9 @@
"Failed to activate configuration": { "Failed to activate configuration": {
"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": {
"Failed to cancel all jobs": "無法取消所有工作" "Failed to cancel all jobs": "無法取消所有工作"
}, },
@@ -929,9 +989,21 @@
"Failed to connect to ": { "Failed to connect to ": {
"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 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": {
"Failed to disconnect VPN": "無法斷開 VPN" "Failed to disconnect VPN": "無法斷開 VPN"
}, },
@@ -944,18 +1016,36 @@
"Failed to enable WiFi": { "Failed to enable WiFi": {
"Failed to enable WiFi": "無法啟用 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 import VPN": "" "Failed to import VPN": ""
}, },
"Failed to load VPN config": { "Failed to load VPN config": {
"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 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 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": {
"Failed to resume printer": "印表機恢復失敗" "Failed to resume printer": "印表機恢復失敗"
}, },
@@ -974,9 +1064,21 @@
"Failed to update autoconnect": { "Failed to update autoconnect": {
"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": {
"Feels Like": "體感溫度" "Feels Like": "體感溫度"
}, },
"File": {
"File": ""
},
"File Already Exists": { "File Already Exists": {
"File Already Exists": "檔案已經存在" "File Already Exists": "檔案已經存在"
}, },
@@ -1091,6 +1193,9 @@
"Height to Edge Gap (Exclusive Zone)": { "Height to Edge Gap (Exclusive Zone)": {
"Height to Edge Gap (Exclusive Zone)": "邊緣間隙高度 (獨佔區域)" "Height to Edge Gap (Exclusive Zone)": "邊緣間隙高度 (獨佔區域)"
}, },
"Held": {
"Held": ""
},
"Hex": { "Hex": {
"Hex": "Hex" "Hex": "Hex"
}, },
@@ -1286,6 +1391,12 @@
"Loading...": { "Loading...": {
"Loading...": "" "Loading...": ""
}, },
"Local": {
"Local": ""
},
"Location": {
"Location": ""
},
"Location Search": { "Location Search": {
"Location Search": "位置搜尋" "Location Search": "位置搜尋"
}, },
@@ -1529,6 +1640,12 @@
"No clipboard entries found": { "No clipboard entries found": {
"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": {
"No files found": "沒有找到" "No files found": "沒有找到"
}, },
@@ -1547,6 +1664,12 @@
"No printer found": { "No printer found": {
"No printer found": "未找到印表機" "No printer found": "未找到印表機"
}, },
"No printers configured": {
"No printers configured": ""
},
"No printers found": {
"No printers found": ""
},
"None": { "None": {
"None": "無" "None": "無"
}, },
@@ -1628,6 +1751,12 @@
"Open search bar to find text": { "Open search bar to find text": {
"Open search bar to find text": "打開搜尋欄尋找文本" "Open search bar to find text": "打開搜尋欄尋找文本"
}, },
"Optional description": {
"Optional description": ""
},
"Optional location": {
"Optional location": ""
},
"Other": { "Other": {
"Other": "其他" "Other": "其他"
}, },
@@ -1685,6 +1814,9 @@
"Paused": { "Paused": {
"Paused": "暫停" "Paused": "暫停"
}, },
"Pending": {
"Pending": ""
},
"Per-Mode Wallpapers": { "Per-Mode Wallpapers": {
"Per-Mode Wallpapers": "以主題區分桌布" "Per-Mode Wallpapers": "以主題區分桌布"
}, },
@@ -1799,6 +1931,18 @@
"Printer": { "Printer": {
"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": {
"Printers": "印表機" "Printers": "印表機"
}, },
@@ -1859,9 +2003,15 @@
"Recently Used Apps": { "Recently Used Apps": {
"Recently Used Apps": "最近使用的應用程式" "Recently Used Apps": "最近使用的應用程式"
}, },
"Recommended available": {
"Recommended available": ""
},
"Refresh": { "Refresh": {
"Refresh": "重新整理" "Refresh": "重新整理"
}, },
"Reject Jobs": {
"Reject Jobs": ""
},
"Reload Plugin": { "Reload Plugin": {
"Reload Plugin": "重新載入插件" "Reload Plugin": "重新載入插件"
}, },
@@ -2009,6 +2159,12 @@
"Select an image file...": { "Select an image file...": {
"Select an image file...": "選擇一張圖片..." "Select an image file...": "選擇一張圖片..."
}, },
"Select device...": {
"Select device...": ""
},
"Select driver...": {
"Select driver...": ""
},
"Select font weight": { "Select font weight": {
"Select font weight": "選擇字體粗細" "Select font weight": "選擇字體粗細"
}, },
@@ -2303,6 +2459,12 @@
"Terminals - Always use Dark Theme": { "Terminals - Always use Dark Theme": {
"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": {
"Text": "文字" "Text": "文字"
}, },
@@ -2381,6 +2543,9 @@
"Top Section": { "Top Section": {
"Top Section": "上方區塊" "Top Section": "上方區塊"
}, },
"Total Jobs": {
"Total Jobs": ""
},
"Transition Effect": { "Transition Effect": {
"Transition Effect": "切換動畫效果" "Transition Effect": "切換動畫效果"
}, },
@@ -2501,6 +2666,9 @@
"VRR: ": { "VRR: ": {
"VRR: ": "VRR" "VRR: ": "VRR"
}, },
"Version": {
"Version": ""
},
"Vertical Deck": { "Vertical Deck": {
"Vertical Deck": "垂直甲板" "Vertical Deck": "垂直甲板"
}, },

View File

@@ -13,6 +13,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "%1 class(es)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "%1 connected", "term": "%1 connected",
"translation": "", "translation": "",
@@ -27,6 +34,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "%1 job(s)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "%1 printer(s)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "%1 widgets", "term": "%1 widgets",
"translation": "", "translation": "",
@@ -97,6 +118,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "API",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Aborted",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "About", "term": "About",
"translation": "", "translation": "",
@@ -104,6 +139,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Accept Jobs",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Accepting",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Access clipboard history", "term": "Access clipboard history",
"translation": "", "translation": "",
@@ -181,6 +230,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Add Printer",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Add Widget", "term": "Add Widget",
"translation": "", "translation": "",
@@ -811,6 +867,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "CUPS Print Server",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Camera", "term": "Camera",
"translation": "", "translation": "",
@@ -825,6 +888,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Canceled",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Capabilities",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Capacity", "term": "Capacity",
"translation": "", "translation": "",
@@ -986,6 +1063,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Clear All Jobs",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Click Import to add a .ovpn or .conf", "term": "Click Import to add a .ovpn or .conf",
"translation": "", "translation": "",
@@ -1126,6 +1210,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Completed",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Compositor", "term": "Compositor",
"translation": "", "translation": "",
@@ -1140,6 +1231,13 @@
"reference": "", "reference": "",
"comment": "" "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.", "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.",
"translation": "", "translation": "",
@@ -1301,6 +1399,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Create Printer",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Creating...",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Critical Priority", "term": "Critical Priority",
"translation": "", "translation": "",
@@ -1525,6 +1637,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Delete Class",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Delete Printer",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Delete VPN", "term": "Delete VPN",
"translation": "", "translation": "",
@@ -1539,6 +1665,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Description",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Desktop background images", "term": "Desktop background images",
"translation": "", "translation": "",
@@ -2043,6 +2176,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to add printer to class",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to cancel all jobs", "term": "Failed to cancel all jobs",
"translation": "", "translation": "",
@@ -2071,6 +2211,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to create printer",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to delete VPN", "term": "Failed to delete VPN",
"translation": "", "translation": "",
@@ -2078,6 +2225,27 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Failed to disconnect VPN",
"translation": "", "translation": "",
@@ -2106,6 +2274,20 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Failed to import VPN",
"translation": "", "translation": "",
@@ -2120,6 +2302,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to move job",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to pause printer", "term": "Failed to pause printer",
"translation": "", "translation": "",
@@ -2127,6 +2316,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Failed to print test page",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Failed to remove device", "term": "Failed to remove device",
"translation": "", "translation": "",
@@ -2134,6 +2330,20 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Failed to resume printer",
"translation": "", "translation": "",
@@ -2176,6 +2386,27 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Feels Like",
"translation": "", "translation": "",
@@ -2183,6 +2414,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "File",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "File Already Exists", "term": "File Already Exists",
"translation": "", "translation": "",
@@ -2442,6 +2680,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Held",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Hex", "term": "Hex",
"translation": "", "translation": "",
@@ -2897,6 +3142,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Local",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Location",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Location Search", "term": "Location Search",
"translation": "", "translation": "",
@@ -3450,6 +3709,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "No devices found",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "No drivers found",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "No files found", "term": "No files found",
"translation": "", "translation": "",
@@ -3492,6 +3765,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "No printers configured",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "No printers found",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "None", "term": "None",
"translation": "", "translation": "",
@@ -3681,6 +3968,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Optional description",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Optional location",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Other", "term": "Other",
"translation": "", "translation": "",
@@ -3814,6 +4115,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Pending",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Per-Mode Wallpapers", "term": "Per-Mode Wallpapers",
"translation": "", "translation": "",
@@ -4080,6 +4388,34 @@
"reference": "", "reference": "",
"comment": "" "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", "term": "Printers",
"translation": "", "translation": "",
@@ -4220,6 +4556,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Recommended available",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Refresh", "term": "Refresh",
"translation": "", "translation": "",
@@ -4227,6 +4570,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Reject Jobs",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Reload Plugin", "term": "Reload Plugin",
"translation": "", "translation": "",
@@ -4577,6 +4927,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Select device...",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Select driver...",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Select font weight", "term": "Select font weight",
"translation": "", "translation": "",
@@ -5249,6 +5613,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Test Page",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Test page sent to printer",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Text", "term": "Text",
"translation": "", "translation": "",
@@ -5431,6 +5809,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Total Jobs",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Transition Effect", "term": "Transition Effect",
"translation": "", "translation": "",
@@ -5697,6 +6082,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Version",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Vertical Deck", "term": "Vertical Deck",
"translation": "", "translation": "",