mirror of
https://github.com/zoriya/noctalia-shell.git
synced 2026-08-15 18:43:59 +00:00
Merge branch 'main' into feat/wezterm
This commit is contained in:
@@ -102,4 +102,99 @@
|
||||
--purple-3: {{colors.on_secondary.default.hex}};
|
||||
--purple-4: {{colors.on_secondary_container.default.hex}};
|
||||
--purple-5: {{colors.secondary.default.hex}};
|
||||
}
|
||||
|
||||
/* Improve timestamp/clock readability */
|
||||
/* Target timestamps with various selector patterns to work across Discord versions */
|
||||
[class*="timestamp"] time,
|
||||
[class*="timestamp"] time[id*="message-timestamp"],
|
||||
[id*="message-timestamp"] time,
|
||||
span[class*="timestamp"] time {
|
||||
color: var(--text-3) !important; /* Use normal text color for better contrast */
|
||||
opacity: 0.85 !important; /* Slightly muted but still readable */
|
||||
}
|
||||
|
||||
/* Hover state for timestamps - make them fully visible */
|
||||
[class*="timestamp"]:hover time,
|
||||
[id*="message-timestamp"]:hover time,
|
||||
span[class*="timestamp"]:hover time {
|
||||
color: var(--text-2) !important; /* Use heading color on hover */
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Improve slowmode cooldown and typing indicator readability */
|
||||
[class*="cooldownText"],
|
||||
[class*="cooldownWrapper"],
|
||||
[class*="cooldownText"] svg,
|
||||
.cooldownText_b21699,
|
||||
.cooldownWrapper_b21699 {
|
||||
color: var(--text-3) !important; /* Use normal text color for better contrast */
|
||||
opacity: 0.85 !important; /* Slightly muted but still readable */
|
||||
}
|
||||
|
||||
/* Slowmode icon color */
|
||||
[class*="slowModeIcon"],
|
||||
.slowModeIcon_b21699 {
|
||||
color: var(--text-3) !important;
|
||||
opacity: 0.85 !important;
|
||||
}
|
||||
|
||||
/* Typing indicator text */
|
||||
[class*="typing"] [class*="text"],
|
||||
[class*="typingDots"] [class*="text"],
|
||||
.typing_b88801 .text_b88801 {
|
||||
color: var(--text-3) !important;
|
||||
opacity: 0.85 !important;
|
||||
}
|
||||
|
||||
[class*="postTitleText"],
|
||||
[class*="postTitleText"] span,
|
||||
h3[class*="postTitleText"],
|
||||
[class*="heading-lg"][class*="postTitleText"],
|
||||
[data-text-variant*="heading"] [class*="postTitleText"] {
|
||||
color: var(--text-2) !important;
|
||||
opacity: 0.9 !important;
|
||||
}
|
||||
|
||||
[class*="postTitleText"]:hover,
|
||||
[class*="postTitleText"]:hover span,
|
||||
h3[class*="postTitleText"]:hover {
|
||||
color: var(--text-2) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
[class*="messageContent"],
|
||||
[class*="markup"] {
|
||||
line-height: 1.35 !important;
|
||||
color: var(--text-3) !important;
|
||||
opacity: 0.85 !important;
|
||||
}
|
||||
|
||||
[class*="messageContent"][class*="deleted"],
|
||||
[class*="text-sm"][class*="messageContent"][class*="deleted"],
|
||||
[data-text-variant*="text-sm"][class*="messageContent"][class*="deleted"] {
|
||||
color: var(--text-3) !important;
|
||||
opacity: 0.85 !important;
|
||||
}
|
||||
|
||||
[class*="messageContent"][class*="deleted"]:hover,
|
||||
[class*="messageContent"][class*="deleted"]:hover span {
|
||||
color: var(--text-2) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
|
||||
/* Improve tooltip readability */
|
||||
[class*="tooltip"],
|
||||
[class*="tooltip"] *,
|
||||
[role="tooltip"],
|
||||
[role="tooltip"] * {
|
||||
color: var(--text-2) !important;
|
||||
}
|
||||
|
||||
[class*="tooltipText"],
|
||||
[class*="tooltipContent"],
|
||||
[class*="tooltip"] span,
|
||||
[class*="tooltip"] div {
|
||||
color: var(--text-2) !important;
|
||||
opacity: 1 !important;
|
||||
}
|
||||
+32
-18
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "Mindesthelligkeit erzwingen (1%)",
|
||||
"description": "Löst das Problem, dass die Hintergrundbeleuchtung auf einigen Displays bei 0% Helligkeit vollständig ausgeschaltet wird."
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "Externe Helligkeitsunterstützung",
|
||||
"description": "DDCUtil-Unterstützung zum Steuern der Helligkeit externer Displays über das DDC/CI-Protokoll aktivieren."
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "Helligkeitssteuerung nicht verfügbar. Aktivieren Sie \"Externe Helligkeitsunterstützung\", um die Helligkeit dieses Displays zu steuern.",
|
||||
"generic": "Die Helligkeitssteuerung ist für dieses Display nicht verfügbar."
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,13 +234,17 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "Schwebende Statusleiste",
|
||||
"description": "Statusleiste als schwebende 'Pille' anzeigen. Hinweis: Dies verschiebt die Bildschirmecken an die Ränder."
|
||||
"description": "Statusleiste als schwebende 'Pille' anzeigen."
|
||||
},
|
||||
"margins": {
|
||||
"label": "Ränder",
|
||||
"description": "Ränder um die schwebende Statusleiste anpassen.",
|
||||
"vertical": "Vertikal",
|
||||
"horizontal": "Horizontal"
|
||||
},
|
||||
"outer-corners": {
|
||||
"description": "Zeigt nach außen gewölbte Ecken auf der Leiste an.",
|
||||
"label": "Äußere Ecken"
|
||||
}
|
||||
},
|
||||
"widgets": {
|
||||
@@ -463,7 +475,11 @@
|
||||
"tooltip": "Nach Hintergrundbild-Ordner suchen"
|
||||
},
|
||||
"select-folder": "Hintergrundbild-Ordner auswählen",
|
||||
"select-monitor-folder": "Monitor-Hintergrundbild-Ordner auswählen"
|
||||
"select-monitor-folder": "Monitor-Hintergrundbild-Ordner auswählen",
|
||||
"selector-position": {
|
||||
"description": "Wählen Sie aus, wo das Hintergrundbildauswahlfeld angezeigt wird.",
|
||||
"label": "Position"
|
||||
}
|
||||
},
|
||||
"look-feel": {
|
||||
"section": {
|
||||
@@ -585,9 +601,9 @@
|
||||
"description": "Schreibt {filepath} und lädt neu",
|
||||
"description-missing": "Erfordert {app} Terminal"
|
||||
},
|
||||
"wezterm": {
|
||||
"alacritty": {
|
||||
"description": "Schreibe {Dateipfad} und lade neu",
|
||||
"description-missing": "Benötigt die Installation von {app}."
|
||||
"description-missing": "Benötigt die Installation von {app}"
|
||||
}
|
||||
},
|
||||
"programs": {
|
||||
@@ -681,7 +697,7 @@
|
||||
"description": "Ereignisse im Kalender-Panel anzeigen."
|
||||
},
|
||||
"use-analog": {
|
||||
"description": "Eine Analoguhr auf dem Kalenderbildschirm anzeigen.",
|
||||
"description": "Eine Analoguhr im Kalenderfenster und auf dem Sperrbildschirm anzeigen.",
|
||||
"label": "Analoge Uhr verwenden"
|
||||
},
|
||||
"first-day-of-week": {
|
||||
@@ -876,6 +892,14 @@
|
||||
"panels-attached-to-bar": {
|
||||
"description": "Wenn aktiviert, werden die Panels mit einem schönen, umgekehrten Eckdesign an der Leiste befestigt.",
|
||||
"label": "Paneele an Stange befestigen"
|
||||
},
|
||||
"dim-desktop": {
|
||||
"description": "Den Desktop abdunkeln, wenn Fenster oder Menüs geöffnet sind.",
|
||||
"label": "Dimmer Schreibtisch"
|
||||
},
|
||||
"shadows": {
|
||||
"description": "Aktiviert Schlagschatten unter Balken und Panels.",
|
||||
"label": "Schlagschatten"
|
||||
}
|
||||
},
|
||||
"lock-screen": {
|
||||
@@ -1295,18 +1319,7 @@
|
||||
"description": "Scroll-Lock-Status anzeigen.",
|
||||
"label": "Rollenfeststelltaste"
|
||||
},
|
||||
"indicator-style": {
|
||||
"circle": "Kreisbuchstaben",
|
||||
"circle-dash": "Gestrichelte Kreisbuchstaben",
|
||||
"circle-dot": "Punktierte Kreisbuchstaben",
|
||||
"description": "Symbolstil für die Feststelltastenanzeigen",
|
||||
"hex": "Sechseck-Buchstaben",
|
||||
"label": "Indikatorstil",
|
||||
"large": "Große Buchstaben",
|
||||
"small": "Kleinbuchstaben",
|
||||
"square": "Quadratische Buchstaben",
|
||||
"square-round": "Abgerundete quadratische Buchstaben"
|
||||
}
|
||||
"browse": "Durchsuchen"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1498,7 +1511,8 @@
|
||||
"bottom_center": "Unten mittig",
|
||||
"top_center": "Oben mittig",
|
||||
"center_left": "Links mittig",
|
||||
"center_right": "Rechts mittig"
|
||||
"center_right": "Rechts mittig",
|
||||
"follow_bar": "Folge dem Balken (Standard)"
|
||||
}
|
||||
},
|
||||
"control-center": {
|
||||
|
||||
+34
-16
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "Enforce minimum brightness (1%)",
|
||||
"description": "Solves the problem of backlight completely turning off on some displays at 0% brightness."
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "External brightness support",
|
||||
"description": "Enable DDCUtil support for controlling brightness on external displays via DDC/CI protocol."
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "Brightness control unavailable. Enable \"External brightness support\" to control this display's brightness.",
|
||||
"generic": "Brightness control is not available for this display."
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,7 +234,11 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "Floating bar",
|
||||
"description": "Displays the bar as a floating 'pill'. Note: This will move the screen corners to the edges."
|
||||
"description": "Displays the bar as a floating 'pill'."
|
||||
},
|
||||
"outer-corners": {
|
||||
"label": "Outer corners",
|
||||
"description": "Displays outwardly curved corners on the bar."
|
||||
},
|
||||
"margins": {
|
||||
"label": "Margins",
|
||||
@@ -462,6 +474,10 @@
|
||||
"description": "Set a different wallpaper folder for each monitor.",
|
||||
"tooltip": "Browse for wallpaper folder"
|
||||
},
|
||||
"selector-position": {
|
||||
"label": "Position",
|
||||
"description": "Choose where the wallpaper selector panel appears."
|
||||
},
|
||||
"select-folder": "Select wallpaper folder",
|
||||
"select-monitor-folder": "Select monitor wallpaper folder"
|
||||
},
|
||||
@@ -577,6 +593,10 @@
|
||||
"terminal": {
|
||||
"label": "Terminal",
|
||||
"description": "Terminal emulator theming.",
|
||||
"alacritty": {
|
||||
"description": "Write {filepath} and reload",
|
||||
"description-missing": "Requires {app} to be installed"
|
||||
},
|
||||
"kitty": {
|
||||
"description": "Write {filepath} and reload",
|
||||
"description-missing": "Requires {app} to be installed"
|
||||
@@ -687,7 +707,7 @@
|
||||
},
|
||||
"use-analog": {
|
||||
"label": "Use analog style clock",
|
||||
"description": "Show an analog style clock on the calendar screen."
|
||||
"description": "Show an analog style clock on the calendar window and lock screen."
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -855,6 +875,14 @@
|
||||
"description": "Changes the size of the general user interface, excluding the bar.",
|
||||
"reset-scaling": "Reset interface scaling"
|
||||
},
|
||||
"shadows": {
|
||||
"label": "Drop shadows",
|
||||
"description": "Enables drop shadows under bars and panels."
|
||||
},
|
||||
"dim-desktop": {
|
||||
"label": "Dim desktop",
|
||||
"description": "Dim the desktop when panels or menus are open."
|
||||
},
|
||||
"border-radius": {
|
||||
"label": "Border radius",
|
||||
"description": "Controls the corner roundness of windows, buttons, and other elements.",
|
||||
@@ -1266,18 +1294,6 @@
|
||||
}
|
||||
},
|
||||
"lock-keys": {
|
||||
"indicator-style": {
|
||||
"label": "Indicator Style",
|
||||
"description": "Icon style for the lock key indicators",
|
||||
"large": "Large Letters",
|
||||
"small": "Small Letters",
|
||||
"square": "Square Letters",
|
||||
"square-round": "Rounded Squre Letters",
|
||||
"circle": "Circle Letters",
|
||||
"circle-dash": "Dashed Circle Letters",
|
||||
"circle-dot": "Dotted Circle Letters",
|
||||
"hex": "Hexagon Letters"
|
||||
},
|
||||
"show-caps-lock": {
|
||||
"label": "Caps Lock",
|
||||
"description": "Display caps lock status."
|
||||
@@ -1289,7 +1305,8 @@
|
||||
"show-scroll-lock": {
|
||||
"label": "Scroll Lock",
|
||||
"description": "Display scroll lock status."
|
||||
}
|
||||
},
|
||||
"browse": "Browse"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1480,7 +1497,8 @@
|
||||
},
|
||||
"launcher": {
|
||||
"position": {
|
||||
"center": "Center (default)",
|
||||
"follow_bar": "Follow bar (default)",
|
||||
"center": "Center",
|
||||
"top_left": "Top left",
|
||||
"top_right": "Top right",
|
||||
"bottom_left": "Bottom left",
|
||||
|
||||
+31
-17
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "Forzar brillo mínimo (1%)",
|
||||
"description": "Resuelve el problema de la retroiluminación que se apaga completamente en algunas pantallas al 0% de brillo."
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "Soporte de brillo externo",
|
||||
"description": "Habilitar soporte DDCUtil para controlar el brillo en pantallas externas mediante el protocolo DDC/CI."
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "Control de brillo no disponible. Habilita \"Soporte de brillo externo\" para controlar el brillo de esta pantalla.",
|
||||
"generic": "El control de brillo no está disponible para esta pantalla."
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,13 +234,17 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "Barra flotante",
|
||||
"description": "Muestra la barra como una 'píldora' flotante. Nota: Esto moverá las esquinas de la pantalla a los bordes."
|
||||
"description": "Muestra la barra como una 'píldora' flotante."
|
||||
},
|
||||
"margins": {
|
||||
"label": "Márgenes",
|
||||
"description": "Ajusta los márgenes alrededor de la barra flotante.",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal"
|
||||
},
|
||||
"outer-corners": {
|
||||
"description": "Muestra esquinas curvadas hacia afuera en la barra.",
|
||||
"label": "Esquinas exteriores"
|
||||
}
|
||||
},
|
||||
"widgets": {
|
||||
@@ -463,7 +475,11 @@
|
||||
"tooltip": "Buscar carpeta de fondos de pantalla"
|
||||
},
|
||||
"select-folder": "Seleccionar carpeta de fondos de pantalla",
|
||||
"select-monitor-folder": "Seleccionar carpeta de fondos de pantalla del monitor"
|
||||
"select-monitor-folder": "Seleccionar carpeta de fondos de pantalla del monitor",
|
||||
"selector-position": {
|
||||
"description": "Elige dónde aparece el panel selector de fondo de pantalla.",
|
||||
"label": "Posición"
|
||||
}
|
||||
},
|
||||
"look-feel": {
|
||||
"section": {
|
||||
@@ -585,7 +601,7 @@
|
||||
"description": "Escribir {filepath} y recargar",
|
||||
"description-missing": "Requiere que {app} esté instalado"
|
||||
},
|
||||
"wezterm": {
|
||||
"alacritty": {
|
||||
"description": "Escribe {filepath} y recarga",
|
||||
"description-missing": "Requiere que {app} esté instalado/a."
|
||||
}
|
||||
@@ -681,7 +697,7 @@
|
||||
"description": "Mostrar eventos en el panel del calendario."
|
||||
},
|
||||
"use-analog": {
|
||||
"description": "Mostrar un reloj de estilo analógico en la pantalla del calendario.",
|
||||
"description": "Mostrar un reloj de estilo analógico en la ventana del calendario y en la pantalla de bloqueo.",
|
||||
"label": "Usar reloj de estilo analógico"
|
||||
},
|
||||
"first-day-of-week": {
|
||||
@@ -876,6 +892,14 @@
|
||||
"panels-attached-to-bar": {
|
||||
"description": "Cuando está habilitado, los paneles se adjuntarán a la barra con un hermoso diseño de esquina invertida.",
|
||||
"label": "Adjuntar paneles a la barra"
|
||||
},
|
||||
"dim-desktop": {
|
||||
"description": "Atenuar el escritorio cuando los paneles o menús estén abiertos.",
|
||||
"label": "Dim escritorio"
|
||||
},
|
||||
"shadows": {
|
||||
"description": "Habilita sombras paralelas debajo de las barras y los paneles.",
|
||||
"label": "Sombras paralelas"
|
||||
}
|
||||
},
|
||||
"lock-screen": {
|
||||
@@ -1278,18 +1302,7 @@
|
||||
"description": "Mostrar el estado de Bloq Despl.",
|
||||
"label": "Bloq Despl"
|
||||
},
|
||||
"indicator-style": {
|
||||
"circle": "Letras circulares",
|
||||
"circle-dash": "Letras de círculo discontinuo",
|
||||
"circle-dot": "Letras de círculo punteado",
|
||||
"description": "Estilo de icono para los indicadores de las teclas de bloqueo",
|
||||
"hex": "Letras hexagonales",
|
||||
"label": "Estilo del indicador",
|
||||
"large": "Letras grandes",
|
||||
"small": "Letras minúsculas",
|
||||
"square": "Letras cuadradas",
|
||||
"square-round": "Letras cuadradas redondeadas"
|
||||
}
|
||||
"browse": "Navegar"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1481,7 +1494,8 @@
|
||||
"bottom_center": "Inferior central",
|
||||
"top_center": "Superior central",
|
||||
"center_left": "Izquierda centrado",
|
||||
"center_right": "Derecha centrado"
|
||||
"center_right": "Derecha centrado",
|
||||
"follow_bar": "Seguir barra (predeterminado)"
|
||||
}
|
||||
},
|
||||
"control-center": {
|
||||
|
||||
+31
-17
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "Imposer une luminosité minimale (1%)",
|
||||
"description": "Résout le problème de l'extinction complète du rétroéclairage sur certains écrans à 0% de luminosité."
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "Prise en charge de la luminosité externe",
|
||||
"description": "Activer le support DDCUtil pour contrôler la luminosité des écrans externes via le protocole DDC/CI."
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "Contrôle de la luminosité indisponible. Activez \"Prise en charge de la luminosité externe\" pour contrôler la luminosité de cet écran.",
|
||||
"generic": "Le contrôle de la luminosité n'est pas disponible pour cet écran."
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,13 +234,17 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "Barre flottante",
|
||||
"description": "Affiche la barre sous forme de 'pilule' flottante. Note : Ceci déplacera les coins de l'écran vers les bords."
|
||||
"description": "Affiche la barre sous forme de 'pilule' flottante."
|
||||
},
|
||||
"margins": {
|
||||
"label": "Marges",
|
||||
"description": "Ajustez les marges autour de la barre flottante.",
|
||||
"vertical": "Verticale",
|
||||
"horizontal": "Horizontale"
|
||||
},
|
||||
"outer-corners": {
|
||||
"description": "Affiche des coins incurvés vers l'extérieur sur la barre.",
|
||||
"label": "Coins extérieurs"
|
||||
}
|
||||
},
|
||||
"widgets": {
|
||||
@@ -463,7 +475,11 @@
|
||||
"tooltip": "Parcourir le dossier des fonds d'écran"
|
||||
},
|
||||
"select-folder": "Sélectionner le dossier des fonds d'écran",
|
||||
"select-monitor-folder": "Sélectionner le dossier des fonds d'écran du moniteur"
|
||||
"select-monitor-folder": "Sélectionner le dossier des fonds d'écran du moniteur",
|
||||
"selector-position": {
|
||||
"description": "Choisissez l'emplacement d'affichage du panneau de sélection du fond d'écran.",
|
||||
"label": "Position"
|
||||
}
|
||||
},
|
||||
"look-feel": {
|
||||
"section": {
|
||||
@@ -585,7 +601,7 @@
|
||||
"description": "Écrire ~/.config/foot/themes/noctalia et recharger",
|
||||
"description-missing": "Nécessite que le terminal foot soit installé"
|
||||
},
|
||||
"wezterm": {
|
||||
"alacritty": {
|
||||
"description": "Écrire {filepath} et recharger.",
|
||||
"description-missing": "Nécessite l'installation de {app}"
|
||||
}
|
||||
@@ -681,7 +697,7 @@
|
||||
"description": "Afficher les événements dans le panneau du calendrier."
|
||||
},
|
||||
"use-analog": {
|
||||
"description": "Afficher une horloge de style analogique sur l'écran du calendrier.",
|
||||
"description": "Afficher une horloge de style analogique dans la fenêtre du calendrier et sur l'écran de verrouillage.",
|
||||
"label": "Utiliser une horloge de style analogique."
|
||||
},
|
||||
"first-day-of-week": {
|
||||
@@ -876,6 +892,14 @@
|
||||
"panels-attached-to-bar": {
|
||||
"description": "Lorsque cette option est activée, les panneaux seront attachés à la barre avec un design élégant de coin inversé.",
|
||||
"label": "Fixer les panneaux à la barre."
|
||||
},
|
||||
"dim-desktop": {
|
||||
"description": "Atténuer le bureau lorsque des panneaux ou des menus sont ouverts.",
|
||||
"label": "Dim bureau"
|
||||
},
|
||||
"shadows": {
|
||||
"description": "Active les ombres portées sous les barres et les panneaux.",
|
||||
"label": "Ombres portées"
|
||||
}
|
||||
},
|
||||
"lock-screen": {
|
||||
@@ -1278,18 +1302,7 @@
|
||||
"description": "Afficher l'état du verrouillage du défilement.",
|
||||
"label": "Verr Maj"
|
||||
},
|
||||
"indicator-style": {
|
||||
"circle": "Lettres circulaires",
|
||||
"circle-dash": "Lettres en cercle pointillé",
|
||||
"circle-dot": "Lettres en pointillés dans un cercle",
|
||||
"description": "Style d'icône pour les indicateurs de la touche de verrouillage",
|
||||
"hex": "Lettres hexagonales",
|
||||
"label": "Style d'indicateur",
|
||||
"large": "Grandes lettres",
|
||||
"small": "Petites lettres",
|
||||
"square": "Lettres carrées",
|
||||
"square-round": "Lettres carrées arrondies"
|
||||
}
|
||||
"browse": "Parcourir"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1481,7 +1494,8 @@
|
||||
"bottom_center": "En bas au centre",
|
||||
"top_center": "En haut au centre",
|
||||
"center_left": "Gauche centre",
|
||||
"center_right": "Droite centre"
|
||||
"center_right": "Droite centre",
|
||||
"follow_bar": "Suivre la barre (par défaut)"
|
||||
}
|
||||
},
|
||||
"control-center": {
|
||||
|
||||
+32
-18
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "Forçar brilho mínimo (1%)",
|
||||
"description": "Resolve o problema da retroiluminação apagar completamente em alguns monitores com brilho em 0%."
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "Suporte de brilho externo",
|
||||
"description": "Ativar suporte DDCUtil para controlar o brilho em monitores externos através do protocolo DDC/CI."
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "Controle de brilho indisponível. Ative \"Suporte de brilho externo\" para controlar o brilho desta tela.",
|
||||
"generic": "O controle de brilho não está disponível para esta tela."
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,13 +234,17 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "Barra flutuante",
|
||||
"description": "Exibe a barra como uma 'pílula' flutuante. Nota: Isso moverá os cantos da tela para as bordas."
|
||||
"description": "Exibe a barra como uma 'pílula' flutuante."
|
||||
},
|
||||
"margins": {
|
||||
"label": "Margens",
|
||||
"description": "Ajuste as margens ao redor da barra flutuante.",
|
||||
"vertical": "Vertical",
|
||||
"horizontal": "Horizontal"
|
||||
},
|
||||
"outer-corners": {
|
||||
"description": "Exibe cantos curvados para fora na barra.",
|
||||
"label": "Cantos externos"
|
||||
}
|
||||
},
|
||||
"widgets": {
|
||||
@@ -425,7 +437,11 @@
|
||||
"tooltip": "Procurar pasta de papéis de parede"
|
||||
},
|
||||
"select-folder": "Selecionar pasta de papéis de parede",
|
||||
"select-monitor-folder": "Selecionar pasta de papéis de parede do monitor"
|
||||
"select-monitor-folder": "Selecionar pasta de papéis de parede do monitor",
|
||||
"selector-position": {
|
||||
"description": "Escolha onde o painel do seletor de papel de parede aparece.",
|
||||
"label": "Posição"
|
||||
}
|
||||
},
|
||||
"look-feel": {
|
||||
"section": {
|
||||
@@ -547,9 +563,9 @@
|
||||
"description": "Escrever {filepath} e recarregar",
|
||||
"description-missing": "Requer que o {app} esteja instalado"
|
||||
},
|
||||
"wezterm": {
|
||||
"alacritty": {
|
||||
"description": "Escreva {filepath} e recarregue.",
|
||||
"description-missing": "Requer que o aplicativo {app} esteja instalado."
|
||||
"description-missing": "Requer que o {app} esteja instalado."
|
||||
}
|
||||
},
|
||||
"programs": {
|
||||
@@ -643,7 +659,7 @@
|
||||
"description": "Exibir eventos no painel do calendário."
|
||||
},
|
||||
"use-analog": {
|
||||
"description": "Mostrar um relógio estilo analógico na tela do calendário.",
|
||||
"description": "Mostrar um relógio estilo analógico na janela do calendário e na tela de bloqueio.",
|
||||
"label": "Use um relógio de estilo analógico."
|
||||
},
|
||||
"first-day-of-week": {
|
||||
@@ -876,6 +892,14 @@
|
||||
"panels-attached-to-bar": {
|
||||
"description": "Quando ativado, os painéis serão anexados à barra com um belo design de canto invertido.",
|
||||
"label": "Anexar painéis à barra"
|
||||
},
|
||||
"dim-desktop": {
|
||||
"description": "Escurecer a área de trabalho quando painéis ou menus estiverem abertos.",
|
||||
"label": "Dim área de trabalho"
|
||||
},
|
||||
"shadows": {
|
||||
"description": "Ativa sombras projetadas sob barras e painéis.",
|
||||
"label": "Sombras projetadas"
|
||||
}
|
||||
},
|
||||
"lock-screen": {
|
||||
@@ -1278,18 +1302,7 @@
|
||||
"description": "Exibir o status do Scroll Lock.",
|
||||
"label": "Scroll Lock"
|
||||
},
|
||||
"indicator-style": {
|
||||
"circle": "Letras Circulares",
|
||||
"circle-dash": "Letras em Círculo Tracejadas",
|
||||
"circle-dot": "Letras de Círculo Pontilhado",
|
||||
"description": "Estilo de ícone para os indicadores da tecla de bloqueio.",
|
||||
"hex": "Letras Hexagonais",
|
||||
"label": "Estilo do Indicador",
|
||||
"large": "Letras grandes",
|
||||
"small": "Letras minúsculas",
|
||||
"square": "Letras Quadradas",
|
||||
"square-round": "Letras Quadradas Arredondadas"
|
||||
}
|
||||
"browse": "Navegar"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1479,7 +1492,8 @@
|
||||
"bottom_center": "Centro inferior",
|
||||
"top_center": "Centro superior",
|
||||
"center_left": "Centro à esquerda",
|
||||
"center_right": "Centro à direita"
|
||||
"center_right": "Centro à direita",
|
||||
"follow_bar": "Seguir barra (padrão)"
|
||||
}
|
||||
},
|
||||
"control-center": {
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -166,6 +166,14 @@
|
||||
"enforce-minimum": {
|
||||
"label": "限制最小亮度为 1%",
|
||||
"description": "解决亮度为 0% 时部分显示器背光完全关闭的问题。"
|
||||
},
|
||||
"external-brightness": {
|
||||
"label": "外部亮度支持",
|
||||
"description": "启用 DDCUtil 支持,通过 DDC/CI 协议控制外部显示器的亮度。"
|
||||
},
|
||||
"brightness-unavailable": {
|
||||
"ddc-disabled": "亮度控制不可用。启用“外部亮度支持”以控制此显示器的亮度。",
|
||||
"generic": "此显示器无法使用亮度控制。"
|
||||
}
|
||||
},
|
||||
"night-light": {
|
||||
@@ -226,13 +234,17 @@
|
||||
},
|
||||
"floating": {
|
||||
"label": "浮动状态栏",
|
||||
"description": "将状态栏显示为浮动样式(类似于一个药丸)。注意:这会将屏幕边角移动到边缘。"
|
||||
"description": "将工具栏显示为浮动的“药丸”形状。"
|
||||
},
|
||||
"margins": {
|
||||
"label": "边距",
|
||||
"description": "调整浮动状态栏周围的边距。",
|
||||
"vertical": "垂直",
|
||||
"horizontal": "水平"
|
||||
},
|
||||
"outer-corners": {
|
||||
"description": "在栏上显示向外弯曲的角。",
|
||||
"label": "外角"
|
||||
}
|
||||
},
|
||||
"widgets": {
|
||||
@@ -463,7 +475,11 @@
|
||||
"tooltip": "浏览壁纸文件夹"
|
||||
},
|
||||
"select-folder": "选择壁纸文件夹",
|
||||
"select-monitor-folder": "选择显示器壁纸文件夹"
|
||||
"select-monitor-folder": "选择显示器壁纸文件夹",
|
||||
"selector-position": {
|
||||
"description": "选择壁纸选择面板的显示位置。",
|
||||
"label": "职位"
|
||||
}
|
||||
},
|
||||
"look-feel": {
|
||||
"section": {
|
||||
@@ -585,7 +601,7 @@
|
||||
"description": "写入 {filepath} 并重新加载",
|
||||
"description-missing": "需要安装 {app}"
|
||||
},
|
||||
"wezterm": {
|
||||
"alacritty": {
|
||||
"description": "写入 {filepath} 并重新加载",
|
||||
"description-missing": "需要安装 {app}"
|
||||
}
|
||||
@@ -681,7 +697,7 @@
|
||||
"description": "在日历面板中显示事件。"
|
||||
},
|
||||
"use-analog": {
|
||||
"description": "在日历屏幕上显示一个模拟时钟。",
|
||||
"description": "在日历窗口和锁定屏幕上显示模拟时钟。",
|
||||
"label": "使用模拟时钟样式"
|
||||
},
|
||||
"first-day-of-week": {
|
||||
@@ -876,6 +892,14 @@
|
||||
"panels-attached-to-bar": {
|
||||
"description": "启用后,面板将以美观的倒角设计附加到栏上。",
|
||||
"label": "将面板连接到杆上"
|
||||
},
|
||||
"dim-desktop": {
|
||||
"description": "当面板或菜单打开时,桌面变暗。",
|
||||
"label": "昏暗的桌面"
|
||||
},
|
||||
"shadows": {
|
||||
"description": "启用条形图和面板下的阴影。",
|
||||
"label": "阴影"
|
||||
}
|
||||
},
|
||||
"lock-screen": {
|
||||
@@ -1278,18 +1302,7 @@
|
||||
"description": "显示滚动锁定状态。",
|
||||
"label": "滚动锁定"
|
||||
},
|
||||
"indicator-style": {
|
||||
"hex": "六边形字母",
|
||||
"large": "大写字母",
|
||||
"small": "小写字母",
|
||||
"square": "方块字",
|
||||
"square-round": "圆角方形字母",
|
||||
"circle": "圆圈字母",
|
||||
"circle-dash": "虚线圆圈字母",
|
||||
"circle-dot": "虚线圆圈字母",
|
||||
"description": "锁键指示器的图标样式",
|
||||
"label": "指标样式"
|
||||
}
|
||||
"browse": "浏览"
|
||||
}
|
||||
}
|
||||
},
|
||||
@@ -1481,7 +1494,8 @@
|
||||
"bottom_center": "底部居中",
|
||||
"top_center": "顶部居中",
|
||||
"center_left": "左侧居中",
|
||||
"center_right": "右侧居中"
|
||||
"center_right": "右侧居中",
|
||||
"follow_bar": "跟随栏(默认)"
|
||||
}
|
||||
},
|
||||
"control-center": {
|
||||
|
||||
@@ -10,6 +10,8 @@
|
||||
"floating": false,
|
||||
"marginVertical": 0.25,
|
||||
"marginHorizontal": 0.25,
|
||||
"outerCorners": true,
|
||||
"exclusive": true,
|
||||
"widgets": {
|
||||
"left": [
|
||||
{
|
||||
@@ -57,6 +59,7 @@
|
||||
},
|
||||
"general": {
|
||||
"avatarImage": "",
|
||||
"dimDesktop": true,
|
||||
"showScreenCorners": false,
|
||||
"forceBlackScreenCorners": false,
|
||||
"scaleRatio": 1,
|
||||
@@ -66,8 +69,18 @@
|
||||
"animationDisabled": false,
|
||||
"compactLockScreen": false,
|
||||
"lockOnSuspend": true,
|
||||
"enableShadows": true,
|
||||
"language": ""
|
||||
},
|
||||
"ui": {
|
||||
"fontDefault": "Roboto",
|
||||
"fontFixed": "DejaVu Sans Mono",
|
||||
"fontDefaultScale": 1,
|
||||
"fontFixedScale": 1,
|
||||
"tooltipsEnabled": true,
|
||||
"panelsAttachedToBar": true,
|
||||
"panelsOverlayLayer": false
|
||||
},
|
||||
"location": {
|
||||
"name": "Tokyo",
|
||||
"weatherEnabled": true,
|
||||
@@ -104,11 +117,12 @@
|
||||
"transitionDuration": 1500,
|
||||
"transitionType": "random",
|
||||
"transitionEdgeSmoothness": 0.05,
|
||||
"monitors": []
|
||||
"monitors": [],
|
||||
"selectorPosition": "follow_bar"
|
||||
},
|
||||
"appLauncher": {
|
||||
"enableClipboardHistory": false,
|
||||
"position": "center",
|
||||
"position": "follow_bar",
|
||||
"backgroundOpacity": 1,
|
||||
"pinnedExecs": [],
|
||||
"useApp2Unit": false,
|
||||
@@ -212,18 +226,10 @@
|
||||
"mprisBlacklist": [],
|
||||
"preferredPlayer": ""
|
||||
},
|
||||
"ui": {
|
||||
"fontDefault": "Roboto",
|
||||
"fontFixed": "DejaVu Sans Mono",
|
||||
"fontDefaultScale": 1,
|
||||
"fontFixedScale": 1,
|
||||
"tooltipsEnabled": true,
|
||||
"panelsAttachedToBar": true,
|
||||
"panelsOverlayLayer": true
|
||||
},
|
||||
"brightness": {
|
||||
"brightnessStep": 5,
|
||||
"enforceMinimum": true
|
||||
"enforceMinimum": true,
|
||||
"enableDdcSupport": false
|
||||
},
|
||||
"colorSchemes": {
|
||||
"useWallpaperColors": false,
|
||||
@@ -239,6 +245,7 @@
|
||||
"gtk": false,
|
||||
"qt": false,
|
||||
"kcolorscheme": false,
|
||||
"alacritty": false,
|
||||
"kitty": false,
|
||||
"ghostty": false,
|
||||
"foot": false,
|
||||
|
||||
Reference in New Issue
Block a user