mirror of
https://github.com/AvengeMedia/DankMaterialShell.git
synced 2026-05-08 13:32:05 -04:00
Compare commits
2 Commits
1021a210cf
...
blur
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6e6416c8ba | ||
|
|
a0b2debd7e |
@@ -1,40 +0,0 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
|
||||
"github.com/AvengeMedia/DankMaterialShell/core/internal/blur"
|
||||
"github.com/spf13/cobra"
|
||||
)
|
||||
|
||||
var blurCmd = &cobra.Command{
|
||||
Use: "blur",
|
||||
Short: "Background blur utilities",
|
||||
}
|
||||
|
||||
var blurCheckCmd = &cobra.Command{
|
||||
Use: "check",
|
||||
Short: "Check if the compositor supports background blur (ext-background-effect-v1)",
|
||||
Args: cobra.NoArgs,
|
||||
Run: runBlurCheck,
|
||||
}
|
||||
|
||||
func init() {
|
||||
blurCmd.AddCommand(blurCheckCmd)
|
||||
}
|
||||
|
||||
func runBlurCheck(cmd *cobra.Command, args []string) {
|
||||
supported, err := blur.ProbeSupport()
|
||||
if err != nil {
|
||||
fmt.Fprintf(os.Stderr, "Error: %v\n", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
|
||||
switch supported {
|
||||
case true:
|
||||
fmt.Println("supported")
|
||||
default:
|
||||
fmt.Println("unsupported")
|
||||
}
|
||||
}
|
||||
@@ -525,6 +525,5 @@ func getCommonCommands() []*cobra.Command {
|
||||
configCmd,
|
||||
dlCmd,
|
||||
randrCmd,
|
||||
blurCmd,
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,35 +0,0 @@
|
||||
package blur
|
||||
|
||||
import (
|
||||
wlhelpers "github.com/AvengeMedia/DankMaterialShell/core/internal/wayland/client"
|
||||
client "github.com/AvengeMedia/DankMaterialShell/core/pkg/go-wayland/wayland/client"
|
||||
)
|
||||
|
||||
const extBackgroundEffectInterface = "ext_background_effect_manager_v1"
|
||||
|
||||
func ProbeSupport() (bool, error) {
|
||||
display, err := client.Connect("")
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
defer display.Context().Close()
|
||||
|
||||
registry, err := display.GetRegistry()
|
||||
if err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
found := false
|
||||
registry.SetGlobalHandler(func(e client.RegistryGlobalEvent) {
|
||||
switch e.Interface {
|
||||
case extBackgroundEffectInterface:
|
||||
found = true
|
||||
}
|
||||
})
|
||||
|
||||
if err := wlhelpers.Roundtrip(display, display.Context()); err != nil {
|
||||
return false, err
|
||||
}
|
||||
|
||||
return found, nil
|
||||
}
|
||||
@@ -137,7 +137,7 @@ bind = SUPER, bracketright, layoutmsg, preselect r
|
||||
|
||||
# === Sizing & Layout ===
|
||||
bind = SUPER, R, layoutmsg, togglesplit
|
||||
bind = SUPER CTRL, F, resizeactive, exact 100% 100%
|
||||
bind = SUPER CTRL, F, resizeactive, exact 100%
|
||||
|
||||
# === Move/resize windows with mainMod + LMB/RMB and dragging ===
|
||||
bindmd = SUPER, mouse:272, Move window, movewindow
|
||||
|
||||
@@ -94,7 +94,6 @@ windowrule = tile on, match:class ^(gnome-control-center)$
|
||||
windowrule = tile on, match:class ^(pavucontrol)$
|
||||
windowrule = tile on, match:class ^(nm-connection-editor)$
|
||||
|
||||
windowrule = float on, match:class ^(org\.gnome\.Calculator)$
|
||||
windowrule = float on, match:class ^(gnome-calculator)$
|
||||
windowrule = float on, match:class ^(galculator)$
|
||||
windowrule = float on, match:class ^(blueman-manager)$
|
||||
|
||||
@@ -444,21 +444,20 @@ func GetFocusedMonitor() string {
|
||||
|
||||
type outputInfo struct {
|
||||
x, y int32
|
||||
scale float64
|
||||
transform int32
|
||||
}
|
||||
|
||||
func getAllOutputInfos() map[string]*outputInfo {
|
||||
func getOutputInfo(outputName string) (*outputInfo, bool) {
|
||||
display, err := client.Connect("")
|
||||
if err != nil {
|
||||
return nil
|
||||
return nil, false
|
||||
}
|
||||
ctx := display.Context()
|
||||
defer ctx.Close()
|
||||
|
||||
registry, err := display.GetRegistry()
|
||||
if err != nil {
|
||||
return nil
|
||||
return nil, false
|
||||
}
|
||||
|
||||
var outputManager *wlr_output_management.ZwlrOutputManagerV1
|
||||
@@ -477,17 +476,16 @@ func getAllOutputInfos() map[string]*outputInfo {
|
||||
})
|
||||
|
||||
if err := wlhelpers.Roundtrip(display, ctx); err != nil {
|
||||
return nil
|
||||
return nil, false
|
||||
}
|
||||
|
||||
if outputManager == nil {
|
||||
return nil
|
||||
return nil, false
|
||||
}
|
||||
|
||||
type headState struct {
|
||||
name string
|
||||
x, y int32
|
||||
scale float64
|
||||
transform int32
|
||||
}
|
||||
heads := make(map[*wlr_output_management.ZwlrOutputHeadV1]*headState)
|
||||
@@ -503,9 +501,6 @@ func getAllOutputInfos() map[string]*outputInfo {
|
||||
state.x = pe.X
|
||||
state.y = pe.Y
|
||||
})
|
||||
e.Head.SetScaleHandler(func(se wlr_output_management.ZwlrOutputHeadV1ScaleEvent) {
|
||||
state.scale = se.Scale
|
||||
})
|
||||
e.Head.SetTransformHandler(func(te wlr_output_management.ZwlrOutputHeadV1TransformEvent) {
|
||||
state.transform = te.Transform
|
||||
})
|
||||
@@ -516,32 +511,21 @@ func getAllOutputInfos() map[string]*outputInfo {
|
||||
|
||||
for !done {
|
||||
if err := ctx.Dispatch(); err != nil {
|
||||
return nil
|
||||
return nil, false
|
||||
}
|
||||
}
|
||||
|
||||
result := make(map[string]*outputInfo, len(heads))
|
||||
for _, state := range heads {
|
||||
if state.name == "" {
|
||||
continue
|
||||
}
|
||||
result[state.name] = &outputInfo{
|
||||
x: state.x,
|
||||
y: state.y,
|
||||
scale: state.scale,
|
||||
transform: state.transform,
|
||||
if state.name == outputName {
|
||||
return &outputInfo{
|
||||
x: state.x,
|
||||
y: state.y,
|
||||
transform: state.transform,
|
||||
}, true
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
func getOutputInfo(outputName string) (*outputInfo, bool) {
|
||||
infos := getAllOutputInfos()
|
||||
if infos == nil {
|
||||
return nil, false
|
||||
}
|
||||
info, ok := infos[outputName]
|
||||
return info, ok
|
||||
return nil, false
|
||||
}
|
||||
|
||||
func getDWLActiveWindow() (*WindowGeometry, error) {
|
||||
|
||||
@@ -2,7 +2,6 @@ package screenshot
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"math"
|
||||
"sync"
|
||||
|
||||
"github.com/AvengeMedia/DankMaterialShell/core/internal/log"
|
||||
@@ -305,20 +304,22 @@ func (s *Screenshoter) captureAllScreens() (*CaptureResult, error) {
|
||||
if len(outputs) == 0 {
|
||||
return nil, fmt.Errorf("no outputs available")
|
||||
}
|
||||
|
||||
if len(outputs) == 1 {
|
||||
return s.captureWholeOutput(outputs[0])
|
||||
}
|
||||
|
||||
wlrInfos := getAllOutputInfos()
|
||||
|
||||
type pendingOutput struct {
|
||||
// Capture all outputs first to get actual buffer sizes
|
||||
type capturedOutput struct {
|
||||
output *WaylandOutput
|
||||
result *CaptureResult
|
||||
logX float64
|
||||
logY float64
|
||||
scale float64
|
||||
physX int
|
||||
physY int
|
||||
}
|
||||
var pending []pendingOutput
|
||||
maxScale := 1.0
|
||||
captured := make([]capturedOutput, 0, len(outputs))
|
||||
|
||||
var minX, minY, maxX, maxY int
|
||||
first := true
|
||||
|
||||
for _, output := range outputs {
|
||||
result, err := s.captureWholeOutput(output)
|
||||
@@ -327,74 +328,50 @@ func (s *Screenshoter) captureAllScreens() (*CaptureResult, error) {
|
||||
continue
|
||||
}
|
||||
|
||||
logX, logY := float64(output.x), float64(output.y)
|
||||
outX, outY := output.x, output.y
|
||||
scale := float64(output.scale)
|
||||
|
||||
switch DetectCompositor() {
|
||||
case CompositorHyprland:
|
||||
if hx, hy, _, _, ok := GetHyprlandMonitorGeometry(output.name); ok {
|
||||
logX, logY = float64(hx), float64(hy)
|
||||
outX, outY = hx, hy
|
||||
}
|
||||
if hs := GetHyprlandMonitorScale(output.name); hs > 0 {
|
||||
scale = hs
|
||||
if s := GetHyprlandMonitorScale(output.name); s > 0 {
|
||||
scale = s
|
||||
}
|
||||
default:
|
||||
if wlrInfos != nil {
|
||||
if info, ok := wlrInfos[output.name]; ok {
|
||||
logX, logY = float64(info.x), float64(info.y)
|
||||
if info.scale > 0 {
|
||||
scale = info.scale
|
||||
}
|
||||
}
|
||||
case CompositorDWL:
|
||||
if info, ok := getOutputInfo(output.name); ok {
|
||||
outX, outY = info.x, info.y
|
||||
}
|
||||
}
|
||||
|
||||
if scale <= 0 {
|
||||
scale = 1.0
|
||||
}
|
||||
|
||||
pending = append(pending, pendingOutput{result: result, logX: logX, logY: logY, scale: scale})
|
||||
if scale > maxScale {
|
||||
maxScale = scale
|
||||
}
|
||||
}
|
||||
physX := int(float64(outX) * scale)
|
||||
physY := int(float64(outY) * scale)
|
||||
|
||||
if len(pending) == 0 {
|
||||
return nil, fmt.Errorf("failed to capture any outputs")
|
||||
}
|
||||
if len(pending) == 1 {
|
||||
return pending[0].result, nil
|
||||
}
|
||||
captured = append(captured, capturedOutput{
|
||||
output: output,
|
||||
result: result,
|
||||
physX: physX,
|
||||
physY: physY,
|
||||
})
|
||||
|
||||
type layoutEntry struct {
|
||||
result *CaptureResult
|
||||
canvasX int
|
||||
canvasY int
|
||||
canvasW int
|
||||
canvasH int
|
||||
}
|
||||
entries := make([]layoutEntry, len(pending))
|
||||
var minX, minY, maxX, maxY int
|
||||
right := physX + result.Buffer.Width
|
||||
bottom := physY + result.Buffer.Height
|
||||
|
||||
for i, p := range pending {
|
||||
cx := int(math.Round(p.logX * maxScale))
|
||||
cy := int(math.Round(p.logY * maxScale))
|
||||
cw := int(math.Round(float64(p.result.Buffer.Width) * maxScale / p.scale))
|
||||
ch := int(math.Round(float64(p.result.Buffer.Height) * maxScale / p.scale))
|
||||
|
||||
entries[i] = layoutEntry{result: p.result, canvasX: cx, canvasY: cy, canvasW: cw, canvasH: ch}
|
||||
|
||||
right := cx + cw
|
||||
bottom := cy + ch
|
||||
if i == 0 {
|
||||
minX, minY, maxX, maxY = cx, cy, right, bottom
|
||||
if first {
|
||||
minX, minY = physX, physY
|
||||
maxX, maxY = right, bottom
|
||||
first = false
|
||||
continue
|
||||
}
|
||||
if cx < minX {
|
||||
minX = cx
|
||||
|
||||
if physX < minX {
|
||||
minX = physX
|
||||
}
|
||||
if cy < minY {
|
||||
minY = cy
|
||||
if physY < minY {
|
||||
minY = physY
|
||||
}
|
||||
if right > maxX {
|
||||
maxX = right
|
||||
@@ -404,26 +381,35 @@ func (s *Screenshoter) captureAllScreens() (*CaptureResult, error) {
|
||||
}
|
||||
}
|
||||
|
||||
if len(captured) == 0 {
|
||||
return nil, fmt.Errorf("failed to capture any outputs")
|
||||
}
|
||||
|
||||
if len(captured) == 1 {
|
||||
return captured[0].result, nil
|
||||
}
|
||||
|
||||
totalW := maxX - minX
|
||||
totalH := maxY - minY
|
||||
composite, err := CreateShmBuffer(totalW, totalH, totalW*4)
|
||||
|
||||
compositeStride := totalW * 4
|
||||
composite, err := CreateShmBuffer(totalW, totalH, compositeStride)
|
||||
if err != nil {
|
||||
for _, e := range entries {
|
||||
e.result.Buffer.Close()
|
||||
for _, c := range captured {
|
||||
c.result.Buffer.Close()
|
||||
}
|
||||
return nil, fmt.Errorf("create composite buffer: %w", err)
|
||||
}
|
||||
|
||||
composite.Clear()
|
||||
|
||||
var format uint32
|
||||
for _, e := range entries {
|
||||
for _, c := range captured {
|
||||
if format == 0 {
|
||||
format = e.result.Format
|
||||
format = c.result.Format
|
||||
}
|
||||
s.blitBufferScaled(composite, e.result.Buffer,
|
||||
e.canvasX-minX, e.canvasY-minY, e.canvasW, e.canvasH,
|
||||
e.result.YInverted)
|
||||
e.result.Buffer.Close()
|
||||
s.blitBuffer(composite, c.result.Buffer, c.physX-minX, c.physY-minY, c.result.YInverted)
|
||||
c.result.Buffer.Close()
|
||||
}
|
||||
|
||||
return &CaptureResult{
|
||||
@@ -433,44 +419,32 @@ func (s *Screenshoter) captureAllScreens() (*CaptureResult, error) {
|
||||
}, nil
|
||||
}
|
||||
|
||||
func (s *Screenshoter) blitBufferScaled(dst, src *ShmBuffer, dstX, dstY, dstW, dstH int, yInverted bool) {
|
||||
if dstW <= 0 || dstH <= 0 {
|
||||
return
|
||||
}
|
||||
|
||||
func (s *Screenshoter) blitBuffer(dst, src *ShmBuffer, dstX, dstY int, yInverted bool) {
|
||||
srcData := src.Data()
|
||||
dstData := dst.Data()
|
||||
|
||||
for dy := 0; dy < dstH; dy++ {
|
||||
canvasY := dstY + dy
|
||||
if canvasY < 0 || canvasY >= dst.Height {
|
||||
continue
|
||||
}
|
||||
|
||||
srcY := dy * src.Height / dstH
|
||||
for srcY := 0; srcY < src.Height; srcY++ {
|
||||
actualSrcY := srcY
|
||||
if yInverted {
|
||||
srcY = src.Height - 1 - srcY
|
||||
actualSrcY = src.Height - 1 - srcY
|
||||
}
|
||||
if srcY < 0 || srcY >= src.Height {
|
||||
|
||||
dy := dstY + srcY
|
||||
if dy < 0 || dy >= dst.Height {
|
||||
continue
|
||||
}
|
||||
|
||||
srcRowOff := srcY * src.Stride
|
||||
dstRowOff := canvasY * dst.Stride
|
||||
srcRowOff := actualSrcY * src.Stride
|
||||
dstRowOff := dy * dst.Stride
|
||||
|
||||
for dx := 0; dx < dstW; dx++ {
|
||||
canvasX := dstX + dx
|
||||
if canvasX < 0 || canvasX >= dst.Width {
|
||||
continue
|
||||
}
|
||||
|
||||
srcX := dx * src.Width / dstW
|
||||
if srcX >= src.Width {
|
||||
for srcX := 0; srcX < src.Width; srcX++ {
|
||||
dx := dstX + srcX
|
||||
if dx < 0 || dx >= dst.Width {
|
||||
continue
|
||||
}
|
||||
|
||||
si := srcRowOff + srcX*4
|
||||
di := dstRowOff + canvasX*4
|
||||
di := dstRowOff + dx*4
|
||||
|
||||
if si+3 >= len(srcData) || di+3 >= len(dstData) {
|
||||
continue
|
||||
|
||||
@@ -369,7 +369,9 @@ Item {
|
||||
}
|
||||
|
||||
function previous(): void {
|
||||
MprisController.previousOrRewind();
|
||||
if (MprisController.activePlayer && MprisController.activePlayer.canGoPrevious) {
|
||||
MprisController.activePlayer.previous();
|
||||
}
|
||||
}
|
||||
|
||||
function next(): void {
|
||||
|
||||
@@ -31,7 +31,7 @@ Item {
|
||||
property real animationOffset: Theme.spacingL
|
||||
property list<real> animationEnterCurve: Theme.expressiveCurves.expressiveDefaultSpatial
|
||||
property list<real> animationExitCurve: Theme.expressiveCurves.emphasized
|
||||
property color backgroundColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
||||
property color backgroundColor: Theme.surfaceContainer
|
||||
property color borderColor: Theme.outlineMedium
|
||||
property real borderWidth: 0
|
||||
property real cornerRadius: Theme.cornerRadius
|
||||
|
||||
@@ -132,7 +132,7 @@ DankModal {
|
||||
|
||||
modalWidth: 680
|
||||
modalHeight: contentLoader.item ? contentLoader.item.implicitHeight + Theme.spacingM * 2 : 680
|
||||
backgroundColor: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
||||
backgroundColor: Theme.surfaceContainer
|
||||
cornerRadius: Theme.cornerRadius
|
||||
borderColor: Theme.outlineMedium
|
||||
borderWidth: 1
|
||||
|
||||
@@ -311,7 +311,7 @@ FocusScope {
|
||||
|
||||
Item {
|
||||
anchors.fill: parent
|
||||
visible: !editMode && !(root.parentModal?.isClosing ?? false)
|
||||
visible: !editMode
|
||||
|
||||
Item {
|
||||
id: footerBar
|
||||
@@ -737,6 +737,8 @@ FocusScope {
|
||||
Item {
|
||||
width: parent.width
|
||||
height: parent.height - searchField.height - categoryRow.height - fileFilterRow.height - actionPanel.height - Theme.spacingXS * ((categoryRow.visible ? 1 : 0) + (fileFilterRow.visible ? 1 : 0) + 2)
|
||||
opacity: root.parentModal?.isClosing ? 0 : 1
|
||||
|
||||
ResultsList {
|
||||
id: resultsList
|
||||
anchors.fill: parent
|
||||
|
||||
@@ -324,8 +324,6 @@ Item {
|
||||
height: 24
|
||||
z: 100
|
||||
visible: {
|
||||
if (BlurService.enabled)
|
||||
return false;
|
||||
if (mainListView.contentHeight <= mainListView.height)
|
||||
return false;
|
||||
var atBottom = mainListView.contentY >= mainListView.contentHeight - mainListView.height + mainListView.originY - 5;
|
||||
@@ -451,7 +449,7 @@ Item {
|
||||
case "apps":
|
||||
return "apps";
|
||||
default:
|
||||
return "search_off";
|
||||
return root.controller?.searchQuery?.length > 0 ? "search_off" : "search";
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -487,9 +485,9 @@ Item {
|
||||
case "plugins":
|
||||
return hasQuery ? I18n.tr("No plugin results") : I18n.tr("Browse or search plugins");
|
||||
case "apps":
|
||||
return I18n.tr("No apps found");
|
||||
return hasQuery ? I18n.tr("No apps found") : I18n.tr("Type to search apps");
|
||||
default:
|
||||
return I18n.tr("No results found");
|
||||
return hasQuery ? I18n.tr("No results found") : I18n.tr("Type to search");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -133,7 +133,7 @@ DankPopout {
|
||||
QtObject {
|
||||
id: modalAdapter
|
||||
property bool spotlightOpen: appDrawerPopout.shouldBeVisible
|
||||
readonly property bool isClosing: !appDrawerPopout.shouldBeVisible
|
||||
property bool isClosing: false
|
||||
|
||||
function hide() {
|
||||
appDrawerPopout.close();
|
||||
|
||||
@@ -34,7 +34,7 @@ PluginComponent {
|
||||
id: detailRoot
|
||||
implicitHeight: detailColumn.implicitHeight + Theme.spacingM * 2
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.withAlpha(Theme.surfaceContainerHigh, Theme.popupTransparency)
|
||||
color: Theme.surfaceContainerHigh
|
||||
|
||||
DankActionButton {
|
||||
anchors.top: parent.top
|
||||
@@ -252,7 +252,7 @@ PluginComponent {
|
||||
width: parent ? parent.width : 300
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.surfaceLight
|
||||
color: Theme.surfaceContainerHighest
|
||||
border.width: 1
|
||||
border.color: Theme.outlineLight
|
||||
opacity: 1.0
|
||||
|
||||
@@ -33,7 +33,7 @@ Row {
|
||||
closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside
|
||||
|
||||
background: Rectangle {
|
||||
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
||||
color: Theme.surfaceContainer
|
||||
border.color: Theme.primarySelected
|
||||
border.width: 0
|
||||
radius: Theme.cornerRadius
|
||||
|
||||
@@ -207,9 +207,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
color: deviceMouseArea.containsMouse ? Theme.primaryHoverLight : Theme.surfaceLight
|
||||
border.color: modelData === AudioService.source ? Theme.primary : Theme.outlineLight
|
||||
border.width: modelData === AudioService.source ? 2 : 1
|
||||
color: deviceMouseArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: modelData === AudioService.source ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: 0
|
||||
|
||||
Row {
|
||||
anchors.left: parent.left
|
||||
|
||||
@@ -218,9 +218,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
color: deviceMouseArea.containsMouse ? Theme.primaryHoverLight : Theme.surfaceLight
|
||||
border.color: modelData === AudioService.sink ? Theme.primary : Theme.outlineLight
|
||||
border.width: modelData === AudioService.sink ? 2 : 1
|
||||
color: deviceMouseArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: modelData === AudioService.sink ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: 0
|
||||
|
||||
DankRipple {
|
||||
id: deviceRipple
|
||||
@@ -397,9 +397,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.surfaceLight
|
||||
border.color: modelData === AudioService.sink ? Theme.primary : Theme.outlineLight
|
||||
border.width: modelData === AudioService.sink ? 2 : 1
|
||||
color: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: modelData === AudioService.sink ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: 0
|
||||
|
||||
Row {
|
||||
anchors.left: parent.left
|
||||
|
||||
@@ -129,9 +129,8 @@ Rectangle {
|
||||
width: (parent.width - Theme.spacingM) / 2
|
||||
height: 64
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.surfaceLight
|
||||
border.color: Theme.outlineLight
|
||||
border.width: 1
|
||||
color: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.width: 0
|
||||
|
||||
Column {
|
||||
anchors.centerIn: parent
|
||||
@@ -165,9 +164,8 @@ Rectangle {
|
||||
width: (parent.width - Theme.spacingM) / 2
|
||||
height: 64
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.surfaceLight
|
||||
border.color: Theme.outlineLight
|
||||
border.width: 1
|
||||
color: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.width: 0
|
||||
|
||||
Column {
|
||||
anchors.centerIn: parent
|
||||
|
||||
@@ -153,7 +153,7 @@ Item {
|
||||
width: 320
|
||||
height: contentColumn.implicitHeight + Theme.spacingL * 2
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
||||
color: Theme.surfaceContainer
|
||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.08)
|
||||
border.width: 0
|
||||
opacity: modalVisible ? 1 : 0
|
||||
|
||||
@@ -229,6 +229,7 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
border.width: 0
|
||||
|
||||
Component.onCompleted: {
|
||||
if (!isConnected)
|
||||
@@ -242,8 +243,8 @@ Rectangle {
|
||||
if (isConnecting)
|
||||
return Qt.rgba(Theme.warning.r, Theme.warning.g, Theme.warning.b, 0.12);
|
||||
if (deviceMouseArea.containsMouse)
|
||||
return Theme.primaryHoverLight;
|
||||
return Theme.surfaceLight;
|
||||
return Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08);
|
||||
return Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency);
|
||||
}
|
||||
|
||||
border.color: {
|
||||
@@ -251,9 +252,8 @@ Rectangle {
|
||||
return Theme.warning;
|
||||
if (isConnected)
|
||||
return Theme.primary;
|
||||
return Theme.outlineLight;
|
||||
return Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12);
|
||||
}
|
||||
border.width: (isConnecting || isConnected) ? 2 : 1
|
||||
|
||||
Row {
|
||||
anchors.left: parent.left
|
||||
@@ -490,9 +490,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 50
|
||||
radius: Theme.cornerRadius
|
||||
color: availableMouseArea.containsMouse && isInteractive ? Theme.primaryHoverLight : Theme.surfaceLight
|
||||
border.color: Theme.outlineLight
|
||||
border.width: 1
|
||||
color: availableMouseArea.containsMouse && isInteractive ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: 0
|
||||
opacity: isInteractive ? 1 : 0.6
|
||||
|
||||
Row {
|
||||
|
||||
@@ -79,9 +79,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: 80
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.surfaceLight
|
||||
border.color: modelData.mount === currentMountPath ? Theme.primary : Theme.outlineLight
|
||||
border.width: modelData.mount === currentMountPath ? 2 : 1
|
||||
color: Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: modelData.mount === currentMountPath ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: modelData.mount === currentMountPath ? 2 : 0
|
||||
|
||||
Row {
|
||||
anchors.left: parent.left
|
||||
|
||||
@@ -308,9 +308,9 @@ Rectangle {
|
||||
width: parent.width
|
||||
height: wiredContentRow.implicitHeight + Theme.spacingM * 2
|
||||
radius: Theme.cornerRadius
|
||||
color: wiredNetworkMouseArea.containsMouse ? Theme.primaryHoverLight : Theme.surfaceLight
|
||||
border.color: isActive ? Theme.primary : Theme.outlineLight
|
||||
border.width: isActive ? 2 : 1
|
||||
color: wiredNetworkMouseArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: Theme.primary
|
||||
border.width: 0
|
||||
|
||||
Row {
|
||||
id: wiredContentRow
|
||||
@@ -565,9 +565,9 @@ Rectangle {
|
||||
width: wifiContent.width
|
||||
height: wifiContentRow.implicitHeight + Theme.spacingM * 2
|
||||
radius: Theme.cornerRadius
|
||||
color: networkMouseArea.containsMouse ? Theme.primaryHoverLight : Theme.surfaceLight
|
||||
border.color: wifiDelegate.isConnected ? Theme.primary : Theme.outlineLight
|
||||
border.width: wifiDelegate.isConnected ? 2 : 1
|
||||
color: networkMouseArea.containsMouse ? Qt.rgba(Theme.primary.r, Theme.primary.g, Theme.primary.b, 0.08) : Theme.withAlpha(Theme.surfaceContainerHighest, Theme.popupTransparency)
|
||||
border.color: wifiDelegate.isConnected ? Theme.primary : Qt.rgba(Theme.outline.r, Theme.outline.g, Theme.outline.b, 0.12)
|
||||
border.width: 0
|
||||
|
||||
Row {
|
||||
id: wifiContentRow
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import QtQuick
|
||||
import Quickshell.Services.UPower
|
||||
import qs.Common
|
||||
import qs.Modules.Plugins
|
||||
import qs.Services
|
||||
@@ -11,8 +10,6 @@ BasePill {
|
||||
property bool batteryPopupVisible: false
|
||||
property var popoutTarget: null
|
||||
|
||||
property real touchpadAccumulator: 0
|
||||
|
||||
readonly property int barPosition: {
|
||||
switch (axis?.edge) {
|
||||
case "top":
|
||||
@@ -122,44 +119,5 @@ BasePill {
|
||||
battery.triggerRipple(this, mouse.x, mouse.y);
|
||||
toggleBatteryPopup();
|
||||
}
|
||||
onWheel: wheel => {
|
||||
var delta = wheel.angleDelta.y;
|
||||
if (delta === 0)
|
||||
return;
|
||||
|
||||
// Check if this is a touchpad
|
||||
if (delta !== 120 && delta !== -120) {
|
||||
touchpadAccumulator += delta;
|
||||
console.info("Acc: "+touchpadAccumulator);
|
||||
if (Math.abs(touchpadAccumulator) < 500)
|
||||
return;
|
||||
delta = touchpadAccumulator;
|
||||
touchpadAccumulator = 0;
|
||||
}
|
||||
console.info("Trigger! Delta: "+delta)
|
||||
|
||||
// This is after the other delta checks so it only shows on valid Y scroll
|
||||
if (typeof PowerProfiles === "undefined") {
|
||||
ToastService.showError("power-profiles-daemon not available");
|
||||
return;
|
||||
}
|
||||
|
||||
// Get list of profiles, and current index
|
||||
const profiles = [PowerProfile.PowerSaver, PowerProfile.Balanced].concat(PowerProfiles.hasPerformanceProfile ? [PowerProfile.Performance] : []);
|
||||
var index = profiles.findIndex(profile => PowerProfiles.profile === profile);
|
||||
|
||||
// Step once based on mouse wheel direction
|
||||
if (delta > 0) index += 1;
|
||||
else index -= 1;
|
||||
|
||||
// Already at end of list, can't go further
|
||||
if (index < 0 || index >= profiles.length) return;
|
||||
|
||||
// Set new profile
|
||||
PowerProfiles.profile = profiles[index];
|
||||
if (PowerProfiles.profile !== profiles[index]) {
|
||||
ToastService.showError("Failed to set power profile");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -102,7 +102,7 @@ BasePill {
|
||||
StyledTextMetrics {
|
||||
id: cpuBaseline
|
||||
font.pixelSize: Theme.barTextSize(root.barThickness, root.barConfig?.fontScale, root.barConfig?.maximizeWidgetText)
|
||||
text: "100%"
|
||||
text: "88%"
|
||||
}
|
||||
|
||||
StyledTextMetrics {
|
||||
|
||||
@@ -99,7 +99,7 @@ BasePill {
|
||||
|
||||
if (isMouseWheelY) {
|
||||
if (deltaY > 0) {
|
||||
MprisController.previousOrRewind();
|
||||
activePlayer.previous();
|
||||
} else {
|
||||
activePlayer.next();
|
||||
}
|
||||
@@ -107,7 +107,7 @@ BasePill {
|
||||
scrollAccumulatorY += deltaY;
|
||||
if (Math.abs(scrollAccumulatorY) >= touchpadThreshold) {
|
||||
if (scrollAccumulatorY > 0) {
|
||||
MprisController.previousOrRewind();
|
||||
activePlayer.previous();
|
||||
} else {
|
||||
activePlayer.next();
|
||||
}
|
||||
@@ -214,7 +214,7 @@ BasePill {
|
||||
if (mouse.button === Qt.LeftButton) {
|
||||
activePlayer.togglePlaying();
|
||||
} else if (mouse.button === Qt.MiddleButton) {
|
||||
MprisController.previousOrRewind();
|
||||
activePlayer.previous();
|
||||
} else if (mouse.button === Qt.RightButton) {
|
||||
activePlayer.next();
|
||||
}
|
||||
@@ -370,7 +370,11 @@ BasePill {
|
||||
anchors.fill: parent
|
||||
enabled: root.playerAvailable
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: MprisController.previousOrRewind()
|
||||
onClicked: {
|
||||
if (activePlayer) {
|
||||
activePlayer.previous();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -20,46 +20,6 @@ Item {
|
||||
property var blurBarWindow: null
|
||||
property var hyprlandOverviewLoader: null
|
||||
property var parentScreen: null
|
||||
|
||||
readonly property real _leftMargin: {
|
||||
if (isVertical)
|
||||
return 0;
|
||||
root.x;
|
||||
if (!root.parent)
|
||||
return 0;
|
||||
const gap = root.mapToItem(null, 0, 0).x;
|
||||
return (gap > 0 && gap < 30) ? gap + 5 : 0;
|
||||
}
|
||||
readonly property real _rightMargin: {
|
||||
if (isVertical)
|
||||
return 0;
|
||||
root.x;
|
||||
root.width;
|
||||
if (!root.parent || !blurBarWindow)
|
||||
return 0;
|
||||
const gap = blurBarWindow.width - root.mapToItem(null, root.width, 0).x;
|
||||
return (gap > 0 && gap < 30) ? gap + 5 : 0;
|
||||
}
|
||||
readonly property real _topMargin: {
|
||||
if (!isVertical)
|
||||
return 0;
|
||||
root.y;
|
||||
if (!root.parent)
|
||||
return 0;
|
||||
const gap = root.mapToItem(null, 0, 0).y;
|
||||
return (gap > 0 && gap < 30) ? gap + 5 : 0;
|
||||
}
|
||||
readonly property real _bottomMargin: {
|
||||
if (!isVertical)
|
||||
return 0;
|
||||
root.y;
|
||||
root.height;
|
||||
if (!root.parent || !blurBarWindow)
|
||||
return 0;
|
||||
const gap = blurBarWindow.height - root.mapToItem(null, 0, root.height).y;
|
||||
return (gap > 0 && gap < 30) ? gap + 5 : 0;
|
||||
}
|
||||
|
||||
property int _desktopEntriesUpdateTrigger: 0
|
||||
readonly property var sortedToplevels: {
|
||||
return CompositorService.filterCurrentWorkspace(CompositorService.sortedToplevels, screenName);
|
||||
@@ -579,60 +539,6 @@ Item {
|
||||
});
|
||||
}
|
||||
|
||||
function switchToWorkspaceByModelData(data) {
|
||||
if (!data)
|
||||
return;
|
||||
|
||||
if (root.useExtWorkspace && (data.id || data.name)) {
|
||||
ExtWorkspaceService.activateWorkspace(data.id || data.name, data.groupID || "");
|
||||
return;
|
||||
}
|
||||
|
||||
switch (CompositorService.compositor) {
|
||||
case "niri":
|
||||
if (data.idx !== undefined)
|
||||
NiriService.switchToWorkspace(data.idx);
|
||||
break;
|
||||
case "hyprland":
|
||||
if (data.id)
|
||||
Hyprland.dispatch(`workspace ${data.id}`);
|
||||
break;
|
||||
case "dwl":
|
||||
if (data.tag !== undefined)
|
||||
DwlService.switchToTag(root.screenName, data.tag);
|
||||
break;
|
||||
case "sway":
|
||||
case "scroll":
|
||||
case "miracle":
|
||||
if (data.num)
|
||||
try {
|
||||
I3.dispatch(`workspace number ${data.num}`);
|
||||
} catch (_) {}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
function findClosestWorkspaceIndex(localX, localY) {
|
||||
if (workspaceRepeater.count === 0)
|
||||
return -1;
|
||||
|
||||
let closestIdx = -1;
|
||||
let closestDist = Infinity;
|
||||
|
||||
for (let i = 0; i < workspaceRepeater.count; i++) {
|
||||
const item = workspaceRepeater.itemAt(i);
|
||||
if (!item)
|
||||
continue;
|
||||
const center = item.mapToItem(root, item.width / 2, item.height / 2);
|
||||
const dist = isVertical ? Math.abs(localY - center.y) : Math.abs(localX - center.x);
|
||||
if (dist < closestDist) {
|
||||
closestDist = dist;
|
||||
closestIdx = i;
|
||||
}
|
||||
}
|
||||
return closestIdx;
|
||||
}
|
||||
|
||||
function switchWorkspace(direction) {
|
||||
if (useExtWorkspace) {
|
||||
const realWorkspaces = getRealWorkspaces();
|
||||
@@ -846,15 +752,8 @@ Item {
|
||||
}
|
||||
|
||||
MouseArea {
|
||||
id: edgeMouseArea
|
||||
z: -1
|
||||
x: -root._leftMargin
|
||||
y: -root._topMargin
|
||||
width: root.width + root._leftMargin + root._rightMargin
|
||||
height: root.height + root._topMargin + root._bottomMargin
|
||||
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
||||
hoverEnabled: true
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
anchors.fill: parent
|
||||
acceptedButtons: Qt.RightButton
|
||||
|
||||
property real touchpadAccumulator: 0
|
||||
property real mouseAccumulator: 0
|
||||
@@ -867,20 +766,12 @@ Item {
|
||||
}
|
||||
|
||||
onClicked: mouse => {
|
||||
const rootPos = edgeMouseArea.mapToItem(root, mouse.x, mouse.y);
|
||||
switch (mouse.button) {
|
||||
case Qt.RightButton:
|
||||
if (mouse.button === Qt.RightButton) {
|
||||
if (CompositorService.isNiri) {
|
||||
NiriService.toggleOverview();
|
||||
} else if (CompositorService.isHyprland && root.hyprlandOverviewLoader?.item) {
|
||||
root.hyprlandOverviewLoader.item.overviewOpen = !root.hyprlandOverviewLoader.item.overviewOpen;
|
||||
}
|
||||
break;
|
||||
case Qt.LeftButton:
|
||||
const idx = root.findClosestWorkspaceIndex(rootPos.x, rootPos.y);
|
||||
if (idx >= 0)
|
||||
root.switchToWorkspaceByModelData(root.workspaceList[idx]);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -487,7 +487,17 @@ Item {
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: MprisController.previousOrRewind()
|
||||
onClicked: {
|
||||
if (!activePlayer) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (activePlayer.position > 8 && activePlayer.canSeek) {
|
||||
activePlayer.position = 0;
|
||||
} else {
|
||||
activePlayer.previous();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -145,7 +145,14 @@ Card {
|
||||
anchors.fill: parent
|
||||
hoverEnabled: true
|
||||
cursorShape: Qt.PointingHandCursor
|
||||
onClicked: MprisController.previousOrRewind()
|
||||
onClicked: {
|
||||
if (!activePlayer) return
|
||||
if (activePlayer.position > 8 && activePlayer.canSeek) {
|
||||
activePlayer.position = 0
|
||||
} else {
|
||||
activePlayer.previous()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1338,7 +1338,7 @@ Item {
|
||||
enabled: MprisController.activePlayer?.canGoPrevious ?? false
|
||||
hoverEnabled: enabled
|
||||
cursorShape: enabled ? Qt.PointingHandCursor : Qt.ArrowCursor
|
||||
onClicked: MprisController.previousOrRewind()
|
||||
onClicked: MprisController.activePlayer?.previous()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
import QtQuick
|
||||
import QtQuick.Controls
|
||||
import QtQuick.Layouts
|
||||
import qs.Common
|
||||
import qs.Widgets
|
||||
import qs.Services
|
||||
@@ -51,14 +52,15 @@ Column {
|
||||
height: implicitHeight
|
||||
spacing: Theme.spacingM
|
||||
|
||||
Row {
|
||||
RowLayout {
|
||||
width: parent.width
|
||||
spacing: Theme.spacingM
|
||||
|
||||
DankIcon {
|
||||
name: root.titleIcon
|
||||
size: Theme.iconSize
|
||||
color: Theme.primary
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
}
|
||||
|
||||
StyledText {
|
||||
@@ -66,7 +68,7 @@ Column {
|
||||
font.pixelSize: Theme.fontSizeLarge
|
||||
font.weight: Font.Medium
|
||||
color: Theme.surfaceText
|
||||
anchors.verticalCenter: parent.verticalCenter
|
||||
Layout.alignment: Qt.AlignVCenter
|
||||
}
|
||||
}
|
||||
|
||||
@@ -979,26 +981,10 @@ Column {
|
||||
|
||||
Repeater {
|
||||
model: [
|
||||
{
|
||||
label: I18n.tr("Percentage"),
|
||||
mode: 0,
|
||||
icon: "percent"
|
||||
},
|
||||
{
|
||||
label: I18n.tr("Total"),
|
||||
mode: 1,
|
||||
icon: "storage"
|
||||
},
|
||||
{
|
||||
label: I18n.tr("Remaining"),
|
||||
mode: 2,
|
||||
icon: "hourglass_empty"
|
||||
},
|
||||
{
|
||||
label: I18n.tr("Remaining / Total"),
|
||||
mode: 3,
|
||||
icon: "pie_chart"
|
||||
}
|
||||
{ label: I18n.tr("Percentage"), mode: 0, icon: "percent" },
|
||||
{ label: I18n.tr("Total"), mode: 1, icon: "storage" },
|
||||
{ label: I18n.tr("Remaining"), mode: 2, icon: "hourglass_empty" },
|
||||
{ label: I18n.tr("Remaining / Total"), mode: 3, icon: "pie_chart" }
|
||||
]
|
||||
|
||||
delegate: Rectangle {
|
||||
@@ -1330,7 +1316,20 @@ Column {
|
||||
id: longestControlCenterLabelMetrics
|
||||
font.pixelSize: Theme.fontSizeSmall
|
||||
text: {
|
||||
const labels = [I18n.tr("Network"), I18n.tr("VPN"), I18n.tr("Bluetooth"), I18n.tr("Audio"), I18n.tr("Volume"), I18n.tr("Microphone"), I18n.tr("Microphone Volume"), I18n.tr("Brightness"), I18n.tr("Brightness Value"), I18n.tr("Battery"), I18n.tr("Printer"), I18n.tr("Screen Sharing")];
|
||||
const labels = [
|
||||
I18n.tr("Network"),
|
||||
I18n.tr("VPN"),
|
||||
I18n.tr("Bluetooth"),
|
||||
I18n.tr("Audio"),
|
||||
I18n.tr("Volume"),
|
||||
I18n.tr("Microphone"),
|
||||
I18n.tr("Microphone Volume"),
|
||||
I18n.tr("Brightness"),
|
||||
I18n.tr("Brightness Value"),
|
||||
I18n.tr("Battery"),
|
||||
I18n.tr("Printer"),
|
||||
I18n.tr("Screen Sharing")
|
||||
];
|
||||
let longest = "";
|
||||
for (let i = 0; i < labels.length; i++) {
|
||||
if (labels[i].length > longest.length)
|
||||
@@ -1341,7 +1340,6 @@ Column {
|
||||
}
|
||||
|
||||
Repeater {
|
||||
id: groupRepeater
|
||||
model: controlCenterContextMenu.controlCenterGroups
|
||||
|
||||
delegate: Item {
|
||||
@@ -1571,6 +1569,8 @@ Column {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
id: groupRepeater
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -3,16 +3,13 @@ pragma ComponentBehavior: Bound
|
||||
|
||||
import QtQuick
|
||||
import Quickshell
|
||||
import Quickshell.Io
|
||||
import Quickshell.Wayland // ! Import is needed despite what qmlls says
|
||||
import qs.Common
|
||||
|
||||
Singleton {
|
||||
id: root
|
||||
|
||||
property bool quickshellSupported: false
|
||||
property bool compositorSupported: false
|
||||
property bool available: quickshellSupported && compositorSupported
|
||||
property bool available: false
|
||||
readonly property bool enabled: available && (SettingsData.blurEnabled ?? false)
|
||||
|
||||
readonly property color borderColor: {
|
||||
@@ -75,27 +72,6 @@ Singleton {
|
||||
region.destroy();
|
||||
}
|
||||
|
||||
Process {
|
||||
id: blurProbe
|
||||
running: false
|
||||
command: ["dms", "blur", "check"]
|
||||
|
||||
stdout: StdioCollector {
|
||||
onStreamFinished: {
|
||||
root.compositorSupported = text.trim() === "supported";
|
||||
if (root.compositorSupported)
|
||||
console.info("BlurService: Compositor supports ext-background-effect-v1");
|
||||
else
|
||||
console.info("BlurService: Compositor does not support ext-background-effect-v1");
|
||||
}
|
||||
}
|
||||
|
||||
onExited: exitCode => {
|
||||
if (exitCode !== 0)
|
||||
console.warn("BlurService: blur probe failed with code:", exitCode);
|
||||
}
|
||||
}
|
||||
|
||||
Component.onCompleted: {
|
||||
try {
|
||||
const test = Qt.createQmlObject(`
|
||||
@@ -103,9 +79,8 @@ Singleton {
|
||||
Region { radius: 0 }
|
||||
`, root, "BlurAvailabilityTest");
|
||||
test.destroy();
|
||||
quickshellSupported = true;
|
||||
console.info("BlurService: Quickshell blur support available");
|
||||
blurProbe.running = true;
|
||||
available = true;
|
||||
console.info("BlurService: Initialized with blur support");
|
||||
} catch (e) {
|
||||
console.info("BlurService: BackgroundEffect not available - blur disabled. Requires a newer version of Quickshell.");
|
||||
}
|
||||
|
||||
@@ -10,20 +10,4 @@ Singleton {
|
||||
|
||||
readonly property list<MprisPlayer> availablePlayers: Mpris.players.values
|
||||
property MprisPlayer activePlayer: availablePlayers.find(p => p.isPlaying) ?? availablePlayers.find(p => p.canControl && p.canPlay) ?? null
|
||||
|
||||
Timer {
|
||||
interval: 1000
|
||||
running: root.activePlayer?.playbackState === MprisPlaybackState.Playing
|
||||
repeat: true
|
||||
onTriggered: root.activePlayer?.positionChanged()
|
||||
}
|
||||
|
||||
function previousOrRewind(): void {
|
||||
if (!activePlayer)
|
||||
return;
|
||||
if (activePlayer.position > 8 && activePlayer.canSeek)
|
||||
activePlayer.position = 0;
|
||||
else if (activePlayer.canGoPrevious)
|
||||
activePlayer.previous();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -89,7 +89,7 @@ Row {
|
||||
width: Math.max(contentItem.implicitWidth + root.buttonPadding * 2, root.minButtonWidth) + (selected ? 4 : 0)
|
||||
height: root.buttonHeight
|
||||
|
||||
color: selected ? Theme.buttonBg : Theme.withAlpha(Theme.surfaceVariant, Theme.popupTransparency)
|
||||
color: selected ? Theme.buttonBg : Theme.surfaceVariant
|
||||
border.color: "transparent"
|
||||
border.width: 0
|
||||
|
||||
|
||||
@@ -266,7 +266,7 @@ PanelWindow {
|
||||
scale: shouldBeVisible ? 1 : 0.9
|
||||
|
||||
property bool childHovered: false
|
||||
readonly property real popupSurfaceAlpha: Theme.popupTransparency
|
||||
readonly property real popupSurfaceAlpha: SettingsData.popupTransparency
|
||||
|
||||
Rectangle {
|
||||
id: background
|
||||
@@ -286,7 +286,7 @@ PanelWindow {
|
||||
level: Theme.elevationLevel3
|
||||
fallbackOffset: 6
|
||||
targetRadius: Theme.cornerRadius
|
||||
targetColor: Theme.withAlpha(Theme.surfaceContainer, osdContainer.popupSurfaceAlpha)
|
||||
targetColor: Theme.surfaceContainer
|
||||
borderColor: Theme.outlineMedium
|
||||
borderWidth: 1
|
||||
shadowEnabled: Theme.elevationEnabled && SettingsData.popoutElevationEnabled && Quickshell.env("DMS_DISABLE_LAYER") !== "true" && Quickshell.env("DMS_DISABLE_LAYER") !== "1"
|
||||
|
||||
@@ -576,6 +576,14 @@ Item {
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
anchors.fill: parent
|
||||
radius: Theme.cornerRadius
|
||||
color: Theme.withAlpha(Theme.surfaceContainer, Theme.popupTransparency)
|
||||
border.color: BlurService.enabled ? BlurService.borderColor : Theme.outlineMedium
|
||||
border.width: BlurService.borderWidth
|
||||
}
|
||||
|
||||
Loader {
|
||||
id: contentLoader
|
||||
anchors.fill: parent
|
||||
@@ -583,21 +591,6 @@ Item {
|
||||
asynchronous: false
|
||||
}
|
||||
}
|
||||
|
||||
Rectangle {
|
||||
width: parent.width
|
||||
height: parent.height
|
||||
x: contentWrapper.x
|
||||
y: contentWrapper.y
|
||||
opacity: contentWrapper.opacity
|
||||
scale: contentWrapper.scale
|
||||
visible: contentWrapper.visible
|
||||
radius: Theme.cornerRadius
|
||||
color: "transparent"
|
||||
border.color: BlurService.enabled ? BlurService.borderColor : Theme.outlineMedium
|
||||
border.width: BlurService.borderWidth
|
||||
z: 100
|
||||
}
|
||||
}
|
||||
|
||||
Item {
|
||||
|
||||
@@ -238,7 +238,7 @@ Rectangle {
|
||||
width: fieldContent.width + Theme.spacingM * 2
|
||||
height: 32
|
||||
radius: Theme.cornerRadius - 2
|
||||
color: Theme.surfaceLight
|
||||
color: Theme.surfaceContainerHigh
|
||||
border.width: 1
|
||||
border.color: Theme.outlineLight
|
||||
|
||||
@@ -272,9 +272,7 @@ Rectangle {
|
||||
checked: configData ? (configData.autoconnect || false) : false
|
||||
visible: !VPNService.configLoading && configData !== null
|
||||
onToggled: checked => {
|
||||
VPNService.updateConfig(profile.uuid, {
|
||||
autoconnect: checked
|
||||
});
|
||||
VPNService.updateConfig(profile.uuid, {autoconnect: checked});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "Lautstärke pro Scroll-Schritt anpassen"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Passt den Kontrast der generierten Farben an (-100 = Minimum, 0 = Standard, 100 = Maximum)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "Fortgeschritten"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Warmes Farbschema für weniger Augenbelastung. Automatisierungseinstellungen unten zur Aktivierung."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Apps"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Authentifzierung erforderlich"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Authentifizierungsfehler - erneut versuchen"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Automatische Verbindung aktiviert"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Automatischer Farbmodus"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Hintergrund"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Hintergrunddeckkraft"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Hintergrundbeleuchtungsgerät"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth nicht verfügbar"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Hintergrundbild-Ebene weichzeichnen"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Unschärfe auf Übersicht"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Hintergrundbild weichzeichnen, wenn Niri-Übersicht geöffnet ist"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Rahmenstärke"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Rahmen mit Hintergrund"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "Synchronisierungsstatus bei Bedarf prüfen. Sync kopiert Ihr Theme, Ihre Einstellungen, die PAM-Konfiguration und das Hintergrundbild in einem Schritt auf den Anmeldebildschirm. Führen Sie Sync aus, um Änderungen zu übernehmen."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Suche nach Updates..."
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS Plugin Manager nicht verfügbar"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "DMS Greeter benötigt: greetd, dms-greeter. Fingerabdruck: fprintd, pam_fprintd. Sicherheitsschlüssel: pam_u2f. Fügen Sie Ihren Benutzer der Greeter-Gruppe hinzu. Sync prüft zuerst Sudo und öffnet ein Terminal, wenn eine interaktive Authentifizierung erforderlich ist."
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Aktiviere Fingerabdruck Authentifizierung"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "Fingerabdruck oder Sicherheitsschlüssel für DMS Greeter aktivieren. Führen Sie Sync aus, um PAM zu konfigurieren und zu übernehmen."
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Aktiviert, aber es wurde kein Fingerabdruckleser erkannt."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Aktiviert, aber es sind noch keine Abdrücke registriert. Fingerabdrücke registrieren und Sync ausführen."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Aktiviert, aber es sind noch keine Abdrücke registriert. Fingerabdrücke registrieren, um es zu nutzen."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "Aktiviert, aber es wurde noch kein registrierter Sicherheitsschlüssel gefunden. Einen Schlüssel registrieren und Sync ausführen."
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "Verfügbarkeit des Fingerabdrucks konnte nicht bestätigt werden."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Fingerabdruckleser erkannt, aber es sind noch keine Abdrücke registriert. Sie können dies jetzt aktivieren und später registrieren."
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Ordner"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Monitorfokus folgen"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Falsches Passwort - nächste Fehler können zur Kontosperrung führen"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Indikatorstil"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Eingangslautstärkeregler"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Installation abgeschlossen. Greeter wurde installiert."
|
||||
},
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "Starte auf dGPU"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "Standardmäßig mit dGPU starten"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "Launcher"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Schonfrist für Sperrausblendung"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Gesperrt"
|
||||
},
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": "Von Material Design inspirierte Schatten und Erhöhungen auf Modalen, Popouts und Dialogen"
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "Matugen-Kontrast"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "Matugen Palette"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Maximale Anzahl angehefteter Einträge"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Maximale Anzahl der Einträge in der Zwischenablage"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Verbleibend / Gesamt"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Letzte Sitzung merken"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Erfordert DWL-Compositor"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Erfordert Nachtmodus-Unterstützung"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Zusätzliche benutzerdefinierte Terminal-Parameter"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminal-Fallback fehlgeschlagen. Installieren Sie einen der unterstützten Terminal-Emulatoren oder führen Sie 'dms greeter sync' manuell aus."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminal-Fallback geöffnet. Schließen Sie den Sync dort ab; das Fenster wird nach Abschluss automatisch geschlossen."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "Zu verwendendes Terminal-Multiplexer-Backend"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal geöffnet. Schließen Sie die Sync-Authentifizierung dort ab; das Fenster wird nach Abschluss automatisch geschlossen."
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner fast leer"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "Zu viele fehlgeschlagene Versuche - Konto könnte gesperrt sein"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Alle Druckaufträge"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformiere"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Deaktiviert"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Farbe"
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Aplicar un tono cálido para disminuir la fatiga visual. Configure abajo la automatización para definir cuándo se activa."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": ""
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Autenticación requerida"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Conexión automática activada"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": ""
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Opacidad del fondo de pantalla"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Dispositivo de brillo"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth no disponible"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Desenfocar capa de papel tapiz"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Desenfocar en la vista general"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Aplicar desenfoque en la vista general de niri"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Grosor del borde"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": ""
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Gestor de complementos DMS no disponible"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Habilitar autenticación por huella digital"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": ""
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": ""
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Estilo del indicador"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Deslizador de volumen de entrada"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Intervalo de fundido antes de bloquear la pantalla"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": ""
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": ""
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Número máximo de entradas del portapapeles a conservar"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Requiere un compositor DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Requiere compatibilidad con el modo nocturno"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Parametros adicionales"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Tóner bajo"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Trabajos totales"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformar"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": ""
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": ""
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "برای کاهش خستگی چشم دمای رنگ گرم را اعمال کن. از تنظیمات خودکارسازی پایین برای زمان فعال شدن آن استفاده کنید."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "برنامهها"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "احراز هویت نیاز است"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "اتصال خودکار فعال"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "حالت رنگ خودکار"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "شفافیت پسزمینه"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "دستگاه نور پسزمینه"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "بلوتوث در دسترس نیست"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "ماتکردن لایه تصویر پسزمینه"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "لایه مات در نمای کلی"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "هنگامی که نمای کلی niri باز است تصویر پسزمینه را مات کن"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "ضخامت حاشیه"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "حاشیه با پسزمینه"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "مدیریت افزونه DMS در دسترس نیست"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "فعالکردن احراز هویت با اثرانگشت"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "پوشهها"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "فوکوس مانیتور را دنبال کن"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "استایل نشانگر"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "اسلایدر حجم صدای ورودی"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "بازه زمانی محو شدن تدریجی قفل"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "قفل شده"
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "بیشینه مدخلهای سنجاق شده"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "بیشینه تعداد مدخلهای کلیپبورد برای نگهداری"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "به کامپازیتور DWL نیاز دارد"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "به پشتیبانی حالت شب نیاز دارد"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "پارامترهای اضافی سفارشی ترمینال"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "تونر کم است"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "تمام کارهای چاپ"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "تبدیل"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "غیرفعال"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "رنگ"
|
||||
},
|
||||
|
||||
@@ -267,7 +267,7 @@
|
||||
"Activate": "Activer"
|
||||
},
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": {
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "Activer le greeter DMS ? Un terminal va s'ouvrir pour l'authentification sudo. Exécutez la Synchro après l'activation pour appliquer vos paramètres."
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": ""
|
||||
},
|
||||
"Activation": {
|
||||
"Activation": "Activation"
|
||||
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "Ajuster le volume à la molette"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Ajuste le contraste des couleurs générées (-100 = minimum, 0 = standard, 100 = maximum)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "Avancé"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Appliquer une température de couleur chaude pour réduire la fatigue visuelle. Utilisez les paramètres d’automatisation ci-dessous pour définir son activation."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Applis"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Authentification requise"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Erreur d'authentification - essayez à nouveau"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Connexion automatique activée"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Mode sombre automatique"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Arrière-plan"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Opacité de l’arrière-plan"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Périphérique de rétroéclairage"
|
||||
},
|
||||
@@ -695,7 +671,7 @@
|
||||
"Bar Transparency": "Transparence de la barre"
|
||||
},
|
||||
"Base color for shadows (opacity is applied automatically)": {
|
||||
"Base color for shadows (opacity is applied automatically)": "Couleur de base pour les ombres (l'opacité est appliquée automatiquement)"
|
||||
"Base color for shadows (opacity is applied automatically)": ""
|
||||
},
|
||||
"Base duration for animations (drag to use Custom)": {
|
||||
"Base duration for animations (drag to use Custom)": "Durée de base des animations (faites glisser pour utiliser une valeur personnalisée)"
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth non disponible"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Flouter la couche du fond d’écran"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Flou dans la vue d’ensemble"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Flouter le fond d’écran lorsque la vue d’ensemble de Niri est ouverte"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Épaisseur de la bordure"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Bordures avec fond"
|
||||
},
|
||||
@@ -923,7 +887,7 @@
|
||||
"Change the locale used by the DMS interface.": ""
|
||||
},
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": {
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": "Changer les paramètres régionaux utilisés pour le format de la date et de l'heure, indépendant de la langue de l'interface."
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": ""
|
||||
},
|
||||
"Channel": {
|
||||
"Channel": "Canal"
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Vérification des mises à jour..."
|
||||
},
|
||||
@@ -968,7 +929,7 @@
|
||||
"Choose how the weather widget is displayed": "Choisir le mode d’affichage du widget météo"
|
||||
},
|
||||
"Choose how this bar resolves shadow direction": {
|
||||
"Choose how this bar resolves shadow direction": "Choisissez comment cette barre gère la direction de l'ombre"
|
||||
"Choose how this bar resolves shadow direction": ""
|
||||
},
|
||||
"Choose icon": {
|
||||
"Choose icon": "Choisir une icône"
|
||||
@@ -1391,7 +1352,7 @@
|
||||
"Current Items": "Éléments actuels"
|
||||
},
|
||||
"Current Locale": {
|
||||
"Current Locale": "Paramètres régionaux actuels"
|
||||
"Current Locale": ""
|
||||
},
|
||||
"Current Period": {
|
||||
"Current Period": "Période actuelle"
|
||||
@@ -1460,7 +1421,7 @@
|
||||
"Custom Shadow Color": "Couleur d'ombre personnalisée"
|
||||
},
|
||||
"Custom Shadow Override": {
|
||||
"Custom Shadow Override": "Surcharge d'ombre personnalisée"
|
||||
"Custom Shadow Override": ""
|
||||
},
|
||||
"Custom Suspend Command": {
|
||||
"Custom Suspend Command": "Commande de mise en veille personnalisée"
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Gestionnaire de plugins DMS indisponible"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1709,7 +1667,7 @@
|
||||
"Disk Usage": "Utilisation du disque"
|
||||
},
|
||||
"Disk Usage Display": {
|
||||
"Disk Usage Display": "Affichage de l'utilisation du disque"
|
||||
"Disk Usage Display": ""
|
||||
},
|
||||
"Disks": {
|
||||
"Disks": "Disques"
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Activer l’authentification par empreinte digitale"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,35 +1924,29 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Activé, mais aucun lecteur d'empreintes n'a été détecté."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Activé, mais aucune empreinte n'a encore été enregistrée. Enregistrez une empreinte et exécutez la Synchro."
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Activé, mais aucune empreinte n'a été enregistrée pour le moment. Enregistrez des empreintes pour l'utiliser."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key or update your U2F config.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key or update your U2F config.": "Activé, mais aucune clé de sécurité n'a encore été trouvée. Enregistrez une clé ou mettez à jour votre config U2F."
|
||||
"Enabled, but no registered security key was found yet. Register a key or update your U2F config.": ""
|
||||
},
|
||||
"Enabled, but security-key availability could not be confirmed.": {
|
||||
"Enabled, but security-key availability could not be confirmed.": "Activé, mais la disponibilité de la clé de sécurité n'a pas pu être confirmée."
|
||||
"Enabled, but security-key availability could not be confirmed.": ""
|
||||
},
|
||||
"Enabled. PAM already provides fingerprint auth.": {
|
||||
"Enabled. PAM already provides fingerprint auth.": "Activé. PAM fourni déjà une authentification par empreinte."
|
||||
"Enabled. PAM already provides fingerprint auth.": ""
|
||||
},
|
||||
"Enabled. PAM already provides security-key auth.": {
|
||||
"Enabled. PAM already provides security-key auth.": "Activé. PAM fourni déjà une authentification par clé de sécurité."
|
||||
"Enabled. PAM already provides security-key auth.": ""
|
||||
},
|
||||
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": {
|
||||
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": "Activé. PAM fourni l'authentification par empreinte, mais aucune empreinte n'a encore été enregistrée."
|
||||
"Enabled. PAM provides fingerprint auth, but no prints are enrolled yet.": ""
|
||||
},
|
||||
"Enabling WiFi...": {
|
||||
"Enabling WiFi...": "Activation du Wi-Fi..."
|
||||
@@ -2021,7 +1970,7 @@
|
||||
"Enter PIN for ": "Saisir le code PIN pour "
|
||||
},
|
||||
"Enter a new name for session \"%1": {
|
||||
"Enter a new name for session \"%1\"": "Entrer un nouveau nom pour la session \"%1\""
|
||||
"Enter a new name for session \"%1\"": ""
|
||||
},
|
||||
"Enter a new name for this workspace": {
|
||||
"Enter a new name for this workspace": "Entrer un nom pour cet espace de travail"
|
||||
@@ -2329,17 +2278,8 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "La disponibilité de l'empreinte n'a pas pu être confirmée."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Lecteur d'empreintes détecté, mais aucune empreinte n'a encore été enregistrée. Vous pouvez l'activer maintenant et enregistrer une empreinte plus tard."
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": ""
|
||||
@@ -2387,13 +2327,13 @@
|
||||
"Focused Color": "Couleur active"
|
||||
},
|
||||
"Focused Monitor Only": {
|
||||
"Focused Monitor Only": "Uniquement l'écran sélectionné"
|
||||
"Focused Monitor Only": ""
|
||||
},
|
||||
"Focused Window": {
|
||||
"Focused Window": "Fenêtre active"
|
||||
},
|
||||
"Focused monitor only": {
|
||||
"Focused monitor only": "Uniquement l'écran sélectionné"
|
||||
"Focused monitor only": ""
|
||||
},
|
||||
"Fog": {
|
||||
"Fog": "Brouillard"
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Dossiers"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Suivre le focus de l’écran"
|
||||
},
|
||||
@@ -2708,10 +2645,10 @@
|
||||
"High-fidelity palette that preserves source hues.": "Palette fidèle qui préserve les teintes d'origine."
|
||||
},
|
||||
"Highlight Active Workspace App": {
|
||||
"Highlight Active Workspace App": "Mettre en évidence l'appli de l'espace de travail actif"
|
||||
"Highlight Active Workspace App": ""
|
||||
},
|
||||
"Highlight the currently focused app inside workspace indicators": {
|
||||
"Highlight the currently focused app inside workspace indicators": "Mettre en évidence l'appli sélectionnée dans les indicateurs d'espace de travail"
|
||||
"Highlight the currently focused app inside workspace indicators": ""
|
||||
},
|
||||
"History Settings": {
|
||||
"History Settings": "Paramètres de l'historique"
|
||||
@@ -2759,7 +2696,7 @@
|
||||
"How often to change wallpaper": "Fréquence de changement de fond d'écran"
|
||||
},
|
||||
"How the background image is scaled": {
|
||||
"How the background image is scaled": "Comment l'image d'arrière-plan est échelonnée"
|
||||
"How the background image is scaled": ""
|
||||
},
|
||||
"Humidity": {
|
||||
"Humidity": "Humidité"
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Mot de passe incorrect - les prochains échecs pourraient activer le verrouillage du compte"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Style d'indicateur"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Curseur du volume d'entrée"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Installation terminée. Greeter a été installé."
|
||||
},
|
||||
@@ -3170,7 +3101,7 @@
|
||||
"LabWC IRC Channel": ""
|
||||
},
|
||||
"LabWC Website": {
|
||||
"LabWC Website": "Site LabWC"
|
||||
"LabWC Website": ""
|
||||
},
|
||||
"Label for printer IP address or hostname input field": {
|
||||
"Host": "Hôte"
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "Lancer sur le GPU intégrée"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "Lancer sur dGPU par défaut"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "Lanceur"
|
||||
@@ -3320,10 +3251,10 @@
|
||||
"Local": "Local"
|
||||
},
|
||||
"Locale": {
|
||||
"Locale": "Régional"
|
||||
"Locale": ""
|
||||
},
|
||||
"Locale Settings": {
|
||||
"Locale Settings": "Paramètres régionaux"
|
||||
"Locale Settings": ""
|
||||
},
|
||||
"Location": {
|
||||
"Location": "Emplacement"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Délai de grâce avant le fondu du verrouillage"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Verrouillé"
|
||||
},
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": ""
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "Contraste Matugen"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "Palette Matugen"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Maximum d'entrées épinglées"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Nombre maximal d’éléments conservés dans le presse-papiers"
|
||||
},
|
||||
@@ -3665,13 +3590,13 @@
|
||||
"Moving to Paused": "Mise en pause en cours"
|
||||
},
|
||||
"Multiplexer": {
|
||||
"Multiplexer": "Multiplexeur"
|
||||
"Multiplexer": ""
|
||||
},
|
||||
"Multiplexer Type": {
|
||||
"Multiplexer Type": "Type de multiplexeur"
|
||||
"Multiplexer Type": ""
|
||||
},
|
||||
"Multiplexers": {
|
||||
"Multiplexers": "Multiplexeurs"
|
||||
"Multiplexers": ""
|
||||
},
|
||||
"Music": {
|
||||
"Music": "Musique"
|
||||
@@ -4001,7 +3926,7 @@
|
||||
"Not available — install or configure pam_u2f, or configure greetd PAM.": ""
|
||||
},
|
||||
"Not available — install or configure pam_u2f.": {
|
||||
"Not available — install or configure pam_u2f.": "Non disponible — installez ou configurez pam_u2f."
|
||||
"Not available — install or configure pam_u2f.": ""
|
||||
},
|
||||
"Not available — install pam_u2f and enroll keys.": {
|
||||
"Not available — install pam_u2f and enroll keys.": "Non disponible — installez pam_2u2f et enregistrez des clés."
|
||||
@@ -4190,10 +4115,10 @@
|
||||
"Override global layout settings for this output": "Remplacer les paramètres de mise en page globale pour cette sortie"
|
||||
},
|
||||
"Override terminal with a custom command or script": {
|
||||
"Override terminal with a custom command or script": "Surcharger le terminal avec une commande personnalisée ou un script"
|
||||
"Override terminal with a custom command or script": ""
|
||||
},
|
||||
"Override the global shadow with per-bar settings": {
|
||||
"Override the global shadow with per-bar settings": "Surcharger l'ombre globale avec des paramètres par barre"
|
||||
"Override the global shadow with per-bar settings": ""
|
||||
},
|
||||
"Overrides": {
|
||||
"Overrides": "Remplacements"
|
||||
@@ -4208,19 +4133,19 @@
|
||||
"Overwrite": "Écraser"
|
||||
},
|
||||
"PAM already provides fingerprint auth. Enable this to show it at login.": {
|
||||
"PAM already provides fingerprint auth. Enable this to show it at login.": "PAM fourni déjà une authentification par empreinte. Activez ceci pour l'afficher lors de la connexion."
|
||||
"PAM already provides fingerprint auth. Enable this to show it at login.": ""
|
||||
},
|
||||
"PAM already provides security-key auth. Enable this to show it at login.": {
|
||||
"PAM already provides security-key auth. Enable this to show it at login.": "PAM fourni déjà une authentification par clé de sécurité. Activez ceci pour l'afficher lors de la connexion."
|
||||
"PAM already provides security-key auth. Enable this to show it at login.": ""
|
||||
},
|
||||
"PAM provides fingerprint auth, but availability could not be confirmed.": {
|
||||
"PAM provides fingerprint auth, but availability could not be confirmed.": ""
|
||||
},
|
||||
"PAM provides fingerprint auth, but no prints are enrolled yet.": {
|
||||
"PAM provides fingerprint auth, but no prints are enrolled yet.": "PAM fourni l'authentification par empreinte, mais aucune empreinte n'a été encore enregistrée."
|
||||
"PAM provides fingerprint auth, but no prints are enrolled yet.": ""
|
||||
},
|
||||
"PAM provides fingerprint auth, but no reader was detected.": {
|
||||
"PAM provides fingerprint auth, but no reader was detected.": "PAM fourni l'authentification par empreinte, mais aucun lecteur n'a été détecté."
|
||||
"PAM provides fingerprint auth, but no reader was detected.": ""
|
||||
},
|
||||
"PIN": {
|
||||
"PIN": "PIN"
|
||||
@@ -4411,7 +4336,7 @@
|
||||
"Playback": "Lecture"
|
||||
},
|
||||
"Playback error: ": {
|
||||
"Playback error: ": "Erreur de lecture : "
|
||||
"Playback error: ": ""
|
||||
},
|
||||
"Please write a name for your new %1 session": {
|
||||
"Please write a name for your new %1 session": "Entrer un nom pour votre nouvelle session %1"
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Restant / Total"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Se souvenir de la dernière session"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Nécessite un compositeur DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Nécessite le support du mode nuit"
|
||||
},
|
||||
@@ -4834,10 +4753,10 @@
|
||||
"Run DMS Templates": "Exécuter les modèles DMS"
|
||||
},
|
||||
"Run Sync to apply.": {
|
||||
"Run Sync to apply.": "Exécutez la Synchro pour appliquer."
|
||||
"Run Sync to apply.": "Lancer la synchro pour appliquer."
|
||||
},
|
||||
"Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.": {
|
||||
"Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.": "Exécutez la Synchro pour appliquer. La connexion par empreinte seulement peut ne pas déverrouiller le gestionnaire de mots de passe Gnome."
|
||||
"Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.": ""
|
||||
},
|
||||
"Run User Templates": {
|
||||
"Run User Templates": "Exécuter les modèles utilisateur"
|
||||
@@ -4864,7 +4783,7 @@
|
||||
"Current Monitor": "Ecran actuel"
|
||||
},
|
||||
"Running greeter sync…": {
|
||||
"Running greeter sync…": "Synchro du greeter en cours…"
|
||||
"Running greeter sync…": ""
|
||||
},
|
||||
"SDR Brightness": {
|
||||
"SDR Brightness": "Luminosité SDR"
|
||||
@@ -5131,10 +5050,10 @@
|
||||
"Shadow Opacity": "Opacité de l'ombre"
|
||||
},
|
||||
"Shadow elevation on bars and panels": {
|
||||
"Shadow elevation on bars and panels": "Élévation de l'ombre sur les barres et les panneaux"
|
||||
"Shadow elevation on bars and panels": ""
|
||||
},
|
||||
"Shadow elevation on modals and dialogs": {
|
||||
"Shadow elevation on modals and dialogs": "Élévation de l'ombre sur les modales et les dialogues"
|
||||
"Shadow elevation on modals and dialogs": ""
|
||||
},
|
||||
"Shadow elevation on popouts, OSDs, and dropdowns": {
|
||||
"Shadow elevation on popouts, OSDs, and dropdowns": ""
|
||||
@@ -5602,7 +5521,7 @@
|
||||
"Sync Position Across Screens": "Synchroniser la position entre les écrans"
|
||||
},
|
||||
"Sync completed successfully.": {
|
||||
"Sync completed successfully.": "Synchro complétée avec succès."
|
||||
"Sync completed successfully.": "Synchro complété avec succès."
|
||||
},
|
||||
"Sync dark mode with settings portals for system-wide theme hints": {
|
||||
"Sync dark mode with settings portals for system-wide theme hints": "Synchroniser le mode sombre avec les préférences système pour l’ensemble du thème"
|
||||
@@ -5611,7 +5530,7 @@
|
||||
"Sync failed in background mode. Trying terminal mode so you can authenticate interactively.": "Synchro échouée en arrière-plan. Essayez avec le terminal pour vous authentifier de façon interactive."
|
||||
},
|
||||
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": {
|
||||
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": "La Synchro nécessite une authentification sudo. Ouverture du terminal pour utiliser le mot de passe ou l'empreinte."
|
||||
"Sync needs sudo authentication. Opening terminal so you can use password or fingerprint.": "La synchro nécessite une authentification sudo. Ouverture du terminal pour utiliser le mot de passe ou l'empreinte."
|
||||
},
|
||||
"System": {
|
||||
"System": "Système"
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Paramètres supplémentaires pour le terminal"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5773,7 +5683,7 @@
|
||||
"Tiling": "Mosaïque"
|
||||
},
|
||||
"Time & Date Locale": {
|
||||
"Time & Date Locale": "Format régional de la date et de l'heure"
|
||||
"Time & Date Locale": ""
|
||||
},
|
||||
"Time & Weather": {
|
||||
"Time & Weather": "Heure et météo"
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner faible"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "Trop de tentatives échouées - le compte peut être verrouillé"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Total des tâches"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformer"
|
||||
},
|
||||
@@ -5941,10 +5845,10 @@
|
||||
"Typography & Motion": "Typographie et animation"
|
||||
},
|
||||
"U2F mode option: key required after password or fingerprint": {
|
||||
"Second Factor (AND)": "Deux facteurs (AND)"
|
||||
"Second Factor (AND)": ""
|
||||
},
|
||||
"U2F mode option: key works as standalone unlock method": {
|
||||
"Alternative (OR)": "Alternatif (OR)"
|
||||
"Alternative (OR)": ""
|
||||
},
|
||||
"Unavailable": {
|
||||
"Unavailable": "Indisponible"
|
||||
@@ -6070,10 +5974,10 @@
|
||||
"Use System Theme": "Utiliser le thème système"
|
||||
},
|
||||
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": {
|
||||
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": "Utilisez une image personnalisée pour l'écran de connexion, ou laissez vide pour utiliser pour fond d'écran de bureau."
|
||||
"Use a custom image for the login screen, or leave empty to use your desktop wallpaper.": ""
|
||||
},
|
||||
"Use a fixed shadow direction for this bar": {
|
||||
"Use a fixed shadow direction for this bar": "Utiliser une direction d'ombre fixe pour cette barre"
|
||||
"Use a fixed shadow direction for this bar": ""
|
||||
},
|
||||
"Use animated wave progress bars for media playback": {
|
||||
"Use animated wave progress bars for media playback": "Utiliser des barres de progression animées en forme de vague pour la lecture multimédia"
|
||||
@@ -6486,10 +6390,10 @@
|
||||
"Manual Direction": "Direction manuelle"
|
||||
},
|
||||
"bar shadow direction source": {
|
||||
"Direction Source": "Direction de la source"
|
||||
"Direction Source": ""
|
||||
},
|
||||
"bar shadow direction source option": {
|
||||
"Inherit Global (Default)": "Hérite des paramètres globaux (par défaut)",
|
||||
"Inherit Global (Default)": "",
|
||||
"Manual": "Manuel"
|
||||
},
|
||||
"bar shadow direction source option | shadow direction option": {
|
||||
@@ -6497,7 +6401,7 @@
|
||||
},
|
||||
"bar shadow settings card": {
|
||||
"Shadow": "Ombre",
|
||||
"Shadow Override": "Surcharge de l'ombre"
|
||||
"Shadow Override": ""
|
||||
},
|
||||
"battery status": {
|
||||
"Charging": "Chargement",
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Désactivé"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Couleur"
|
||||
},
|
||||
@@ -6854,7 +6743,7 @@
|
||||
"Skip setup": "Ignorer la configuration"
|
||||
},
|
||||
"greeter status error": {
|
||||
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "Échec de l'exécution de 'dms greeter status'. Vérifiez que DMS est installé et dans le PATH."
|
||||
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": ""
|
||||
},
|
||||
"greeter status loading": {
|
||||
"Checking…": "Vérification..."
|
||||
@@ -6920,7 +6809,7 @@
|
||||
"Loading...": "Chargement…"
|
||||
},
|
||||
"lock screen U2F security key mode setting": {
|
||||
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "'Alternatif' laisse la clé se déverrouiller d'elle-même. 'Deux facteurs' nécessite un mot de passe ou une empreinte d'abord, puis la clé.",
|
||||
"'Alternative' lets the key unlock on its own. 'Second factor' requires password or fingerprint first, then the key.": "",
|
||||
"Security key mode": "Mode clé de sécurité"
|
||||
},
|
||||
"lock screen U2F security key setting": {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"%1 Animation Speed": {
|
||||
"%1 Animation Speed": "מהירות האנימציה ב%1"
|
||||
"%1 Animation Speed": "מהירות אנימציה %1"
|
||||
},
|
||||
"%1 DMS bind(s) may be overridden by config binds that come after the include.": {
|
||||
"%1 DMS bind(s) may be overridden by config binds that come after the include.": "%1 קיצורי DMS עשויים להידרס על ידי קיצורי config שמגיעים אחרי ה-include."
|
||||
@@ -267,7 +267,7 @@
|
||||
"Activate": "הפעל/י"
|
||||
},
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": {
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "האם להפעיל את מסך ההתחברות של DMS? מסוף ייפתח לאימות עם sudo. הרץ/י את הסנכרון לאחר ההפעלה כדי להחיל את ההגדרות שלך."
|
||||
"Activate the DMS greeter? A terminal will open for sudo authentication. Run Sync after activation to apply your settings.": "האם להפעיל את הGreeter של DMS? מסוף ייפתח לאימות עם sudo. הרץ/י את הסנכרון לאחר ההפעלה כדי להחיל את ההגדרות שלך."
|
||||
},
|
||||
"Activation": {
|
||||
"Activation": "הפעלה"
|
||||
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "התאמת עוצמה לכל הזחת גלילה"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "כוונן/י את הניגודיות של הצבעים שנוצרו (100- = מינימום, 0 = סטנדרטי, 100 = מקסימום)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "מתקדם"
|
||||
@@ -387,7 +387,7 @@
|
||||
"Animation Duration": "משך זמן לאנימציה"
|
||||
},
|
||||
"Animation Speed": {
|
||||
"Animation Speed": "מהירות האנימציה"
|
||||
"Animation Speed": "מהירות אנימציה"
|
||||
},
|
||||
"Anonymous Identity": {
|
||||
"Anonymous Identity": "זהות אנונימית"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "הגדרת טמפרטורת צבע חמה כדי להפחית מאמץ בעיניים. השתמש/י בהגדרות האוטומציה למטה כדי לשלוט מתי ההגדרה מופעלת."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "אפליקציות"
|
||||
},
|
||||
@@ -438,7 +435,7 @@
|
||||
"Apps Dock Settings": "הגדרות לאפליקציות Dock"
|
||||
},
|
||||
"Apps Icon": {
|
||||
"Apps Icon": "סמל האפליקציות"
|
||||
"Apps Icon": "סמל אפליקציות"
|
||||
},
|
||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": {
|
||||
"Apps are ordered by usage frequency, then last used, then alphabetically.": "האפליקציות ממוינות לפי תדירות השימוש, אחר כך לפי שימוש אחרון ולבסוף לפי סדר אלפביתי."
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "נדרש אימות"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "שגיאת אימות - נסה/י שנית"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "התחברות אוטומטית מופעלת"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "מצב צבע אוטומטי"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "רקע"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "שקיפות רקע"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "התקן תאורה אחורית"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth אינו זמין"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "שכבת טשטוש לתמונת הרקע"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "טשטוש בסקירה"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "טשטש/י את הרקע כאשר הסקירה של Niri פתוחה"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "עובי המסגרת"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "מסגרת עם רקע"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "בדוק/בדקי את סטטוס הסנכרון לפי דרישה. הסנכרון מעתיק את ערכת הנושא, ההגדרות, תצורת PAM ותמונת הרקע שלך למסך ההתחברות בפעולה אחת. חובה להריץ סנכרון כדי להחיל שינויים."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "בודק עדכונים..."
|
||||
},
|
||||
@@ -1489,11 +1450,8 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "מנהל התוספים של DMS אינו זמין"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "מסך ההתחברות של DMS דורש את החבילות הבאות: greetd ו dms-greeter (חובה), fprintd ו pam_fprintd (בשביל הזדהות עם טביעת אצבע) ולסיום, pam-u2f (בשביל הזדהות עם מפתחות אבטחה). לאחר התקנת החבילות, הוסף/הוסיפי את המשתמש שלך לקבוצת המערכת greeter ולחץ/י על סנכרון למעלה. במהלך סנכרון, נבדקות ההרשאות לsudo ונפתח חלון מסוף כשנדרש אימות אינטראקטיבי."
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "הGreeter של DMS דורש את החבילות הבאות: greetd ו dms-greeter (חובה), fprintd ו pam_fprintd (בשביל הזדהות עם טביעת אצבע) ולסיום, pam_u2f (בשביל הזדהות עם מפתחות אבטחה). לאחר התקנת החבילות, הוסף/הוסיפי את המשתמש שלך לקבוצת המערכת greeter ולחץ/י על סנכרון למעלה. במהלך סנכרון, נבדקות ההרשאות לsudo ונפתח חלון מסוף כשנדרש אימות אינטראקטיבי."
|
||||
},
|
||||
"DMS out of date": {
|
||||
"DMS out of date": "הDMS לא מעודכן"
|
||||
@@ -1927,11 +1885,8 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "הפעלת אימות באמצעות טביעת אצבע"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "הפעל/י הזדהות באמצעות טביעת אצבע או מפתח אבטחה במסך ההתחברות של DMS. הרץ/י סנכרון כדי להחיל ולהגדיר את PAM."
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "הפעל/י הזדהות באמצעות טביעת אצבע או מפתח אבטחה עבור DMS Greeter. הרץ/י סנכרון כדי להחיל ולהגדיר את PAM."
|
||||
},
|
||||
"Enable loginctl lock integration": {
|
||||
"Enable loginctl lock integration": "הפעלת האינטגרציה עם loginctl"
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "מופעל, אך לא זוהה קורא טביעות אצבע."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "מופעל, אך אין טביעות אצבע רשומות עדיין. רשום/י טביעות אצבע והרץ/י את הסנכרון."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "מופעל, אך אין טביעות אצבע רשומות עדיין. רשום/י טביעות אצבע כדי להשתמש בהם להזדהות."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "מופעל, אך לא נמצא מפתח אבטחה רשום עדיין. רשום/י מפתח והרץ/י את הסנכרון."
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "לא ניתן היה לאשר את זמינות טביעת האצבע."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "זוהה קורא טביעות אצבע, אך אין טביעות אצבע רשומות עדיין. ניתן להפעיל את ההזדהות כעת ולרשום את הטביעות מאוחר יותר."
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "תיקיות"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "מעקב אחרי המסך הממוקד"
|
||||
},
|
||||
@@ -2552,28 +2489,28 @@
|
||||
"Graphics": "גרפיקה"
|
||||
},
|
||||
"Greeter": {
|
||||
"Greeter": "מסך ההתחברות"
|
||||
"Greeter": "Greeter"
|
||||
},
|
||||
"Greeter Appearance": {
|
||||
"Greeter Appearance": "המראה של מסך ההתחברות"
|
||||
"Greeter Appearance": "מראה הGreeter"
|
||||
},
|
||||
"Greeter Behavior": {
|
||||
"Greeter Behavior": "התנהגות מסך ההתחברות"
|
||||
"Greeter Behavior": "התנהגות הGreeter"
|
||||
},
|
||||
"Greeter Status": {
|
||||
"Greeter Status": "מצב מסך ההתחברות"
|
||||
"Greeter Status": "מצב הGreeter"
|
||||
},
|
||||
"Greeter activated. greetd is now enabled.": {
|
||||
"Greeter activated. greetd is now enabled.": "מסך ההתחברות הופעל. greetd פועל כעת כמנהל התצוגה."
|
||||
"Greeter activated. greetd is now enabled.": "Greeter הופעל. greetd מופעל כעת."
|
||||
},
|
||||
"Greeter font": {
|
||||
"Greeter font": "גופן מסך ההתחברות"
|
||||
"Greeter font": "גופן הGreeter"
|
||||
},
|
||||
"Greeter only — does not affect main clock": {
|
||||
"Greeter only — does not affect main clock": "במסך ההתחברות בלבד - ללא השפעה על השעון הראשי"
|
||||
"Greeter only — does not affect main clock": "בGreeter בלבד — ללא השפעה על השעון הראשי"
|
||||
},
|
||||
"Greeter only — format for the date on the login screen": {
|
||||
"Greeter only — format for the date on the login screen": "במסך ההתחברות בלבד - תבנית לתאריך שמופיע בכניסה"
|
||||
"Greeter only — format for the date on the login screen": "בGreeter בלבד — תבנית לתאריך במסך הכניסה"
|
||||
},
|
||||
"Grid": {
|
||||
"Grid": "רשת"
|
||||
@@ -2714,7 +2651,7 @@
|
||||
"Highlight the currently focused app inside workspace indicators": "הדגש/י את האפליקציה הממוקדת כעת בתוך מחווני סביבת העבודה"
|
||||
},
|
||||
"History Settings": {
|
||||
"History Settings": "ההגדרות של היסטוריית ההתראות"
|
||||
"History Settings": "הגדרות של היסטוריית ההתראות"
|
||||
},
|
||||
"History cleared. %1 pinned entries kept.": {
|
||||
"History cleared. %1 pinned entries kept.": "ההיסטוריה נוקתה. %1 רשומות מוצמדות נשמרו."
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "סיסמה שגויה - כשלונות נוספים עלולים לגרום לנעילת החשבון"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "סגנון מחוון"
|
||||
},
|
||||
@@ -2872,20 +2806,17 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "מחוון עוצמת קלט"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "ההתקנה הושלמה. מסך ההתחברות הותקן."
|
||||
"Install complete. Greeter has been installed.": "ההתקנה הושלמה. Greeter הותקן."
|
||||
},
|
||||
"Install plugins from the DMS plugin registry": {
|
||||
"Install plugins from the DMS plugin registry": "התקן/י תוספים ממאגר התוספים של DMS"
|
||||
},
|
||||
"Install the DMS greeter? A terminal will open for sudo authentication.": {
|
||||
"Install the DMS greeter? A terminal will open for sudo authentication.": "להתקין את מסך ההתחברות של DMS? ייפתח מסוף לאימות עם sudo."
|
||||
"Install the DMS greeter? A terminal will open for sudo authentication.": "להתקין את הGreeter של DMS? ייפתח מסוף לאימות עם sudo."
|
||||
},
|
||||
"Installation and PAM setup: see the ": {
|
||||
"Installation and PAM setup: see the ": "להתקנה והגדרה של PAM: ראה/י את "
|
||||
"Installation and PAM setup: see the ": "להתקנה והגדרת PAM: ראה/י את "
|
||||
},
|
||||
"Intelligent Auto-hide": {
|
||||
"Intelligent Auto-hide": "הסתרה אוטומטית חכמה"
|
||||
@@ -3118,7 +3049,7 @@
|
||||
"Unpair": "בטל/י צימוד"
|
||||
},
|
||||
"Keep Awake": {
|
||||
"Keep Awake": "מניעת שינה"
|
||||
"Keep Awake": "השאר/י ער"
|
||||
},
|
||||
"Keep Changes": {
|
||||
"Keep Changes": "שמור/י שינויים"
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "הפעל/י על dGPU"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "הפעל/י על הdGPU כברירת מחדל"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "משגר"
|
||||
@@ -3251,7 +3182,7 @@
|
||||
"Layout Overrides": "דריסות פריסה"
|
||||
},
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "פריסה ומיקומי מודולים במסך ההתחברות מסונכרנים מהמעטפת שלך (לדוגמה, הגדרות הסרגל). הרץ/י סנכרון כדי להחיל."
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "פריסה ומיקומי מודולים בGreeter מסונכרנים מהמעטפת שלך (לדוגמה, הגדרות הסרגל). הרץ/י סנכרון כדי להחיל."
|
||||
},
|
||||
"Left": {
|
||||
"Left": "שמאל"
|
||||
@@ -3335,10 +3266,10 @@
|
||||
"Lock": "נעילה"
|
||||
},
|
||||
"Lock Screen": {
|
||||
"Lock Screen": "מסך הנעילה"
|
||||
"Lock Screen": "מסך נעילה"
|
||||
},
|
||||
"Lock Screen Display": {
|
||||
"Lock Screen Display": "תצוגת מסך הנעילה"
|
||||
"Lock Screen Display": "תצוגת מסך נעילה"
|
||||
},
|
||||
"Lock Screen Format": {
|
||||
"Lock Screen Format": "תבנית מסך הנעילה"
|
||||
@@ -3347,7 +3278,7 @@
|
||||
"Lock Screen behaviour": "התנהגות מסך הנעילה"
|
||||
},
|
||||
"Lock Screen layout": {
|
||||
"Lock Screen layout": "פריסת מסך הנעילה"
|
||||
"Lock Screen layout": "פריסת מסך נעילה"
|
||||
},
|
||||
"Lock at startup": {
|
||||
"Lock at startup": "נעילה בעת ההפעלה"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "תקופת חסד לדהייה של מסך הנעילה"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "נעול"
|
||||
},
|
||||
@@ -3371,7 +3299,7 @@
|
||||
"Logging in...": "מתחבר..."
|
||||
},
|
||||
"Login Authentication": {
|
||||
"Login Authentication": "הזדהות בכניסה"
|
||||
"Login Authentication": "אימות התחברות"
|
||||
},
|
||||
"Long": {
|
||||
"Long": "ארוך"
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": "הצללות והגבהה בהשראת Material Design על חלוניות, חלונות קופצים ותיבות דו-שיח"
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "ניגודיות Matugen"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "פלטת צבעים של Matugen"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "מקסימום רשומות מוצמדות"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "מספר מקסימלי של רשומות לוח ההעתקה לשמירה"
|
||||
},
|
||||
@@ -4043,7 +3968,7 @@
|
||||
"Notification Settings": "הגדרות התראות"
|
||||
},
|
||||
"Notification Timeouts": {
|
||||
"Notification Timeouts": "הקצבת זמן להתראות"
|
||||
"Notification Timeouts": "זמני תפוגת התראות"
|
||||
},
|
||||
"Notification toast popups": {
|
||||
"Notification toast popups": "התראות קופצות"
|
||||
@@ -4450,7 +4375,7 @@
|
||||
"Popouts": "חלונות קופצים"
|
||||
},
|
||||
"Popouts and Modals follow global Animation Speed (disable to customize independently)": {
|
||||
"Popouts and Modals follow global Animation Speed (disable to customize independently)": "חלונות קופצים ומודליים עוקבים אחר מהירות האנימציה הגלובלית (השבת/י כדי להתאים אישית באופן עצמאי)"
|
||||
"Popouts and Modals follow global Animation Speed (disable to customize independently)": "חלונות קופצים ומודליים עוקבים אחר מהירות אנימציה גלובלית (השבת/י כדי להתאים אישית באופן עצמאי)"
|
||||
},
|
||||
"Popup Position": {
|
||||
"Popup Position": "מיקום חלונית קופצת"
|
||||
@@ -4504,10 +4429,10 @@
|
||||
"Power source": "מקור חשמל"
|
||||
},
|
||||
"Pre-fill the last successful username on the greeter": {
|
||||
"Pre-fill the last successful username on the greeter": "מלא/י מראש את שם המשתמש האחרון שהתחבר בהצלחה במסך ההתחברות"
|
||||
"Pre-fill the last successful username on the greeter": "מלא/י מראש את שם המשתמש האחרון שהתחבר בהצלחה בGreeter"
|
||||
},
|
||||
"Pre-select the last used session on the greeter": {
|
||||
"Pre-select the last used session on the greeter": "בחר/י מראש את ההפעלה האחרונה שהייתה בשימוש במסך ההתחברות"
|
||||
"Pre-select the last used session on the greeter": "בחר/י מראש את ההפעלה האחרונה שהייתה בשימוש בGreeter"
|
||||
},
|
||||
"Precip": {
|
||||
"Precip": "משקעים"
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "נותר / סה״כ"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "זכירת ההפעלה האחרונה"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "קומפוזיטור DWL נדרש"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "תמיכה במצב לילה נדרשת"
|
||||
},
|
||||
@@ -4864,7 +4783,7 @@
|
||||
"Current Monitor": "המסך הנוכחי"
|
||||
},
|
||||
"Running greeter sync…": {
|
||||
"Running greeter sync…": "מריץ סנכרון במסך ההתחברות…"
|
||||
"Running greeter sync…": "מפעיל סנכרון לGreeter…"
|
||||
},
|
||||
"SDR Brightness": {
|
||||
"SDR Brightness": "בהירות של SDR"
|
||||
@@ -5065,7 +4984,7 @@
|
||||
"Select font weight for UI text": "בחר/י משקל לגופן שבחרת לטקסט ממשק המשתמש"
|
||||
},
|
||||
"Select greeter background image": {
|
||||
"Select greeter background image": "בחר/י תמונת רקע במסך ההתחברות"
|
||||
"Select greeter background image": "בחר/י תמונת רקע לGreeter"
|
||||
},
|
||||
"Select monitor to configure wallpaper": {
|
||||
"Select monitor to configure wallpaper": "בחר/י מסך להגדרת הרקע"
|
||||
@@ -5212,7 +5131,7 @@
|
||||
"Show Header": "הצג/י כותרת"
|
||||
},
|
||||
"Show Hibernate": {
|
||||
"Show Hibernate": "הצגה של \"שינה עמוקה\""
|
||||
"Show Hibernate": "הצג/י את \"שינה עמוקה\""
|
||||
},
|
||||
"Show Hour Numbers": {
|
||||
"Show Hour Numbers": "הצג/י מספרי שעות"
|
||||
@@ -5233,10 +5152,10 @@
|
||||
"Show Location": "הצגת מיקום"
|
||||
},
|
||||
"Show Lock": {
|
||||
"Show Lock": "הצגה של \"נעילה\""
|
||||
"Show Lock": "הצג/י את \"נעילה\""
|
||||
},
|
||||
"Show Log Out": {
|
||||
"Show Log Out": "הצגה של \"התנתקות\""
|
||||
"Show Log Out": "הצג/י את \"התנתקות\""
|
||||
},
|
||||
"Show Material Design ripple animations on interactive elements": {
|
||||
"Show Material Design ripple animations on interactive elements": "הצג/י אנימציות של אדוות בעיצוב Material על גבי רכיבים אינטראקטיביים"
|
||||
@@ -5263,7 +5182,7 @@
|
||||
"Show Overflow Badge Count": "הצגת תג עם ספירה לגלישה"
|
||||
},
|
||||
"Show Power Off": {
|
||||
"Show Power Off": "הצגה של \"כיבוי\""
|
||||
"Show Power Off": "הצג/י את \"כיבוי\""
|
||||
},
|
||||
"Show Precipitation Probability": {
|
||||
"Show Precipitation Probability": "הצג/י סיכוי למשקעים"
|
||||
@@ -5272,10 +5191,10 @@
|
||||
"Show Pressure": "הצג/י לחץ"
|
||||
},
|
||||
"Show Reboot": {
|
||||
"Show Reboot": "הצגה של \"הפעלה מחדש\""
|
||||
"Show Reboot": "הצג/י את \"הפעלה מחדש\""
|
||||
},
|
||||
"Show Restart DMS": {
|
||||
"Show Restart DMS": "הצגה של \"הפעלה מחדש של DMS\""
|
||||
"Show Restart DMS": "הצג/י את \"הפעלה מחדש של DMS\""
|
||||
},
|
||||
"Show Saved Items": {
|
||||
"Show Saved Items": "הצג/י פריטים שמורים"
|
||||
@@ -5287,7 +5206,7 @@
|
||||
"Show Sunrise/Sunset": "הצג/י זריחה/שקיעה"
|
||||
},
|
||||
"Show Suspend": {
|
||||
"Show Suspend": "הצגה של \"השהיה\""
|
||||
"Show Suspend": "הצג/י את \"השהיה\""
|
||||
},
|
||||
"Show Swap": {
|
||||
"Show Swap": "הצג/י Swap"
|
||||
@@ -5673,23 +5592,14 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "פרמטרים נוספים מותאמים אישית למסוף"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "המעבר למסוף כגיבוי נכשל. התקן/י את אחד מיישומי המסוף הנתמכים או הרץ/י את הפקודה 'dms greeter sync' באופן ידני."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "נפתח מסוף כגיבוי. השלם/השלימי את הסנכרון שם. הוא ייסגר אוטומטית בסיום."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "הbackend של מרבב המסוף שברצונך להשתמש בו"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
"Terminal multiplexer backend to use": "backend של מרבב המסוף שברצונך להשתמש בו"
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "המסוף נפתח. השלם/השלימי את אימות הסנכרון שם. הוא ייסגר אוטומטית בסיום."
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "הטונר עומד להסתיים"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "יותר מדי ניסיונות כושלים - החשבון עלול להינעל"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "סה״כ עבודות"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "שינוי"
|
||||
},
|
||||
@@ -5959,10 +5863,10 @@
|
||||
"Uninstall Plugin": "הסר/י תוסף"
|
||||
},
|
||||
"Uninstall complete. Greeter has been removed.": {
|
||||
"Uninstall complete. Greeter has been removed.": "ההסרה הושלמה. מסך ההתחברות הוסר."
|
||||
"Uninstall complete. Greeter has been removed.": "ההסרה הושלמה. Greeter הוסר."
|
||||
},
|
||||
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": {
|
||||
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "להסיר את מסך ההתחברות של DMS? זה יסיר את ההגדרות וישחזר את מנהל התצוגה הקודם שלך. ייפתח חלון מסוף לאימות עם sudo."
|
||||
"Uninstall the DMS greeter? This will remove configuration and restore your previous display manager. A terminal will open for sudo authentication.": "להסיר את הGreeter של DMS? זה יסיר את ההגדרות וישחזר את מנהל התצוגה הקודם שלך. ייפתח חלון מסוף לאימות עם sudo."
|
||||
},
|
||||
"Unknown": {
|
||||
"Unknown": "לא ידוע"
|
||||
@@ -6426,7 +6330,7 @@
|
||||
"Workspace Padding": "ריווח סביבת העבודה"
|
||||
},
|
||||
"Workspace Settings": {
|
||||
"Workspace Settings": "הגדרות סביבות העבודה"
|
||||
"Workspace Settings": "הגדרות סביבת העבודה"
|
||||
},
|
||||
"Workspace Switcher": {
|
||||
"Workspace Switcher": "מחליף סביבות העבודה"
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "מושבת"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "צבע"
|
||||
},
|
||||
@@ -6637,7 +6526,7 @@
|
||||
"Write:": "כתיבה:"
|
||||
},
|
||||
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": {
|
||||
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "הפרויקט DMS הוא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית עם עיצוב בהשראת <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">Material Design 3</a> של גוגל.<br /><br/>היא נבנתה עם שפת התכנות <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a> ו<a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, ספריית QT6 לבניית מעטפות לשולחן העבודה."
|
||||
"dms is a highly customizable, modern desktop shell with a <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">material 3 inspired</a> design.<br /><br/>It is built with <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, a QT6 framework for building desktop shells, and <a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, a statically typed, compiled programming language.": "dms היא מעטפת שולחן עבודה מודרנית וניתנת להתאמה אישית גבוהה עם עיצוב <a href=\"https://m3.material.io/\" style=\"text-decoration:none; color:%1;\">בהשראת Material Design 3</a>.<br /><br/>היא בנויה עם <a href=\"https://quickshell.org\" style=\"text-decoration:none; color:%1;\">Quickshell</a>, מסגרת QT6 לבניית מעטפות לשולחן העבודה, ו<a href=\"https://go.dev\" style=\"text-decoration:none; color:%1;\">Go</a>, כשפת התכנות."
|
||||
},
|
||||
"dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": {
|
||||
"dms/binds.kdl exists but is not included in config.kdl. Custom keybinds will not work until this is fixed.": "dms/binds.kdl קיים אך אינו כלול בconfig.kdl. קיצורי מקלדת מותאמים אישית לא יעבדו עד שהבעיה תתוקן."
|
||||
@@ -6722,9 +6611,9 @@
|
||||
"GPU Monitoring": "ניטור GPU"
|
||||
},
|
||||
"greeter action confirmation": {
|
||||
"Activate Greeter": "הפעל/י את מסך ההתחברות",
|
||||
"Install Greeter": "התקן/י את מסך ההתחברות",
|
||||
"Uninstall Greeter": "הסר/י את מסך ההתחברות"
|
||||
"Activate Greeter": "הפעל/י את הGreeter",
|
||||
"Install Greeter": "התקן/י את הGreeter",
|
||||
"Uninstall Greeter": "הסר/י את הGreeter"
|
||||
},
|
||||
"greeter back button": {
|
||||
"Back": "חזרה"
|
||||
@@ -6787,7 +6676,7 @@
|
||||
"Colors from wallpaper": "צבעים מתמונת רקע",
|
||||
"Community themes": "ערכות נושא קהילתיות",
|
||||
"Extensible architecture": "ארכיטקטורה ניתנת להרחבה",
|
||||
"GTK, Qt, IDEs, more": "Qt, GTK, סביבות פיתוח, ועוד",
|
||||
"GTK, Qt, IDEs, more": "GTK, Qt, סביבות פיתוח, ועוד",
|
||||
"Modular widget bar": "פס ווידג׳טים מודולרי",
|
||||
"Night mode & gamma": "מצב לילה וגאמה",
|
||||
"Per-screen config": "הגדרה לכל מסך",
|
||||
@@ -6854,7 +6743,7 @@
|
||||
"Skip setup": "דלג/י על ההתקנה"
|
||||
},
|
||||
"greeter status error": {
|
||||
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "הרצת הפקודה 'dms greeter status' נכשלה. ודא/י שDMS מותקן ו-dms נמצא בPATH."
|
||||
"Failed to run 'dms greeter status'. Ensure DMS is installed and dms is in PATH.": "הפעלת 'dms greeter status' נכשלה. ודא/י שDMS מותקן ו-dms נמצא בPATH."
|
||||
},
|
||||
"greeter status loading": {
|
||||
"Checking…": "בודק…"
|
||||
@@ -7368,7 +7257,7 @@
|
||||
"Wallpaper processing failed": "עיבוד תמונת הרקע נכשל"
|
||||
},
|
||||
"wallpaper settings disable description": {
|
||||
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "השתמש/י במנהל רקעים חיצוני כמו hyprpaper, awww או swaybg."
|
||||
"Use an external wallpaper manager like swww, hyprpaper, or swaybg.": "השתמש/י במנהל רקעים חיצוני כמו hyprpaper, swww או swaybg."
|
||||
},
|
||||
"wallpaper settings disable toggle": {
|
||||
"Disable Built-in Wallpapers": "השבתת רקעים מובנים"
|
||||
|
||||
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "Hangerőállítás görgetési lépésenként"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Beállítja a generált színek kontrasztját (-100 = minimum, 0 = normál, 100 = maximum)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "Speciális"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Meleg színhőmérséklet alkalmazása a szem megerőltetésének csökkentése érdekében. Az alábbi automatizálási beállítások segítségével szabályozhatod, hogy mikor aktiválódjon."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Alkalmazások"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Hitelesítés szükséges"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Hitelesítési hiba – próbáld újra"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Automatikus csatlakozás engedélyezve"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Automatikus színmód"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Háttér"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Háttér átlátszósága"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Háttérvilágítás eszköz"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "A Bluetooth nem elérhető"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Háttérkép elmosási réteg"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Elmosás az áttekintésben"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Háttérkép elmosása, ha a niri-áttekintés nyitva van"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Szegély vastagsága"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Szegély háttérrel"
|
||||
},
|
||||
@@ -937,14 +901,11 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "Szinkronizálási állapot ellenőrzése igény szerint. A szinkronizálás (Sync) egy lépésben másolja a témát, a beállításokat, a PAM konfigurációt és a háttérképet a bejelentkezési képernyőre. A módosítások alkalmazásához futtatni kell a szinkronizálást."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Frissítések keresése…"
|
||||
},
|
||||
"Checking whether sudo authentication is needed…": {
|
||||
"Checking whether sudo authentication is needed…": "Sudo hitelesítés szükségességének ellenőrzése…"
|
||||
"Checking whether sudo authentication is needed…": "Annak ellenőrzése, hogy szükség van-e sudo hitelesítésre…"
|
||||
},
|
||||
"Checking...": {
|
||||
"Checking...": "Ellenőrzés…"
|
||||
@@ -1217,7 +1178,7 @@
|
||||
"Configure which displays show \"%1\"": "Mely kijelzők mutassák ezt: „%1”"
|
||||
},
|
||||
"Configure which displays show shell components": {
|
||||
"Configure which displays show shell components": "Mely kijelzőkön jelenjenek meg a héj összetevői"
|
||||
"Configure which displays show shell components": "Mely kijelzőkön jelenjenek meg a shell összetevői"
|
||||
},
|
||||
"Confirm": {
|
||||
"Confirm": "Megerősítés"
|
||||
@@ -1229,7 +1190,7 @@
|
||||
"Confirm Display Changes": "Kijelzőváltoztatások megerősítése"
|
||||
},
|
||||
"Confirm passkey for ": {
|
||||
"Confirm passkey for ": "Párosítási kód megerősítése ehhez: "
|
||||
"Confirm passkey for ": "Jelszó megerősítése ehhez: "
|
||||
},
|
||||
"Conflicts with: %1": {
|
||||
"Conflicts with: %1": "Ütközik ezzel: %1"
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "A DMS-bővítménykezelő nem elérhető"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "DMS üdvözlőképernyő követelményei: greetd, dms-greeter. Ujjlenyomat: fprintd, pam_fprintd. Biztonsági kulcsok: pam_u2f. Add hozzá a felhasználódat a greeter csoporthoz. A szinkronizálás először ellenőrzi a sudo-t, és terminált nyit, ha interaktív hitelesítés szükséges."
|
||||
},
|
||||
@@ -1502,7 +1460,7 @@
|
||||
"DMS service is not connected. Clipboard settings are unavailable.": "A DMS-szolgáltatás nincs csatlakoztatva. A vágólapbeállítások nem elérhetők."
|
||||
},
|
||||
"DMS shell actions (launcher, clipboard, etc.)": {
|
||||
"DMS shell actions (launcher, clipboard, etc.)": "DMS héj-műveletek (indító, vágólap, stb.)"
|
||||
"DMS shell actions (launcher, clipboard, etc.)": "DMS shell műveletek (indító, vágólap, stb.)"
|
||||
},
|
||||
"DMS_SOCKET not available": {
|
||||
"DMS_SOCKET not available": "A DMS_SOCKET nem elérhető"
|
||||
@@ -1568,7 +1526,7 @@
|
||||
"Daytime": "Nappal"
|
||||
},
|
||||
"Deck": {
|
||||
"Deck": "Köteg"
|
||||
"Deck": "Pakli"
|
||||
},
|
||||
"Default": {
|
||||
"Default": "Alapértelmezett"
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Ujjlenyomatos azonosítás engedélyezése"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "Ujjlenyomat vagy biztonsági kulcs engedélyezése a DMS üdvözlőképernyőhöz. Futtasd a szinkronizálást az alkalmazáshoz és a PAM konfigurálásához."
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Engedélyezve, de nem található ujjlenyomat-olvasó."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Engedélyezve, de még nincs regisztrált ujjlenyomat. Regisztrálj ujjlenyomatokat, majd futtasd a szinkronizálást."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Engedélyezve, de még nincs regisztrált ujjlenyomat. A használathoz regisztrálj ujjlenyomatokat."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "Engedélyezve, de nem található regisztrált biztonsági kulcs. Regisztrálj egy kulcsot, majd futtasd a szinkronizálást."
|
||||
},
|
||||
@@ -2012,7 +1961,7 @@
|
||||
"Enlargement %": "Nagyítás %"
|
||||
},
|
||||
"Enter 6-digit passkey": {
|
||||
"Enter 6-digit passkey": "Add meg a 6 számjegyű párosítási kódot"
|
||||
"Enter 6-digit passkey": "Add meg a 6 számjegyű jelszót"
|
||||
},
|
||||
"Enter PIN": {
|
||||
"Enter PIN": "Írd be a PIN-kódot"
|
||||
@@ -2051,13 +2000,13 @@
|
||||
"Enter network name and password": "Add meg a hálózat nevét és jelszavát"
|
||||
},
|
||||
"Enter passkey for ": {
|
||||
"Enter passkey for ": "Párosítási kód megadása ehhez: "
|
||||
"Enter passkey for ": "Jelszó megadása ehhez: "
|
||||
},
|
||||
"Enter password for ": {
|
||||
"Enter password for ": "Add meg a jelszót: "
|
||||
},
|
||||
"Enter this passkey on ": {
|
||||
"Enter this passkey on ": "Írd be ezt a párosítási kódot ehhez: "
|
||||
"Enter this passkey on ": "Írd be ezt a jelszót ehhez: "
|
||||
},
|
||||
"Enter to Paste": {
|
||||
"Enter to Paste": "Enter a beillesztéshez"
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "Az ujjlenyomat-olvasó elérhetősége nem erősíthető meg."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Ujjlenyomat-olvasó észlelve, de még nincs regisztrált ujjlenyomat. Most engedélyezheted, és később regisztrálhatsz."
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Mappa"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Monitor fókuszának követése"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Helytelen jelszó – a következő sikertelen próbálkozások a fiók zárolását vonhatják maguk után"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Jelző stílusa"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Bemeneti hangerő csúszka"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Telepítés befejezve. Az üdvözlőképernyő telepítve lett."
|
||||
},
|
||||
@@ -2937,7 +2868,7 @@
|
||||
"SMS": "SMS"
|
||||
},
|
||||
"KDE Connect accept pairing button": {
|
||||
"Accept": "Elfogadás"
|
||||
"Accept": "Elfogad"
|
||||
},
|
||||
"KDE Connect browse action": {
|
||||
"Opening file browser": "Fájlkezelő megnyitása",
|
||||
@@ -2987,7 +2918,7 @@
|
||||
"File received from": "Fájl érkezett innen:"
|
||||
},
|
||||
"KDE Connect hint message": {
|
||||
"Make sure KDE Connect is running on your other devices": "Győződj meg róla, hogy a KDE Connect fut a többi eszközön"
|
||||
"Make sure KDE Connect is running on your other devices": "Győződjön meg róla, hogy a KDE Connect fut a többi eszközén"
|
||||
},
|
||||
"KDE Connect no devices message": {
|
||||
"No devices found": "Nem találhatók eszközök"
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "Indítás dGPU-n"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "Indítás alapértelmezés szerint a dGPU-n"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "Indító"
|
||||
@@ -3251,7 +3182,7 @@
|
||||
"Layout Overrides": "Elrendezés felülbírálása"
|
||||
},
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": {
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Az üdvözlőképernyő elrendezése és a modulok pozíciói a héjból (pl. sávkonfiguráció) vannak szinkronizálva. Futtasd a szinkronizálást az alkalmazáshoz."
|
||||
"Layout and module positions on the greeter are synced from your shell (e.g. bar config). Run Sync to apply.": "Az üdvözlőképernyő elrendezése és a modulok pozíciói a shellből (pl. sávkonfiguráció) vannak szinkronizálva. Futtasd a szinkronizálást az alkalmazáshoz."
|
||||
},
|
||||
"Left": {
|
||||
"Left": "Bal"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Zárolási elhalványítás türelmi ideje"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Zárolva"
|
||||
},
|
||||
@@ -3422,16 +3350,16 @@
|
||||
"Margin": "Margó"
|
||||
},
|
||||
"Marker Supply Empty": {
|
||||
"Marker Supply Empty": "A festék kifogyott"
|
||||
"Marker Supply Empty": "Jelölőanyag-ellátás üres"
|
||||
},
|
||||
"Marker Supply Low": {
|
||||
"Marker Supply Low": "A festék szintje alacsony"
|
||||
"Marker Supply Low": "Jelölőanyag-ellátás alacsony"
|
||||
},
|
||||
"Marker Waste Almost Full": {
|
||||
"Marker Waste Almost Full": "A hulladéktartály majdnem tele"
|
||||
"Marker Waste Almost Full": "Jelölőanyag-hulladék majdnem tele"
|
||||
},
|
||||
"Marker Waste Full": {
|
||||
"Marker Waste Full": "A hulladéktartály megtelt"
|
||||
"Marker Waste Full": "Jelölőanyag-hulladék tele"
|
||||
},
|
||||
"Match Criteria": {
|
||||
"Match Criteria": "Illesztési feltételek"
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": "Material stílusú árnyékok és emelések a modális ablakokon, felugrókon és párbeszédpaneleken"
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "Matugen kontraszt"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "Matugen paletta"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Rögzített bejegyzések maximális száma"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Megtartandó vágólap-bejegyzések maximális száma"
|
||||
},
|
||||
@@ -3638,7 +3563,7 @@
|
||||
"Monitor whose wallpaper drives dynamic theming colors": "Az a monitor, amelynek háttérképe meghatározza a dinamikus témaszíneket"
|
||||
},
|
||||
"Monocle": {
|
||||
"Monocle": "Egyablakos"
|
||||
"Monocle": "Monokli"
|
||||
},
|
||||
"Monospace Font": {
|
||||
"Monospace Font": "Rögzített szélességű betűtípus"
|
||||
@@ -4226,7 +4151,7 @@
|
||||
"PIN": "PIN"
|
||||
},
|
||||
"Pad Hours": {
|
||||
"Pad Hours": "Kezdő nulla az órákhoz"
|
||||
"Pad Hours": "Órák kiegészítése"
|
||||
},
|
||||
"Pad hours (02:00 vs 2:00)": {
|
||||
"Pad hours (02:00 vs 2:00)": "Órák kiegészítése nullával (02:00 vs 2:00)"
|
||||
@@ -4253,7 +4178,7 @@
|
||||
"Partly Cloudy": "Részben felhős"
|
||||
},
|
||||
"Passkey:": {
|
||||
"Passkey:": "Párosítási kód:"
|
||||
"Passkey:": "Jelszó:"
|
||||
},
|
||||
"Password": {
|
||||
"Password": "Jelszó"
|
||||
@@ -4329,7 +4254,7 @@
|
||||
"File received from": "Fájl érkezett tőle:"
|
||||
},
|
||||
"Phone Connect hint message": {
|
||||
"Make sure KDE Connect or Valent is running on your other devices": "Győződj meg róla, hogy a KDE Connect vagy a Valent fut a többi eszközön"
|
||||
"Make sure KDE Connect or Valent is running on your other devices": "Győződj meg róla, hogy a KDE Connect vagy a Valent fut a többi eszközödön"
|
||||
},
|
||||
"Phone Connect no devices status | bluetooth status": {
|
||||
"No devices": "Nincsenek eszközök"
|
||||
@@ -4594,7 +4519,7 @@
|
||||
"Processing": "Feldolgozás"
|
||||
},
|
||||
"Profile Image Error": {
|
||||
"Profile Image Error": "Profilképhiba"
|
||||
"Profile Image Error": "Profilkép-hiba"
|
||||
},
|
||||
"Profile activated: %1": {
|
||||
"Profile activated: %1": "Profil aktiválva: %1"
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Hátralévő / Összesen"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Utolsó munkamenet megjegyzése"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Szükséges a DWL kompozitor"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Éjszakai mód támogatás szükséges"
|
||||
},
|
||||
@@ -4846,7 +4765,7 @@
|
||||
"Run a program (e.g., firefox, kitty)": "Program futtatása (pl. firefox, kitty)"
|
||||
},
|
||||
"Run a shell command (e.g., notify-send)": {
|
||||
"Run a shell command (e.g., notify-send)": "Héjparancs futtatása (pl. notify-send)"
|
||||
"Run a shell command (e.g., notify-send)": "Shell parancs futtatása (pl. notify-send)"
|
||||
},
|
||||
"Running Apps": {
|
||||
"Running Apps": "Futó alkalmazások"
|
||||
@@ -4942,7 +4861,7 @@
|
||||
"Scroll Factor": "Görgetési tényező"
|
||||
},
|
||||
"Scroll GitHub": {
|
||||
"Scroll GitHub": "Scroll GitHub"
|
||||
"Scroll GitHub": "Scroll GitHubja"
|
||||
},
|
||||
"Scroll Wheel": {
|
||||
"Scroll Wheel": "Egérgörgő"
|
||||
@@ -5146,7 +5065,7 @@
|
||||
"Share Gamma Control Settings": "Gammavezérlési beállítások megosztása"
|
||||
},
|
||||
"Shell": {
|
||||
"Shell": "Héj"
|
||||
"Shell": "Shell"
|
||||
},
|
||||
"Shift+Del: Clear All • Esc: Close": {
|
||||
"Shift+Del: Clear All • Esc: Close": "Shift+Del: Összes törlése • Esc: Bezárás"
|
||||
@@ -5512,7 +5431,7 @@
|
||||
"Speed": "Sebesség"
|
||||
},
|
||||
"Spool Area Full": {
|
||||
"Spool Area Full": "A nyomtatási sor megtelt"
|
||||
"Spool Area Full": "Spool terület tele"
|
||||
},
|
||||
"Square Corners": {
|
||||
"Square Corners": "Szögletes sarkok"
|
||||
@@ -5581,7 +5500,7 @@
|
||||
"Swap": "Cserehely"
|
||||
},
|
||||
"Sway Website": {
|
||||
"Sway Website": "Sway weboldal"
|
||||
"Sway Website": "Sway weboldala"
|
||||
},
|
||||
"Switch User": {
|
||||
"Switch User": "Felhasználóváltás"
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Terminál egyéni további paraméterei"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "A terminál tartalék megnyitása sikertelen. Telepíts egyet a támogatott terminálemulátorok közül, vagy futtasd a 'dms greeter sync' parancsot."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminál tartalék megnyitva, ott befejezheted a szinkronizálást; automatikusan be fog záródni, ha kész lesz."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "Használandó terminálmultiplexer-háttérprogram"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminál megnyitva, ott befejezheted a szinkronizálás hitelesítését; automatikusan be fog záródni, ha kész lesz."
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner alacsony"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "Túl sok sikertelen próbálkozás - a fiók zárolva lehet"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Összes feladat"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Átalakítás"
|
||||
},
|
||||
@@ -6205,7 +6109,7 @@
|
||||
"Version": "Verzió"
|
||||
},
|
||||
"Vertical Deck": {
|
||||
"Vertical Deck": "Függőleges köteg"
|
||||
"Vertical Deck": "Függőleges pakli"
|
||||
},
|
||||
"Vertical Grid": {
|
||||
"Vertical Grid": "Függőleges rács"
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Letiltva"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Szín"
|
||||
},
|
||||
@@ -6875,7 +6764,7 @@
|
||||
"Features": "Funkciók"
|
||||
},
|
||||
"greeter welcome page tagline": {
|
||||
"A modern desktop shell for Wayland compositors": "Egy modern asztali héj Wayland kompozitorokhoz"
|
||||
"A modern desktop shell for Wayland compositors": "Egy modern asztali shell Wayland kompozitorokhoz"
|
||||
},
|
||||
"greeter welcome page title": {
|
||||
"Welcome to DankMaterialShell": "Üdvözlünk a DankMaterialShell-ben"
|
||||
@@ -7169,7 +7058,7 @@
|
||||
"Select Profile Image": "Profilkép kiválasztása"
|
||||
},
|
||||
"qt theme env error body": {
|
||||
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Be kell állítanod a\nQT_QPA_PLATFORMTHEME=gtk3\nvagy a\nQT_QPA_PLATFORMTHEME=qt6ct\nkörnyezeti változót, majd indítsd újra a héjat.\n\nA qt6ct-hez telepíteni kell a qt6ct-kde csomagot."
|
||||
"You need to set either:\nQT_QPA_PLATFORMTHEME=gtk3 OR\nQT_QPA_PLATFORMTHEME=qt6ct\nas environment variables, and then restart the shell.\n\nqt6ct requires qt6ct-kde to be installed.": "Be kell állítanod a\nQT_QPA_PLATFORMTHEME=gtk3\nvagy a\nQT_QPA_PLATFORMTHEME=qt6ct\nkörnyezeti változót, majd indítsd újra a shellt.\n\nA qt6ct-hez telepíteni kell a qt6ct-kde csomagot."
|
||||
},
|
||||
"qt theme env error title": {
|
||||
"Missing Environment Variables": "Hiányzó környezeti változók"
|
||||
@@ -7325,7 +7214,7 @@
|
||||
"Wallpaper processing failed - check wallpaper path": "A háttérkép feldolgozása sikertelen - ellenőrizd a háttérkép útvonalát"
|
||||
},
|
||||
"wallpaper error status": {
|
||||
"Wallpaper Error": "Háttérképhiba"
|
||||
"Wallpaper Error": "Háttérkép hiba"
|
||||
},
|
||||
"wallpaper fill mode": {
|
||||
"Fill": "Kitöltés",
|
||||
|
||||
@@ -105,7 +105,7 @@
|
||||
"%1m ago": "%1 min fa"
|
||||
},
|
||||
"(Unnamed)": {
|
||||
"(Unnamed)": "(Senza nome)"
|
||||
"(Unnamed)": "(Senza Nome)"
|
||||
},
|
||||
"+ %1 more": {
|
||||
"+ %1 more": "+ %1 altre"
|
||||
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "Regola volume per scatto rotellina"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Regola il contrasto dei colori generati (-100 = minimo, 0 = standard, 100 = massimo)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "Avanzate"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Applica una temperatura colore più calda per ridurre l'affaticamento visivo. Usa le impostazioni di automazione qui sotto per controllare quando attivarla."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "App"
|
||||
},
|
||||
@@ -527,7 +524,7 @@
|
||||
"Authenticate": "Autenticati"
|
||||
},
|
||||
"Authenticating...": {
|
||||
"Authenticating...": "Autenticazione in corso..."
|
||||
"Authenticating...": "Autenticazione in Corso..."
|
||||
},
|
||||
"Authentication": {
|
||||
"Authentication": "Autenticazione"
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Autenticazione Richiesta"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Errore di autenticazione - riprova"
|
||||
},
|
||||
@@ -584,7 +569,7 @@
|
||||
"Auto-close Niri overview when launching apps.": "Chiudi automaticamente la panoramica di Niri all'avvio delle app."
|
||||
},
|
||||
"Auto-hide": {
|
||||
"Auto-hide": "Nascondi Automaticamente"
|
||||
"Auto-hide": "Nascondi automaticamente"
|
||||
},
|
||||
"Auto-hide Dock": {
|
||||
"Auto-hide Dock": "Nascondi Automaticamente la Dock"
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Connessione automatica abilitata"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Modalità Colore Automatica"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Sfondo"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Opacità dello Sfondo"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Dispositivo di retroilluminazione"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth non disponibile"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Sfoca il Livello dello Sfondo"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Sfocatura su Panoramica"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Sfoca lo sfondo quando la panoramica di niri è aperta"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Spessore Bordo"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Bordo con Sfondo"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "Controlla lo stato di sincronizzazione su richiesta. Sincronizza copia il tema, le impostazioni, la configurazione PAM e lo sfondo nella schermata di blocco in un solo passaggio. È necessario eseguire Sincronizza per applicare le modifiche."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Controllo aggiornamenti..."
|
||||
},
|
||||
@@ -1487,10 +1448,7 @@
|
||||
"DEMO MODE - Click anywhere to exit": "MODALITÀ DEMO - Fai clic ovunque per uscire"
|
||||
},
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Gestore Plugin DMS non Disponibile"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
"DMS Plugin Manager Unavailable": "Gestore Plugin DMS non disponibile"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "Il greeter DMS richiede: greetd, dms-greeter. Impronte digitali: fprintd, pam_fprintd. Chiavi di sicurezza: pam_u2f. Aggiungi il tuo utente al gruppo greeter. La sincronizzazione controlla prima sudo e apre un terminale se è richiesta l'autenticazione interattiva."
|
||||
@@ -1667,7 +1625,7 @@
|
||||
"Digital": "Digitale"
|
||||
},
|
||||
"Disable Autoconnect": {
|
||||
"Disable Autoconnect": "Disattiva Autoconn."
|
||||
"Disable Autoconnect": "Disattiva autoconn."
|
||||
},
|
||||
"Disable Clipboard Manager": {
|
||||
"Disable Clipboard Manager": "Disabilita Gestore Appunti"
|
||||
@@ -1877,7 +1835,7 @@
|
||||
"Enable 10-bit color depth for wider color gamut and HDR support": "Abilita profondità colore a 10 bit per una gamma cromatica più ampia e supporto HDR"
|
||||
},
|
||||
"Enable Autoconnect": {
|
||||
"Enable Autoconnect": "Attiva Autoconn."
|
||||
"Enable Autoconnect": "Abilita connessione automatica"
|
||||
},
|
||||
"Enable Bar": {
|
||||
"Enable Bar": "Abilita Barra"
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Abilita autenticazione tramite impronta digitale"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "Abilita impronta digitale o chiave di sicurezza per il Greeter DMS. Esegui Sincronizza per applicare e configurare PAM."
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Attivato, ma non è stato rilevato nessun lettore di impronte digitali."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Attivato, ma nessuna impronta è ancora registrata. Registra le impronte ed esegui Sincronizza."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Attivato, ma nessuna impronta è ancora registrata. Registra le impronte per utilizzarlo."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "Attivato, ma nessuna chiave di sicurezza registrata trovata. Registra una chiave ed esegui Sincronizza."
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "La disponibilità dell'impronta digitale non ha potuto essere confermata."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Lettore di impronte rilevato, ma nessuna impronta è ancora registrata. Puoi abilitarlo ora e registrare le impronte in seguito."
|
||||
},
|
||||
@@ -2354,7 +2294,7 @@
|
||||
"Fix Now": "Correggi Ora"
|
||||
},
|
||||
"Fixing...": {
|
||||
"Fixing...": "Correzione in corso..."
|
||||
"Fixing...": "Correzione in Corso..."
|
||||
},
|
||||
"Flags": {
|
||||
"Flags": "Flag"
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Cartelle"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Segui lo Schermo Attivo"
|
||||
},
|
||||
@@ -2504,7 +2441,7 @@
|
||||
"GPU Temperature": "Temperatura GPU"
|
||||
},
|
||||
"GPU temperature display": {
|
||||
"GPU temperature display": "Mostra Temperatura GPU"
|
||||
"GPU temperature display": "Visualizzazione temperatura GPU"
|
||||
},
|
||||
"Games": {
|
||||
"Games": "Giochi"
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Password errata - ulteriori errori potrebbero bloccare l'account"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Stile Indicatore"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Slider Volume di Input"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Installazione completata. Il Greeter è stato installato."
|
||||
},
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "Avvia su dGPU"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "Avvia sulla GPU dedicata per impostazione predefinita"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "Launcher"
|
||||
@@ -3299,7 +3230,7 @@
|
||||
"Loading codecs...": "Caricamento codec in corso..."
|
||||
},
|
||||
"Loading keybinds...": {
|
||||
"Loading keybinds...": "Caricamento scorciatoie..."
|
||||
"Loading keybinds...": "Caricamento Scorciatoie..."
|
||||
},
|
||||
"Loading overlay subtitle": {
|
||||
"This may take a few seconds": "L'operazione potrebbe richiedere alcuni secondi"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Periodo di attesa per la dissolvenza al blocco"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Bloccato"
|
||||
},
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": "Ombre e rilievi ispirati al Material Design su modali, popup e finestre di dialogo"
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "Contrasto Matugen"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "Tavolozza Matugen"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Numero Massimo di Voci Fissate"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Numero massimo di voci degli appunti da conservare"
|
||||
},
|
||||
@@ -4247,7 +4172,7 @@
|
||||
"Pairing failed": "Impossibile associare"
|
||||
},
|
||||
"Pairing...": {
|
||||
"Pairing...": "Associazione in corso..."
|
||||
"Pairing...": "Associazione in Corso..."
|
||||
},
|
||||
"Partly Cloudy": {
|
||||
"Partly Cloudy": "Parzialmente Nuvoloso"
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Rimanente/Totale"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Ricorda l'ultima sessione"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Richiede compositor DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Richiede il supporto alla modalità notturna"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Parametri aggiuntivi personalizzati terminale"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminale di ripiego fallito. Installa uno degli emulatori di terminale supportati o esegui \"dms greeter sync\" manualmente."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminale di ripiego aperto. Completa la sincronizzazione lì; si chiuderà automaticamente al termine."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "Backend multiplexer del terminale da usare"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminale aperto. Completa l'autenticazione per la sincronizzazione lì; si chiuderà automaticamente al termine."
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner in Esaurimento"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "Troppi tentativi falliti - l'account potrebbe essere bloccato"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Stampe Totali"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Trasforma"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Disattivato"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Colore"
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "目の疲れを軽減するために、暖色系の色温度を適用します。以下の自動化設定で、いつアクティブにするか制御できます。"
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": ""
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "認証が必要です"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "自動接続が有効"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": ""
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": ""
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": ""
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": ""
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": ""
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "概要でぼかす"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Niri概要が開いているときに壁紙をぼかす"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "ボーダーの太さ"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": ""
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS プラグイン マネージャーが利用できません"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "指紋認証を有効に"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": ""
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": ""
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "インジケータースタイル"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": ""
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": ""
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": ""
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": ""
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": ""
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "DWLコンポジターが必要"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": ""
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "端末のカスタム追加パラメーター"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "トナーが低い"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": ""
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": ""
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": ""
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": ""
|
||||
},
|
||||
|
||||
@@ -330,7 +330,7 @@
|
||||
"Adjust volume per scroll indent": "Volume per scrollstap aanpassen"
|
||||
},
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": {
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": "Past het contrast van gegenereerde kleuren aan (-100 = minimum, 0 = standaard, 100 = maximum)"
|
||||
"Adjusts contrast of generated colors (-100 = minimum, 0 = standard, 100 = maximum)": ""
|
||||
},
|
||||
"Advanced": {
|
||||
"Advanced": "Geavanceerd"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Warme kleurtemperatuur toepassen om oogvermoeidheid te verminderen. Gebruik de automatiseringsinstellingen hieronder om te bepalen wanneer dit activeert."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Apps"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Authenticatie vereist"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Authenticatiefout - probeer het opnieuw"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Automatisch verbinden ingeschakeld"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Automatische kleurmodus"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Achtergrond"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Achtergronddekking"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Achtergrondverlichtingsapparaat"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth niet beschikbaar"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Achtergrondlaag vervagen"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Vervagen bij overzicht"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Achtergrond vervagen wanneer niri-overzicht open is"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Randdikte"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Rand met achtergrond"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "Controleer de synchronisatiestatus op aanvraag. Sync kopieert je thema, instellingen, PAM-configuratie en achtergrond in één stap naar het aanmeldscherm. Je moet Sync uitvoeren om wijzigingen toe te passen."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Zoeken naar updates..."
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS Plug-inbeheer niet beschikbaar"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "DMS Greeter vereist: greetd, dms-greeter. Vingerafdruk: fprintd, pam_fprintd. Beveiligingssleutels: pam_u2f. Voeg je gebruiker toe aan de greeter-groep. Sync controleert eerst sudo en opent een terminal als interactieve authenticatie vereist is."
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Vingerafdrukverificatie inschakelen"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "Schakel vingerafdruk of beveiligingssleutel in voor DMS Greeter. Voer Sync uit om toe te passen en PAM te configureren."
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Ingeschakeld, maar er is geen vingerafdrukscanner gedetecteerd."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Ingeschakeld, maar er zijn nog geen afdrukken geregistreerd. Registreer vingerafdrukken en voer Sync uit."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Ingeschakeld, maar er zijn nog geen afdrukken geregistreerd. Registreer vingerafdrukken om dit te gebruiken."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "Ingeschakeld, maar er is nog geen geregistreerde beveiligingssleutel gevonden. Registreer een sleutel en voer Sync uit."
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "Beschikbaarheid van vingerafdrukscanner kon niet worden bevestigd."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Vingerafdrukscanner gedetecteerd, maar er zijn nog geen afdrukken geregistreerd. U kunt dit nu inschakelen en later registreren."
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Mappen"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Monitorfocus volgen"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Onjuist wachtwoord - volgende fouten kunnen leiden tot blokkering van account"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Indicatorstijl"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Invoervolumeschuif"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Installatie voltooid. Greeter is geïnstalleerd."
|
||||
},
|
||||
@@ -3233,7 +3164,7 @@
|
||||
"Launch on dGPU": "Starten op dGPU"
|
||||
},
|
||||
"Launch on dGPU by default": {
|
||||
"Launch on dGPU by default": "Start standaard op dGPU"
|
||||
"Launch on dGPU by default": ""
|
||||
},
|
||||
"Launcher": {
|
||||
"Launcher": "Starter"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Vervalperiode vergrendelvervaging"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Vergrendeld"
|
||||
},
|
||||
@@ -3446,7 +3374,7 @@
|
||||
"Material inspired shadows and elevation on modals, popouts, and dialogs": "Op Material Design geïnspireerde schaduwen en diepte (elevation) op modale vensters, pop-outs en dialoogvensters"
|
||||
},
|
||||
"Matugen Contrast": {
|
||||
"Matugen Contrast": "Matugen Contrast"
|
||||
"Matugen Contrast": ""
|
||||
},
|
||||
"Matugen Palette": {
|
||||
"Matugen Palette": "Matugen-palet"
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Maximaal aantal vastgemaakte items"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Maximaal aantal te bewaren klemborditems"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Resterend / Totaal"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Onthoud laatste sessie"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Vereist DWL-compositor"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Vereist ondersteuning voor nachtmodus"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Aangepaste extra parameters terminal"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminal fallback mislukt. Installeer een van de ondersteunde terminal-emulators of voer handmatig 'dms greeter sync' uit."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminal fallback geopend. Voltooi de synchronisatie daar; de terminal sluit automatisch wanneer dit is voltooid."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "Te gebruiken terminal-multiplexer-backend"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal geopend. Voltooi de sync-authenticatie daar; de terminal sluit automatisch wanneer dit is voltooid."
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner laag"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "Te veel mislukte pogingen - account is mogelijk geblokkeerd"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Totaal aantal taken"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformatie"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Uitgeschakeld"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Kleur"
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Zastosuj ciepłą temperaturę barwową, aby zmniejszyć zmęczenie oczu. Użyj poniższych ustawień automatyzacji, aby kontrolować, kiedy się aktywuje."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": ""
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Wymagane uwierzytelnienie"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Automatyczne łączenie włączone"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": ""
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Przeźroczystość tła"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Urządzenie podświetlenia"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth niedostępne"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Rozmyj Warstwę Tapety"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Rozmycie w podglądzie"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Rozmyj tapetę, gdy podgląd niri jest otwarty"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Grubość obramowania"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": ""
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Menedżer wtyczek DMS niedostępny"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Włącz uwierzytelnianie odciskiem palca"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": ""
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": ""
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Styl wskaźnika"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Suwak Głośności Wejściowej"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": ""
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": ""
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": ""
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Maksymalna liczba wpisów schowka"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Wymaga kompozytora DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Wymaga wsparcia dla trybu nocnego"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Niestandardowe dodatkowe parametry terminala"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Niski poziom tonera"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Suma zadań"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Przekształć"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": ""
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": ""
|
||||
},
|
||||
|
||||
@@ -111,7 +111,7 @@
|
||||
"+ %1 more": "+ %1 mais"
|
||||
},
|
||||
"/path/to/videos": {
|
||||
"/path/to/videos": "/caminho/dos/videos"
|
||||
"/path/to/videos": ""
|
||||
},
|
||||
"0 = square corners": {
|
||||
"0 = square corners": "0 = cantos quadrados"
|
||||
@@ -258,7 +258,7 @@
|
||||
"Action": "Ação"
|
||||
},
|
||||
"Action failed or terminal was closed.": {
|
||||
"Action failed or terminal was closed.": "A ação falhou ou o termianl foi fechado."
|
||||
"Action failed or terminal was closed.": ""
|
||||
},
|
||||
"Actions": {
|
||||
"Actions": "Ações"
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Aplicar temperatura de cor quente para reduzir a fadiga ocular. Use as configurações de automação abaixo para controlar quando ela será ativada."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Aplicativos"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Autenticação Necessária"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Conexão automática ativada"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Modo de Cor Automático"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Opacidade do Fundo"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Dispositivo de iluminação de fundo"
|
||||
},
|
||||
@@ -689,13 +665,13 @@
|
||||
"Bar Configurations": "Configurações da Barra"
|
||||
},
|
||||
"Bar Shadows": {
|
||||
"Bar Shadows": "Sombras da Barra"
|
||||
"Bar Shadows": ""
|
||||
},
|
||||
"Bar Transparency": {
|
||||
"Bar Transparency": "Trasparência da Barra"
|
||||
},
|
||||
"Base color for shadows (opacity is applied automatically)": {
|
||||
"Base color for shadows (opacity is applied automatically)": "Cor base para sombras (a opacidade é aplicada automaticamente)"
|
||||
"Base color for shadows (opacity is applied automatically)": ""
|
||||
},
|
||||
"Base duration for animations (drag to use Custom)": {
|
||||
"Base duration for animations (drag to use Custom)": "Duração base para animações (arraste para usar Personalizado)"
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth indisponível"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Camada de Papel de Parede com Desfoque"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Desfoque na Visão Geral"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Desfoque de papel de parede quando a visão geral do niri estiver aberta"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Espessura da Borda"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Borda com Fundo"
|
||||
},
|
||||
@@ -920,10 +884,10 @@
|
||||
"Change bar appearance": "Alterar aparência da barra"
|
||||
},
|
||||
"Change the locale used by the DMS interface.": {
|
||||
"Change the locale used by the DMS interface.": "Mudar a localidade usada pela interface do DMS."
|
||||
"Change the locale used by the DMS interface.": ""
|
||||
},
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": {
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": "Mudar a localidade usada para formatação de data e hora, independente da língua da interface."
|
||||
"Change the locale used for date and time formatting, independent of the interface language.": ""
|
||||
},
|
||||
"Channel": {
|
||||
"Channel": "Canal"
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1292,10 +1253,10 @@
|
||||
"Controls the base blur radius and offset of shadows": ""
|
||||
},
|
||||
"Controls the transparency of the shadow": {
|
||||
"Controls the transparency of the shadow": "Controla a transparência da sombra"
|
||||
"Controls the transparency of the shadow": ""
|
||||
},
|
||||
"Convenience options for the login screen. Sync to apply.": {
|
||||
"Convenience options for the login screen. Sync to apply.": "Opções de conveniência para a tela de login. Sincronize para aplicar."
|
||||
"Convenience options for the login screen. Sync to apply.": ""
|
||||
},
|
||||
"Cooldown": {
|
||||
"Cooldown": "Tempo de espera"
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Gerenciador de Plugins DMS indispónivel"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1922,14 +1880,11 @@
|
||||
"Enable compositor-targetable blur layer (namespace: dms:blurwallpaper). Requires manual niri configuration.": "Habilitar camada de desfoque direcionável ao compositor (namespace: dms:blurwallpaper). Requer configuração manual do niri."
|
||||
},
|
||||
"Enable fingerprint at login": {
|
||||
"Enable fingerprint at login": "Habilitar impressão digital no login"
|
||||
"Enable fingerprint at login": ""
|
||||
},
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Habilitar autenticação por impressão digital"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2345,7 +2285,7 @@
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and run Sync later.": ""
|
||||
},
|
||||
"First Day of Week": {
|
||||
"First Day of Week": "Primeiro Dia da Semana"
|
||||
"First Day of Week": ""
|
||||
},
|
||||
"First Time Setup": {
|
||||
"First Time Setup": "Configuração Inicial"
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Pastas"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Seguir Foco do Monitor"
|
||||
},
|
||||
@@ -2414,7 +2351,7 @@
|
||||
"Follow focus": "Seguir foco"
|
||||
},
|
||||
"Font": {
|
||||
"Font": "Fonte"
|
||||
"Font": ""
|
||||
},
|
||||
"Font Family": {
|
||||
"Font Family": "Família da Fonte"
|
||||
@@ -2429,7 +2366,7 @@
|
||||
"Font Weight": "Peso da Fonte"
|
||||
},
|
||||
"Font used on the login screen": {
|
||||
"Font used on the login screen": "Fonte usada na tela de login"
|
||||
"Font used on the login screen": ""
|
||||
},
|
||||
"Force HDR": {
|
||||
"Force HDR": "Forçar HDR"
|
||||
@@ -2759,7 +2696,7 @@
|
||||
"How often to change wallpaper": "Tempo entre papéis de parede"
|
||||
},
|
||||
"How the background image is scaled": {
|
||||
"How the background image is scaled": "Como a imagem de fundo é dimensionada"
|
||||
"How the background image is scaled": ""
|
||||
},
|
||||
"Humidity": {
|
||||
"Humidity": "Umidade"
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Estilo de Indicador"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Controle deslizante de volume de entrada"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3191,7 +3122,7 @@
|
||||
"Last launched %1": "Lançado pela última vez em %1"
|
||||
},
|
||||
"Last launched %1 day ago": {
|
||||
"Last launched %1 day ago": "Lançado pela última vez %1 dia atrás"
|
||||
"Last launched %1 day ago": ""
|
||||
},
|
||||
"Last launched %1 day%2 ago": {
|
||||
"Last launched %1 day%2 ago": "Lançado pela última vez %1 dia%2 atrás"
|
||||
@@ -3260,7 +3191,7 @@
|
||||
"Left Section": "Seção da Esquerda"
|
||||
},
|
||||
"Light Direction": {
|
||||
"Light Direction": "Direção da Luz"
|
||||
"Light Direction": ""
|
||||
},
|
||||
"Light Mode": {
|
||||
"Light Mode": "Modo Claro"
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Período de carência de fade de bloqueio"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Bloqueado"
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Máximo de Entradas Fixadas"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Número máximo de entradas da área de transferência para guardar"
|
||||
},
|
||||
@@ -3953,7 +3878,7 @@
|
||||
"No variants created. Click Add to create a new monitor widget.": "Nenhuma variante criada. Clique Adicionar para criar um novo widget de monitor."
|
||||
},
|
||||
"No video found in folder": {
|
||||
"No video found in folder": "Nenhum vídeo encontrado na pasta"
|
||||
"No video found in folder": ""
|
||||
},
|
||||
"No wallpapers": {
|
||||
"No wallpapers": ""
|
||||
@@ -3989,7 +3914,7 @@
|
||||
"Not available": "Indisponível"
|
||||
},
|
||||
"Not available — install fprintd and enroll fingerprints.": {
|
||||
"Not available — install fprintd and enroll fingerprints.": "Não disponível — instale fprintd e cadastre as impressões digitais."
|
||||
"Not available — install fprintd and enroll fingerprints.": ""
|
||||
},
|
||||
"Not available — install fprintd and pam_fprintd, or configure greetd PAM.": {
|
||||
"Not available — install fprintd and pam_fprintd, or configure greetd PAM.": ""
|
||||
@@ -4004,7 +3929,7 @@
|
||||
"Not available — install or configure pam_u2f.": ""
|
||||
},
|
||||
"Not available — install pam_u2f and enroll keys.": {
|
||||
"Not available — install pam_u2f and enroll keys.": "Não disponível — instale pam_u2f e cadastre as chaves."
|
||||
"Not available — install pam_u2f and enroll keys.": ""
|
||||
},
|
||||
"Not connected": {
|
||||
"Not connected": "Não conectado"
|
||||
@@ -4265,7 +4190,7 @@
|
||||
"Paste": "Colar"
|
||||
},
|
||||
"Path to a video file or folder containing videos": {
|
||||
"Path to a video file or folder containing videos": "Caminho para um arquivo de vídeo ou pasta de vídeos"
|
||||
"Path to a video file or folder containing videos": ""
|
||||
},
|
||||
"Pattern": {
|
||||
"Pattern": "Padrão"
|
||||
@@ -4390,7 +4315,7 @@
|
||||
"Place plugins in %1": "Coloque plugins em %1"
|
||||
},
|
||||
"Placeholder text for manual printer address input": {
|
||||
"IP address or hostname": "Endereço de IP ou nome do host"
|
||||
"IP address or hostname": ""
|
||||
},
|
||||
"Play a video when the screen locks.": {
|
||||
"Play a video when the screen locks.": ""
|
||||
@@ -4621,7 +4546,7 @@
|
||||
"Protocol": "Protocolo"
|
||||
},
|
||||
"QtMultimedia is not available": {
|
||||
"QtMultimedia is not available": "QtMultimedia não está disponível"
|
||||
"QtMultimedia is not available": ""
|
||||
},
|
||||
"QtMultimedia is not available - video screensaver requires qt multimedia services": {
|
||||
"QtMultimedia is not available - video screensaver requires qt multimedia services": ""
|
||||
@@ -4687,19 +4612,16 @@
|
||||
"Reload Plugin": "Reiniciar Plugin"
|
||||
},
|
||||
"Remaining": {
|
||||
"Remaining": "Restante"
|
||||
"Remaining": ""
|
||||
},
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Restante / Total"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Lembrar última sessão"
|
||||
"Remember last session": ""
|
||||
},
|
||||
"Remember last user": {
|
||||
"Remember last user": "Lembrar último usuário"
|
||||
"Remember last user": ""
|
||||
},
|
||||
"Remove": {
|
||||
"Remove": "Remover"
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Requer o compositor DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Requer suporte a modo noturno"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Parâmetros adicionais para o terminal"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5824,7 +5734,7 @@
|
||||
"Today": "Hoje"
|
||||
},
|
||||
"Toggle button to manually add a printer by IP or hostname": {
|
||||
"Add by Address": "Adicionar por Endereço"
|
||||
"Add by Address": ""
|
||||
},
|
||||
"Toggle button to scan for printers via mDNS/Avahi": {
|
||||
"Discover Devices": ""
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner Baixo"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Total de Trabalhos"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformar"
|
||||
},
|
||||
@@ -6483,14 +6387,14 @@
|
||||
"by %1": "por %1"
|
||||
},
|
||||
"bar manual shadow direction": {
|
||||
"Manual Direction": "Direção Manual"
|
||||
"Manual Direction": ""
|
||||
},
|
||||
"bar shadow direction source": {
|
||||
"Direction Source": ""
|
||||
},
|
||||
"bar shadow direction source option": {
|
||||
"Inherit Global (Default)": "",
|
||||
"Manual": "Manual"
|
||||
"Manual": ""
|
||||
},
|
||||
"bar shadow direction source option | shadow direction option": {
|
||||
"Auto (Bar-aware)": ""
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Desativado"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Cor"
|
||||
},
|
||||
@@ -6713,7 +6602,7 @@
|
||||
"files": "arquivos"
|
||||
},
|
||||
"fingerprint not detected status | security key not detected status": {
|
||||
"Not enrolled": "Não cadastrado"
|
||||
"Not enrolled": ""
|
||||
},
|
||||
"generic theme description": {
|
||||
"Material Design inspired color themes": "Temas de cor inspirados no Material Design"
|
||||
@@ -6757,9 +6646,9 @@
|
||||
"No warnings": "Sem avisos"
|
||||
},
|
||||
"greeter doctor page error count": {
|
||||
"%1 issue found": "%1 problema encontrado",
|
||||
"%1 issue found": "",
|
||||
"%1 issue(s) found": "%1 problema(s) encontrado(s)",
|
||||
"%1 issues found": "%1 problemas encontrados"
|
||||
"%1 issues found": ""
|
||||
},
|
||||
"greeter doctor page loading text": {
|
||||
"Analyzing configuration...": "Analisando configuração..."
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Применить тёплую цветовую температуру для снижения нагрузки на глаза. Используйте настройки автоматизации ниже для управления активацией."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Приложения"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Требуется авторизация"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Автоподключение включено"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Автоматический Цвет Режим"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Непрозрачность фона"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Подсветки устройство"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth недоступен"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Размытие Обоев слоя"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Размытие в режиме обзора"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Размытие обоев при открытом обзоре Niri"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Толщина рамки"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Граница с фоном"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "Менеджер Дополнений DMS Недоступен"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Включить аутентификацию по отпечатку пальца"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Папки"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Следовать за фокусом монитора"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Индикатор Стиль"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Вход Громкость Ползунок"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Льготный период затухания блокировки"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Заблокировано"
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Максимум закреплённых записей"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Максимальное количество записей буфера обмена для хранения"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Требуется композитор DWL"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Требуется поддержка ночного режима"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Пользовательские дополнительные параметры терминала"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Тонер заканчивается"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Всего заданий"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Преобразовать"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Отключено"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Цвет"
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Applicera varm färgtemperatur för att minska ögontrötthet. Använd automatiseringsinställningarna nedan för att styra när det aktiveras."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "Appar"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Autentisering krävs"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "Autentiseringsfel – försök igen"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Automatisk anslutning aktiverad"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "Automatiskt färgläge"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "Bakgrund"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Bakgrundsopacitet"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Bakgrundsbelysningsenhet"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth är inte tillgängligt"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Oskärpa bakgrundsbildslager"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Oskärpa i översikt"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Oskärpa bakgrundsbild när niri-översikten är öppen"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Tjocklek på kantlinje"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "Ram med bakgrund"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "Kontrollera synkroniseringsstatus på begäran. Synka kopierar ditt tema, inställningar, PAM-konfiguration och bakgrundsbild till inloggningsskärmen i ett steg. Kör Synka för att tillämpa ändringar."
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "Söker efter uppdateringar..."
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS-tilläggshanterare otillgänglig"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "DMS-välkomstskärmen kräver: greetd, dms-greeter. Fingeravtryck: fprintd, pam_fprintd. Säkerhetsnycklar: pam_u2f. Lägg till din användare i välkomstskärmsgruppen. Synka kontrollerar sudo först och öppnar en terminal när interaktiv autentisering krävs."
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Aktivera fingeravtrycksautentisering"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "Aktivera fingeravtryck eller säkerhetsnyckel för DMS-välkomstskärmen. Kör Synka för att tillämpa och konfigurera PAM."
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "Aktiverat, men ingen fingeravtrycksläsare hittades."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "Aktiverat, men inga fingeravtryck har registrerats ännu. Registrera fingeravtryck och kör Synka."
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "Aktiverat, men inga fingeravtryck har registrerats ännu. Registrera fingeravtryck för att använda det."
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "Aktiverat, men ingen registrerad säkerhetsnyckel hittades ännu. Registrera en nyckel och kör Synka."
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "Fingeravtryckstillgänglighet kunde inte bekräftas."
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "Fingeravtrycksläsare hittades, men inga fingeravtryck har registrerats ännu. Du kan aktivera detta nu och registrera senare."
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "Mappar"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "Följ bildskärmsfokus"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "Felaktigt lösenord – nästa misslyckanden kan utlösa kontoutelåsning"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Indikatorstil"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Inmatningsvolymreglage"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "Installation klar. Välkomstskärmen har installerats."
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "Fördröjning för låstonande"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "Låst"
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "Maximalt antal fästa poster"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Maximalt antal urklippsposter att behålla"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "Återstående / Totalt"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "Kom ihåg senaste session"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "Kräver DWL-kompositor"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Kräver stöd för nattläge"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Ytterligare parametrar för terminalen"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "Terminalåterfall misslyckades. Installera en av de stödda terminalemulatorerna eller kör 'dms greeter sync' manuellt."
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "Terminalåterfall öppnat. Slutför synkroniseringen där; det stängs automatiskt när det är klart."
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "Terminalmultiplexerbakgrundstjänst att använda"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "Terminal öppnad. Slutför synkroniseringsautentiseringen där; det stängs automatiskt när det är klart."
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Låg tonernivå"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "För många misslyckade försök – kontot kan vara låst"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Totalt antal jobb"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Transformera"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "Avaktiverat"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "Färg"
|
||||
},
|
||||
|
||||
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "Göz yorgunluğunu azaltmak için sıcak renk sıcaklığı uygulayın. Etkinleştirme zamanını kontrol etmek için aşağıdaki otomasyon ayarlarını kullanın."
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": ""
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "Kimlik Doğrulama Gerekli"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": ""
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "Otomatik bağlanma etkin"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": ""
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": ""
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "Arkaplan Opaklığı"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "Arka aydınlatma cihazı"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "Bluetooth kullanılamıyor"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "Bulanık Duvar Kağıdı Katmanı"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "Genel Görünümde Bulanıklık"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "Niri genel görünümü açıkken duvar kağıdını bulanıklaştır"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "Kenarlık Kalınlığı"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": ""
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": ""
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": ""
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS Eklenti Yöneticisi Kullanılamıyor"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": ""
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "Parmak izi kimlik doğrulamasını etkinleştir"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": ""
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": ""
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": ""
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": ""
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": ""
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": ""
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": ""
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "Gösterge Stili"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "Giriş Ses Seviyesi Kaydırıcı"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": ""
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": ""
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": ""
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": ""
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "Saklanacak maksimum pano kaydı sayısı"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": ""
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": ""
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "DWL kompozitör gerektirir"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "Gece modu desteği gerektirir"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "Terminal özel ek parametreleri"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": ""
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": ""
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "Toner Az"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": ""
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "Toplam İşler"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "Dönüştür"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": ""
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": ""
|
||||
},
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -425,9 +425,6 @@
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": {
|
||||
"Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.": "應用暖色溫以減輕眼睛疲勞。使用下方的自動化設定來控制其啟動時間。"
|
||||
},
|
||||
"Applying authentication changes…": {
|
||||
"Applying authentication changes…": ""
|
||||
},
|
||||
"Apps": {
|
||||
"Apps": "應用程式"
|
||||
},
|
||||
@@ -535,18 +532,6 @@
|
||||
"Authentication Required": {
|
||||
"Authentication Required": "需要驗證"
|
||||
},
|
||||
"Authentication changes applied.": {
|
||||
"Authentication changes applied.": ""
|
||||
},
|
||||
"Authentication changes apply automatically.": {
|
||||
"Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": {
|
||||
"Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.": ""
|
||||
},
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": {
|
||||
"Authentication changes need sudo. Opening terminal so you can use password or fingerprint.": ""
|
||||
},
|
||||
"Authentication error - try again": {
|
||||
"Authentication error - try again": "驗證錯誤 - 請再試一次"
|
||||
},
|
||||
@@ -601,9 +586,6 @@
|
||||
"Autoconnect enabled": {
|
||||
"Autoconnect enabled": "自動連線啟用"
|
||||
},
|
||||
"Autofill last remembered query when opened": {
|
||||
"Autofill last remembered query when opened": ""
|
||||
},
|
||||
"Automatic Color Mode": {
|
||||
"Automatic Color Mode": "自動顏色模式"
|
||||
},
|
||||
@@ -670,15 +652,9 @@
|
||||
"Background": {
|
||||
"Background": "背景"
|
||||
},
|
||||
"Background Blur": {
|
||||
"Background Blur": ""
|
||||
},
|
||||
"Background Opacity": {
|
||||
"Background Opacity": "背景不透明度"
|
||||
},
|
||||
"Background authentication sync failed. Trying terminal mode.": {
|
||||
"Background authentication sync failed. Trying terminal mode.": ""
|
||||
},
|
||||
"Backlight device": {
|
||||
"Backlight device": "背光裝置"
|
||||
},
|
||||
@@ -754,21 +730,12 @@
|
||||
"Bluetooth not available": {
|
||||
"Bluetooth not available": "藍牙不可用"
|
||||
},
|
||||
"Blur Border Color": {
|
||||
"Blur Border Color": ""
|
||||
},
|
||||
"Blur Border Opacity": {
|
||||
"Blur Border Opacity": ""
|
||||
},
|
||||
"Blur Wallpaper Layer": {
|
||||
"Blur Wallpaper Layer": "模糊桌布圖層"
|
||||
},
|
||||
"Blur on Overview": {
|
||||
"Blur on Overview": "模糊概覽"
|
||||
},
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": {
|
||||
"Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.": ""
|
||||
},
|
||||
"Blur wallpaper when niri overview is open": {
|
||||
"Blur wallpaper when niri overview is open": "當 niri 概覽打開時模糊桌布"
|
||||
},
|
||||
@@ -787,9 +754,6 @@
|
||||
"Border Thickness": {
|
||||
"Border Thickness": "邊框厚度"
|
||||
},
|
||||
"Border color around blurred surfaces": {
|
||||
"Border color around blurred surfaces": ""
|
||||
},
|
||||
"Border with BG": {
|
||||
"Border with BG": "含背景邊界"
|
||||
},
|
||||
@@ -937,9 +901,6 @@
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.": "按需檢查同步狀態。同步會一次性將您的主題、設定、PAM 配置和桌布複製到登入畫面。必須執行「同步」才能套用變更。"
|
||||
},
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": {
|
||||
"Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Checking for updates...": {
|
||||
"Checking for updates...": "正在檢查更新..."
|
||||
},
|
||||
@@ -1489,9 +1450,6 @@
|
||||
"DMS Plugin Manager Unavailable": {
|
||||
"DMS Plugin Manager Unavailable": "DMS 插件管理器不可用"
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": {
|
||||
"DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.": "DMS 歡迎畫面需要:greetd、dms-greeter。指紋:fprintd、pam_fprintd。安全密鑰:pam_u2f。將您的使用者新增到 greeter 群組。同步會先檢查 sudo,並在需要互動式驗證時開啟終端機。"
|
||||
},
|
||||
@@ -1927,9 +1885,6 @@
|
||||
"Enable fingerprint authentication": {
|
||||
"Enable fingerprint authentication": "啟用指紋驗證"
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.": ""
|
||||
},
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": {
|
||||
"Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.": "為 DMS 歡迎畫面啟用指紋或安全密鑰。執行「同步」以套用和配置 PAM。"
|
||||
},
|
||||
@@ -1969,18 +1924,12 @@
|
||||
"Enabled, but no fingerprint reader was detected.": {
|
||||
"Enabled, but no fingerprint reader was detected.": "已啟用,但未偵測到指紋讀取器。"
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": {
|
||||
"Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.": ""
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.": "已啟用,但尚未註冊指紋。請註冊指紋並執行同步。"
|
||||
},
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": {
|
||||
"Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.": "已啟用,但尚未註冊指紋。請註冊指紋以使用。"
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": {
|
||||
"Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.": ""
|
||||
},
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": {
|
||||
"Enabled, but no registered security key was found yet. Register a key and run Sync.": "已啟用,但尚未找到已註冊的安全金鑰。請註冊金鑰並執行同步。"
|
||||
},
|
||||
@@ -2329,15 +2278,6 @@
|
||||
"Fingerprint availability could not be confirmed.": {
|
||||
"Fingerprint availability could not be confirmed.": "無法確認指紋可用性。"
|
||||
},
|
||||
"Fingerprint error": {
|
||||
"Fingerprint error": ""
|
||||
},
|
||||
"Fingerprint error: %1": {
|
||||
"Fingerprint error: %1": ""
|
||||
},
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": {
|
||||
"Fingerprint not recognized (%1/%2). Please try again or use password.": ""
|
||||
},
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": {
|
||||
"Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.": "已偵測到指紋讀取器,但尚未註冊指紋。您可以現在啟用並稍後註冊。"
|
||||
},
|
||||
@@ -2404,9 +2344,6 @@
|
||||
"Folders": {
|
||||
"Folders": "資料夾"
|
||||
},
|
||||
"Follow DMS background color": {
|
||||
"Follow DMS background color": ""
|
||||
},
|
||||
"Follow Monitor Focus": {
|
||||
"Follow Monitor Focus": "跟隨螢幕焦點"
|
||||
},
|
||||
@@ -2848,9 +2785,6 @@
|
||||
"Incorrect password - next failures may trigger account lockout": {
|
||||
"Incorrect password - next failures may trigger account lockout": "密碼不正確 - 接下來的失敗可能會觸發帳戶鎖定"
|
||||
},
|
||||
"Incorrect password - try again": {
|
||||
"Incorrect password - try again": ""
|
||||
},
|
||||
"Indicator Style": {
|
||||
"Indicator Style": "指示樣式"
|
||||
},
|
||||
@@ -2872,9 +2806,6 @@
|
||||
"Input Volume Slider": {
|
||||
"Input Volume Slider": "輸入音量滑桿"
|
||||
},
|
||||
"Insert your security key...": {
|
||||
"Insert your security key...": ""
|
||||
},
|
||||
"Install complete. Greeter has been installed.": {
|
||||
"Install complete. Greeter has been installed.": "安裝完成。歡迎畫面已安裝。"
|
||||
},
|
||||
@@ -3358,9 +3289,6 @@
|
||||
"Lock fade grace period": {
|
||||
"Lock fade grace period": "鎖定淡出緩衝期"
|
||||
},
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": {
|
||||
"Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.": ""
|
||||
},
|
||||
"Locked": {
|
||||
"Locked": "已鎖定"
|
||||
},
|
||||
@@ -3505,9 +3433,6 @@
|
||||
"Maximum Pinned Entries": {
|
||||
"Maximum Pinned Entries": "最大釘選項目數量"
|
||||
},
|
||||
"Maximum fingerprint attempts reached. Please use password.": {
|
||||
"Maximum fingerprint attempts reached. Please use password.": ""
|
||||
},
|
||||
"Maximum number of clipboard entries to keep": {
|
||||
"Maximum number of clipboard entries to keep": "剪貼簿項目保留數量上限"
|
||||
},
|
||||
@@ -4692,9 +4617,6 @@
|
||||
"Remaining / Total": {
|
||||
"Remaining / Total": "剩餘 / 總計"
|
||||
},
|
||||
"Remember Last Query": {
|
||||
"Remember Last Query": ""
|
||||
},
|
||||
"Remember last session": {
|
||||
"Remember last session": "記住上次會話"
|
||||
},
|
||||
@@ -4743,9 +4665,6 @@
|
||||
"Requires DWL compositor": {
|
||||
"Requires DWL compositor": "需要 DWL 混成器"
|
||||
},
|
||||
"Requires a newer version of Quickshell": {
|
||||
"Requires a newer version of Quickshell": ""
|
||||
},
|
||||
"Requires night mode support": {
|
||||
"Requires night mode support": "需要夜間模式支援"
|
||||
},
|
||||
@@ -5673,24 +5592,15 @@
|
||||
"Terminal custom additional parameters": {
|
||||
"Terminal custom additional parameters": "自訂終端附加參數"
|
||||
},
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": {
|
||||
"Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.": ""
|
||||
},
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": {
|
||||
"Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.": "終端機回退失敗。請安裝受支援的終端模擬器之一,或手動執行 'dms greeter sync'。"
|
||||
},
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": {
|
||||
"Terminal fallback opened. Complete sync there; it will close automatically when done.": "終端機回退已開啟。請在那裡完成同步;完成後它將自動關閉。"
|
||||
},
|
||||
"Terminal multiplexer backend to use": {
|
||||
"Terminal multiplexer backend to use": "要使用的終端多工器後端"
|
||||
},
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete authentication setup there; it will close automatically when done.": ""
|
||||
},
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": {
|
||||
"Terminal opened. Complete sync authentication there; it will close automatically when done.": "終端機已開啟。請在那裡完成同步驗證;完成後它將自動關閉。"
|
||||
},
|
||||
@@ -5844,9 +5754,6 @@
|
||||
"Toner Low": {
|
||||
"Toner Low": "碳粉不足"
|
||||
},
|
||||
"Too many attempts - locked out": {
|
||||
"Too many attempts - locked out": ""
|
||||
},
|
||||
"Too many failed attempts - account may be locked": {
|
||||
"Too many failed attempts - account may be locked": "嘗試失敗次數過多 - 帳戶可能已鎖定"
|
||||
},
|
||||
@@ -5877,9 +5784,6 @@
|
||||
"Total Jobs": {
|
||||
"Total Jobs": "總工作數"
|
||||
},
|
||||
"Touch your security key...": {
|
||||
"Touch your security key...": ""
|
||||
},
|
||||
"Transform": {
|
||||
"Transform": "變形"
|
||||
},
|
||||
@@ -6520,21 +6424,6 @@
|
||||
"bluetooth status | lock screen notification mode option": {
|
||||
"Disabled": "已停用"
|
||||
},
|
||||
"blur border color | button color option | color option | primary color | shadow color option | tile color option": {
|
||||
"Primary": ""
|
||||
},
|
||||
"blur border color | button color option | color option | secondary color | tile color option": {
|
||||
"Secondary": ""
|
||||
},
|
||||
"blur border color | outline color": {
|
||||
"Outline": ""
|
||||
},
|
||||
"blur border color | shadow color option": {
|
||||
"Text Color": ""
|
||||
},
|
||||
"blur border color | shadow color option | theme category option": {
|
||||
"Custom": ""
|
||||
},
|
||||
"border color": {
|
||||
"Color": "顏色"
|
||||
},
|
||||
|
||||
@@ -2112,26 +2112,6 @@
|
||||
],
|
||||
"icon": "history"
|
||||
},
|
||||
{
|
||||
"section": "rememberLastQuery",
|
||||
"label": "Remember Last Query",
|
||||
"tabIndex": 9,
|
||||
"category": "Launcher",
|
||||
"keywords": [
|
||||
"autofill",
|
||||
"drawer",
|
||||
"last",
|
||||
"launcher",
|
||||
"menu",
|
||||
"opened",
|
||||
"query",
|
||||
"remember",
|
||||
"remembered",
|
||||
"search",
|
||||
"start"
|
||||
],
|
||||
"description": "Autofill last remembered query when opened"
|
||||
},
|
||||
{
|
||||
"section": "searchAppActions",
|
||||
"label": "Search App Actions",
|
||||
@@ -2398,47 +2378,6 @@
|
||||
],
|
||||
"icon": "schedule"
|
||||
},
|
||||
{
|
||||
"section": "blurEnabled",
|
||||
"label": "Background Blur",
|
||||
"tabIndex": 10,
|
||||
"category": "Theme & Colors",
|
||||
"keywords": [
|
||||
"alert",
|
||||
"alerts",
|
||||
"appearance",
|
||||
"background",
|
||||
"bars",
|
||||
"behind",
|
||||
"blur",
|
||||
"colors",
|
||||
"compositor",
|
||||
"config",
|
||||
"configuration",
|
||||
"configure",
|
||||
"frosted",
|
||||
"glass",
|
||||
"look",
|
||||
"modals",
|
||||
"notif",
|
||||
"notifications",
|
||||
"notifs",
|
||||
"panel",
|
||||
"popouts",
|
||||
"requires",
|
||||
"scheme",
|
||||
"setup",
|
||||
"statusbar",
|
||||
"style",
|
||||
"support",
|
||||
"taskbar",
|
||||
"theme",
|
||||
"topbar",
|
||||
"transparency"
|
||||
],
|
||||
"icon": "blur_on",
|
||||
"description": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration."
|
||||
},
|
||||
{
|
||||
"section": "barElevationEnabled",
|
||||
"label": "Bar Shadows",
|
||||
@@ -2466,49 +2405,6 @@
|
||||
],
|
||||
"description": "Shadow elevation on bars and panels"
|
||||
},
|
||||
{
|
||||
"section": "blurBorderColor",
|
||||
"label": "Blur Border Color",
|
||||
"tabIndex": 10,
|
||||
"category": "Theme & Colors",
|
||||
"keywords": [
|
||||
"appearance",
|
||||
"around",
|
||||
"blur",
|
||||
"blurred",
|
||||
"border",
|
||||
"color",
|
||||
"colors",
|
||||
"colour",
|
||||
"edge",
|
||||
"hue",
|
||||
"look",
|
||||
"outline",
|
||||
"scheme",
|
||||
"style",
|
||||
"surfaces",
|
||||
"theme",
|
||||
"tint"
|
||||
],
|
||||
"description": "Border color around blurred surfaces"
|
||||
},
|
||||
{
|
||||
"section": "blurBorderOpacity",
|
||||
"label": "Blur Border Opacity",
|
||||
"tabIndex": 10,
|
||||
"category": "Theme & Colors",
|
||||
"keywords": [
|
||||
"appearance",
|
||||
"blur",
|
||||
"border",
|
||||
"colors",
|
||||
"look",
|
||||
"opacity",
|
||||
"scheme",
|
||||
"style",
|
||||
"theme"
|
||||
]
|
||||
},
|
||||
{
|
||||
"section": "niriLayoutBorderSize",
|
||||
"label": "Border Size",
|
||||
@@ -4488,6 +4384,27 @@
|
||||
],
|
||||
"description": "Automatically lock the screen when DMS starts"
|
||||
},
|
||||
{
|
||||
"section": "lockBeforeSuspend",
|
||||
"label": "Lock before suspend",
|
||||
"tabIndex": 11,
|
||||
"category": "Lock Screen",
|
||||
"keywords": [
|
||||
"automatic",
|
||||
"automatically",
|
||||
"before",
|
||||
"lock",
|
||||
"login",
|
||||
"password",
|
||||
"prepares",
|
||||
"screen",
|
||||
"security",
|
||||
"sleep",
|
||||
"suspend",
|
||||
"system"
|
||||
],
|
||||
"description": "Automatically lock the screen when the system prepares to suspend"
|
||||
},
|
||||
{
|
||||
"section": "lockScreenNotificationMode",
|
||||
"label": "Notification Display",
|
||||
@@ -6490,27 +6407,6 @@
|
||||
"icon": "schedule",
|
||||
"description": "Gradually fade the screen before locking with a configurable grace period"
|
||||
},
|
||||
{
|
||||
"section": "lockBeforeSuspend",
|
||||
"label": "Lock before suspend",
|
||||
"tabIndex": 21,
|
||||
"category": "Power & Sleep",
|
||||
"keywords": [
|
||||
"automatically",
|
||||
"before",
|
||||
"energy",
|
||||
"lock",
|
||||
"power",
|
||||
"prepares",
|
||||
"screen",
|
||||
"security",
|
||||
"shutdown",
|
||||
"sleep",
|
||||
"suspend",
|
||||
"system"
|
||||
],
|
||||
"description": "Automatically lock the screen when the system prepares to suspend"
|
||||
},
|
||||
{
|
||||
"section": "fadeToLockGracePeriod",
|
||||
"label": "Lock fade grace period",
|
||||
|
||||
@@ -1182,13 +1182,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Applying authentication changes…",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Apps",
|
||||
"translation": "",
|
||||
@@ -1385,34 +1378,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Authentication changes applied.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Authentication changes apply automatically.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Authentication changes apply automatically. Fingerprint-only login may not unlock Keyring.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Authentication changes need sudo. Opening terminal so you can use password or fingerprint.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Authentication error - try again",
|
||||
"translation": "",
|
||||
@@ -1553,13 +1518,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Autofill last remembered query when opened",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Automatic Color Mode",
|
||||
"translation": "",
|
||||
@@ -1714,13 +1672,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Background Blur",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Background Opacity",
|
||||
"translation": "",
|
||||
@@ -1728,13 +1679,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Background authentication sync failed. Trying terminal mode.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Background image",
|
||||
"translation": "",
|
||||
@@ -1931,20 +1875,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Blur Border Color",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Blur Border Opacity",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Blur Wallpaper Layer",
|
||||
"translation": "",
|
||||
@@ -1959,13 +1889,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Blur the background behind bars, popouts, modals, and notifications. Requires compositor support and configuration.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Blur wallpaper when niri overview is open",
|
||||
"translation": "",
|
||||
@@ -2015,13 +1938,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Border color around blurred surfaces",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Border with BG",
|
||||
"translation": "",
|
||||
@@ -2373,7 +2289,7 @@
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Check sync status on demand. Sync copies your theme, settings, and wallpaper configuration to the login screen. Authentication changes apply automatically.",
|
||||
"term": "Check sync status on demand. Sync copies your theme, settings, PAM config, and wallpaper to the login screen in one step. Must run Sync to apply changes.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
@@ -3628,7 +3544,7 @@
|
||||
{
|
||||
"term": "Custom",
|
||||
"translation": "",
|
||||
"context": "blur border color | shadow color option | theme category option",
|
||||
"context": "shadow color option | theme category option",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
@@ -3801,7 +3717,7 @@
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Authentication changes apply automatically and may open a terminal when sudo authentication is required.",
|
||||
"term": "DMS greeter needs: greetd, dms-greeter. Fingerprint: fprintd, pam_fprintd. Security keys: pam_u2f. Add your user to the greeter group. Sync checks sudo first and opens a terminal when interactive authentication is required.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
@@ -4872,7 +4788,7 @@
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enable fingerprint or security key for DMS Greeter. Authentication changes apply automatically.",
|
||||
"term": "Enable fingerprint or security key for DMS Greeter. Run Sync to apply and configure PAM.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
@@ -4920,13 +4836,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enabled, but no prints are enrolled yet. Authentication changes apply automatically once you enroll fingerprints.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enabled, but no prints are enrolled yet. Enroll fingerprints and run Sync.",
|
||||
"translation": "",
|
||||
@@ -4935,7 +4844,7 @@
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enabled, but no registered security key was found yet. Authentication changes apply automatically once your key is registered or your U2F config is updated.",
|
||||
"term": "Enabled, but no prints are enrolled yet. Enroll fingerprints to use it.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
@@ -4948,6 +4857,13 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enabled, but no registered security key was found yet. Register a key or update your U2F config.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Enabled, but security-key availability could not be confirmed.",
|
||||
"translation": "",
|
||||
@@ -5893,27 +5809,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Fingerprint error",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Fingerprint error: %1",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Fingerprint not recognized (%1/%2). Please try again or use password.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Fingerprint reader detected, but no prints are enrolled yet. You can enable this now and enroll later.",
|
||||
"translation": "",
|
||||
@@ -7244,13 +7139,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Incorrect password - try again",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Indicator Style",
|
||||
"translation": "",
|
||||
@@ -7314,13 +7202,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Insert your security key...",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Install",
|
||||
"translation": "",
|
||||
@@ -8049,13 +7930,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Lock screen authentication changes apply automatically and may open a terminal when sudo authentication is required.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Locked",
|
||||
"translation": "",
|
||||
@@ -8441,13 +8315,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Maximum fingerprint attempts reached. Please use password.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Maximum number of clipboard entries to keep",
|
||||
"translation": "",
|
||||
@@ -10264,7 +10131,7 @@
|
||||
{
|
||||
"term": "Outline",
|
||||
"translation": "",
|
||||
"context": "blur border color | outline color",
|
||||
"context": "outline color",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
@@ -11195,7 +11062,7 @@
|
||||
{
|
||||
"term": "Primary",
|
||||
"translation": "",
|
||||
"context": "blur border color | button color option | color option | primary color | shadow color option | tile color option",
|
||||
"context": "button color option | color option | primary color | shadow color option | tile color option",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
@@ -11612,13 +11479,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Remember Last Query",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Remember last session",
|
||||
"translation": "",
|
||||
@@ -11745,13 +11605,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Requires a newer version of Quickshell",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Requires night mode support",
|
||||
"translation": "",
|
||||
@@ -11997,6 +11850,20 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Run Sync to apply.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Run Sync to apply. Fingerprint-only login may not unlock GNOME Keyring.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Run User Templates",
|
||||
"translation": "",
|
||||
@@ -12392,7 +12259,7 @@
|
||||
{
|
||||
"term": "Secondary",
|
||||
"translation": "",
|
||||
"context": "blur border color | button color option | color option | secondary color | tile color option",
|
||||
"context": "button color option | color option | secondary color | tile color option",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
@@ -14188,13 +14055,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal fallback failed. Install a supported terminal emulator or run 'dms auth sync' manually.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal fallback failed. Install one of the supported terminal emulators or run 'dms greeter sync' manually.",
|
||||
"translation": "",
|
||||
@@ -14202,13 +14062,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal fallback opened. Complete authentication setup there; it will close automatically when done.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal fallback opened. Complete sync there; it will close automatically when done.",
|
||||
"translation": "",
|
||||
@@ -14223,13 +14076,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal opened. Complete authentication setup there; it will close automatically when done.",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Terminal opened. Complete sync authentication there; it will close automatically when done.",
|
||||
"translation": "",
|
||||
@@ -14282,7 +14128,7 @@
|
||||
{
|
||||
"term": "Text Color",
|
||||
"translation": "",
|
||||
"context": "blur border color | shadow color option",
|
||||
"context": "shadow color option",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
@@ -14643,13 +14489,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Too many attempts - locked out",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Too many failed attempts - account may be locked",
|
||||
"translation": "",
|
||||
@@ -14734,13 +14573,6 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Touch your security key...",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Transform",
|
||||
"translation": "",
|
||||
@@ -14846,6 +14678,20 @@
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Type to search",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Type to search apps",
|
||||
"translation": "",
|
||||
"context": "",
|
||||
"reference": "",
|
||||
"comment": ""
|
||||
},
|
||||
{
|
||||
"term": "Type to search files",
|
||||
"translation": "",
|
||||
|
||||
Reference in New Issue
Block a user