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

i18n: add some terms

This commit is contained in:
bbedward
2025-10-20 09:22:03 -04:00
parent f54e53b8a0
commit 59669d8b7f
10 changed files with 658 additions and 54 deletions

View File

@@ -195,14 +195,16 @@ Singleton {
} }
readonly property var availableMatugenSchemes: [ readonly property var availableMatugenSchemes: [
({ "value": "scheme-tonal-spot", "label": "Tonal Spot", "description": "Balanced palette with focused accents (default)." }), ({ "value": "scheme-tonal-spot", "label": "Tonal Spot", "description": I18n.tr("Balanced palette with focused accents (default).") }),
({ "value": "scheme-content", "label": "Content", "description": "Derives colors that closely match the underlying image." }), ({ "value": "scheme-vibrant-spot", "label": "Vibrant Spot", "description": I18n.tr("Lively palette with saturated accents.") }),
({ "value": "scheme-expressive", "label": "Expressive", "description": "Vibrant palette with playful saturation." }), ({ "value": "scheme-dynamic-contrast", "label": "Dynamic Contrast", "description": I18n.tr("High-contrast palette for strong visual distinction.") }),
({ "value": "scheme-fidelity", "label": "Fidelity", "description": "High-fidelity palette that preserves source hues." }), ({ "value": "scheme-content", "label": "Content", "description": I18n.tr("Derives colors that closely match the underlying image.") }),
({ "value": "scheme-fruit-salad", "label": "Fruit Salad", "description": "Colorful mix of bright contrasting accents." }), ({ "value": "scheme-expressive", "label": "Expressive", "description": I18n.tr("Vibrant palette with playful saturation.") }),
({ "value": "scheme-monochrome", "label": "Monochrome", "description": "Minimal palette built around a single hue." }), ({ "value": "scheme-fidelity", "label": "Fidelity", "description": I18n.tr("High-fidelity palette that preserves source hues.") }),
({ "value": "scheme-neutral", "label": "Neutral", "description": "Muted palette with subdued, calming tones." }), ({ "value": "scheme-fruit-salad", "label": "Fruit Salad", "description": I18n.tr("Colorful mix of bright contrasting accents.") }),
({ "value": "scheme-rainbow", "label": "Rainbow", "description": "Diverse palette spanning the full spectrum." }) ({ "value": "scheme-monochrome", "label": "Monochrome", "description": I18n.tr("Minimal palette built around a single hue.") }),
({ "value": "scheme-neutral", "label": "Neutral", "description": I18n.tr("Muted palette with subdued, calming tones.") }),
({ "value": "scheme-rainbow", "label": "Rainbow", "description": I18n.tr("Diverse palette spanning the full spectrum.") })
] ]
function getMatugenScheme(value) { function getMatugenScheme(value) {

View File

@@ -257,9 +257,9 @@ Item {
} }
StyledText { StyledText {
text: `dms is a highly customizable, modern desktop shell with a <a href="https://m3.material.io/" style="text-decoration:none; color:${Theme.primary};">material 3 inspired</a> design. text: I18n.tr(`dms is a highly customizable, modern desktop shell with a <a href="https://m3.material.io/" style="text-decoration:none; color:${Theme.primary};">material 3 inspired</a> design.
<br /><br/>It is built with <a href="https://quickshell.org" style="text-decoration:none; color:${Theme.primary};">Quickshell</a>, a QT6 framework for building desktop shells, and <a href="https://go.dev" style="text-decoration:none; color:${Theme.primary};">Go</a>, a statically typed, compiled programming language. <br /><br/>It is built with <a href="https://quickshell.org" style="text-decoration:none; color:${Theme.primary};">Quickshell</a>, a QT6 framework for building desktop shells, and <a href="https://go.dev" style="text-decoration:none; color:${Theme.primary};">Go</a>, a statically typed, compiled programming language.
` `)
textFormat: Text.RichText textFormat: Text.RichText
font.pixelSize: Theme.fontSizeMedium font.pixelSize: Theme.fontSizeMedium
linkColor: Theme.primary linkColor: Theme.primary

View File

@@ -705,7 +705,7 @@ Item {
DankButtonGroup { DankButtonGroup {
id: positionButtonGroup id: positionButtonGroup
anchors.verticalCenter: parent.verticalCenter anchors.verticalCenter: parent.verticalCenter
model: ["Top", "Bottom", "Left", "Right"] model: [I18n.tr("Top"), I18n.tr("Bottom"), I18n.tr("Left"), I18n.tr("Right")]
currentIndex: { currentIndex: {
switch (SettingsData.dankBarPosition) { switch (SettingsData.dankBarPosition) {
case SettingsData.Position.Top: return 0 case SettingsData.Position.Top: return 0
@@ -1740,7 +1740,7 @@ Item {
id: leftSection id: leftSection
anchors.fill: parent anchors.fill: parent
anchors.margins: Theme.spacingL anchors.margins: Theme.spacingL
title: SettingsData.dankBarIsVertical ? "Top Section" : "Left Section" title: SettingsData.dankBarIsVertical ? I18n.tr("Top Section") : I18n.tr("Left Section")
titleIcon: "format_align_left" titleIcon: "format_align_left"
sectionId: "left" sectionId: "left"
allWidgets: dankBarTab.baseWidgetDefinitions allWidgets: dankBarTab.baseWidgetDefinitions
@@ -1892,7 +1892,7 @@ Item {
id: rightSection id: rightSection
anchors.fill: parent anchors.fill: parent
anchors.margins: Theme.spacingL anchors.margins: Theme.spacingL
title: SettingsData.dankBarIsVertical ? "Bottom Section" : "Right Section" title: SettingsData.dankBarIsVertical ? I18n.tr("Bottom Section") : I18n.tr("Right Section")
titleIcon: "format_align_right" titleIcon: "format_align_right"
sectionId: "right" sectionId: "right"
allWidgets: dankBarTab.baseWidgetDefinitions allWidgets: dankBarTab.baseWidgetDefinitions

View File

@@ -12,42 +12,42 @@ Item {
property var variantComponents: [{ property var variantComponents: [{
"id": "dankBar", "id": "dankBar",
"name": "Dank Bar", "name": "Dank Bar",
"description": "System bar with widgets and system information", "description": I18n.tr("System bar with widgets and system information"),
"icon": "toolbar" "icon": "toolbar"
}, { }, {
"id": "dock", "id": "dock",
"name": "Application Dock", "name": I18n.tr("Application Dock"),
"description": "Bottom dock for pinned and running applications", "description": I18n.tr("Bottom dock for pinned and running applications"),
"icon": "dock" "icon": "dock"
}, { }, {
"id": "notifications", "id": "notifications",
"name": "Notification Popups", "name": I18n.tr("Notification Popups"),
"description": "Notification toast popups", "description": I18n.tr("Notification toast popups"),
"icon": "notifications" "icon": "notifications"
}, { }, {
"id": "wallpaper", "id": "wallpaper",
"name": "Wallpaper", "name": I18n.tr("Wallpaper"),
"description": "Desktop background images", "description": I18n.tr("Desktop background images"),
"icon": "wallpaper" "icon": "wallpaper"
}, { }, {
"id": "osd", "id": "osd",
"name": "On-Screen Displays", "name": I18n.tr("On-Screen Displays"),
"description": "Volume, brightness, and other system OSDs", "description": I18n.tr("Volume, brightness, and other system OSDs"),
"icon": "picture_in_picture" "icon": "picture_in_picture"
}, { }, {
"id": "toast", "id": "toast",
"name": "Toast Messages", "name": I18n.tr("Toast Messages"),
"description": "System toast notifications", "description": I18n.tr("System toast notifications"),
"icon": "campaign" "icon": "campaign"
}, { }, {
"id": "notepad", "id": "notepad",
"name": "Notepad Slideout", "name": I18n.tr("Notepad Slideout"),
"description": "Quick note-taking slideout panel", "description": I18n.tr("Quick note-taking slideout panel"),
"icon": "sticky_note_2" "icon": "sticky_note_2"
}, { }, {
"id": "systemTray", "id": "systemTray",
"name": "System Tray", "name": I18n.tr("System Tray"),
"description": "System tray icons", "description": I18n.tr("System tray icons"),
"icon": "notifications" "icon": "notifications"
}] }]
@@ -116,7 +116,7 @@ Item {
width: parent.width width: parent.width
text: I18n.tr("Night Mode") text: I18n.tr("Night Mode")
description: "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates." description: I18n.tr("Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.")
checked: DisplayService.nightModeEnabled checked: DisplayService.nightModeEnabled
onToggled: checked => { onToggled: checked => {
DisplayService.toggleNightMode() DisplayService.toggleNightMode()
@@ -160,7 +160,7 @@ Item {
id: automaticToggle id: automaticToggle
width: parent.width width: parent.width
text: I18n.tr("Automatic Control") text: I18n.tr("Automatic Control")
description: "Only adjust gamma based on time or location rules." description: I18n.tr("Only adjust gamma based on time or location rules.")
checked: SessionData.nightModeAutoEnabled checked: SessionData.nightModeAutoEnabled
onToggled: checked => { onToggled: checked => {
if (checked && !DisplayService.nightModeEnabled) { if (checked && !DisplayService.nightModeEnabled) {
@@ -362,7 +362,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Auto-location") text: I18n.tr("Auto-location")
description: DisplayService.geoclueAvailable ? "Use automatic location detection (geoclue2)" : "Geoclue service not running - cannot auto-detect location" description: DisplayService.geoclueAvailable ? I18n.tr("Use automatic location detection (geoclue2)") : I18n.tr("Geoclue service not running - cannot auto-detect location")
checked: SessionData.nightModeLocationProvider === "geoclue2" checked: SessionData.nightModeLocationProvider === "geoclue2"
enabled: DisplayService.geoclueAvailable enabled: DisplayService.geoclueAvailable
onToggled: checked => { onToggled: checked => {

View File

@@ -449,7 +449,7 @@ Item {
DankTextField { DankTextField {
width: parent.width width: parent.width
text: SettingsData.launchPrefix text: SettingsData.launchPrefix
placeholderText: "Enter launch prefix (e.g., 'uwsm-app')" placeholderText: I18n.tr("Enter launch prefix (e.g., 'uwsm-app')")
onTextEdited: { onTextEdited: {
SettingsData.setLaunchPrefix(text) SettingsData.setLaunchPrefix(text)
} }
@@ -688,21 +688,25 @@ Item {
var diffDays = Math.floor( var diffDays = Math.floor(
diffMs / (1000 * 60 * 60 * 24)) diffMs / (1000 * 60 * 60 * 24))
if (diffMins < 1) if (diffMins < 1)
return "Last launched just now" return I18n.tr("Last launched just now")
if (diffMins < 60) if (diffMins < 60)
return "Last launched " + diffMins + " minute" return I18n.tr("Last launched %1 minute%2 ago")
+ (diffMins === 1 ? "" : "s") + " ago" .arg(diffMins)
.arg(diffMins === 1 ? "" : "s")
if (diffHours < 24) if (diffHours < 24)
return "Last launched " + diffHours + " hour" return I18n.tr("Last launched %1 hour%2 ago")
+ (diffHours === 1 ? "" : "s") + " ago" .arg(diffHours)
.arg(diffHours === 1 ? "" : "s")
if (diffDays < 7) if (diffDays < 7)
return "Last launched " + diffDays + " day" return I18n.tr("Last launched %1 day%2 ago")
+ (diffDays === 1 ? "" : "s") + " ago" .arg(diffDays)
.arg(diffDays === 1 ? "" : "s")
return "Last launched " + date.toLocaleDateString() return I18n.tr("Last launched %1")
.arg(date.toLocaleDateString())
} }
font.pixelSize: Theme.fontSizeSmall font.pixelSize: Theme.fontSizeSmall
color: Theme.surfaceVariantText color: Theme.surfaceVariantText

View File

@@ -1274,7 +1274,7 @@ Item {
DankDropdown { DankDropdown {
id: personalizationMatugenPaletteDropdown id: personalizationMatugenPaletteDropdown
text: I18n.tr("Matugen Palette") text: I18n.tr("Matugen Palette")
description: "Select the palette algorithm used for wallpaper-based colors" description: I18n.tr("Select the palette algorithm used for wallpaper-based colors")
options: Theme.availableMatugenSchemes.map(function (option) { return option.label }) options: Theme.availableMatugenSchemes.map(function (option) { return option.label })
currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label
enabled: Theme.matugenAvailable enabled: Theme.matugenAvailable

View File

@@ -627,7 +627,7 @@ Item {
DankDropdown { DankDropdown {
id: matugenPaletteDropdown id: matugenPaletteDropdown
text: I18n.tr("Matugen Palette") text: I18n.tr("Matugen Palette")
description: "Select the palette algorithm used for wallpaper-based colors" description: I18n.tr("Select the palette algorithm used for wallpaper-based colors")
options: cachedMatugenSchemes options: cachedMatugenSchemes
currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label currentValue: Theme.getMatugenScheme(SettingsData.matugenScheme).label
enabled: Theme.matugenAvailable enabled: Theme.matugenAvailable
@@ -1393,7 +1393,7 @@ Item {
} }
StyledText { StyledText {
text: `Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.<br /><br />It is recommended to install <a href="https://github.com/AvengeMedia/DankMaterialShell/blob/master/README.md#Theming" style="text-decoration:none; color:${Theme.primary};">Colloid</a> GTK theme prior to applying GTK themes.` text: I18n.tr(`Generate baseline GTK3/4 or QT5/QT6 (requires qt6ct-kde) configurations to follow DMS colors. Only needed once.<br /><br />It is recommended to configure <a href="https://github.com/AvengeMedia/DankMaterialShell/blob/master/README.md#Theming" style="text-decoration:none; color:${Theme.primary};">adw-gtk3</a> prior to applying GTK themes.`)
textFormat: Text.RichText textFormat: Text.RichText
linkColor: Theme.primary linkColor: Theme.primary
onLinkActivated: url => Qt.openUrlExternally(url) onLinkActivated: url => Qt.openUrlExternally(url)

View File

@@ -58,7 +58,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Workspace Index Numbers") text: I18n.tr("Workspace Index Numbers")
description: "Show workspace index numbers in the top bar workspace switcher" description: I18n.tr("Show workspace index numbers in the top bar workspace switcher")
checked: SettingsData.showWorkspaceIndex checked: SettingsData.showWorkspaceIndex
onToggled: checked => { onToggled: checked => {
return SettingsData.setShowWorkspaceIndex( return SettingsData.setShowWorkspaceIndex(
@@ -68,7 +68,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Window Scrolling") text: I18n.tr("Window Scrolling")
description: "Scroll through windows, rather than workspaces" description: I18n.tr("Scroll through windows, rather than workspaces")
checked: SettingsData.workspaceScrolling checked: SettingsData.workspaceScrolling
visible: CompositorService.isNiri visible: CompositorService.isNiri
onToggled: checked => { onToggled: checked => {
@@ -79,7 +79,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Workspace Padding") text: I18n.tr("Workspace Padding")
description: "Always show a minimum of 3 workspaces, even if fewer are available" description: I18n.tr("Always show a minimum of 3 workspaces, even if fewer are available")
checked: SettingsData.showWorkspacePadding checked: SettingsData.showWorkspacePadding
onToggled: checked => { onToggled: checked => {
return SettingsData.setShowWorkspacePadding( return SettingsData.setShowWorkspacePadding(
@@ -90,7 +90,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Show Workspace Apps") text: I18n.tr("Show Workspace Apps")
description: "Display application icons in workspace indicators" description: I18n.tr("Display application icons in workspace indicators")
checked: SettingsData.showWorkspaceApps checked: SettingsData.showWorkspaceApps
onToggled: checked => { onToggled: checked => {
return SettingsData.setShowWorkspaceApps( return SettingsData.setShowWorkspaceApps(
@@ -143,7 +143,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Per-Monitor Workspaces") text: I18n.tr("Per-Monitor Workspaces")
description: "Show only workspaces belonging to each specific monitor." description: I18n.tr("Show only workspaces belonging to each specific monitor.")
checked: SettingsData.workspacesPerMonitor checked: SettingsData.workspacesPerMonitor
onToggled: checked => { onToggled: checked => {
return SettingsData.setWorkspacesPerMonitor(checked); return SettingsData.setWorkspacesPerMonitor(checked);
@@ -191,7 +191,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Wave Progress Bars") text: I18n.tr("Wave Progress Bars")
description: "Use animated wave progress bars for media playback" description: I18n.tr("Use animated wave progress bars for media playback")
checked: SettingsData.waveProgressEnabled checked: SettingsData.waveProgressEnabled
onToggled: checked => { onToggled: checked => {
return SettingsData.setWaveProgressEnabled(checked); return SettingsData.setWaveProgressEnabled(checked);
@@ -386,7 +386,7 @@ Item {
DankToggle { DankToggle {
width: parent.width width: parent.width
text: I18n.tr("Running Apps Only In Current Workspace") text: I18n.tr("Running Apps Only In Current Workspace")
description: "Show only apps running in current workspace" description: I18n.tr("Show only apps running in current workspace")
checked: SettingsData.runningAppsCurrentWorkspace checked: SettingsData.runningAppsCurrentWorkspace
onToggled: checked => { onToggled: checked => {
return SettingsData.setRunningAppsCurrentWorkspace( return SettingsData.setRunningAppsCurrentWorkspace(

View File

@@ -143,6 +143,12 @@
"reference": "Modules/Settings/WidgetTweaksTab.qml:675", "reference": "Modules/Settings/WidgetTweaksTab.qml:675",
"comment": "" "comment": ""
}, },
{
"term": "Always show a minimum of 3 workspaces, even if fewer are available",
"context": "Always show a minimum of 3 workspaces, even if fewer are available",
"reference": "Modules/Settings/WidgetTweaksTab.qml:82",
"comment": ""
},
{ {
"term": "Animation Speed", "term": "Animation Speed",
"context": "Animation Speed", "context": "Animation Speed",
@@ -161,6 +167,12 @@
"reference": "Modules/Settings/DankBarTab.qml:25", "reference": "Modules/Settings/DankBarTab.qml:25",
"comment": "" "comment": ""
}, },
{
"term": "Application Dock",
"context": "Application Dock",
"reference": "Modules/Settings/DisplaysTab.qml:19",
"comment": ""
},
{ {
"term": "Applications", "term": "Applications",
"context": "Applications", "context": "Applications",
@@ -185,6 +197,12 @@
"reference": "Modules/Settings/ThemeColorsTab.qml:1378", "reference": "Modules/Settings/ThemeColorsTab.qml:1378",
"comment": "" "comment": ""
}, },
{
"term": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.",
"context": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.",
"reference": "Modules/Settings/DisplaysTab.qml:119",
"comment": ""
},
{ {
"term": "Apps Icon", "term": "Apps Icon",
"context": "Apps Icon", "context": "Apps Icon",
@@ -371,6 +389,12 @@
"reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:454", "reference": "Modules/DankBar/Widgets/SystemTrayBar.qml:454",
"comment": "" "comment": ""
}, },
{
"term": "Balanced palette with focused accents (default).",
"context": "Balanced palette with focused accents (default).",
"reference": "Common/Theme.qml:198",
"comment": ""
},
{ {
"term": "Battery", "term": "Battery",
"context": "Battery", "context": "Battery",
@@ -431,6 +455,24 @@
"reference": "Modules/Settings/DankBarTab.qml:1449, Modules/Settings/DankBarTab.qml:1463", "reference": "Modules/Settings/DankBarTab.qml:1449, Modules/Settings/DankBarTab.qml:1463",
"comment": "" "comment": ""
}, },
{
"term": "Bottom",
"context": "Bottom",
"reference": "Modules/Settings/DankBarTab.qml:708",
"comment": ""
},
{
"term": "Bottom Section",
"context": "Bottom Section",
"reference": "Modules/Settings/DankBarTab.qml:1895",
"comment": ""
},
{
"term": "Bottom dock for pinned and running applications",
"context": "Bottom dock for pinned and running applications",
"reference": "Modules/Settings/DisplaysTab.qml:20",
"comment": ""
},
{ {
"term": "Brightness", "term": "Brightness",
"context": "Brightness", "context": "Brightness",
@@ -599,6 +641,12 @@
"reference": "Modules/Settings/DisplaysTab.qml:143", "reference": "Modules/Settings/DisplaysTab.qml:143",
"comment": "" "comment": ""
}, },
{
"term": "Colorful mix of bright contrasting accents.",
"context": "Colorful mix of bright contrasting accents.",
"reference": "Common/Theme.qml:204",
"comment": ""
},
{ {
"term": "Command or script to run instead of the standard hibernate procedure", "term": "Command or script to run instead of the standard hibernate procedure",
"context": "Command or script to run instead of the standard hibernate procedure", "context": "Command or script to run instead of the standard hibernate procedure",
@@ -893,6 +941,18 @@
"reference": "Modules/Notifications/Center/NotificationKeyboardHints.qml:35", "reference": "Modules/Notifications/Center/NotificationKeyboardHints.qml:35",
"comment": "" "comment": ""
}, },
{
"term": "Derives colors that closely match the underlying image.",
"context": "Derives colors that closely match the underlying image.",
"reference": "Common/Theme.qml:201",
"comment": ""
},
{
"term": "Desktop background images",
"context": "Desktop background images",
"reference": "Modules/Settings/DisplaysTab.qml:30",
"comment": ""
},
{ {
"term": "Development", "term": "Development",
"context": "Development", "context": "Development",
@@ -935,6 +995,12 @@
"reference": "Modules/Notifications/Center/NotificationSettings.qml:237", "reference": "Modules/Notifications/Center/NotificationSettings.qml:237",
"comment": "" "comment": ""
}, },
{
"term": "Display application icons in workspace indicators",
"context": "Display application icons in workspace indicators",
"reference": "Modules/Settings/WidgetTweaksTab.qml:93",
"comment": ""
},
{ {
"term": "Display currently focused application title", "term": "Display currently focused application title",
"context": "Display currently focused application title", "context": "Display currently focused application title",
@@ -959,6 +1025,12 @@
"reference": "Modules/Settings/DankBarTab.qml:171", "reference": "Modules/Settings/DankBarTab.qml:171",
"comment": "" "comment": ""
}, },
{
"term": "Diverse palette spanning the full spectrum.",
"context": "Diverse palette spanning the full spectrum.",
"reference": "Common/Theme.qml:207",
"comment": ""
},
{ {
"term": "Do Not Disturb", "term": "Do Not Disturb",
"context": "Do Not Disturb", "context": "Do Not Disturb",
@@ -1247,6 +1319,12 @@
"reference": "Modules/Settings/DisplaysTab.qml:106", "reference": "Modules/Settings/DisplaysTab.qml:106",
"comment": "" "comment": ""
}, },
{
"term": "Geoclue service not running - cannot auto-detect location",
"context": "Geoclue service not running - cannot auto-detect location",
"reference": "Modules/Settings/DisplaysTab.qml:365",
"comment": ""
},
{ {
"term": "Github:", "term": "Github:",
"context": "Github:", "context": "Github:",
@@ -1319,6 +1397,18 @@
"reference": "Modules/Settings/DockTab.qml:135", "reference": "Modules/Settings/DockTab.qml:135",
"comment": "" "comment": ""
}, },
{
"term": "High-contrast palette for strong visual distinction.",
"context": "High-contrast palette for strong visual distinction.",
"reference": "Common/Theme.qml:200",
"comment": ""
},
{
"term": "High-fidelity palette that preserves source hues.",
"context": "High-fidelity palette that preserves source hues.",
"reference": "Common/Theme.qml:203",
"comment": ""
},
{ {
"term": "Hour", "term": "Hour",
"context": "Hour", "context": "Hour",
@@ -1439,6 +1529,36 @@
"reference": "Modules/Settings/AboutTab.qml:348", "reference": "Modules/Settings/AboutTab.qml:348",
"comment": "" "comment": ""
}, },
{
"term": "Last launched %1",
"context": "Last launched %1",
"reference": "Modules/Settings/LauncherTab.qml:708",
"comment": ""
},
{
"term": "Last launched %1 day%2 ago",
"context": "Last launched %1 day%2 ago",
"reference": "Modules/Settings/LauncherTab.qml:704",
"comment": ""
},
{
"term": "Last launched %1 hour%2 ago",
"context": "Last launched %1 hour%2 ago",
"reference": "Modules/Settings/LauncherTab.qml:699",
"comment": ""
},
{
"term": "Last launched %1 minute%2 ago",
"context": "Last launched %1 minute%2 ago",
"reference": "Modules/Settings/LauncherTab.qml:694",
"comment": ""
},
{
"term": "Last launched just now",
"context": "Last launched just now",
"reference": "Modules/Settings/LauncherTab.qml:691",
"comment": ""
},
{ {
"term": "Latitude", "term": "Latitude",
"context": "Latitude", "context": "Latitude",
@@ -1478,7 +1598,13 @@
{ {
"term": "Left", "term": "Left",
"context": "Left", "context": "Left",
"reference": "Modules/DankBar/Popouts/BatteryPopout.qml:537", "reference": "Modules/Settings/DankBarTab.qml:708, Modules/DankBar/Popouts/BatteryPopout.qml:537",
"comment": ""
},
{
"term": "Left Section",
"context": "Left Section",
"reference": "Modules/Settings/DankBarTab.qml:1743",
"comment": "" "comment": ""
}, },
{ {
@@ -1493,6 +1619,12 @@
"reference": "Modules/Notepad/NotepadTextEditor.qml:571", "reference": "Modules/Notepad/NotepadTextEditor.qml:571",
"comment": "" "comment": ""
}, },
{
"term": "Lively palette with saturated accents.",
"context": "Lively palette with saturated accents.",
"reference": "Common/Theme.qml:199",
"comment": ""
},
{ {
"term": "Loading plugins...", "term": "Loading plugins...",
"context": "Loading plugins...", "context": "Loading plugins...",
@@ -1637,6 +1769,12 @@
"reference": "Modules/Settings/DankBarTab.qml:81", "reference": "Modules/Settings/DankBarTab.qml:81",
"comment": "" "comment": ""
}, },
{
"term": "Minimal palette built around a single hue.",
"context": "Minimal palette built around a single hue.",
"reference": "Common/Theme.qml:205",
"comment": ""
},
{ {
"term": "Minute", "term": "Minute",
"context": "Minute", "context": "Minute",
@@ -1673,6 +1811,12 @@
"reference": "Modules/ProcessList/SystemTab.qml:445", "reference": "Modules/ProcessList/SystemTab.qml:445",
"comment": "" "comment": ""
}, },
{
"term": "Muted palette with subdued, calming tones.",
"context": "Muted palette with subdued, calming tones.",
"reference": "Common/Theme.qml:206",
"comment": ""
},
{ {
"term": "NM not supported", "term": "NM not supported",
"context": "NM not supported", "context": "NM not supported",
@@ -1841,6 +1985,12 @@
"reference": "Modules/Notepad/NotepadSettings.qml:122", "reference": "Modules/Notepad/NotepadSettings.qml:122",
"comment": "" "comment": ""
}, },
{
"term": "Notepad Slideout",
"context": "Notepad Slideout",
"reference": "Modules/Settings/DisplaysTab.qml:44",
"comment": ""
},
{ {
"term": "Nothing to see here", "term": "Nothing to see here",
"context": "Nothing to see here", "context": "Nothing to see here",
@@ -1862,7 +2012,7 @@
{ {
"term": "Notification Popups", "term": "Notification Popups",
"context": "Notification Popups", "context": "Notification Popups",
"reference": "Modules/Settings/WidgetTweaksTab.qml:585", "reference": "Modules/Settings/DisplaysTab.qml:24, Modules/Settings/WidgetTweaksTab.qml:585",
"comment": "" "comment": ""
}, },
{ {
@@ -1877,6 +2027,12 @@
"reference": "Modules/Notifications/Center/NotificationSettings.qml:153", "reference": "Modules/Notifications/Center/NotificationSettings.qml:153",
"comment": "" "comment": ""
}, },
{
"term": "Notification toast popups",
"context": "Notification toast popups",
"reference": "Modules/Settings/DisplaysTab.qml:25",
"comment": ""
},
{ {
"term": "Notifications", "term": "Notifications",
"context": "Notifications", "context": "Notifications",
@@ -1901,6 +2057,18 @@
"reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:172, Services/AppSearchService.qml:173, Services/AppSearchService.qml:174", "reference": "Services/AppSearchService.qml:171, Services/AppSearchService.qml:172, Services/AppSearchService.qml:173, Services/AppSearchService.qml:174",
"comment": "" "comment": ""
}, },
{
"term": "On-Screen Displays",
"context": "On-Screen Displays",
"reference": "Modules/Settings/DisplaysTab.qml:34",
"comment": ""
},
{
"term": "Only adjust gamma based on time or location rules.",
"context": "Only adjust gamma based on time or location rules.",
"reference": "Modules/Settings/DisplaysTab.qml:163",
"comment": ""
},
{ {
"term": "Opacity", "term": "Opacity",
"context": "Opacity", "context": "Opacity",
@@ -2153,6 +2321,12 @@
"reference": "Modules/Settings/DankBarTab.qml:176", "reference": "Modules/Settings/DankBarTab.qml:176",
"comment": "" "comment": ""
}, },
{
"term": "Quick note-taking slideout panel",
"context": "Quick note-taking slideout panel",
"reference": "Modules/Settings/DisplaysTab.qml:45",
"comment": ""
},
{ {
"term": "Rain Chance", "term": "Rain Chance",
"context": "Rain Chance", "context": "Rain Chance",
@@ -2201,6 +2375,18 @@
"reference": "Modules/Settings/DankBarTab.qml:1675, Modules/ControlCenter/Components/EditControls.qml:227", "reference": "Modules/Settings/DankBarTab.qml:1675, Modules/ControlCenter/Components/EditControls.qml:227",
"comment": "" "comment": ""
}, },
{
"term": "Right",
"context": "Right",
"reference": "Modules/Settings/DankBarTab.qml:708",
"comment": ""
},
{
"term": "Right Section",
"context": "Right Section",
"reference": "Modules/Settings/DankBarTab.qml:1895",
"comment": ""
},
{ {
"term": "Run User Templates", "term": "Run User Templates",
"context": "Run User Templates", "context": "Run User Templates",
@@ -2267,6 +2453,12 @@
"reference": "Services/AppSearchService.qml:175", "reference": "Services/AppSearchService.qml:175",
"comment": "" "comment": ""
}, },
{
"term": "Scroll through windows, rather than workspaces",
"context": "Scroll through windows, rather than workspaces",
"reference": "Modules/Settings/WidgetTweaksTab.qml:71",
"comment": ""
},
{ {
"term": "Search for a location...", "term": "Search for a location...",
"context": "Search for a location...", "context": "Search for a location...",
@@ -2345,6 +2537,12 @@
"reference": "Modules/Settings/PersonalizationTab.qml:1476", "reference": "Modules/Settings/PersonalizationTab.qml:1476",
"comment": "" "comment": ""
}, },
{
"term": "Select the palette algorithm used for wallpaper-based colors",
"context": "Select the palette algorithm used for wallpaper-based colors",
"reference": "Modules/Settings/ThemeColorsTab.qml:630, Modules/Settings/PersonalizationTab.qml:1277",
"comment": ""
},
{ {
"term": "Select which transitions to include in randomization", "term": "Select which transitions to include in randomization",
"context": "Select which transitions to include in randomization", "context": "Select which transitions to include in randomization",
@@ -2429,6 +2627,18 @@
"reference": "Modules/Settings/DisplaysTab.qml:651", "reference": "Modules/Settings/DisplaysTab.qml:651",
"comment": "" "comment": ""
}, },
{
"term": "Show only apps running in current workspace",
"context": "Show only apps running in current workspace",
"reference": "Modules/Settings/WidgetTweaksTab.qml:389",
"comment": ""
},
{
"term": "Show only workspaces belonging to each specific monitor.",
"context": "Show only workspaces belonging to each specific monitor.",
"reference": "Modules/Settings/WidgetTweaksTab.qml:146",
"comment": ""
},
{ {
"term": "Show password", "term": "Show password",
"context": "Show password", "context": "Show password",
@@ -2453,6 +2663,12 @@
"reference": "Modules/Settings/TimeWeatherTab.qml:480", "reference": "Modules/Settings/TimeWeatherTab.qml:480",
"comment": "" "comment": ""
}, },
{
"term": "Show workspace index numbers in the top bar workspace switcher",
"context": "Show workspace index numbers in the top bar workspace switcher",
"reference": "Modules/Settings/WidgetTweaksTab.qml:61",
"comment": ""
},
{ {
"term": "Shows all running applications with focus indication", "term": "Shows all running applications with focus indication",
"context": "Shows all running applications with focus indication", "context": "Shows all running applications with focus indication",
@@ -2612,7 +2828,7 @@
{ {
"term": "System Tray", "term": "System Tray",
"context": "System Tray", "context": "System Tray",
"reference": "Modules/Settings/DankBarTab.qml:108", "reference": "Modules/Settings/DisplaysTab.qml:49, Modules/Settings/DankBarTab.qml:108",
"comment": "" "comment": ""
}, },
{ {
@@ -2633,12 +2849,30 @@
"reference": "Modules/SystemUpdatePopout.qml:93", "reference": "Modules/SystemUpdatePopout.qml:93",
"comment": "" "comment": ""
}, },
{
"term": "System bar with widgets and system information",
"context": "System bar with widgets and system information",
"reference": "Modules/Settings/DisplaysTab.qml:15",
"comment": ""
},
{ {
"term": "System notification area icons", "term": "System notification area icons",
"context": "System notification area icons", "context": "System notification area icons",
"reference": "Modules/Settings/DankBarTab.qml:109", "reference": "Modules/Settings/DankBarTab.qml:109",
"comment": "" "comment": ""
}, },
{
"term": "System toast notifications",
"context": "System toast notifications",
"reference": "Modules/Settings/DisplaysTab.qml:40",
"comment": ""
},
{
"term": "System tray icons",
"context": "System tray icons",
"reference": "Modules/Settings/DisplaysTab.qml:50",
"comment": ""
},
{ {
"term": "System update custom command", "term": "System update custom command",
"context": "System update custom command", "context": "System update custom command",
@@ -2741,6 +2975,12 @@
"reference": "Services/DMSService.qml:235", "reference": "Services/DMSService.qml:235",
"comment": "" "comment": ""
}, },
{
"term": "Toast Messages",
"context": "Toast Messages",
"reference": "Modules/Settings/DisplaysTab.qml:39",
"comment": ""
},
{ {
"term": "Today", "term": "Today",
"context": "Today", "context": "Today",
@@ -2759,12 +2999,24 @@
"reference": "Services/WeatherService.qml:170", "reference": "Services/WeatherService.qml:170",
"comment": "" "comment": ""
}, },
{
"term": "Top",
"context": "Top",
"reference": "Modules/Settings/DankBarTab.qml:708",
"comment": ""
},
{ {
"term": "Top Bar Format", "term": "Top Bar Format",
"context": "Top Bar Format", "context": "Top Bar Format",
"reference": "Modules/Settings/TimeWeatherTab.qml:189", "reference": "Modules/Settings/TimeWeatherTab.qml:189",
"comment": "" "comment": ""
}, },
{
"term": "Top Section",
"context": "Top Section",
"reference": "Modules/Settings/DankBarTab.qml:1743",
"comment": ""
},
{ {
"term": "Transition Effect", "term": "Transition Effect",
"context": "Transition Effect", "context": "Transition Effect",
@@ -2849,6 +3101,18 @@
"reference": "Modules/Settings/PersonalizationTab.qml:1447", "reference": "Modules/Settings/PersonalizationTab.qml:1447",
"comment": "" "comment": ""
}, },
{
"term": "Use animated wave progress bars for media playback",
"context": "Use animated wave progress bars for media playback",
"reference": "Modules/Settings/WidgetTweaksTab.qml:194",
"comment": ""
},
{
"term": "Use automatic location detection (geoclue2)",
"context": "Use automatic location detection (geoclue2)",
"reference": "Modules/Settings/DisplaysTab.qml:365",
"comment": ""
},
{ {
"term": "Use custom command for update your system", "term": "Use custom command for update your system",
"context": "Use custom command for update your system", "context": "Use custom command for update your system",
@@ -2921,6 +3185,12 @@
"reference": "Modules/Settings/DankBarTab.qml:139", "reference": "Modules/Settings/DankBarTab.qml:139",
"comment": "" "comment": ""
}, },
{
"term": "Vibrant palette with playful saturation.",
"context": "Vibrant palette with playful saturation.",
"reference": "Common/Theme.qml:202",
"comment": ""
},
{ {
"term": "Visibility", "term": "Visibility",
"context": "Visibility", "context": "Visibility",
@@ -2945,10 +3215,16 @@
"reference": "Modules/Settings/PersonalizationTab.qml:1546", "reference": "Modules/Settings/PersonalizationTab.qml:1546",
"comment": "" "comment": ""
}, },
{
"term": "Volume, brightness, and other system OSDs",
"context": "Volume, brightness, and other system OSDs",
"reference": "Modules/Settings/DisplaysTab.qml:35",
"comment": ""
},
{ {
"term": "Wallpaper", "term": "Wallpaper",
"context": "Wallpaper", "context": "Wallpaper",
"reference": "Modules/Settings/PersonalizationTab.qml:110", "reference": "Modules/Settings/DisplaysTab.qml:29, Modules/Settings/PersonalizationTab.qml:110",
"comment": "" "comment": ""
}, },
{ {

View File

@@ -167,6 +167,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Always show a minimum of 3 workspaces, even if fewer are available",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Animation Speed", "term": "Animation Speed",
"translation": "", "translation": "",
@@ -188,6 +195,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Application Dock",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Applications", "term": "Applications",
"translation": "", "translation": "",
@@ -216,6 +230,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Apply warm color temperature to reduce eye strain. Use automation settings below to control when it activates.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Apps Icon", "term": "Apps Icon",
"translation": "", "translation": "",
@@ -433,6 +454,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Balanced palette with focused accents (default).",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Battery", "term": "Battery",
"translation": "", "translation": "",
@@ -503,6 +531,27 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Bottom",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Bottom Section",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Bottom dock for pinned and running applications",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Brightness", "term": "Brightness",
"translation": "", "translation": "",
@@ -699,6 +748,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Colorful mix of bright contrasting accents.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Command or script to run instead of the standard hibernate procedure", "term": "Command or script to run instead of the standard hibernate procedure",
"translation": "", "translation": "",
@@ -1042,6 +1098,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Derives colors that closely match the underlying image.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Desktop background images",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Development", "term": "Development",
"translation": "", "translation": "",
@@ -1091,6 +1161,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Display application icons in workspace indicators",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Display currently focused application title", "term": "Display currently focused application title",
"translation": "", "translation": "",
@@ -1119,6 +1196,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Diverse palette spanning the full spectrum.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Do Not Disturb", "term": "Do Not Disturb",
"translation": "", "translation": "",
@@ -1455,6 +1539,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Geoclue service not running - cannot auto-detect location",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Github:", "term": "Github:",
"translation": "", "translation": "",
@@ -1539,6 +1630,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "High-contrast palette for strong visual distinction.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "High-fidelity palette that preserves source hues.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Hour", "term": "Hour",
"translation": "", "translation": "",
@@ -1679,6 +1784,41 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Last launched %1",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Last launched %1 day%2 ago",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Last launched %1 hour%2 ago",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Last launched %1 minute%2 ago",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Last launched just now",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Latitude", "term": "Latitude",
"translation": "", "translation": "",
@@ -1728,6 +1868,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Left Section",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Light Mode", "term": "Light Mode",
"translation": "", "translation": "",
@@ -1742,6 +1889,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Lively palette with saturated accents.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Loading plugins...", "term": "Loading plugins...",
"translation": "", "translation": "",
@@ -1910,6 +2064,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Minimal palette built around a single hue.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Minute", "term": "Minute",
"translation": "", "translation": "",
@@ -1952,6 +2113,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Muted palette with subdued, calming tones.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "NM not supported", "term": "NM not supported",
"translation": "", "translation": "",
@@ -2148,6 +2316,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Notepad Slideout",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Nothing to see here", "term": "Nothing to see here",
"translation": "", "translation": "",
@@ -2190,6 +2365,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Notification toast popups",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Notifications", "term": "Notifications",
"translation": "", "translation": "",
@@ -2218,6 +2400,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "On-Screen Displays",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Only adjust gamma based on time or location rules.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Opacity", "term": "Opacity",
"translation": "", "translation": "",
@@ -2512,6 +2708,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Quick note-taking slideout panel",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Rain Chance", "term": "Rain Chance",
"translation": "", "translation": "",
@@ -2568,6 +2771,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Right",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Right Section",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Run User Templates", "term": "Run User Templates",
"translation": "", "translation": "",
@@ -2645,6 +2862,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Scroll through windows, rather than workspaces",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Search for a location...", "term": "Search for a location...",
"translation": "", "translation": "",
@@ -2736,6 +2960,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Select the palette algorithm used for wallpaper-based colors",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Select which transitions to include in randomization", "term": "Select which transitions to include in randomization",
"translation": "", "translation": "",
@@ -2834,6 +3065,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Show only apps running in current workspace",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Show only workspaces belonging to each specific monitor.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Show password", "term": "Show password",
"translation": "", "translation": "",
@@ -2862,6 +3107,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Show workspace index numbers in the top bar workspace switcher",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Shows all running applications with focus indication", "term": "Shows all running applications with focus indication",
"translation": "", "translation": "",
@@ -3072,6 +3324,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "System bar with widgets and system information",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "System notification area icons", "term": "System notification area icons",
"translation": "", "translation": "",
@@ -3079,6 +3338,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "System toast notifications",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "System tray icons",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "System update custom command", "term": "System update custom command",
"translation": "", "translation": "",
@@ -3198,6 +3471,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Toast Messages",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Today", "term": "Today",
"translation": "", "translation": "",
@@ -3219,6 +3499,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Top",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Top Bar Format", "term": "Top Bar Format",
"translation": "", "translation": "",
@@ -3226,6 +3513,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Top Section",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Transition Effect", "term": "Transition Effect",
"translation": "", "translation": "",
@@ -3324,6 +3618,20 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Use animated wave progress bars for media playback",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{
"term": "Use automatic location detection (geoclue2)",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Use custom command for update your system", "term": "Use custom command for update your system",
"translation": "", "translation": "",
@@ -3408,6 +3716,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Vibrant palette with playful saturation.",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Visibility", "term": "Visibility",
"translation": "", "translation": "",
@@ -3436,6 +3751,13 @@
"reference": "", "reference": "",
"comment": "" "comment": ""
}, },
{
"term": "Volume, brightness, and other system OSDs",
"translation": "",
"context": "",
"reference": "",
"comment": ""
},
{ {
"term": "Wallpaper", "term": "Wallpaper",
"translation": "", "translation": "",