From 8f6fe7ed2b761f7610148e9f4c917b621d89e4e7 Mon Sep 17 00:00:00 2001 From: bbedward Date: Sun, 25 Jan 2026 14:31:28 -0500 Subject: [PATCH] i18n: sync --- quickshell/Modules/Settings/DockTab.qml | 11 +- .../Modules/Settings/ThemeColorsTab.qml | 36 +- quickshell/translations/en.json | 1656 +++++++++++------ quickshell/translations/poexports/es.json | 277 +++ quickshell/translations/poexports/fa.json | 283 ++- quickshell/translations/poexports/fr.json | 627 +++++-- quickshell/translations/poexports/he.json | 277 +++ quickshell/translations/poexports/hu.json | 513 +++-- quickshell/translations/poexports/it.json | 537 ++++-- quickshell/translations/poexports/ja.json | 277 +++ quickshell/translations/poexports/pl.json | 277 +++ quickshell/translations/poexports/pt.json | 357 +++- quickshell/translations/poexports/tr.json | 277 +++ quickshell/translations/poexports/zh_CN.json | 503 +++-- quickshell/translations/poexports/zh_TW.json | 277 +++ .../translations/settings_search_index.json | 227 ++- quickshell/translations/template.json | 629 ++++++- 17 files changed, 5777 insertions(+), 1264 deletions(-) diff --git a/quickshell/Modules/Settings/DockTab.qml b/quickshell/Modules/Settings/DockTab.qml index 40623663..3cc5d2e2 100644 --- a/quickshell/Modules/Settings/DockTab.qml +++ b/quickshell/Modules/Settings/DockTab.qml @@ -174,7 +174,6 @@ Item { settingKey: "dockLauncherEnabled" tags: ["dock", "launcher", "button", "apps"] text: I18n.tr("Show Launcher Button") - description: I18n.tr("Add a draggable launcher button to the dock") checked: SettingsData.dockLauncherEnabled onToggled: checked => SettingsData.set("dockLauncherEnabled", checked) } @@ -184,20 +183,12 @@ Item { spacing: Theme.spacingL visible: SettingsData.dockLauncherEnabled - StyledText { - width: parent.width - text: I18n.tr("Long press and drag the launcher button to reposition it in the dock") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - wrapMode: Text.WordWrap - } - Column { width: parent.width spacing: Theme.spacingM StyledText { - text: I18n.tr("Launcher Icon") + text: I18n.tr("Icon") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceText font.weight: Font.Medium diff --git a/quickshell/Modules/Settings/ThemeColorsTab.qml b/quickshell/Modules/Settings/ThemeColorsTab.qml index 1238d944..bf4f6de5 100644 --- a/quickshell/Modules/Settings/ThemeColorsTab.qml +++ b/quickshell/Modules/Settings/ThemeColorsTab.qml @@ -987,8 +987,7 @@ Item { DankToggle { id: themeModeAutoToggle width: parent.width - text: I18n.tr("Enable Automatic Switching") - description: I18n.tr("Automatically switch between light and dark modes based on time or sunrise/sunset") + text: I18n.tr("Automatic Control") checked: SessionData.themeModeAutoEnabled onToggled: checked => { SessionData.setThemeModeAutoEnabled(checked); @@ -1010,7 +1009,6 @@ Item { DankToggle { width: parent.width text: I18n.tr("Share Gamma Control Settings") - description: I18n.tr("Use the same time and location settings as gamma control") checked: SessionData.themeModeShareGammaSettings onToggled: checked => { SessionData.setThemeModeShareGammaSettings(checked); @@ -1071,7 +1069,7 @@ Item { StyledText { text: "" - width: 80 + width: 50 height: 20 } @@ -1096,10 +1094,10 @@ Item { spacing: Theme.spacingM StyledText { - text: I18n.tr("Dark Start") + text: I18n.tr("Start") font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceText - width: 80 + width: 50 height: 40 verticalAlignment: Text.AlignVCenter } @@ -1138,10 +1136,10 @@ Item { spacing: Theme.spacingM StyledText { - text: I18n.tr("Light Start") + text: I18n.tr("End") font.pixelSize: Theme.fontSizeMedium color: Theme.surfaceText - width: 80 + width: 50 height: 40 verticalAlignment: Text.AlignVCenter } @@ -1176,15 +1174,6 @@ Item { } } } - - StyledText { - text: SessionData.isLightMode ? I18n.tr("Light mode will be active from Light Start to Dark Start") : I18n.tr("Dark mode will be active from Dark Start to Light Start") - font.pixelSize: Theme.fontSizeSmall - color: Theme.surfaceVariantText - width: parent.width - wrapMode: Text.WordWrap - horizontalAlignment: Text.AlignHCenter - } } Column { @@ -1196,7 +1185,6 @@ Item { id: themeModeIpLocationToggle width: parent.width text: I18n.tr("Use IP Location") - description: I18n.tr("Automatically detect location based on IP address") checked: SessionData.nightModeUseIPLocation || false onToggled: checked => { SessionData.setNightModeUseIPLocation(checked); @@ -1275,7 +1263,7 @@ Item { } StyledText { - text: I18n.tr("Uses sunrise/sunset times to automatically adjust theme mode based on your location.") + text: I18n.tr("Uses sunrise/sunset times based on your location.") font.pixelSize: Theme.fontSizeSmall color: Theme.surfaceVariantText width: parent.width @@ -1283,16 +1271,6 @@ Item { horizontalAlignment: Text.AlignHCenter } } - - StyledText { - text: SessionData.isLightMode ? I18n.tr("Light mode will be active from sunrise to sunset") : I18n.tr("Dark mode will be active from sunset to sunrise") - font.pixelSize: Theme.fontSizeSmall - color: Theme.primary - width: parent.width - wrapMode: Text.WordWrap - horizontalAlignment: Text.AlignHCenter - visible: SessionData.nightModeUseIPLocation || (SessionData.latitude !== 0.0 && SessionData.longitude !== 0.0) - } } StyledText { diff --git a/quickshell/translations/en.json b/quickshell/translations/en.json index f4933178..03d010f0 100644 --- a/quickshell/translations/en.json +++ b/quickshell/translations/en.json @@ -2,7 +2,7 @@ { "term": "%1 DMS bind(s) may be overridden by config binds that come after the include.", "context": "%1 DMS bind(s) may be overridden by config binds that come after the include.", - "reference": "Modules/Settings/KeybindsTab.qml:328", + "reference": "Modules/Settings/KeybindsTab.qml:327", "comment": "" }, { @@ -14,7 +14,7 @@ { "term": "%1 characters", "context": "%1 characters", - "reference": "Modules/Notepad/NotepadTextEditor.qml:565", + "reference": "Modules/Notepad/NotepadTextEditor.qml:835", "comment": "" }, { @@ -38,13 +38,13 @@ { "term": "%1 display(s)", "context": "%1 display(s)", - "reference": "Modules/Settings/DankBarTab.qml:408", + "reference": "Modules/Settings/DankBarTab.qml:416", "comment": "" }, { "term": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", "context": "%1 exists but is not included in config. Custom keybinds will not work until this is fixed.", - "reference": "Modules/Settings/KeybindsTab.qml:325", + "reference": "Modules/Settings/KeybindsTab.qml:324", "comment": "" }, { @@ -68,7 +68,7 @@ { "term": "%1 notifications", "context": "%1 notifications", - "reference": "Modules/Lock/LockScreenContent.qml:453", + "reference": "Modules/Lock/LockScreenContent.qml:439", "comment": "" }, { @@ -86,7 +86,7 @@ { "term": "%1 widgets", "context": "%1 widgets", - "reference": "Modules/Settings/DankBarTab.qml:427", + "reference": "Modules/Settings/DankBarTab.qml:437", "comment": "" }, { @@ -98,19 +98,19 @@ { "term": "(Unnamed)", "context": "(Unnamed)", - "reference": "Modules/Dock/DockContextMenu.qml:230", + "reference": "Modules/Dock/DockContextMenu.qml:230, Modules/DankBar/Widgets/AppsDockContextMenu.qml:156", "comment": "" }, { "term": "+ %1 more", "context": "+ %1 more", - "reference": "Modules/Lock/LockScreenContent.qml:533, Modules/Lock/LockScreenContent.qml:648", + "reference": "Modules/Lock/LockScreenContent.qml:519, Modules/Lock/LockScreenContent.qml:634", "comment": "" }, { "term": "0 = square corners", "context": "0 = square corners", - "reference": "Modules/Settings/ThemeColorsTab.qml:1045", + "reference": "Modules/Settings/ThemeColorsTab.qml:1506", "comment": "" }, { @@ -140,7 +140,7 @@ { "term": "1 notification", "context": "1 notification", - "reference": "Modules/Lock/LockScreenContent.qml:453", + "reference": "Modules/Lock/LockScreenContent.qml:439", "comment": "" }, { @@ -290,7 +290,7 @@ { "term": "API", "context": "API", - "reference": "Modules/Settings/AboutTab.qml:660", + "reference": "Modules/Settings/AboutTab.qml:666", "comment": "" }, { @@ -302,7 +302,7 @@ { "term": "About", "context": "About", - "reference": "Modals/Settings/SettingsSidebar.qml:290, Modules/Settings/AboutTab.qml:564", + "reference": "Modals/Settings/SettingsSidebar.qml:290, Modules/Settings/AboutTab.qml:567", "comment": "" }, { @@ -332,19 +332,19 @@ { "term": "Access clipboard history", "context": "Access clipboard history", - "reference": "Modules/Settings/WidgetsTab.qml:95", + "reference": "Modules/Settings/WidgetsTab.qml:102", "comment": "" }, { "term": "Access to notifications and do not disturb", "context": "Access to notifications and do not disturb", - "reference": "Modules/Settings/WidgetsTab.qml:163", + "reference": "Modules/Settings/WidgetsTab.qml:170", "comment": "" }, { "term": "Access to system controls and settings", "context": "Access to system controls and settings", - "reference": "Modules/Settings/WidgetsTab.qml:156", + "reference": "Modules/Settings/WidgetsTab.qml:163", "comment": "" }, { @@ -368,19 +368,19 @@ { "term": "Activation", "context": "Activation", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:93", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:97", "comment": "" }, { "term": "Active", "context": "Active", - "reference": "Modules/Settings/NetworkTab.qml:735, Modules/ControlCenter/Details/AudioInputDetail.qml:227, Modules/ControlCenter/Details/AudioOutputDetail.qml:239", + "reference": "Modules/Settings/ThemeColorsTab.qml:1359, Modules/Settings/NetworkTab.qml:735, Modules/ControlCenter/Details/AudioInputDetail.qml:227, Modules/ControlCenter/Details/AudioOutputDetail.qml:239", "comment": "" }, { "term": "Active Lock Screen Monitor", "context": "Active Lock Screen Monitor", - "reference": "Modules/Settings/LockScreenTab.qml:173", + "reference": "Modules/Settings/LockScreenTab.qml:181", "comment": "" }, { @@ -416,7 +416,7 @@ { "term": "Add Bar", "context": "Add Bar", - "reference": "Modules/Settings/DankBarTab.qml:327", + "reference": "Modules/Settings/DankBarTab.qml:330", "comment": "" }, { @@ -434,7 +434,7 @@ { "term": "Add Widget", "context": "Add Widget", - "reference": "Modules/Settings/WidgetsTabSection.qml:774, Modules/Settings/WidgetSelectionPopup.qml:92, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", + "reference": "Modules/Settings/WidgetsTabSection.qml:735, Modules/Settings/WidgetSelectionPopup.qml:92, Modules/Settings/DesktopWidgetsTab.qml:95, Modules/ControlCenter/Components/EditControls.qml:61, Modules/ControlCenter/Components/EditControls.qml:164", "comment": "" }, { @@ -446,7 +446,7 @@ { "term": "Add a border around the dock", "context": "Add a border around the dock", - "reference": "Modules/Settings/DockTab.qml:244", + "reference": "Modules/Settings/DockTab.qml:494", "comment": "" }, { @@ -470,7 +470,7 @@ { "term": "Advanced", "context": "Advanced", - "reference": "Modules/Settings/PowerSleepTab.qml:574, Modules/Settings/ClipboardTab.qml:374", + "reference": "Modules/Settings/PowerSleepTab.qml:579, Modules/Settings/ClipboardTab.qml:374", "comment": "" }, { @@ -482,13 +482,13 @@ { "term": "All", "context": "notification history filter", - "reference": "Services/AppSearchService.qml:514, Services/AppSearchService.qml:528, Modules/AppDrawer/CategorySelector.qml:11, Modules/AppDrawer/AppLauncher.qml:14, Modules/AppDrawer/AppLauncher.qml:47, Modules/AppDrawer/AppLauncher.qml:48, Modules/AppDrawer/AppLauncher.qml:90, Modules/AppDrawer/AppLauncher.qml:295, Modules/AppDrawer/AppDrawerPopout.qml:58, Modules/Settings/KeybindsTab.qml:387, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:87", + "reference": "Services/AppSearchService.qml:674, Services/AppSearchService.qml:689, dms-plugins/DankStickerSearch/DankStickerSearch.qml:85, Modals/DankLauncherV2/LauncherContent.qml:306, Modules/Settings/KeybindsTab.qml:386, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:94, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:97, Modules/Settings/DisplayConfig/NiriOutputSettings.qml:109, Modules/Notifications/Center/HistoryNotificationList.qml:87", "comment": "" }, { "term": "All Monitors", "context": "All Monitors", - "reference": "Modules/Settings/LockScreenTab.qml:175, Modules/Settings/LockScreenTab.qml:185, Modules/Settings/LockScreenTab.qml:195, Modules/Settings/LockScreenTab.qml:199", + "reference": "Modules/Settings/LockScreenTab.qml:183, Modules/Settings/LockScreenTab.qml:193, Modules/Settings/LockScreenTab.qml:203, Modules/Settings/LockScreenTab.qml:207", "comment": "" }, { @@ -506,7 +506,7 @@ { "term": "All displays", "context": "All displays", - "reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:400, Modules/Settings/DankBarTab.qml:407, Modules/Settings/DankBarTab.qml:536, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", + "reference": "Modules/Plugins/PluginSettings.qml:237, Modules/Settings/DisplayWidgetsTab.qml:400, Modules/Settings/DankBarTab.qml:415, Modules/Settings/DankBarTab.qml:550, Modules/Settings/Widgets/SettingsDisplayPicker.qml:43", "comment": "" }, { @@ -524,7 +524,7 @@ { "term": "Always Active", "context": "Always Active", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:102", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:106", "comment": "" }, { @@ -542,7 +542,7 @@ { "term": "Always on icons", "context": "Always on icons", - "reference": "Modules/Settings/WidgetsTabSection.qml:1035", + "reference": "Modules/Settings/WidgetsTabSection.qml:996", "comment": "" }, { @@ -605,6 +605,12 @@ "reference": "Modals/WifiPasswordModal.qml:589", "comment": "" }, + { + "term": "App Customizations", + "context": "App Customizations", + "reference": "Modules/Settings/LauncherTab.qml:947", + "comment": "" + }, { "term": "App ID Substitutions", "context": "App ID Substitutions", @@ -620,7 +626,7 @@ { "term": "App Names", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:185", + "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:185", "comment": "" }, { @@ -629,6 +635,12 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:98", "comment": "" }, + { + "term": "Appearance", + "context": "launcher appearance settings", + "reference": "Modules/Settings/LauncherTab.qml:359", + "comment": "" + }, { "term": "Application Dock", "context": "Application Dock", @@ -638,7 +650,7 @@ { "term": "Applications", "context": "Applications", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246, Modules/Settings/ThemeColorsTab.qml:1384", + "reference": "Modals/DankLauncherV2/Controller.qml:111, Modules/Settings/ThemeColorsTab.qml:1845, Modules/Dock/DockLauncherButton.qml:25", "comment": "" }, { @@ -650,13 +662,13 @@ { "term": "Apply GTK Colors", "context": "Apply GTK Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1952", + "reference": "Modules/Settings/ThemeColorsTab.qml:2425", "comment": "" }, { "term": "Apply Qt Colors", "context": "Apply Qt Colors", - "reference": "Modules/Settings/ThemeColorsTab.qml:1986", + "reference": "Modules/Settings/ThemeColorsTab.qml:2459", "comment": "" }, { @@ -665,16 +677,34 @@ "reference": "Modules/Settings/GammaControlTab.qml:77", "comment": "" }, + { + "term": "Apps", + "context": "Apps", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:311", + "comment": "" + }, + { + "term": "Apps Dock", + "context": "Apps Dock", + "reference": "Modules/Settings/WidgetsTab.qml:73", + "comment": "" + }, { "term": "Apps Icon", "context": "Apps Icon", - "reference": "Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:210, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { "term": "Apps are ordered by usage frequency, then last used, then alphabetically.", "context": "Apps are ordered by usage frequency, then last used, then alphabetically.", - "reference": "Modules/Settings/LauncherTab.qml:503", + "reference": "Modules/Settings/LauncherTab.qml:1091", + "comment": "" + }, + { + "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", + "context": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", + "reference": "Modules/Settings/LauncherTab.qml:970", "comment": "" }, { @@ -692,7 +722,7 @@ { "term": "Audio", "context": "Audio", - "reference": "Modules/Settings/WidgetsTabSection.qml:848", + "reference": "Modules/Settings/WidgetsTabSection.qml:809", "comment": "" }, { @@ -818,13 +848,13 @@ { "term": "Auto Location", "context": "Auto Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:377", + "reference": "Modules/Settings/TimeWeatherTab.qml:407", "comment": "" }, { "term": "Auto Popup Gaps", "context": "Auto Popup Gaps", - "reference": "Modules/Settings/DankBarTab.qml:967", + "reference": "Modules/Settings/DankBarTab.qml:981", "comment": "" }, { @@ -836,13 +866,13 @@ { "term": "Auto-Hide Timeout", "context": "Auto-Hide Timeout", - "reference": "Modules/Settings/ThemeColorsTab.qml:1562", + "reference": "Modules/Settings/ThemeColorsTab.qml:2023", "comment": "" }, { "term": "Auto-close Niri overview when launching apps.", "context": "Auto-close Niri overview when launching apps.", - "reference": "Modules/Settings/LauncherTab.qml:366", + "reference": "Modules/Settings/LauncherTab.qml:489", "comment": "" }, { @@ -854,7 +884,7 @@ { "term": "Auto-hide", "context": "Auto-hide", - "reference": "Modules/Settings/DankBarTab.qml:683", + "reference": "Modules/Settings/DankBarTab.qml:697", "comment": "" }, { @@ -866,7 +896,7 @@ { "term": "Auto-saving...", "context": "Auto-saving...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:581", + "reference": "Modules/Notepad/NotepadTextEditor.qml:851", "comment": "" }, { @@ -887,10 +917,16 @@ "reference": "Services/DMSNetworkService.qml:939", "comment": "" }, + { + "term": "Automatic Color Mode", + "context": "Automatic Color Mode", + "reference": "Modules/Settings/ThemeColorsTab.qml:979", + "comment": "" + }, { "term": "Automatic Control", "context": "Automatic Control", - "reference": "Modules/Settings/GammaControlTab.qml:139", + "reference": "Modules/Settings/ThemeColorsTab.qml:990, Modules/Settings/GammaControlTab.qml:139", "comment": "" }, { @@ -920,19 +956,25 @@ { "term": "Automatically determine your location using your IP address", "context": "Automatically determine your location using your IP address", - "reference": "Modules/Settings/TimeWeatherTab.qml:378", + "reference": "Modules/Settings/TimeWeatherTab.qml:408", "comment": "" }, { "term": "Automatically lock after", "context": "Automatically lock after", - "reference": "Modules/Settings/PowerSleepTab.qml:196", + "reference": "Modules/Settings/PowerSleepTab.qml:201", "comment": "" }, { "term": "Automatically lock the screen when the system prepares to suspend", "context": "Automatically lock the screen when the system prepares to suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:88, Modules/Settings/LockScreenTab.qml:128", + "reference": "Modules/Settings/PowerSleepTab.qml:93, Modules/Settings/LockScreenTab.qml:136", + "comment": "" + }, + { + "term": "Automation", + "context": "Automation", + "reference": "Modules/Settings/ThemeColorsTab.qml:1316", "comment": "" }, { @@ -986,7 +1028,7 @@ { "term": "Backend", "context": "Backend", - "reference": "Modules/Settings/AboutTab.qml:622, Modules/Settings/NetworkTab.qml:163", + "reference": "Modules/Settings/AboutTab.qml:625, Modules/Settings/NetworkTab.qml:163", "comment": "" }, { @@ -1010,31 +1052,31 @@ { "term": "Balanced palette with focused accents (default).", "context": "Balanced palette with focused accents (default).", - "reference": "Common/Theme.qml:232", + "reference": "Common/Theme.qml:466", "comment": "" }, { "term": "Bar Configurations", "context": "Bar Configurations", - "reference": "Modules/Settings/DankBarTab.qml:311", + "reference": "Modules/Settings/DankBarTab.qml:314", "comment": "" }, { "term": "Bar Transparency", "context": "Bar Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1395", + "reference": "Modules/Settings/DankBarTab.qml:1411", "comment": "" }, { "term": "Battery", "context": "Battery", - "reference": "Modules/Settings/WidgetsTabSection.qml:878, Modules/Settings/WidgetsTab.qml:169, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", + "reference": "Modules/Settings/WidgetsTabSection.qml:839, Modules/Settings/WidgetsTab.qml:176, Modules/ControlCenter/Models/WidgetModel.qml:161, Modules/ControlCenter/Widgets/BatteryPill.qml:17", "comment": "" }, { "term": "Battery Charge Limit", "context": "Battery Charge Limit", - "reference": "Modules/Settings/PowerSleepTab.qml:582", + "reference": "Modules/Settings/PowerSleepTab.qml:587", "comment": "" }, { @@ -1046,7 +1088,7 @@ { "term": "Battery level and power management", "context": "Battery level and power management", - "reference": "Modules/Settings/WidgetsTab.qml:170", + "reference": "Modules/Settings/WidgetsTab.qml:177", "comment": "" }, { @@ -1058,13 +1100,13 @@ { "term": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", "context": "Bind lock screen to dbus signals from loginctl. Disable if using an external lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:114", + "reference": "Modules/Settings/LockScreenTab.qml:122", "comment": "" }, { "term": "Binds Include Missing", "context": "Binds Include Missing", - "reference": "Modules/Settings/KeybindsTab.qml:309", + "reference": "Modules/Settings/KeybindsTab.qml:308", "comment": "" }, { @@ -1100,7 +1142,7 @@ { "term": "Bluetooth", "context": "Bluetooth", - "reference": "Modules/Settings/WidgetsTabSection.qml:843, Modules/ControlCenter/Models/WidgetModel.qml:110", + "reference": "Modules/Settings/WidgetsTabSection.qml:804, Modules/ControlCenter/Models/WidgetModel.qml:110", "comment": "" }, { @@ -1135,38 +1177,38 @@ }, { "term": "Border", - "context": "Border", - "reference": "Modules/Settings/DockTab.qml:239, Modules/Settings/DockTab.qml:243, Modules/Settings/DankBarTab.qml:1213", + "context": "launcher border option", + "reference": "Modules/Settings/DockTab.qml:489, Modules/Settings/DockTab.qml:493, Modules/Settings/LauncherTab.qml:421, Modules/Settings/DankBarTab.qml:1229", "comment": "" }, { "term": "Border Color", "context": "Border Color", - "reference": "Modules/Settings/DockTab.qml:250, Modules/Settings/WorkspacesTab.qml:335", + "reference": "Modules/Settings/DockTab.qml:500, Modules/Settings/WorkspacesTab.qml:337", "comment": "" }, { "term": "Border Opacity", "context": "Border Opacity", - "reference": "Modules/Settings/DockTab.qml:287", + "reference": "Modules/Settings/DockTab.qml:537", "comment": "" }, { "term": "Border Size", "context": "Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1146, Modules/Settings/ThemeColorsTab.qml:1249, Modules/Settings/ThemeColorsTab.qml:1352", + "reference": "Modules/Settings/ThemeColorsTab.qml:1607, Modules/Settings/ThemeColorsTab.qml:1710, Modules/Settings/ThemeColorsTab.qml:1813", "comment": "" }, { "term": "Border Thickness", "context": "Border Thickness", - "reference": "Modules/Settings/DockTab.qml:298", + "reference": "Modules/Settings/DockTab.qml:548", "comment": "" }, { "term": "Bottom", "context": "Bottom", - "reference": "Modules/Settings/DankBarTab.qml:382, Modules/Settings/DankBarTab.qml:628", + "reference": "Modules/Settings/DankBarTab.qml:388, Modules/Settings/DankBarTab.qml:642", "comment": "" }, { @@ -1184,7 +1226,7 @@ { "term": "Bottom Section", "context": "Bottom Section", - "reference": "Modules/Settings/WidgetsTab.qml:962", + "reference": "Modules/Settings/WidgetsTab.qml:969", "comment": "" }, { @@ -1196,7 +1238,7 @@ { "term": "Brightness", "context": "Brightness", - "reference": "Modules/Settings/WidgetsTabSection.qml:868, Modules/Settings/LauncherTab.qml:274, Modules/Settings/OSDTab.qml:113", + "reference": "Modules/Settings/WidgetsTabSection.qml:829, Modules/Settings/DockTab.qml:392, Modules/Settings/LauncherTab.qml:274, Modules/Settings/OSDTab.qml:113", "comment": "" }, { @@ -1208,7 +1250,7 @@ { "term": "Brightness Value", "context": "Brightness Value", - "reference": "Modules/Settings/WidgetsTabSection.qml:873", + "reference": "Modules/Settings/WidgetsTabSection.qml:834", "comment": "" }, { @@ -1220,7 +1262,7 @@ { "term": "Browse", "context": "Browse", - "reference": "Modules/Settings/PluginsTab.qml:209", + "reference": "Modals/DankLauncherV2/Controller.qml:118, Modals/DankLauncherV2/Controller.qml:876, Modules/Settings/PluginsTab.qml:209", "comment": "" }, { @@ -1238,7 +1280,13 @@ { "term": "Browse Themes", "context": "browse themes button | theme browser header | theme browser window title", - "reference": "Modules/Settings/ThemeColorsTab.qml:939, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", + "reference": "Modules/Settings/ThemeColorsTab.qml:967, Modules/Settings/ThemeBrowser.qml:145, Modules/Settings/ThemeBrowser.qml:242", + "comment": "" + }, + { + "term": "Browse or search plugins", + "context": "Browse or search plugins", + "reference": "Modals/DankLauncherV2/ResultsList.qml:483", "comment": "" }, { @@ -1256,25 +1304,25 @@ { "term": "CPU Temperature", "context": "CPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:125, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", + "reference": "Modules/Settings/WidgetsTab.qml:132, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:108", "comment": "" }, { "term": "CPU Usage", "context": "CPU Usage", - "reference": "Modules/Settings/WidgetsTab.qml:101", + "reference": "Modules/Settings/WidgetsTab.qml:108", "comment": "" }, { "term": "CPU temperature display", "context": "CPU temperature display", - "reference": "Modules/Settings/WidgetsTab.qml:126", + "reference": "Modules/Settings/WidgetsTab.qml:133", "comment": "" }, { "term": "CPU usage indicator", "context": "CPU usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:102", + "reference": "Modules/Settings/WidgetsTab.qml:109", "comment": "" }, { @@ -1307,16 +1355,28 @@ "reference": "Modules/ControlCenter/Models/WidgetModel.qml:202", "comment": "" }, + { + "term": "Calc", + "context": "Calc", + "reference": "Modals/DankLauncherV2/ResultItem.qml:167", + "comment": "" + }, + { + "term": "Calculator", + "context": "Calculator", + "reference": "Modals/DankLauncherV2/Controller.qml:97", + "comment": "" + }, { "term": "Camera", "context": "Camera", - "reference": "Modules/Settings/WidgetsTabSection.qml:1116", + "reference": "Modules/Settings/WidgetsTabSection.qml:1077", "comment": "" }, { "term": "Cancel", "context": "Cancel", - "reference": "Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:269, Modals/WifiPasswordModal.qml:690, Widgets/KeybindItem.qml:1669, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:113, Modules/Settings/PluginBrowser.qml:786, Modules/Settings/ThemeBrowser.qml:120", + "reference": "Modals/WorkspaceRenameModal.qml:160, Modals/BluetoothPairingModal.qml:272, Modals/PolkitAuthModal.qml:269, Modals/WifiPasswordModal.qml:690, Widgets/KeybindItem.qml:1669, Modals/DankLauncherV2/LauncherContent.qml:838, Modals/FileBrowser/FileBrowserOverwriteDialog.qml:83, Modules/Settings/PluginBrowser.qml:113, Modules/Settings/PluginBrowser.qml:786, Modules/Settings/ThemeBrowser.qml:120", "comment": "" }, { @@ -1334,7 +1394,7 @@ { "term": "Capabilities", "context": "Capabilities", - "reference": "Modules/Settings/AboutTab.qml:715", + "reference": "Modules/Settings/AboutTab.qml:725", "comment": "" }, { @@ -1352,13 +1412,13 @@ { "term": "Caps Lock Indicator", "context": "Caps Lock Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:190", + "reference": "Modules/Settings/WidgetsTab.qml:197", "comment": "" }, { "term": "Center Section", "context": "Center Section", - "reference": "Modules/Settings/WidgetsTab.qml:907", + "reference": "Modules/Settings/WidgetsTab.qml:914", "comment": "" }, { @@ -1382,7 +1442,7 @@ { "term": "Change bar appearance", "context": "Change bar appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:981", + "reference": "Modules/Settings/ThemeColorsTab.qml:1442", "comment": "" }, { @@ -1400,7 +1460,7 @@ { "term": "Check for system updates", "context": "Check for system updates", - "reference": "Modules/Settings/WidgetsTab.qml:240", + "reference": "Modules/Settings/WidgetsTab.qml:247", "comment": "" }, { @@ -1409,6 +1469,12 @@ "reference": "Modals/DankColorPickerModal.qml:19, Modules/Settings/Widgets/SettingsColorPicker.qml:13", "comment": "" }, + { + "term": "Choose Dock Launcher Logo Color", + "context": "Choose Dock Launcher Logo Color", + "reference": "Modules/Settings/DockTab.qml:358", + "comment": "" + }, { "term": "Choose Launcher Logo Color", "context": "Choose Launcher Logo Color", @@ -1442,13 +1508,13 @@ { "term": "Choose the background color for widgets", "context": "Choose the background color for widgets", - "reference": "Modules/Settings/ThemeColorsTab.qml:996", + "reference": "Modules/Settings/ThemeColorsTab.qml:1457", "comment": "" }, { "term": "Choose the border accent color", "context": "Choose the border accent color", - "reference": "Modules/Settings/DockTab.qml:251", + "reference": "Modules/Settings/DockTab.qml:501", "comment": "" }, { @@ -1478,7 +1544,13 @@ { "term": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", "context": "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.", - "reference": "Modules/Settings/LockScreenTab.qml:162", + "reference": "Modules/Settings/LockScreenTab.qml:170", + "comment": "" + }, + { + "term": "Chroma Style", + "context": "Chroma Style", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:74", "comment": "" }, { @@ -1496,7 +1568,7 @@ { "term": "Clear All", "context": "Clear All", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:311, Modules/Settings/PrinterTab.qml:1023", + "reference": "Modals/Clipboard/ClipboardHeader.qml:76, Modals/Clipboard/ClipboardHistoryModal.qml:293, Modules/Settings/PrinterTab.qml:1023", "comment": "" }, { @@ -1514,7 +1586,7 @@ { "term": "Clear History?", "context": "Clear History?", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:258", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:244", "comment": "" }, { @@ -1532,13 +1604,13 @@ { "term": "Click 'Setup' to create %1 and add include to config.", "context": "Click 'Setup' to create %1 and add include to config.", - "reference": "Modules/Settings/KeybindsTab.qml:323", + "reference": "Modules/Settings/KeybindsTab.qml:322", "comment": "" }, { "term": "Click 'Setup' to create cursor config and add include to your compositor config.", "context": "Click 'Setup' to create cursor config and add include to your compositor config.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1461", + "reference": "Modules/Settings/ThemeColorsTab.qml:1922", "comment": "" }, { @@ -1556,7 +1628,7 @@ { "term": "Click Through", "context": "Click Through", - "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:770", + "reference": "Modules/Settings/DesktopWidgetInstanceCard.qml:343, Modules/Settings/DankBarTab.qml:784", "comment": "" }, { @@ -1574,7 +1646,7 @@ { "term": "Click to select a custom theme JSON file", "context": "custom theme file hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:539", + "reference": "Modules/Settings/ThemeColorsTab.qml:551", "comment": "" }, { @@ -1592,7 +1664,7 @@ { "term": "Clipboard Manager", "context": "Clipboard Manager", - "reference": "Modules/Settings/WidgetsTab.qml:94", + "reference": "Modules/Settings/WidgetsTab.qml:101", "comment": "" }, { @@ -1604,7 +1676,7 @@ { "term": "Clipboard service not available", "context": "Clipboard service not available", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:121", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:111", "comment": "" }, { @@ -1616,7 +1688,7 @@ { "term": "Clock", "context": "Clock", - "reference": "Modules/Settings/WidgetsTab.qml:73", + "reference": "Modules/Settings/WidgetsTab.qml:80", "comment": "" }, { @@ -1631,16 +1703,28 @@ "reference": "Modules/SystemUpdatePopout.qml:335, Modals/NetworkWiredInfoModal.qml:129, Modals/NetworkInfoModal.qml:129, Modules/DankBar/Widgets/RunningApps.qml:922", "comment": "" }, + { + "term": "Close All Windows", + "context": "Close All Windows", + "reference": "Modules/DankBar/Widgets/AppsDockContextMenu.qml:397", + "comment": "" + }, { "term": "Close Overview on Launch", "context": "Close Overview on Launch", - "reference": "Modules/Settings/LauncherTab.qml:365", + "reference": "Modules/Settings/LauncherTab.qml:488", + "comment": "" + }, + { + "term": "Close Window", + "context": "Close Window", + "reference": "dms-plugins/DankHyprlandWindows/DankHyprlandWindows.qml:141, Modules/DankBar/Widgets/AppsDockContextMenu.qml:399", "comment": "" }, { "term": "Color", - "context": "Color", - "reference": "Modules/Settings/DankBarTab.qml:1126, Modules/Settings/DankBarTab.qml:1198, Modules/Settings/DankBarTab.qml:1221, Modules/Settings/DankBarTab.qml:1309, Modules/Settings/Widgets/SettingsColorPicker.qml:29", + "context": "border color", + "reference": "Modules/Settings/LauncherTab.qml:448, Modules/Settings/DankBarTab.qml:1140, Modules/Settings/DankBarTab.qml:1214, Modules/Settings/DankBarTab.qml:1237, Modules/Settings/DankBarTab.qml:1325, Modules/Settings/Widgets/SettingsColorPicker.qml:29", "comment": "" }, { @@ -1658,19 +1742,19 @@ { "term": "Color Mode", "context": "Color Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:951", + "reference": "Modules/Settings/ThemeColorsTab.qml:1412", "comment": "" }, { "term": "Color Override", "context": "Color Override", - "reference": "Modules/Settings/LauncherTab.qml:157", + "reference": "Modules/Settings/DockTab.qml:275, Modules/Settings/LauncherTab.qml:157", "comment": "" }, { "term": "Color Picker", "context": "Color Picker", - "reference": "Modules/Settings/WidgetsTab.qml:232, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:13", + "reference": "Modules/Settings/WidgetsTab.qml:239, Modules/ControlCenter/Models/WidgetModel.qml:179, Modules/ControlCenter/Widgets/ColorPickerPill.qml:13", "comment": "" }, { @@ -1682,7 +1766,7 @@ { "term": "Color displayed on monitors without the lock screen", "context": "Color displayed on monitors without the lock screen", - "reference": "Modules/Settings/LockScreenTab.qml:230", + "reference": "Modules/Settings/LockScreenTab.qml:238", "comment": "" }, { @@ -1697,16 +1781,28 @@ "reference": "Modules/Settings/GammaControlTab.qml:106", "comment": "" }, + { + "term": "Color theme for syntax highlighting.", + "context": "Color theme for syntax highlighting.", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:77", + "comment": "" + }, + { + "term": "Color theme for syntax highlighting. %1 themes available.", + "context": "Color theme for syntax highlighting. %1 themes available.", + "reference": "dms-plugins/DankNotepadModule/DankNotepadModuleSettings.qml:76", + "comment": "" + }, { "term": "Color theme from DMS registry", "context": "registry theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:230", + "reference": "Modules/Settings/ThemeColorsTab.qml:241", "comment": "" }, { "term": "Colorful mix of bright contrasting accents.", "context": "Colorful mix of bright contrasting accents.", - "reference": "Common/Theme.qml:252", + "reference": "Common/Theme.qml:486", "comment": "" }, { @@ -1718,7 +1814,7 @@ { "term": "Column", "context": "Column", - "reference": "Modules/Settings/DankBarTab.qml:821, Modules/Settings/DankBarTab.qml:858", + "reference": "Modules/Settings/DankBarTab.qml:835, Modules/Settings/DankBarTab.qml:872", "comment": "" }, { @@ -1727,6 +1823,12 @@ "reference": "Widgets/KeybindItem.qml:1397, Modules/Settings/DesktopWidgetInstanceCard.qml:386", "comment": "" }, + { + "term": "Commands", + "context": "Commands", + "reference": "Modals/DankLauncherV2/Controller.qml:132", + "comment": "" + }, { "term": "Communication", "context": "Communication", @@ -1748,7 +1850,7 @@ { "term": "Compact Mode", "context": "Compact Mode", - "reference": "Modules/Settings/WidgetsTabSection.qml:567", + "reference": "Modules/Settings/WidgetsTabSection.qml:528", "comment": "" }, { @@ -1760,7 +1862,7 @@ { "term": "Compositor", "context": "Compositor", - "reference": "Modules/Settings/LauncherTab.qml:71", + "reference": "Modules/Settings/DockTab.qml:222, Modules/Settings/LauncherTab.qml:71", "comment": "" }, { @@ -1826,7 +1928,7 @@ { "term": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", "context": "Configure icons for named workspaces. Icons take priority over numbers when both are enabled.", - "reference": "Modules/Settings/WorkspacesTab.qml:390", + "reference": "Modules/Settings/WorkspacesTab.qml:392", "comment": "" }, { @@ -1892,7 +1994,7 @@ { "term": "Connected", "context": "KDE Connect connected status", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:210, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:215, Modules/Settings/AboutTab.qml:700, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:1176, Modules/Settings/NetworkTab.qml:1522, Modules/ControlCenter/Details/BluetoothDetail.qml:273, Modules/ControlCenter/Details/NetworkDetail.qml:595, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:210, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:215, Modules/Settings/AboutTab.qml:709, Modules/Settings/NetworkTab.qml:431, Modules/Settings/NetworkTab.qml:1176, Modules/Settings/NetworkTab.qml:1522, Modules/ControlCenter/Details/BluetoothDetail.qml:273, Modules/ControlCenter/Details/NetworkDetail.qml:595, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:21", "comment": "" }, { @@ -1916,37 +2018,43 @@ { "term": "Contrast", "context": "Contrast", - "reference": "Modules/Settings/LauncherTab.qml:286", + "reference": "Modules/Settings/DockTab.qml:404, Modules/Settings/LauncherTab.qml:286", "comment": "" }, { "term": "Control Center", "context": "greeter feature card title", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:155", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:149, Modules/Settings/WidgetsTab.qml:162", "comment": "" }, { "term": "Control currently playing media", "context": "Control currently playing media", - "reference": "Modules/Settings/WidgetsTab.qml:88", + "reference": "Modules/Settings/WidgetsTab.qml:95", "comment": "" }, { "term": "Control what notification information is shown on the lock screen", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:83, Modules/Settings/NotificationsTab.qml:184", + "reference": "Modules/Settings/LockScreenTab.qml:91, Modules/Settings/NotificationsTab.qml:184", + "comment": "" + }, + { + "term": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", + "context": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", + "reference": "Modules/Settings/LauncherTab.qml:638", "comment": "" }, { "term": "Control workspaces and columns by scrolling on the bar", "context": "Control workspaces and columns by scrolling on the bar", - "reference": "Modules/Settings/DankBarTab.qml:812", + "reference": "Modules/Settings/DankBarTab.qml:826", "comment": "" }, { "term": "Controls opacity of all popouts, modals, and their content layers", "context": "Controls opacity of all popouts, modals, and their content layers", - "reference": "Modules/Settings/ThemeColorsTab.qml:1031", + "reference": "Modules/Settings/ThemeColorsTab.qml:1492", "comment": "" }, { @@ -1958,7 +2066,7 @@ { "term": "Copied to clipboard", "context": "Copied to clipboard", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, Modals/Settings/SettingsModal.qml:314, Modals/Settings/SettingsModal.qml:331, Modals/Clipboard/ClipboardHistoryModal.qml:171, Modules/Settings/DesktopWidgetInstanceCard.qml:426", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:181, dms-plugins/DankStickerSearch/DankStickerSearch.qml:198, dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:154, dms-plugins/DankGifSearch/DankGifSearch.qml:124, dms-plugins/DankGifSearch/DankGifSearch.qml:141, Modals/Settings/SettingsModal.qml:314, Modals/Settings/SettingsModal.qml:331, Modals/Clipboard/ClipboardHistoryModal.qml:161, Modules/Notepad/NotepadTextEditor.qml:250, Modules/Settings/DesktopWidgetInstanceCard.qml:426", "comment": "" }, { @@ -1970,49 +2078,73 @@ { "term": "Copy", "context": "Copy", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/Spotlight/SpotlightContextMenuContent.qml:89", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeys.qml:170, Modals/DankLauncherV2/Controller.qml:755", "comment": "" }, { "term": "Copy Full Command", "context": "Copy Full Command", - "reference": "Modules/ProcessList/ProcessContextMenu.qml:87", + "reference": "Modules/ProcessList/ProcessContextMenu.qml:32", + "comment": "" + }, + { + "term": "Copy HTML", + "context": "Copy HTML", + "reference": "Modules/Notepad/NotepadTextEditor.qml:701", "comment": "" }, { "term": "Copy Name", "context": "Copy Name", - "reference": "Modules/ProcessList/ProcessContextMenu.qml:75", + "reference": "Modules/ProcessList/ProcessContextMenu.qml:26", "comment": "" }, { "term": "Copy PID", "context": "Copy PID", - "reference": "Modules/ProcessList/ProcessContextMenu.qml:65", + "reference": "Modules/ProcessList/ProcessContextMenu.qml:20", + "comment": "" + }, + { + "term": "Copy Text", + "context": "Copy Text", + "reference": "Modules/Notepad/NotepadTextEditor.qml:679", + "comment": "" + }, + { + "term": "Copy URL", + "context": "Copy URL", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:195, dms-plugins/DankGifSearch/DankGifSearch.qml:138", + "comment": "" + }, + { + "term": "Copy path", + "context": "Copy path", + "reference": "Modals/DankLauncherV2/Controller.qml:748", "comment": "" }, { "term": "Corner Radius", "context": "Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1044", + "reference": "Modules/Settings/ThemeColorsTab.qml:1505", "comment": "" }, { "term": "Corner Radius Override", "context": "Corner Radius Override", - "reference": "Modules/Settings/DankBarTab.qml:1051", + "reference": "Modules/Settings/DankBarTab.qml:1065", "comment": "" }, { "term": "Corners & Background", "context": "Corners & Background", - "reference": "Modules/Settings/DankBarTab.qml:1015", + "reference": "Modules/Settings/DankBarTab.qml:1029", "comment": "" }, { "term": "Count Only", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:185", + "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:185", "comment": "" }, { @@ -2078,25 +2210,25 @@ { "term": "Current Theme: %1", "context": "current theme label", - "reference": "Modules/Settings/ThemeColorsTab.qml:214, Modules/Settings/ThemeColorsTab.qml:216, Modules/Settings/ThemeColorsTab.qml:217", + "reference": "Modules/Settings/ThemeColorsTab.qml:225, Modules/Settings/ThemeColorsTab.qml:227, Modules/Settings/ThemeColorsTab.qml:228", "comment": "" }, { "term": "Current Weather", "context": "Current Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:552", + "reference": "Modules/Settings/TimeWeatherTab.qml:582", "comment": "" }, { "term": "Current time and date display", "context": "Current time and date display", - "reference": "Modules/Settings/WidgetsTab.qml:74", + "reference": "Modules/Settings/WidgetsTab.qml:81", "comment": "" }, { "term": "Current weather conditions and temperature", "context": "Current weather conditions and temperature", - "reference": "Modules/Settings/WidgetsTab.qml:81", + "reference": "Modules/Settings/WidgetsTab.qml:88", "comment": "" }, { @@ -2108,31 +2240,31 @@ { "term": "Cursor Config Not Configured", "context": "Cursor Config Not Configured", - "reference": "Modules/Settings/ThemeColorsTab.qml:1454", + "reference": "Modules/Settings/ThemeColorsTab.qml:1915", "comment": "" }, { "term": "Cursor Include Missing", "context": "Cursor Include Missing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1454", + "reference": "Modules/Settings/ThemeColorsTab.qml:1915", "comment": "" }, { "term": "Cursor Size", "context": "Cursor Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1502", + "reference": "Modules/Settings/ThemeColorsTab.qml:1963", "comment": "" }, { "term": "Cursor Theme", "context": "Cursor Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1412, Modules/Settings/ThemeColorsTab.qml:1486", + "reference": "Modules/Settings/ThemeColorsTab.qml:1873, Modules/Settings/ThemeColorsTab.qml:1947", "comment": "" }, { "term": "Custom", "context": "Custom", - "reference": "Widgets/KeybindItem.qml:1334, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/LauncherTab.qml:73, Modules/Settings/LauncherTab.qml:179, Modules/Settings/Widgets/SettingsColorPicker.qml:52", + "reference": "Widgets/KeybindItem.qml:1334, dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:47, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/DockTab.qml:224, Modules/Settings/DockTab.qml:297, Modules/Settings/LauncherTab.qml:73, Modules/Settings/LauncherTab.qml:179, Modules/Settings/Widgets/SettingsColorPicker.qml:52", "comment": "" }, { @@ -2150,49 +2282,49 @@ { "term": "Custom Hibernate Command", "context": "Custom Hibernate Command", - "reference": "Modules/Settings/PowerSleepTab.qml:523", + "reference": "Modules/Settings/PowerSleepTab.qml:529", "comment": "" }, { "term": "Custom Location", "context": "Custom Location", - "reference": "Modules/Settings/TimeWeatherTab.qml:406", + "reference": "Modules/Settings/TimeWeatherTab.qml:436", "comment": "" }, { "term": "Custom Lock Command", "context": "Custom Lock Command", - "reference": "Modules/Settings/PowerSleepTab.qml:508", + "reference": "Modules/Settings/PowerSleepTab.qml:514", "comment": "" }, { "term": "Custom Logout Command", "context": "Custom Logout Command", - "reference": "Modules/Settings/PowerSleepTab.qml:513", + "reference": "Modules/Settings/PowerSleepTab.qml:519", "comment": "" }, { "term": "Custom Power Actions", "context": "Custom Power Actions", - "reference": "Modules/Settings/PowerSleepTab.qml:501", + "reference": "Modules/Settings/PowerSleepTab.qml:507", "comment": "" }, { "term": "Custom Power Off Command", "context": "Custom Power Off Command", - "reference": "Modules/Settings/PowerSleepTab.qml:533", + "reference": "Modules/Settings/PowerSleepTab.qml:539", "comment": "" }, { "term": "Custom Reboot Command", "context": "Custom Reboot Command", - "reference": "Modules/Settings/PowerSleepTab.qml:528", + "reference": "Modules/Settings/PowerSleepTab.qml:534", "comment": "" }, { "term": "Custom Suspend Command", "context": "Custom Suspend Command", - "reference": "Modules/Settings/PowerSleepTab.qml:518", + "reference": "Modules/Settings/PowerSleepTab.qml:524", "comment": "" }, { @@ -2204,7 +2336,7 @@ { "term": "Custom theme loaded from JSON file", "context": "custom theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:232", + "reference": "Modules/Settings/ThemeColorsTab.qml:243", "comment": "" }, { @@ -2216,19 +2348,19 @@ { "term": "Custom: ", "context": "Custom: ", - "reference": "Modules/Settings/TimeWeatherTab.qml:106, Modules/Settings/TimeWeatherTab.qml:194", + "reference": "Modules/Settings/TimeWeatherTab.qml:117, Modules/Settings/TimeWeatherTab.qml:205", "comment": "" }, { "term": "Customizable empty space", "context": "Customizable empty space", - "reference": "Modules/Settings/WidgetsTab.qml:198", + "reference": "Modules/Settings/WidgetsTab.qml:205", "comment": "" }, { "term": "Customize which actions appear in the power menu", "context": "Customize which actions appear in the power menu", - "reference": "Modules/Settings/PowerSleepTab.qml:351", + "reference": "Modules/Settings/PowerSleepTab.qml:357", "comment": "" }, { @@ -2240,7 +2372,7 @@ { "term": "DEMO MODE - Click anywhere to exit", "context": "DEMO MODE - Click anywhere to exit", - "reference": "Modules/Lock/LockScreenContent.qml:1105", + "reference": "Modules/Lock/LockScreenContent.qml:1091", "comment": "" }, { @@ -2258,7 +2390,7 @@ { "term": "DMS out of date", "context": "DMS out of date", - "reference": "Services/DMSService.qml:317", + "reference": "Services/DMSService.qml:318", "comment": "" }, { @@ -2288,7 +2420,7 @@ { "term": "Daily Forecast", "context": "Daily Forecast", - "reference": "Modules/DankDash/WeatherTab.qml:1040", + "reference": "Modules/DankDash/WeatherTab.qml:1045", "comment": "" }, { @@ -2300,7 +2432,7 @@ { "term": "Dank", "context": "Dank", - "reference": "Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:210, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -2321,34 +2453,28 @@ "reference": "Modals/Greeter/GreeterCompletePage.qml:112", "comment": "" }, - { - "term": "DankSearch not available", - "context": "DankSearch not available", - "reference": "Modals/Spotlight/FileSearchResults.qml:248", - "comment": "" - }, { "term": "DankShell & System Icons (requires restart)", "context": "DankShell & System Icons (requires restart)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1907", + "reference": "Modules/Settings/ThemeColorsTab.qml:2380", "comment": "" }, { "term": "Dark Mode", "context": "Dark Mode", - "reference": "Modules/Settings/WallpaperTab.qml:570, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:603", + "reference": "Modules/Settings/ThemeColorsTab.qml:1350, Modules/Settings/WallpaperTab.qml:570, Modules/ControlCenter/Models/WidgetModel.qml:77, Modules/ControlCenter/Components/DragDropGrid.qml:603", "comment": "" }, { "term": "Darken Modal Background", "context": "Darken Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1374", + "reference": "Modules/Settings/ThemeColorsTab.qml:1835", "comment": "" }, { "term": "Date Format", "context": "Date Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:57", + "reference": "Modules/Settings/TimeWeatherTab.qml:68", "comment": "" }, { @@ -2390,7 +2516,7 @@ { "term": "Default", "context": "Default", - "reference": "Modules/Settings/LauncherTab.qml:179", + "reference": "Modules/Settings/DockTab.qml:297, Modules/Settings/LauncherTab.qml:179", "comment": "" }, { @@ -2402,7 +2528,7 @@ { "term": "Default selected action", "context": "Default selected action", - "reference": "Modules/Settings/PowerSleepTab.qml:371", + "reference": "Modules/Settings/PowerSleepTab.qml:377", "comment": "" }, { @@ -2438,7 +2564,7 @@ { "term": "Delete Saved Item?", "context": "Delete Saved Item?", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:197", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:186", "comment": "" }, { @@ -2450,13 +2576,13 @@ { "term": "Derives colors that closely match the underlying image.", "context": "Derives colors that closely match the underlying image.", - "reference": "Common/Theme.qml:240", + "reference": "Common/Theme.qml:474", "comment": "" }, { "term": "Description", "context": "Description", - "reference": "Modules/Settings/PrinterTab.qml:456", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:737, Modules/Settings/PrinterTab.qml:456", "comment": "" }, { @@ -2492,7 +2618,7 @@ { "term": "Development", "context": "Development", - "reference": "Services/AppSearchService.qml:455, Services/AppSearchService.qml:456, Services/AppSearchService.qml:457, Widgets/DankIconPicker.qml:32", + "reference": "Services/AppSearchService.qml:615, Services/AppSearchService.qml:616, Services/AppSearchService.qml:617, Widgets/DankIconPicker.qml:32", "comment": "" }, { @@ -2552,7 +2678,7 @@ { "term": "Disabled", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NetworkTab.qml:802, Modules/Settings/DankBarTab.qml:445, Modules/Settings/NotificationsTab.qml:185, Modules/Settings/DisplayConfig/DisplayConfigState.qml:860, Modules/Settings/DisplayConfig/DisplayConfigState.qml:866, Modules/Settings/DisplayConfig/DisplayConfigState.qml:868, Modules/Settings/DisplayConfig/DisplayConfigState.qml:880", + "reference": "Modules/Settings/ThemeColorsTab.qml:1324, Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NetworkTab.qml:802, Modules/Settings/DankBarTab.qml:457, Modules/Settings/NotificationsTab.qml:185, Modules/Settings/DisplayConfig/DisplayConfigState.qml:860, Modules/Settings/DisplayConfig/DisplayConfigState.qml:866, Modules/Settings/DisplayConfig/DisplayConfigState.qml:868, Modules/Settings/DisplayConfig/DisplayConfigState.qml:880", "comment": "" }, { @@ -2600,13 +2726,13 @@ { "term": "Disk Usage", "context": "Disk Usage", - "reference": "Modules/Settings/WidgetsTab.qml:117, Modules/ControlCenter/Models/WidgetModel.qml:169, Modules/ControlCenter/Widgets/DiskUsagePill.qml:35", + "reference": "Modules/Settings/WidgetsTab.qml:124, Modules/ControlCenter/Models/WidgetModel.qml:169, Modules/ControlCenter/Widgets/DiskUsagePill.qml:35", "comment": "" }, { "term": "Disks", "context": "Disks", - "reference": "Modals/ProcessListModal.qml:270", + "reference": "Modals/ProcessListModal.qml:311", "comment": "" }, { @@ -2618,7 +2744,7 @@ { "term": "Display Assignment", "context": "Display Assignment", - "reference": "Modules/Settings/DankBarTab.qml:513", + "reference": "Modules/Settings/DankBarTab.qml:526", "comment": "" }, { @@ -2696,7 +2822,7 @@ { "term": "Display power menu actions in a grid instead of a list", "context": "Display power menu actions in a grid instead of a list", - "reference": "Modules/Settings/PowerSleepTab.qml:362", + "reference": "Modules/Settings/PowerSleepTab.qml:368", "comment": "" }, { @@ -2708,7 +2834,7 @@ { "term": "Display the power system menu", "context": "Display the power system menu", - "reference": "Modules/Settings/WidgetsTab.qml:247", + "reference": "Modules/Settings/WidgetsTab.qml:254", "comment": "" }, { @@ -2726,7 +2852,7 @@ { "term": "Displays the active keyboard layout and allows switching", "context": "Displays the active keyboard layout and allows switching", - "reference": "Modules/Settings/WidgetsTab.qml:220", + "reference": "Modules/Settings/WidgetsTab.qml:227", "comment": "" }, { @@ -2738,7 +2864,7 @@ { "term": "Diverse palette spanning the full spectrum.", "context": "Diverse palette spanning the full spectrum.", - "reference": "Common/Theme.qml:264", + "reference": "Common/Theme.qml:498", "comment": "" }, { @@ -2756,7 +2882,7 @@ { "term": "Dock & Launcher", "context": "Dock & Launcher", - "reference": "Modals/Settings/SettingsSidebar.qml:178", + "reference": "Modals/Settings/SettingsSidebar.qml:178, Modals/Settings/SettingsSidebar.qml:523", "comment": "" }, { @@ -2768,7 +2894,7 @@ { "term": "Dock Transparency", "context": "Dock Transparency", - "reference": "Modules/Settings/DockTab.qml:226", + "reference": "Modules/Settings/DockTab.qml:476", "comment": "" }, { @@ -2780,7 +2906,7 @@ { "term": "Docs", "context": "greeter documentation link", - "reference": "Modals/Greeter/GreeterCompletePage.qml:468, Modules/Settings/AboutTab.qml:262, Modules/Settings/AboutTab.qml:270", + "reference": "Modals/Greeter/GreeterCompletePage.qml:468, Modules/Settings/AboutTab.qml:265, Modules/Settings/AboutTab.qml:273", "comment": "" }, { @@ -2792,13 +2918,13 @@ { "term": "Don't Change", "context": "Don't Change", - "reference": "Modules/Settings/PowerSleepTab.qml:149", + "reference": "Modules/Settings/PowerSleepTab.qml:154", "comment": "" }, { "term": "Don't Save", "context": "Don't Save", - "reference": "Modules/Notepad/Notepad.qml:450", + "reference": "Modules/Notepad/Notepad.qml:430", "comment": "" }, { @@ -2810,7 +2936,7 @@ { "term": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", "context": "Drag widgets to reorder within sections. Use the eye icon to hide/show widgets (maintains spacing), or X to remove them completely.", - "reference": "Modules/Settings/WidgetsTab.qml:829", + "reference": "Modules/Settings/WidgetsTab.qml:836", "comment": "" }, { @@ -2852,7 +2978,7 @@ { "term": "Dynamic", "context": "dynamic theme name", - "reference": "Modules/Settings/ThemeColorsTab.qml:214", + "reference": "Modules/Settings/ThemeColorsTab.qml:225", "comment": "" }, { @@ -2864,7 +2990,7 @@ { "term": "Dynamic colors from wallpaper", "context": "dynamic colors description", - "reference": "Modules/Settings/ThemeColorsTab.qml:461", + "reference": "Modules/Settings/ThemeColorsTab.qml:473", "comment": "" }, { @@ -2876,19 +3002,25 @@ { "term": "Edge Spacing", "context": "Edge Spacing", - "reference": "Modules/Settings/DankBarTab.qml:901", + "reference": "Modules/Settings/DankBarTab.qml:915", + "comment": "" + }, + { + "term": "Edit App", + "context": "Edit App", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:111, Modals/DankLauncherV2/LauncherContent.qml:660", "comment": "" }, { "term": "Education", "context": "Education", - "reference": "Services/AppSearchService.qml:458", + "reference": "Services/AppSearchService.qml:618", "comment": "" }, { "term": "Empty", "context": "Empty", - "reference": "Modules/Notepad/NotepadTextEditor.qml:565", + "reference": "Modules/Notepad/NotepadTextEditor.qml:835", "comment": "" }, { @@ -2906,7 +3038,7 @@ { "term": "Enable Bar", "context": "Enable Bar", - "reference": "Modules/Settings/DankBarTab.qml:498", + "reference": "Modules/Settings/DankBarTab.qml:511", "comment": "" }, { @@ -2924,7 +3056,7 @@ { "term": "Enable Overview Overlay", "context": "Enable Overview Overlay", - "reference": "Modules/Settings/LauncherTab.qml:374", + "reference": "Modules/Settings/LauncherTab.qml:497", "comment": "" }, { @@ -2936,7 +3068,7 @@ { "term": "Enable Weather", "context": "Enable Weather", - "reference": "Modules/Settings/TimeWeatherTab.qml:338", + "reference": "Modules/Settings/TimeWeatherTab.qml:349", "comment": "" }, { @@ -2954,19 +3086,19 @@ { "term": "Enable fingerprint authentication", "context": "Enable fingerprint authentication", - "reference": "Modules/Settings/LockScreenTab.qml:146", + "reference": "Modules/Settings/LockScreenTab.qml:154", "comment": "" }, { "term": "Enable loginctl lock integration", "context": "Enable loginctl lock integration", - "reference": "Modules/Settings/LockScreenTab.qml:113", + "reference": "Modules/Settings/LockScreenTab.qml:121", "comment": "" }, { "term": "Enabled", "context": "Enabled", - "reference": "Modules/Settings/DisplayConfig/DisplayConfigState.qml:860, Modules/Settings/DisplayConfig/DisplayConfigState.qml:868", + "reference": "Modules/Settings/ThemeColorsTab.qml:1324, Modules/Settings/DisplayConfig/DisplayConfigState.qml:860, Modules/Settings/DisplayConfig/DisplayConfigState.qml:868", "comment": "" }, { @@ -2978,7 +3110,7 @@ { "term": "End", "context": "End", - "reference": "Modules/Settings/GammaControlTab.qml:295", + "reference": "Modules/Settings/ThemeColorsTab.qml:1139, Modules/Settings/GammaControlTab.qml:295", "comment": "" }, { @@ -3002,13 +3134,13 @@ { "term": "Enter URL or text to share", "context": "KDE Connect share input placeholder", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:70", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:73", "comment": "" }, { - "term": "Enter a search query", - "context": "Enter a search query", - "reference": "Modals/Spotlight/FileSearchResults.qml:254", + "term": "Enter a new name for this workspace", + "context": "Enter a new name for this workspace", + "reference": "Modals/WorkspaceRenameModal.qml:85", "comment": "" }, { @@ -3020,13 +3152,13 @@ { "term": "Enter custom lock screen format (e.g., dddd, MMMM d)", "context": "Enter custom lock screen format (e.g., dddd, MMMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:222", + "reference": "Modules/Settings/TimeWeatherTab.qml:233", "comment": "" }, { "term": "Enter custom top bar format (e.g., ddd MMM d)", "context": "Enter custom top bar format (e.g., ddd MMM d)", - "reference": "Modules/Settings/TimeWeatherTab.qml:134", + "reference": "Modules/Settings/TimeWeatherTab.qml:145", "comment": "" }, { @@ -3074,13 +3206,19 @@ { "term": "Entry pinned", "context": "Entry pinned", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:234", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:221", "comment": "" }, { "term": "Entry unpinned", "context": "Entry unpinned", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:246", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:235", + "comment": "" + }, + { + "term": "Environment Variables", + "context": "Environment Variables", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:757", "comment": "" }, { @@ -3104,7 +3242,7 @@ { "term": "Exclusive Zone Offset", "context": "Exclusive Zone Offset", - "reference": "Modules/Settings/DockTab.qml:201, Modules/Settings/DankBarTab.qml:921", + "reference": "Modules/Settings/DockTab.qml:451, Modules/Settings/DankBarTab.qml:935", "comment": "" }, { @@ -3137,6 +3275,12 @@ "reference": "Modules/Settings/WallpaperTab.qml:1198", "comment": "" }, + { + "term": "Extra Arguments", + "context": "Extra Arguments", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:783", + "comment": "" + }, { "term": "F1/I: Toggle • F10: Help", "context": "F1/I: Toggle • F10: Help", @@ -3146,13 +3290,13 @@ { "term": "Fade to lock screen", "context": "Fade to lock screen", - "reference": "Modules/Settings/PowerSleepTab.qml:69", + "reference": "Modules/Settings/PowerSleepTab.qml:74", "comment": "" }, { "term": "Fade to monitor off", "context": "Fade to monitor off", - "reference": "Modules/Settings/PowerSleepTab.qml:78", + "reference": "Modules/Settings/PowerSleepTab.qml:83", "comment": "" }, { @@ -3200,7 +3344,7 @@ { "term": "Failed to check pin limit", "context": "Failed to check pin limit", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:219", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:204", "comment": "" }, { @@ -3218,7 +3362,7 @@ { "term": "Failed to copy entry", "context": "Failed to copy entry", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:69, Modals/Clipboard/ClipboardHistoryModal.qml:168", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:60, Modals/Clipboard/ClipboardHistoryModal.qml:158", "comment": "" }, { @@ -3338,19 +3482,19 @@ { "term": "Failed to parse plugin_settings.json", "context": "Failed to parse plugin_settings.json", - "reference": "Common/SettingsData.qml:1096", + "reference": "Common/SettingsData.qml:1162", "comment": "" }, { "term": "Failed to parse session.json", "context": "Failed to parse session.json", - "reference": "Common/SessionData.qml:169, Common/SessionData.qml:252", + "reference": "Common/SessionData.qml:187, Common/SessionData.qml:266", "comment": "" }, { "term": "Failed to parse settings.json", "context": "Failed to parse settings.json", - "reference": "Common/SettingsData.qml:1033, Common/SettingsData.qml:2263", + "reference": "Common/SettingsData.qml:1099, Common/SettingsData.qml:2334", "comment": "" }, { @@ -3362,7 +3506,7 @@ { "term": "Failed to pin entry", "context": "Failed to pin entry", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:231", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:218", "comment": "" }, { @@ -3431,6 +3575,12 @@ "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:110", "comment": "" }, + { + "term": "Failed to send file", + "context": "KDE Connect error", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:349", + "comment": "" + }, { "term": "Failed to send ping", "context": "KDE Connect error", @@ -3476,7 +3626,7 @@ { "term": "Failed to share", "context": "KDE Connect error", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:328, dms-plugins/DankKDEConnect/DankKDEConnect.qml:336", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:329, dms-plugins/DankKDEConnect/DankKDEConnect.qml:337", "comment": "" }, { @@ -3488,7 +3638,7 @@ { "term": "Failed to unpin entry", "context": "Failed to unpin entry", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:243", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:232", "comment": "" }, { @@ -3542,13 +3692,19 @@ { "term": "Feels Like", "context": "Feels Like", - "reference": "Modules/Settings/TimeWeatherTab.qml:800", + "reference": "Modules/Settings/TimeWeatherTab.qml:837", + "comment": "" + }, + { + "term": "Feels Like %1°", + "context": "weather feels like temperature", + "reference": "Modules/DankDash/WeatherTab.qml:236, Modules/Settings/TimeWeatherTab.qml:724", "comment": "" }, { "term": "File", "context": "File", - "reference": "Services/CupsService.qml:137", + "reference": "Services/CupsService.qml:137, Modals/DankLauncherV2/ResultItem.qml:171", "comment": "" }, { @@ -3569,10 +3725,16 @@ "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:74", "comment": "" }, + { + "term": "File search requires dsearch\\nInstall from github.com/morelazers/dsearch", + "context": "File search requires dsearch\\nInstall from github.com/morelazers/dsearch", + "reference": "Modals/DankLauncherV2/ResultsList.qml:476", + "comment": "" + }, { "term": "Files", "context": "Files", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:246", + "reference": "Modals/DankLauncherV2/Controller.qml:125, Modals/DankLauncherV2/Controller.qml:684, Modals/DankLauncherV2/LauncherContent.qml:316", "comment": "" }, { @@ -3590,7 +3752,7 @@ { "term": "Find in note...", "context": "Find in note...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:268", + "reference": "Modules/Notepad/NotepadTextEditor.qml:372", "comment": "" }, { @@ -3608,19 +3770,19 @@ { "term": "First Time Setup", "context": "First Time Setup", - "reference": "Modules/Settings/KeybindsTab.qml:307, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:45", + "reference": "Modules/Settings/KeybindsTab.qml:306, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:45", "comment": "" }, { "term": "Fix Now", "context": "Fix Now", - "reference": "Modules/Settings/ThemeColorsTab.qml:1472, Modules/Settings/KeybindsTab.qml:348, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:78", + "reference": "Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/KeybindsTab.qml:347, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:78", "comment": "" }, { "term": "Fixing...", "context": "Fixing...", - "reference": "Modules/Settings/ThemeColorsTab.qml:1472, Modules/Settings/KeybindsTab.qml:345, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:75", + "reference": "Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/KeybindsTab.qml:344, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:75", "comment": "" }, { @@ -3662,7 +3824,7 @@ { "term": "Focused Border", "context": "Focused Border", - "reference": "Modules/Settings/WorkspacesTab.qml:321", + "reference": "Modules/Settings/WorkspacesTab.qml:323", "comment": "" }, { @@ -3698,7 +3860,7 @@ { "term": "Font Scale", "context": "Font Scale", - "reference": "Modules/Settings/TypographyMotionTab.qml:196, Modules/Settings/DankBarTab.qml:1439", + "reference": "Modules/Settings/TypographyMotionTab.qml:196, Modules/Settings/DankBarTab.qml:1455", "comment": "" }, { @@ -3722,7 +3884,7 @@ { "term": "Force Kill (SIGKILL)", "context": "Force Kill (SIGKILL)", - "reference": "Modules/ProcessList/ProcessContextMenu.qml:118", + "reference": "Modules/ProcessList/ProcessContextMenu.qml:48", "comment": "" }, { @@ -3734,7 +3896,7 @@ { "term": "Force terminal applications to always use dark color schemes", "context": "Force terminal applications to always use dark color schemes", - "reference": "Modules/Settings/ThemeColorsTab.qml:1403", + "reference": "Modules/Settings/ThemeColorsTab.qml:1864", "comment": "" }, { @@ -3752,7 +3914,7 @@ { "term": "Forecast Not Available", "context": "Forecast Not Available", - "reference": "Modules/DankDash/WeatherForecastCard.qml:107", + "reference": "Modules/DankDash/WeatherForecastCard.qml:114", "comment": "" }, { @@ -3788,7 +3950,7 @@ { "term": "Format Legend", "context": "Format Legend", - "reference": "Modules/Settings/TimeWeatherTab.qml:251", + "reference": "Modules/Settings/TimeWeatherTab.qml:262", "comment": "" }, { @@ -3800,13 +3962,13 @@ { "term": "Full Command:", "context": "process detail label", - "reference": "Modules/ProcessList/ProcessesView.qml:519", + "reference": "Modules/ProcessList/ProcessesView.qml:669", "comment": "" }, { "term": "Full Content", "context": "lock screen notification mode option", - "reference": "Modules/Settings/LockScreenTab.qml:84, Modules/Settings/NotificationsTab.qml:185", + "reference": "Modules/Settings/LockScreenTab.qml:92, Modules/Settings/NotificationsTab.qml:185", "comment": "" }, { @@ -3836,7 +3998,7 @@ { "term": "GPU Temperature", "context": "GPU Temperature", - "reference": "Modules/Settings/WidgetsTab.qml:133, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", + "reference": "Modules/Settings/WidgetsTab.qml:140, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:116", "comment": "" }, { @@ -3848,7 +4010,7 @@ { "term": "Games", "context": "Games", - "reference": "Services/AppSearchService.qml:459", + "reference": "Services/AppSearchService.qml:619", "comment": "" }, { @@ -3872,7 +4034,7 @@ { "term": "GitHub", "context": "GitHub", - "reference": "Modules/Settings/AboutTab.qml:294", + "reference": "Modules/Settings/AboutTab.qml:297", "comment": "" }, { @@ -3884,31 +4046,31 @@ { "term": "Good", "context": "Good", - "reference": "Modules/Settings/TimeWeatherTab.qml:1041", + "reference": "Modules/Settings/TimeWeatherTab.qml:1082", "comment": "" }, { "term": "Goth Corner Radius", "context": "Goth Corner Radius", - "reference": "Modules/Settings/DankBarTab.qml:1068", + "reference": "Modules/Settings/DankBarTab.qml:1082", "comment": "" }, { "term": "Goth Corners", "context": "Goth Corners", - "reference": "Modules/Settings/DankBarTab.qml:1043", + "reference": "Modules/Settings/DankBarTab.qml:1057", "comment": "" }, { "term": "Gradually fade the screen before locking with a configurable grace period", "context": "Gradually fade the screen before locking with a configurable grace period", - "reference": "Modules/Settings/PowerSleepTab.qml:70", + "reference": "Modules/Settings/PowerSleepTab.qml:75", "comment": "" }, { "term": "Gradually fade the screen before turning off monitors with a configurable grace period", "context": "Gradually fade the screen before turning off monitors with a configurable grace period", - "reference": "Modules/Settings/PowerSleepTab.qml:79", + "reference": "Modules/Settings/PowerSleepTab.qml:84", "comment": "" }, { @@ -3920,7 +4082,7 @@ { "term": "Graphics", "context": "Graphics", - "reference": "Services/AppSearchService.qml:460, Services/AppSearchService.qml:461", + "reference": "Services/AppSearchService.qml:620, Services/AppSearchService.qml:621", "comment": "" }, { @@ -4013,6 +4175,12 @@ "reference": "Modals/DankColorPickerModal.qml:639", "comment": "" }, + { + "term": "HTML copied to clipboard", + "context": "HTML copied to clipboard", + "reference": "Modules/Notepad/NotepadTextEditor.qml:275", + "comment": "" + }, { "term": "Health", "context": "Health", @@ -4049,16 +4217,34 @@ "reference": "Modules/Settings/NetworkTab.qml:1203", "comment": "" }, + { + "term": "Hidden Apps", + "context": "Hidden Apps", + "reference": "Modules/Settings/LauncherTab.qml:829", + "comment": "" + }, { "term": "Hidden Network", "context": "Hidden Network", "reference": "Modals/WifiPasswordModal.qml:251", "comment": "" }, + { + "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "context": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "reference": "Modules/Settings/LauncherTab.qml:859", + "comment": "" + }, + { + "term": "Hide App", + "context": "Hide App", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:105", + "comment": "" + }, { "term": "Hide Delay", "context": "Hide Delay", - "reference": "Modules/Settings/DankBarTab.qml:709", + "reference": "Modules/Settings/DankBarTab.qml:723", "comment": "" }, { @@ -4070,49 +4256,49 @@ { "term": "Hide When Typing", "context": "Hide When Typing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1516", + "reference": "Modules/Settings/ThemeColorsTab.qml:1977", "comment": "" }, { "term": "Hide When Windows Open", "context": "Hide When Windows Open", - "reference": "Modules/Settings/DankBarTab.qml:733", + "reference": "Modules/Settings/DankBarTab.qml:747", "comment": "" }, { "term": "Hide cursor after inactivity (0 = disabled)", "context": "Hide cursor after inactivity (0 = disabled)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1563", + "reference": "Modules/Settings/ThemeColorsTab.qml:2024", "comment": "" }, { "term": "Hide cursor when pressing keyboard keys", "context": "Hide cursor when pressing keyboard keys", - "reference": "Modules/Settings/ThemeColorsTab.qml:1517", + "reference": "Modules/Settings/ThemeColorsTab.qml:1978", "comment": "" }, { "term": "Hide cursor when using touch input", "context": "Hide cursor when using touch input", - "reference": "Modules/Settings/ThemeColorsTab.qml:1546", + "reference": "Modules/Settings/ThemeColorsTab.qml:2007", "comment": "" }, { "term": "Hide on Touch", "context": "Hide on Touch", - "reference": "Modules/Settings/ThemeColorsTab.qml:1545", + "reference": "Modules/Settings/ThemeColorsTab.qml:2006", "comment": "" }, { "term": "High-fidelity palette that preserves source hues.", "context": "High-fidelity palette that preserves source hues.", - "reference": "Common/Theme.qml:248", + "reference": "Common/Theme.qml:482", "comment": "" }, { "term": "History", "context": "notification center tab", - "reference": "Modules/Notifications/Center/NotificationHeader.qml:151", + "reference": "Modals/Clipboard/ClipboardHeader.qml:60, Modules/Notifications/Center/NotificationHeader.qml:151", "comment": "" }, { @@ -4130,13 +4316,13 @@ { "term": "History cleared. %1 pinned entries kept.", "context": "History cleared. %1 pinned entries kept.", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:268", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:252", "comment": "" }, { "term": "Hold Duration", "context": "Hold Duration", - "reference": "Modules/Settings/PowerSleepTab.qml:479", + "reference": "Modules/Settings/PowerSleepTab.qml:485", "comment": "" }, { @@ -4148,7 +4334,7 @@ { "term": "Hold to Confirm Power Actions", "context": "Hold to Confirm Power Actions", - "reference": "Modules/Settings/PowerSleepTab.qml:466", + "reference": "Modules/Settings/PowerSleepTab.qml:472", "comment": "" }, { @@ -4184,13 +4370,13 @@ { "term": "Hour", "context": "Hour", - "reference": "Modules/Settings/GammaControlTab.qml:232", + "reference": "Modules/Settings/ThemeColorsTab.qml:1077, Modules/Settings/GammaControlTab.qml:232", "comment": "" }, { "term": "Hourly Forecast", "context": "Hourly Forecast", - "reference": "Modules/DankDash/WeatherTab.qml:900", + "reference": "Modules/DankDash/WeatherTab.qml:905", "comment": "" }, { @@ -4208,13 +4394,13 @@ { "term": "Humidity", "context": "Humidity", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherForecastCard.qml:72, Modules/Settings/TimeWeatherTab.qml:844", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:413, Modules/DankDash/WeatherForecastCard.qml:79, Modules/Settings/TimeWeatherTab.qml:881", "comment": "" }, { "term": "Hyprland Layout Overrides", "context": "Hyprland Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1161", + "reference": "Modules/Settings/ThemeColorsTab.qml:1622", "comment": "" }, { @@ -4235,16 +4421,22 @@ "reference": "Modules/Settings/NetworkTab.qml:922", "comment": "" }, + { + "term": "Icon", + "context": "Icon", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:717, Modules/Settings/DockTab.qml:191", + "comment": "" + }, { "term": "Icon Size", "context": "Icon Size", - "reference": "Modules/Settings/DockTab.qml:176", + "reference": "Modules/Settings/DockTab.qml:426", "comment": "" }, { "term": "Icon Theme", "context": "Icon Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1899, Modules/Settings/ThemeColorsTab.qml:1906", + "reference": "Modules/Settings/ThemeColorsTab.qml:2372, Modules/Settings/ThemeColorsTab.qml:2379", "comment": "" }, { @@ -4256,7 +4448,7 @@ { "term": "Idle Inhibitor", "context": "Idle Inhibitor", - "reference": "Modules/Settings/WidgetsTab.qml:183, Modules/Settings/OSDTab.qml:120", + "reference": "Modules/Settings/WidgetsTab.qml:190, Modules/Settings/OSDTab.qml:120", "comment": "" }, { @@ -4268,7 +4460,7 @@ { "term": "Idle monitoring not supported - requires newer Quickshell version", "context": "Idle monitoring not supported - requires newer Quickshell version", - "reference": "Modules/Settings/PowerSleepTab.qml:336", + "reference": "Modules/Settings/PowerSleepTab.qml:342", "comment": "" }, { @@ -4286,7 +4478,7 @@ { "term": "Image copied to clipboard", "context": "Image copied to clipboard", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:171", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:161", "comment": "" }, { @@ -4304,7 +4496,7 @@ { "term": "Inactive Monitor Color", "context": "Inactive Monitor Color", - "reference": "Modules/Settings/LockScreenTab.qml:224, Modules/Settings/LockScreenTab.qml:255", + "reference": "Modules/Settings/LockScreenTab.qml:232, Modules/Settings/LockScreenTab.qml:263", "comment": "" }, { @@ -4313,6 +4505,12 @@ "reference": "Modules/Settings/WallpaperTab.qml:1157", "comment": "" }, + { + "term": "Include desktop actions (shortcuts) in search results.", + "context": "Include desktop actions (shortcuts) in search results.", + "reference": "Modules/Settings/LauncherTab.qml:819", + "comment": "" + }, { "term": "Incompatible Plugins Loaded", "context": "Incompatible Plugins Loaded", @@ -4400,7 +4598,7 @@ { "term": "Install matugen package for dynamic theming", "context": "matugen installation hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:458", + "reference": "Modules/Settings/ThemeColorsTab.qml:470", "comment": "" }, { @@ -4448,7 +4646,7 @@ { "term": "Intensity", "context": "shadow intensity slider", - "reference": "Modules/Settings/DankBarTab.qml:1098", + "reference": "Modules/Settings/DankBarTab.qml:1112", "comment": "" }, { @@ -4466,7 +4664,7 @@ { "term": "Internet", "context": "Internet", - "reference": "Services/AppSearchService.qml:462, Services/AppSearchService.qml:463, Services/AppSearchService.qml:464", + "reference": "Services/AppSearchService.qml:622, Services/AppSearchService.qml:623, Services/AppSearchService.qml:624", "comment": "" }, { @@ -4550,7 +4748,7 @@ { "term": "Keybind Sources", "context": "Keybind Sources", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:138", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:144", "comment": "" }, { @@ -4562,25 +4760,25 @@ { "term": "Keybinds Search Settings", "context": "Keybinds Search Settings", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:66", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:70", "comment": "" }, { "term": "Keybinds shown alongside regular search results", "context": "Keybinds shown alongside regular search results", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:103", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", "comment": "" }, { "term": "Keyboard Layout Name", "context": "Keyboard Layout Name", - "reference": "Modules/Settings/WidgetsTab.qml:219", + "reference": "Modules/Settings/WidgetsTab.qml:226", "comment": "" }, { "term": "Keyboard Shortcuts", "context": "Keyboard Shortcuts", - "reference": "Modals/Settings/SettingsSidebar.qml:198, Modules/Settings/KeybindsTab.qml:212", + "reference": "Modals/Settings/SettingsSidebar.qml:198, Modals/Settings/SettingsSidebar.qml:511, Modals/Clipboard/ClipboardHeader.qml:68, Modules/Settings/KeybindsTab.qml:212", "comment": "" }, { @@ -4592,13 +4790,13 @@ { "term": "Kill Process", "context": "Kill Process", - "reference": "Modules/ProcessList/ProcessContextMenu.qml:106", + "reference": "Modules/ProcessList/ProcessContextMenu.qml:41", "comment": "" }, { "term": "Ko-fi", "context": "Ko-fi", - "reference": "Modules/Settings/AboutTab.qml:310, Modules/Settings/AboutTab.qml:318", + "reference": "Modules/Settings/AboutTab.qml:313, Modules/Settings/AboutTab.qml:321", "comment": "" }, { @@ -4607,6 +4805,18 @@ "reference": "Modules/ControlCenter/Details/BrightnessDetail.qml:329", "comment": "" }, + { + "term": "Large", + "context": "Large", + "reference": "Modules/Settings/WidgetsTabSection.qml:1315", + "comment": "" + }, + { + "term": "Largest", + "context": "Largest", + "reference": "Modules/Settings/WidgetsTabSection.qml:1320", + "comment": "" + }, { "term": "Last hour", "context": "notification history filter", @@ -4616,43 +4826,43 @@ { "term": "Last launched %1", "context": "Last launched %1", - "reference": "Modules/Settings/LauncherTab.qml:596", + "reference": "Modules/Settings/LauncherTab.qml:1184", "comment": "" }, { "term": "Last launched %1 day%2 ago", "context": "Last launched %1 day%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:595", + "reference": "Modules/Settings/LauncherTab.qml:1183", "comment": "" }, { "term": "Last launched %1 hour%2 ago", "context": "Last launched %1 hour%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:593", + "reference": "Modules/Settings/LauncherTab.qml:1181", "comment": "" }, { "term": "Last launched %1 minute%2 ago", "context": "Last launched %1 minute%2 ago", - "reference": "Modules/Settings/LauncherTab.qml:591", + "reference": "Modules/Settings/LauncherTab.qml:1179", "comment": "" }, { "term": "Last launched just now", "context": "Last launched just now", - "reference": "Modules/Settings/LauncherTab.qml:589", + "reference": "Modules/Settings/LauncherTab.qml:1177", "comment": "" }, { "term": "Latitude", "context": "Latitude", - "reference": "Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:421", + "reference": "Modules/Settings/ThemeColorsTab.qml:1222, Modules/Settings/GammaControlTab.qml:379, Modules/Settings/TimeWeatherTab.qml:451", "comment": "" }, { "term": "Launch", "context": "Launch", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:127, Modules/AppDrawer/AppDrawerPopout.qml:874", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:147, Modals/DankLauncherV2/Controller.qml:736", "comment": "" }, { @@ -4664,7 +4874,7 @@ { "term": "Launch on dGPU", "context": "Launch on dGPU", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:138, Modules/AppDrawer/AppDrawerPopout.qml:934, Modules/Dock/DockContextMenu.qml:432", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:139, Modals/DankLauncherV2/ActionPanel.qml:66, Modules/Dock/DockContextMenu.qml:432, Modules/DankBar/Widgets/AppsDockContextMenu.qml:360", "comment": "" }, { @@ -4673,6 +4883,12 @@ "reference": "Modals/Settings/SettingsSidebar.qml:190", "comment": "" }, + { + "term": "Launcher Button", + "context": "Launcher Button", + "reference": "Modules/Settings/DockTab.qml:170", + "comment": "" + }, { "term": "Launcher Button Logo", "context": "Launcher Button Logo", @@ -4694,19 +4910,19 @@ { "term": "Left", "context": "Left", - "reference": "Modules/Settings/DankBarTab.qml:384, Modules/Settings/DankBarTab.qml:628, Modules/DankBar/Popouts/BatteryPopout.qml:527", + "reference": "Modules/Settings/DankBarTab.qml:390, Modules/Settings/DankBarTab.qml:642, Modules/DankBar/Popouts/BatteryPopout.qml:527", "comment": "" }, { "term": "Left Section", "context": "Left Section", - "reference": "Modules/Settings/WidgetsTab.qml:852", + "reference": "Modules/Settings/WidgetsTab.qml:859", "comment": "" }, { "term": "Light Mode", "context": "Light Mode", - "reference": "Modules/Settings/ThemeColorsTab.qml:959, Modules/Settings/WallpaperTab.qml:386", + "reference": "Modules/Settings/ThemeColorsTab.qml:1350, Modules/Settings/ThemeColorsTab.qml:1420, Modules/Settings/WallpaperTab.qml:386", "comment": "" }, { @@ -4718,7 +4934,7 @@ { "term": "Lines: %1", "context": "Lines: %1", - "reference": "Modules/Notepad/NotepadTextEditor.qml:571", + "reference": "Modules/Notepad/NotepadTextEditor.qml:841", "comment": "" }, { @@ -4730,7 +4946,7 @@ { "term": "Lively palette with saturated accents.", "context": "Lively palette with saturated accents.", - "reference": "Common/Theme.qml:236", + "reference": "Common/Theme.qml:470", "comment": "" }, { @@ -4748,7 +4964,13 @@ { "term": "Loading keybinds...", "context": "Loading keybinds...", - "reference": "Modules/Settings/KeybindsTab.qml:552", + "reference": "Modules/Settings/KeybindsTab.qml:551", + "comment": "" + }, + { + "term": "Loading trending...", + "context": "Loading trending...", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:137, dms-plugins/DankGifSearch/DankGifSearch.qml:80", "comment": "" }, { @@ -4772,7 +4994,7 @@ { "term": "Location Search", "context": "Location Search", - "reference": "Modules/Settings/TimeWeatherTab.qml:521", + "reference": "Modules/Settings/TimeWeatherTab.qml:551", "comment": "" }, { @@ -4790,19 +5012,19 @@ { "term": "Lock Screen Display", "context": "Lock Screen Display", - "reference": "Modules/Settings/LockScreenTab.qml:157", + "reference": "Modules/Settings/LockScreenTab.qml:165", "comment": "" }, { "term": "Lock Screen Format", "context": "Lock Screen Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:153", + "reference": "Modules/Settings/TimeWeatherTab.qml:164", "comment": "" }, { "term": "Lock Screen behaviour", "context": "Lock Screen behaviour", - "reference": "Modules/Settings/LockScreenTab.qml:98", + "reference": "Modules/Settings/LockScreenTab.qml:106", "comment": "" }, { @@ -4814,13 +5036,13 @@ { "term": "Lock before suspend", "context": "Lock before suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:87, Modules/Settings/LockScreenTab.qml:127", + "reference": "Modules/Settings/PowerSleepTab.qml:92, Modules/Settings/LockScreenTab.qml:135", "comment": "" }, { "term": "Lock fade grace period", "context": "Lock fade grace period", - "reference": "Modules/Settings/PowerSleepTab.qml:101", + "reference": "Modules/Settings/PowerSleepTab.qml:106", "comment": "" }, { @@ -4856,7 +5078,7 @@ { "term": "Longitude", "context": "Longitude", - "reference": "Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:470", + "reference": "Modules/Settings/ThemeColorsTab.qml:1245, Modules/Settings/GammaControlTab.qml:402, Modules/Settings/TimeWeatherTab.qml:500", "comment": "" }, { @@ -4892,7 +5114,7 @@ { "term": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", "context": "Manage up to 4 independent bar configurations. Each bar has its own position, widgets, styling, and display assignment.", - "reference": "Modules/Settings/DankBarTab.qml:319", + "reference": "Modules/Settings/DankBarTab.qml:322", "comment": "" }, { @@ -4904,25 +5126,25 @@ { "term": "MangoWC Layout Overrides", "context": "MangoWC Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1264", + "reference": "Modules/Settings/ThemeColorsTab.qml:1725", "comment": "" }, { "term": "Manual Coordinates", "context": "Manual Coordinates", - "reference": "Modules/Settings/GammaControlTab.qml:367", + "reference": "Modules/Settings/ThemeColorsTab.qml:1207, Modules/Settings/GammaControlTab.qml:367", "comment": "" }, { "term": "Manual Gap Size", "context": "Manual Gap Size", - "reference": "Modules/Settings/DankBarTab.qml:993", + "reference": "Modules/Settings/DankBarTab.qml:1007", "comment": "" }, { "term": "Manual Show/Hide", "context": "Manual Show/Hide", - "reference": "Modules/Settings/DankBarTab.qml:752", + "reference": "Modules/Settings/DankBarTab.qml:766", "comment": "" }, { @@ -4934,7 +5156,7 @@ { "term": "Margin", "context": "Margin", - "reference": "Modules/Settings/DockTab.qml:210", + "reference": "Modules/Settings/DockTab.qml:460", "comment": "" }, { @@ -4970,25 +5192,25 @@ { "term": "Material Design inspired color themes", "context": "generic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:233", + "reference": "Modules/Settings/ThemeColorsTab.qml:244", "comment": "" }, { "term": "Material colors generated from wallpaper", "context": "dynamic theme description", - "reference": "Modules/Settings/ThemeColorsTab.qml:228", + "reference": "Modules/Settings/ThemeColorsTab.qml:239", "comment": "" }, { "term": "Matugen Missing", "context": "matugen not found status", - "reference": "Modules/Settings/ThemeColorsTab.qml:441", + "reference": "Modules/Settings/ThemeColorsTab.qml:453", "comment": "" }, { "term": "Matugen Palette", "context": "Matugen Palette", - "reference": "Modules/Settings/ThemeColorsTab.qml:477", + "reference": "Modules/Settings/ThemeColorsTab.qml:489", "comment": "" }, { @@ -5000,7 +5222,7 @@ { "term": "Matugen Templates", "context": "Matugen Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1601", + "reference": "Modules/Settings/ThemeColorsTab.qml:2062", "comment": "" }, { @@ -5012,7 +5234,7 @@ { "term": "Maximize Detection", "context": "Maximize Detection", - "reference": "Modules/Settings/DankBarTab.qml:800", + "reference": "Modules/Settings/DankBarTab.qml:814", "comment": "" }, { @@ -5054,7 +5276,7 @@ { "term": "Maximum pinned entries reached", "context": "Maximum pinned entries reached", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:225", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:210", "comment": "" }, { @@ -5066,13 +5288,13 @@ { "term": "Media", "context": "Media", - "reference": "Services/AppSearchService.qml:452, Services/AppSearchService.qml:453, Services/AppSearchService.qml:454, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1049, Widgets/KeybindItem.qml:1058, Widgets/KeybindItem.qml:1064, Modules/DankDash/DankDashPopout.qml:276", + "reference": "Services/AppSearchService.qml:612, Services/AppSearchService.qml:613, Services/AppSearchService.qml:614, Widgets/DankIconPicker.qml:40, Widgets/KeybindItem.qml:1049, Widgets/KeybindItem.qml:1058, Widgets/KeybindItem.qml:1064, Modules/DankDash/DankDashPopout.qml:276", "comment": "" }, { "term": "Media Controls", "context": "Media Controls", - "reference": "Modules/Settings/WidgetsTab.qml:87", + "reference": "Modules/Settings/WidgetsTab.qml:94", "comment": "" }, { @@ -5126,13 +5348,13 @@ { "term": "Medium", "context": "Medium", - "reference": "Modules/Settings/TypographyMotionTab.qml:225", + "reference": "Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/WidgetsTabSection.qml:1310", "comment": "" }, { "term": "Memory", "context": "Memory", - "reference": "Modules/ProcessList/ProcessListPopout.qml:272, Modules/ProcessList/ProcessesView.qml:123, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", + "reference": "Modules/ProcessList/ProcessListPopout.qml:287, Modules/ProcessList/ProcessesView.qml:261, Modules/ProcessList/PerformanceView.qml:91, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:210", "comment": "" }, { @@ -5144,13 +5366,13 @@ { "term": "Memory Usage", "context": "Memory Usage", - "reference": "Modules/Settings/WidgetsTab.qml:109", + "reference": "Modules/Settings/WidgetsTab.qml:116", "comment": "" }, { "term": "Memory usage indicator", "context": "Memory usage indicator", - "reference": "Modules/Settings/WidgetsTab.qml:110", + "reference": "Modules/Settings/WidgetsTab.qml:117", "comment": "" }, { @@ -5162,7 +5384,7 @@ { "term": "Microphone", "context": "Microphone", - "reference": "Modules/Settings/WidgetsTabSection.qml:858, Modules/Settings/WidgetsTabSection.qml:1064", + "reference": "Modules/Settings/WidgetsTabSection.qml:819, Modules/Settings/WidgetsTabSection.qml:1025", "comment": "" }, { @@ -5174,7 +5396,7 @@ { "term": "Microphone Volume", "context": "Microphone Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:863", + "reference": "Modules/Settings/WidgetsTabSection.qml:824", "comment": "" }, { @@ -5192,19 +5414,19 @@ { "term": "Middle Section", "context": "Middle Section", - "reference": "Modules/Settings/WidgetsTab.qml:907", + "reference": "Modules/Settings/WidgetsTab.qml:914", "comment": "" }, { "term": "Minimal palette built around a single hue.", "context": "Minimal palette built around a single hue.", - "reference": "Common/Theme.qml:256", + "reference": "Common/Theme.qml:490", "comment": "" }, { "term": "Minute", "context": "Minute", - "reference": "Modules/Settings/GammaControlTab.qml:240", + "reference": "Modules/Settings/ThemeColorsTab.qml:1085, Modules/Settings/GammaControlTab.qml:240", "comment": "" }, { @@ -5216,7 +5438,7 @@ { "term": "Modal Background", "context": "Modal Background", - "reference": "Modules/Settings/ThemeColorsTab.qml:1367", + "reference": "Modules/Settings/ThemeColorsTab.qml:1828", "comment": "" }, { @@ -5258,7 +5480,7 @@ { "term": "Monitor fade grace period", "context": "Monitor fade grace period", - "reference": "Modules/Settings/PowerSleepTab.qml:127", + "reference": "Modules/Settings/PowerSleepTab.qml:132", "comment": "" }, { @@ -5294,13 +5516,13 @@ { "term": "Mouse pointer appearance", "context": "Mouse pointer appearance", - "reference": "Modules/Settings/ThemeColorsTab.qml:1487", + "reference": "Modules/Settings/ThemeColorsTab.qml:1948", "comment": "" }, { "term": "Mouse pointer size in pixels", "context": "Mouse pointer size in pixels", - "reference": "Modules/Settings/ThemeColorsTab.qml:1503", + "reference": "Modules/Settings/ThemeColorsTab.qml:1964", "comment": "" }, { @@ -5324,7 +5546,7 @@ { "term": "Muted palette with subdued, calming tones.", "context": "Muted palette with subdued, calming tones.", - "reference": "Common/Theme.qml:260", + "reference": "Common/Theme.qml:494", "comment": "" }, { @@ -5336,13 +5558,13 @@ { "term": "Name", "context": "Name", - "reference": "Modules/ProcessList/ProcessesView.qml:104, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:414, Modules/Settings/DisplayConfigTab.qml:103, Modules/Settings/DisplayConfig/DisplayConfigState.qml:845, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:697, Modules/ProcessList/ProcessesView.qml:242, Modules/Settings/DisplayWidgetsTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:203, Modules/Settings/PrinterTab.qml:414, Modules/Settings/DisplayConfigTab.qml:103, Modules/Settings/DisplayConfig/DisplayConfigState.qml:845, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:144", "comment": "" }, { "term": "Named Workspace Icons", "context": "Named Workspace Icons", - "reference": "Modules/Settings/WorkspacesTab.qml:384", + "reference": "Modules/Settings/WorkspacesTab.qml:386", "comment": "" }, { @@ -5354,7 +5576,7 @@ { "term": "Network", "context": "Network", - "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:231, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:833, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:85, Modules/ControlCenter/Models/WidgetModel.qml:101", + "reference": "Services/CupsService.qml:134, Modals/Settings/SettingsSidebar.qml:231, Modules/ProcessList/PerformanceView.qml:112, Modules/Settings/WidgetsTabSection.qml:794, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:229, Modules/ControlCenter/Details/NetworkDetail.qml:85, Modules/ControlCenter/Models/WidgetModel.qml:101", "comment": "" }, { @@ -5384,7 +5606,7 @@ { "term": "Network Speed Monitor", "context": "Network Speed Monitor", - "reference": "Modules/Settings/WidgetsTab.qml:211", + "reference": "Modules/Settings/WidgetsTab.qml:218", "comment": "" }, { @@ -5396,7 +5618,7 @@ { "term": "Network download and upload speed display", "context": "Network download and upload speed display", - "reference": "Modules/Settings/WidgetsTab.qml:212", + "reference": "Modules/Settings/WidgetsTab.qml:219", "comment": "" }, { @@ -5408,7 +5630,7 @@ { "term": "New", "context": "New", - "reference": "Modules/Notepad/NotepadTextEditor.qml:543", + "reference": "Modules/Notepad/NotepadTextEditor.qml:795", "comment": "" }, { @@ -5420,7 +5642,7 @@ { "term": "New Keybind", "context": "New Keybind", - "reference": "Modules/Settings/KeybindsTab.qml:466", + "reference": "Modules/Settings/KeybindsTab.qml:465", "comment": "" }, { @@ -5432,7 +5654,7 @@ { "term": "New York, NY", "context": "New York, NY", - "reference": "Modules/Settings/TimeWeatherTab.qml:531", + "reference": "Modules/Settings/TimeWeatherTab.qml:561", "comment": "" }, { @@ -5450,7 +5672,7 @@ { "term": "Next Transition", "context": "Next Transition", - "reference": "Modules/Settings/GammaControlTab.qml:643", + "reference": "Modules/Settings/ThemeColorsTab.qml:1386, Modules/Settings/GammaControlTab.qml:643", "comment": "" }, { @@ -5480,13 +5702,13 @@ { "term": "Niri Integration", "context": "Niri Integration", - "reference": "Modules/Settings/LauncherTab.qml:359", + "reference": "Modules/Settings/LauncherTab.qml:482", "comment": "" }, { "term": "Niri Layout Overrides", "context": "Niri Layout Overrides", - "reference": "Modules/Settings/ThemeColorsTab.qml:1058", + "reference": "Modules/Settings/ThemeColorsTab.qml:1519", "comment": "" }, { @@ -5510,7 +5732,7 @@ { "term": "No Background", "context": "No Background", - "reference": "Modules/Settings/DankBarTab.qml:1028", + "reference": "Modules/Settings/DankBarTab.qml:1042", "comment": "" }, { @@ -5558,7 +5780,7 @@ { "term": "No Weather Data Available", "context": "No Weather Data Available", - "reference": "Modules/DankDash/WeatherTab.qml:73, Modules/Settings/TimeWeatherTab.qml:570", + "reference": "Modules/DankDash/WeatherTab.qml:74, Modules/Settings/TimeWeatherTab.qml:600", "comment": "" }, { @@ -5573,6 +5795,18 @@ "reference": "Modules/Settings/NetworkTab.qml:332", "comment": "" }, + { + "term": "No app customizations.", + "context": "No app customizations.", + "reference": "Modules/Settings/LauncherTab.qml:1044", + "comment": "" + }, + { + "term": "No apps found", + "context": "No apps found", + "reference": "Modals/DankLauncherV2/ResultsList.qml:485", + "comment": "" + }, { "term": "No battery", "context": "No battery", @@ -5600,7 +5834,7 @@ { "term": "No custom theme file", "context": "no custom theme file status", - "reference": "Modules/Settings/ThemeColorsTab.qml:530", + "reference": "Modules/Settings/ThemeColorsTab.qml:542", "comment": "" }, { @@ -5654,7 +5888,13 @@ { "term": "No files found", "context": "No files found", - "reference": "Modals/Spotlight/FileSearchResults.qml:257", + "reference": "Modals/DankLauncherV2/ResultsList.qml:481", + "comment": "" + }, + { + "term": "No hidden apps.", + "context": "No hidden apps.", + "reference": "Modules/Settings/LauncherTab.qml:934", "comment": "" }, { @@ -5672,19 +5912,25 @@ { "term": "No keybinds found", "context": "No keybinds found", - "reference": "Modules/Settings/KeybindsTab.qml:560", + "reference": "Modules/Settings/KeybindsTab.qml:559", + "comment": "" + }, + { + "term": "No launcher plugins installed.", + "context": "No launcher plugins installed.", + "reference": "Modules/Settings/LauncherTab.qml:800", "comment": "" }, { "term": "No matches", "context": "No matches", - "reference": "Modals/Settings/SettingsSidebar.qml:709, Modules/Notepad/NotepadTextEditor.qml:278", + "reference": "Modals/Settings/SettingsSidebar.qml:750, Modules/Notepad/NotepadTextEditor.qml:382", "comment": "" }, { "term": "No matching processes", "context": "empty state in process list", - "reference": "Modules/ProcessList/ProcessesView.qml:205", + "reference": "Modules/ProcessList/ProcessesView.qml:349", "comment": "" }, { @@ -5693,6 +5939,12 @@ "reference": "Modules/ProcessList/DisksView.qml:335", "comment": "" }, + { + "term": "No plugin results", + "context": "No plugin results", + "reference": "Modals/DankLauncherV2/ResultsList.qml:483", + "comment": "" + }, { "term": "No plugins found", "context": "empty plugin list", @@ -5729,6 +5981,12 @@ "reference": "Modals/Clipboard/ClipboardContent.qml:122", "comment": "" }, + { + "term": "No results found", + "context": "No results found", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:137, dms-plugins/DankGifSearch/DankGifSearch.qml:80, Modals/DankLauncherV2/ResultsList.qml:487", + "comment": "" + }, { "term": "No saved clipboard entries", "context": "No saved clipboard entries", @@ -5744,13 +6002,19 @@ { "term": "No themes installed. Browse themes to install from the registry.", "context": "no registry themes installed hint", - "reference": "Modules/Settings/ThemeColorsTab.qml:929", + "reference": "Modules/Settings/ThemeColorsTab.qml:957", + "comment": "" + }, + { + "term": "No trigger", + "context": "No trigger", + "reference": "Modals/DankLauncherV2/Controller.qml:878, Modules/Settings/LauncherTab.qml:731", "comment": "" }, { "term": "No wallpaper selected", "context": "no wallpaper status", - "reference": "Modules/Settings/ThemeColorsTab.qml:444", + "reference": "Modules/Settings/ThemeColorsTab.qml:456", "comment": "" }, { @@ -5774,7 +6038,7 @@ { "term": "None", "context": "None", - "reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:821, Modules/Settings/DankBarTab.qml:821, Modules/Settings/DankBarTab.qml:858, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", + "reference": "Services/CupsService.qml:769, Modules/Settings/TypographyMotionTab.qml:225, Modules/Settings/DesktopWidgetInstanceCard.qml:258, Modules/Settings/DesktopWidgetInstanceCard.qml:274, Modules/Settings/DankBarTab.qml:835, Modules/Settings/DankBarTab.qml:835, Modules/Settings/DankBarTab.qml:872, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:87, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:100, Modules/Settings/DisplayConfig/HyprlandOutputSettings.qml:104", "comment": "" }, { @@ -5822,13 +6086,13 @@ { "term": "Note: this only changes the percentage, it does not actually limit charging.", "context": "Note: this only changes the percentage, it does not actually limit charging.", - "reference": "Modules/Settings/PowerSleepTab.qml:583", + "reference": "Modules/Settings/PowerSleepTab.qml:588", "comment": "" }, { "term": "Notepad", "context": "Notepad", - "reference": "DMSShell.qml:671, Services/AppSearchService.qml:61, Modules/Settings/WidgetsTab.qml:225", + "reference": "DMSShell.qml:701, Services/AppSearchService.qml:169, Modules/Settings/WidgetsTab.qml:232", "comment": "" }, { @@ -5852,13 +6116,13 @@ { "term": "Notification Center", "context": "Notification Center", - "reference": "Modules/Settings/WidgetsTab.qml:162", + "reference": "Modules/Settings/WidgetsTab.qml:169", "comment": "" }, { "term": "Notification Display", "context": "lock screen notification privacy setting", - "reference": "Modules/Settings/LockScreenTab.qml:82, Modules/Settings/NotificationsTab.qml:183", + "reference": "Modules/Settings/LockScreenTab.qml:90, Modules/Settings/NotificationsTab.qml:183", "comment": "" }, { @@ -5912,7 +6176,7 @@ { "term": "OS Logo", "context": "OS Logo", - "reference": "Modules/Settings/LauncherTab.qml:59", + "reference": "Modules/Settings/DockTab.qml:210, Modules/Settings/LauncherTab.qml:59", "comment": "" }, { @@ -5936,7 +6200,7 @@ { "term": "Office", "context": "Office", - "reference": "Services/AppSearchService.qml:465, Services/AppSearchService.qml:466, Services/AppSearchService.qml:467, Services/AppSearchService.qml:468", + "reference": "Services/AppSearchService.qml:625, Services/AppSearchService.qml:626, Services/AppSearchService.qml:627, Services/AppSearchService.qml:628", "comment": "" }, { @@ -5984,19 +6248,19 @@ { "term": "Only visible if hibernate is supported by your system", "context": "Only visible if hibernate is supported by your system", - "reference": "Modules/Settings/PowerSleepTab.qml:430", + "reference": "Modules/Settings/PowerSleepTab.qml:436", "comment": "" }, { "term": "Opacity", "context": "Opacity", - "reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1110, Modules/Settings/DankBarTab.qml:1258, Modules/Settings/DankBarTab.qml:1346", + "reference": "Modals/DankColorPickerModal.qml:468, Modules/Settings/DankBarTab.qml:1124, Modules/Settings/DankBarTab.qml:1274, Modules/Settings/DankBarTab.qml:1362", "comment": "" }, { "term": "Open", "context": "Open", - "reference": "Modules/Notepad/NotepadTextEditor.qml:527, Modules/Settings/NetworkTab.qml:1176, Modules/Settings/NetworkTab.qml:1414, Modules/ControlCenter/Details/NetworkDetail.qml:595", + "reference": "Modals/DankLauncherV2/Controller.qml:740, Modals/DankLauncherV2/Controller.qml:744, Modals/DankLauncherV2/Controller.qml:748, Modules/Notepad/NotepadTextEditor.qml:779, Modules/Settings/NetworkTab.qml:1176, Modules/Settings/NetworkTab.qml:1414, Modules/ControlCenter/Details/NetworkDetail.qml:595", "comment": "" }, { @@ -6014,7 +6278,19 @@ { "term": "Open Notepad File", "context": "Open Notepad File", - "reference": "Modules/Notepad/Notepad.qml:338", + "reference": "Modules/Notepad/Notepad.qml:333", + "comment": "" + }, + { + "term": "Open folder", + "context": "Open folder", + "reference": "Modals/DankLauncherV2/Controller.qml:748", + "comment": "" + }, + { + "term": "Open in Browser", + "context": "Open in Browser", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:203, dms-plugins/DankGifSearch/DankGifSearch.qml:146", "comment": "" }, { @@ -6026,7 +6302,7 @@ { "term": "Open with...", "context": "Open with...", - "reference": "DMSShell.qml:539, Modals/BrowserPickerModal.qml:11", + "reference": "DMSShell.qml:552, Modals/BrowserPickerModal.qml:11", "comment": "" }, { @@ -6083,6 +6359,12 @@ "reference": "Services/CupsService.qml:770", "comment": "" }, + { + "term": "Outline", + "context": "outline color", + "reference": "Modules/Settings/LauncherTab.qml:466", + "comment": "" + }, { "term": "Output Area Almost Full", "context": "Output Area Almost Full", @@ -6122,19 +6404,19 @@ { "term": "Override Border Size", "context": "Override Border Size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1130, Modules/Settings/ThemeColorsTab.qml:1233, Modules/Settings/ThemeColorsTab.qml:1336", + "reference": "Modules/Settings/ThemeColorsTab.qml:1591, Modules/Settings/ThemeColorsTab.qml:1694, Modules/Settings/ThemeColorsTab.qml:1797", "comment": "" }, { "term": "Override Corner Radius", "context": "Override Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1099, Modules/Settings/ThemeColorsTab.qml:1202, Modules/Settings/ThemeColorsTab.qml:1305", + "reference": "Modules/Settings/ThemeColorsTab.qml:1560, Modules/Settings/ThemeColorsTab.qml:1663, Modules/Settings/ThemeColorsTab.qml:1766", "comment": "" }, { "term": "Override Gaps", "context": "Override Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1067, Modules/Settings/ThemeColorsTab.qml:1170, Modules/Settings/ThemeColorsTab.qml:1273", + "reference": "Modules/Settings/ThemeColorsTab.qml:1528, Modules/Settings/ThemeColorsTab.qml:1631, Modules/Settings/ThemeColorsTab.qml:1734", "comment": "" }, { @@ -6173,10 +6455,16 @@ "reference": "Modals/WifiPasswordModal.qml:181", "comment": "" }, + { + "term": "Pad Hours", + "context": "Pad Hours", + "reference": "Modules/Settings/TimeWeatherTab.qml:57", + "comment": "" + }, { "term": "Padding", "context": "Padding", - "reference": "Modules/Settings/DockTab.qml:192", + "reference": "Modules/Settings/DockTab.qml:442", "comment": "" }, { @@ -6290,13 +6578,13 @@ { "term": "Percentage", "context": "Percentage", - "reference": "Modules/Settings/WidgetsTab.qml:118", + "reference": "Modules/Settings/WidgetsTab.qml:125", "comment": "" }, { "term": "Performance", "context": "Performance", - "reference": "Modals/ProcessListModal.qml:266", + "reference": "Modals/ProcessListModal.qml:307", "comment": "" }, { @@ -6308,7 +6596,7 @@ { "term": "Personalization", "context": "Personalization", - "reference": "Modals/Settings/SettingsSidebar.qml:70", + "reference": "Modals/Settings/SettingsSidebar.qml:70, Modals/Settings/SettingsSidebar.qml:529", "comment": "" }, { @@ -6326,7 +6614,7 @@ { "term": "Pin to Dock", "context": "Pin to Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:102, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:96, Modules/Dock/DockContextMenu.qml:379, Modules/DankBar/Widgets/AppsDockContextMenu.qml:307", "comment": "" }, { @@ -6350,7 +6638,13 @@ { "term": "Pinned", "context": "Pinned", - "reference": "Modules/ControlCenter/Details/BluetoothDetail.qml:346, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:268, Modules/ControlCenter/Details/AudioOutputDetail.qml:280, Modules/ControlCenter/Details/NetworkDetail.qml:669", + "reference": "Modals/DankLauncherV2/Controller.qml:104, Modules/ControlCenter/Details/BluetoothDetail.qml:346, Modules/ControlCenter/Details/BrightnessDetail.qml:207, Modules/ControlCenter/Details/AudioInputDetail.qml:268, Modules/ControlCenter/Details/AudioOutputDetail.qml:280, Modules/ControlCenter/Details/NetworkDetail.qml:669", + "comment": "" + }, + { + "term": "Pinned and running apps with drag-and-drop", + "context": "Pinned and running apps with drag-and-drop", + "reference": "Modules/Settings/WidgetsTab.qml:74", "comment": "" }, { @@ -6410,7 +6704,7 @@ { "term": "Plugin", "context": "Plugin", - "reference": "Modules/Settings/DesktopWidgetBrowser.qml:370, Modules/ControlCenter/Models/WidgetModel.qml:238", + "reference": "Modals/DankLauncherV2/ResultItem.qml:169, Modules/Settings/DesktopWidgetBrowser.qml:370, Modules/ControlCenter/Models/WidgetModel.qml:238", "comment": "" }, { @@ -6425,16 +6719,22 @@ "reference": "Modules/Settings/PluginsTab.qml:71", "comment": "" }, + { + "term": "Plugin Visibility", + "context": "Plugin Visibility", + "reference": "Modules/Settings/LauncherTab.qml:592", + "comment": "" + }, { "term": "Plugin is disabled - enable in Plugins settings to use", "context": "Plugin is disabled - enable in Plugins settings to use", - "reference": "Modules/Settings/WidgetsTab.qml:262", + "reference": "Modules/Settings/WidgetsTab.qml:269", "comment": "" }, { "term": "Plugins", "context": "greeter feature card title | greeter plugins link", - "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/Settings/SettingsSidebar.qml:280, Modules/Settings/AboutTab.qml:278, Modules/Settings/AboutTab.qml:286", + "reference": "Modals/Greeter/GreeterWelcomePage.qml:122, Modals/Greeter/GreeterCompletePage.qml:476, Modals/DankLauncherV2/LauncherContent.qml:321, Modals/Settings/SettingsSidebar.qml:280, Modules/Settings/AboutTab.qml:281, Modules/Settings/AboutTab.qml:289", "comment": "" }, { @@ -6452,7 +6752,7 @@ { "term": "Popup Transparency", "context": "Popup Transparency", - "reference": "Modules/Settings/ThemeColorsTab.qml:1030", + "reference": "Modules/Settings/ThemeColorsTab.qml:1491", "comment": "" }, { @@ -6464,7 +6764,7 @@ { "term": "Position", "context": "Position", - "reference": "Modules/Settings/DockTab.qml:30, Modules/Settings/DankBarTab.qml:617, Modules/Settings/DisplayConfig/DisplayConfigState.qml:852", + "reference": "Modules/Settings/DockTab.qml:30, Modules/Settings/DankBarTab.qml:631, Modules/Settings/DisplayConfig/DisplayConfigState.qml:852", "comment": "" }, { @@ -6476,19 +6776,19 @@ { "term": "Possible Override Conflicts", "context": "Possible Override Conflicts", - "reference": "Modules/Settings/KeybindsTab.qml:311", + "reference": "Modules/Settings/KeybindsTab.qml:310", "comment": "" }, { "term": "Power", "context": "Power", - "reference": "Modules/Settings/WidgetsTab.qml:246, Modules/ControlCenter/Details/BatteryDetail.qml:72", + "reference": "Modules/Settings/WidgetsTab.qml:253, Modules/ControlCenter/Details/BatteryDetail.qml:72", "comment": "" }, { "term": "Power & Security", "context": "Power & Security", - "reference": "Modals/Settings/SettingsSidebar.qml:260", + "reference": "Modals/Settings/SettingsSidebar.qml:260, Modals/Settings/SettingsSidebar.qml:517", "comment": "" }, { @@ -6500,13 +6800,13 @@ { "term": "Power Action Confirmation", "context": "Power Action Confirmation", - "reference": "Modules/Settings/PowerSleepTab.qml:460", + "reference": "Modules/Settings/PowerSleepTab.qml:466", "comment": "" }, { "term": "Power Menu Customization", "context": "Power Menu Customization", - "reference": "Modules/Settings/PowerSleepTab.qml:347", + "reference": "Modules/Settings/PowerSleepTab.qml:353", "comment": "" }, { @@ -6536,7 +6836,7 @@ { "term": "Power off monitors on lock", "context": "Power off monitors on lock", - "reference": "Modules/Settings/LockScreenTab.qml:137", + "reference": "Modules/Settings/LockScreenTab.qml:145", "comment": "" }, { @@ -6560,7 +6860,7 @@ { "term": "Precipitation Chance", "context": "Precipitation Chance", - "reference": "Modules/DankDash/WeatherForecastCard.qml:87", + "reference": "Modules/DankDash/WeatherForecastCard.qml:94", "comment": "" }, { @@ -6584,19 +6884,25 @@ { "term": "Pressure", "context": "Pressure", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449, Modules/DankDash/WeatherForecastCard.qml:82, Modules/Settings/TimeWeatherTab.qml:941", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:449, Modules/DankDash/WeatherForecastCard.qml:89, Modules/Settings/TimeWeatherTab.qml:982", "comment": "" }, { "term": "Prevent screen timeout", "context": "Prevent screen timeout", - "reference": "Modules/Settings/WidgetsTab.qml:184, Modules/ControlCenter/Models/WidgetModel.qml:94", + "reference": "Modules/Settings/WidgetsTab.qml:191, Modules/ControlCenter/Models/WidgetModel.qml:94", + "comment": "" + }, + { + "term": "Preview", + "context": "Preview", + "reference": "Modules/Notepad/NotepadTextEditor.qml:813", "comment": "" }, { "term": "Primary", - "context": "Primary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/LauncherTab.qml:179, Modules/Settings/WorkspacesTab.qml:336, Modules/Settings/NetworkTab.qml:220, Modules/Settings/Widgets/SettingsColorPicker.qml:42", + "context": "primary color", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:39, Modules/Settings/DockTab.qml:297, Modules/Settings/LauncherTab.qml:179, Modules/Settings/LauncherTab.qml:466, Modules/Settings/WorkspacesTab.qml:338, Modules/Settings/NetworkTab.qml:220, Modules/Settings/Widgets/SettingsColorPicker.qml:42", "comment": "" }, { @@ -6614,7 +6920,7 @@ { "term": "Printer", "context": "Printer", - "reference": "Modules/Settings/WidgetsTabSection.qml:883", + "reference": "Modules/Settings/WidgetsTabSection.qml:844", "comment": "" }, { @@ -6656,7 +6962,7 @@ { "term": "Privacy Indicator", "context": "Privacy Indicator", - "reference": "Modules/Settings/WidgetsTab.qml:148", + "reference": "Modules/Settings/WidgetsTab.qml:155", "comment": "" }, { @@ -6674,13 +6980,13 @@ { "term": "Processes", "context": "Processes", - "reference": "Modals/ProcessListModal.qml:262, Modules/ProcessList/ProcessListPopout.qml:124, Modules/ProcessList/SystemView.qml:88", + "reference": "Modals/ProcessListModal.qml:303, Modules/ProcessList/ProcessListPopout.qml:137, Modules/ProcessList/SystemView.qml:88", "comment": "" }, { "term": "Processes:", "context": "process count label in footer", - "reference": "Modals/ProcessListModal.qml:412", + "reference": "Modals/ProcessListModal.qml:455", "comment": "" }, { @@ -6716,13 +7022,13 @@ { "term": "Quick access to color picker", "context": "Quick access to color picker", - "reference": "Modules/Settings/WidgetsTab.qml:233", + "reference": "Modules/Settings/WidgetsTab.qml:240", "comment": "" }, { "term": "Quick access to notepad", "context": "Quick access to notepad", - "reference": "Modules/Settings/WidgetsTab.qml:226", + "reference": "Modules/Settings/WidgetsTab.qml:233", "comment": "" }, { @@ -6746,7 +7052,7 @@ { "term": "Rain Chance", "context": "Rain Chance", - "reference": "Modules/Settings/TimeWeatherTab.qml:991", + "reference": "Modules/Settings/TimeWeatherTab.qml:1032", "comment": "" }, { @@ -6782,7 +7088,7 @@ { "term": "Recently Used Apps", "context": "Recently Used Apps", - "reference": "Modules/Settings/LauncherTab.qml:469", + "reference": "Modules/Settings/LauncherTab.qml:1057", "comment": "" }, { @@ -6800,7 +7106,7 @@ { "term": "Refresh Weather", "context": "Refresh Weather", - "reference": "Modules/DankDash/WeatherTab.qml:102, Modules/DankDash/WeatherTab.qml:852", + "reference": "Modules/DankDash/WeatherTab.qml:103, Modules/DankDash/WeatherTab.qml:857", "comment": "" }, { @@ -6836,7 +7142,19 @@ { "term": "Remove gaps and border when windows are maximized", "context": "Remove gaps and border when windows are maximized", - "reference": "Modules/Settings/DankBarTab.qml:801", + "reference": "Modules/Settings/DankBarTab.qml:815", + "comment": "" + }, + { + "term": "Rename", + "context": "Rename", + "reference": "Modals/WorkspaceRenameModal.qml:184", + "comment": "" + }, + { + "term": "Rename Workspace", + "context": "Rename Workspace", + "reference": "Modals/WorkspaceRenameModal.qml:14", "comment": "" }, { @@ -6866,7 +7184,7 @@ { "term": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", "context": "Require holding button/key to confirm power off, restart, suspend, hibernate and logout", - "reference": "Modules/Settings/PowerSleepTab.qml:467", + "reference": "Modules/Settings/PowerSleepTab.qml:473", "comment": "" }, { @@ -6878,7 +7196,7 @@ { "term": "Requires 'dgop' tool", "context": "Requires 'dgop' tool", - "reference": "Modules/Settings/WidgetsTab.qml:105, Modules/Settings/WidgetsTab.qml:113, Modules/Settings/WidgetsTab.qml:121, Modules/Settings/WidgetsTab.qml:129, Modules/Settings/WidgetsTab.qml:136, Modules/Settings/WidgetsTab.qml:214, Modules/ControlCenter/Models/WidgetModel.qml:174", + "reference": "Modules/Settings/WidgetsTab.qml:112, Modules/Settings/WidgetsTab.qml:120, Modules/Settings/WidgetsTab.qml:128, Modules/Settings/WidgetsTab.qml:136, Modules/Settings/WidgetsTab.qml:143, Modules/Settings/WidgetsTab.qml:221, Modules/ControlCenter/Models/WidgetModel.qml:174", "comment": "" }, { @@ -6902,19 +7220,19 @@ { "term": "Reset", "context": "Reset", - "reference": "Modules/Settings/WidgetsTab.qml:798, Modules/ControlCenter/Components/EditControls.qml:232", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:814, Modules/Settings/WidgetsTab.qml:805, Modules/ControlCenter/Components/EditControls.qml:232", "comment": "" }, { "term": "Reset Position", "context": "Reset Position", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:124, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108", + "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:416, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:135, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:108", "comment": "" }, { "term": "Reset Size", "context": "Reset Size", - "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:138, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122", + "reference": "Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:430, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:149, Modules/Settings/DesktopWidgetSettings/PluginDesktopWidgetSettings.qml:122", "comment": "" }, { @@ -6944,7 +7262,7 @@ { "term": "Restart the DankMaterialShell", "context": "Restart the DankMaterialShell", - "reference": "Modules/Settings/PowerSleepTab.qml:425", + "reference": "Modules/Settings/PowerSleepTab.qml:431", "comment": "" }, { @@ -6974,13 +7292,13 @@ { "term": "Right", "context": "Right", - "reference": "Modules/Settings/DankBarTab.qml:386, Modules/Settings/DankBarTab.qml:628", + "reference": "Modules/Settings/DankBarTab.qml:392, Modules/Settings/DankBarTab.qml:642", "comment": "" }, { "term": "Right Section", "context": "Right Section", - "reference": "Modules/Settings/WidgetsTab.qml:962", + "reference": "Modules/Settings/WidgetsTab.qml:969", "comment": "" }, { @@ -7028,19 +7346,19 @@ { "term": "Rounded corners for windows", "context": "Rounded corners for windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1116", + "reference": "Modules/Settings/ThemeColorsTab.qml:1577", "comment": "" }, { "term": "Rounded corners for windows (border_radius)", "context": "Rounded corners for windows (border_radius)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1322", + "reference": "Modules/Settings/ThemeColorsTab.qml:1783", "comment": "" }, { "term": "Rounded corners for windows (decoration.rounding)", "context": "Rounded corners for windows (decoration.rounding)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1219", + "reference": "Modules/Settings/ThemeColorsTab.qml:1680", "comment": "" }, { @@ -7052,13 +7370,13 @@ { "term": "Run DMS Templates", "context": "Run DMS Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1620", + "reference": "Modules/Settings/ThemeColorsTab.qml:2081", "comment": "" }, { "term": "Run User Templates", "context": "Run User Templates", - "reference": "Modules/Settings/ThemeColorsTab.qml:1610", + "reference": "Modules/Settings/ThemeColorsTab.qml:2071", "comment": "" }, { @@ -7112,13 +7430,13 @@ { "term": "Save", "context": "Save", - "reference": "Modals/DankColorPickerModal.qml:704, Widgets/KeybindItem.qml:1319, Widgets/KeybindItem.qml:1685, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Notepad/NotepadTextEditor.qml:511, Modules/Notepad/Notepad.qml:492", + "reference": "Modals/DankColorPickerModal.qml:704, Widgets/KeybindItem.qml:1319, Widgets/KeybindItem.qml:1685, Modals/DankLauncherV2/LauncherContent.qml:862, Modals/FileBrowser/FileBrowserSaveRow.qml:55, Modules/Notepad/NotepadTextEditor.qml:763, Modules/Notepad/Notepad.qml:472", "comment": "" }, { "term": "Save Notepad File", "context": "Save Notepad File", - "reference": "Modules/Notepad/Notepad.qml:272", + "reference": "Modules/Notepad/Notepad.qml:267", "comment": "" }, { @@ -7154,7 +7472,7 @@ { "term": "Saved", "context": "Saved", - "reference": "Modules/Notepad/NotepadTextEditor.qml:591, Modules/Settings/NetworkTab.qml:1189, Modules/ControlCenter/Details/NetworkDetail.qml:601", + "reference": "Modals/Clipboard/ClipboardHeader.qml:52, Modules/Notepad/NotepadTextEditor.qml:861, Modules/Settings/NetworkTab.qml:1189, Modules/ControlCenter/Details/NetworkDetail.qml:601", "comment": "" }, { @@ -7166,7 +7484,7 @@ { "term": "Saved item deleted", "context": "Saved item deleted", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:209", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:196", "comment": "" }, { @@ -7178,7 +7496,7 @@ { "term": "Scale DankBar font sizes independently", "context": "Scale DankBar font sizes independently", - "reference": "Modules/Settings/DankBarTab.qml:1440", + "reference": "Modules/Settings/DankBarTab.qml:1456", "comment": "" }, { @@ -7208,25 +7526,25 @@ { "term": "Science", "context": "Science", - "reference": "Services/AppSearchService.qml:469", + "reference": "Services/AppSearchService.qml:629", "comment": "" }, { "term": "Screen Sharing", "context": "Screen Sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:888", + "reference": "Modules/Settings/WidgetsTabSection.qml:849", "comment": "" }, { "term": "Screen sharing", "context": "Screen sharing", - "reference": "Modules/Settings/WidgetsTabSection.qml:1168", + "reference": "Modules/Settings/WidgetsTabSection.qml:1129", "comment": "" }, { "term": "Scroll Wheel", "context": "Scroll Wheel", - "reference": "Modules/Settings/MediaPlayerTab.qml:56, Modules/Settings/DankBarTab.qml:811", + "reference": "Modules/Settings/MediaPlayerTab.qml:56, Modules/Settings/DankBarTab.qml:825", "comment": "" }, { @@ -7253,22 +7571,22 @@ "reference": "Modules/DankBar/Popouts/DWLLayoutPopout.qml:52", "comment": "" }, + { + "term": "Search App Actions", + "context": "Search App Actions", + "reference": "Modules/Settings/LauncherTab.qml:818", + "comment": "" + }, + { + "term": "Search Options", + "context": "Search Options", + "reference": "Modules/Settings/LauncherTab.qml:812", + "comment": "" + }, { "term": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "context": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:209", - "comment": "" - }, - { - "term": "Search file contents", - "context": "Search file contents", - "reference": "Modals/Spotlight/SpotlightContent.qml:451", - "comment": "" - }, - { - "term": "Search filenames", - "context": "Search filenames", - "reference": "Modals/Spotlight/SpotlightContent.qml:409", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:217", "comment": "" }, { @@ -7280,13 +7598,13 @@ { "term": "Search keybinds...", "context": "Search keybinds...", - "reference": "Modules/Settings/KeybindsTab.qml:240", + "reference": "Modules/Settings/KeybindsTab.qml:239", "comment": "" }, { "term": "Search keyboard shortcuts from your compositor and applications", "context": "Search keyboard shortcuts from your compositor and applications", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:74", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:78", "comment": "" }, { @@ -7298,7 +7616,7 @@ { "term": "Search processes...", "context": "process search placeholder", - "reference": "Modals/ProcessListModal.qml:333", + "reference": "Modals/ProcessListModal.qml:374", "comment": "" }, { @@ -7316,19 +7634,19 @@ { "term": "Search...", "context": "Search...", - "reference": "Widgets/DankDropdown.qml:268, Modals/Settings/SettingsSidebar.qml:548, Modules/ProcessList/ProcessListPopout.qml:140", + "reference": "Widgets/DankDropdown.qml:268, Modals/Settings/SettingsSidebar.qml:589, Modules/ProcessList/ProcessListPopout.qml:153", "comment": "" }, { "term": "Searching...", "context": "Searching...", - "reference": "Modals/Spotlight/FileSearchResults.qml:251", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:124, dms-plugins/DankGifSearch/DankGifSearch.qml:67", "comment": "" }, { "term": "Secondary", - "context": "Secondary", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/WorkspacesTab.qml:336, Modules/Settings/Widgets/SettingsColorPicker.qml:47", + "context": "secondary color", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:43, Modules/Settings/LauncherTab.qml:466, Modules/Settings/WorkspacesTab.qml:338, Modules/Settings/Widgets/SettingsColorPicker.qml:47", "comment": "" }, { @@ -7349,6 +7667,12 @@ "reference": "Modals/Greeter/GreeterWelcomePage.qml:159", "comment": "" }, + { + "term": "Select", + "context": "Select", + "reference": "Modals/DankLauncherV2/Controller.qml:1010", + "comment": "" + }, { "term": "Select Application", "context": "Select Application", @@ -7358,13 +7682,19 @@ { "term": "Select Bar", "context": "Select Bar", - "reference": "Modules/Settings/WidgetsTab.qml:714", + "reference": "Modules/Settings/WidgetsTab.qml:721", "comment": "" }, { "term": "Select Custom Theme", "context": "custom theme file browser title", - "reference": "Modules/Settings/ThemeColorsTab.qml:2027", + "reference": "Modules/Settings/ThemeColorsTab.qml:2500", + "comment": "" + }, + { + "term": "Select File to Send", + "context": "KDE Connect file browser title", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:101", "comment": "" }, { @@ -7418,7 +7748,7 @@ { "term": "Select at least one provider", "context": "Select at least one provider", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:170", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:178", "comment": "" }, { @@ -7466,13 +7796,13 @@ { "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:478", + "reference": "Modules/Settings/ThemeColorsTab.qml:490", "comment": "" }, { "term": "Select which keybind providers to include", "context": "Select which keybind providers to include", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:145", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:151", "comment": "" }, { @@ -7505,16 +7835,28 @@ "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:128, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:297", "comment": "" }, + { + "term": "Send File", + "context": "KDE Connect send file button", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:91", + "comment": "" + }, { "term": "Send SMS", "context": "KDE Connect SMS dialog title", "reference": "dms-plugins/DankKDEConnect/components/SmsDialog.qml:28", "comment": "" }, + { + "term": "Sending", + "context": "KDE Connect file send", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:353", + "comment": "" + }, { "term": "Separator", "context": "Separator", - "reference": "Modules/Settings/WidgetsTab.qml:204", + "reference": "Modules/Settings/WidgetsTab.qml:211", "comment": "" }, { @@ -7544,7 +7886,7 @@ { "term": "Settings", "context": "settings window title", - "reference": "Services/AppSearchService.qml:50, Services/AppSearchService.qml:83, Services/AppSearchService.qml:470, Services/PopoutService.qml:277, Services/PopoutService.qml:294, Modals/Settings/SettingsSidebar.qml:113, Modals/Settings/SettingsModal.qml:81, Modals/Settings/SettingsModal.qml:221, Modules/DankDash/DankDashPopout.qml:293", + "reference": "Services/AppSearchService.qml:158, Services/AppSearchService.qml:191, Services/AppSearchService.qml:630, Services/PopoutService.qml:278, Services/PopoutService.qml:295, Modals/Settings/SettingsSidebar.qml:113, Modals/Settings/SettingsModal.qml:81, Modals/Settings/SettingsModal.qml:221, Modules/DankDash/DankDashPopout.qml:293", "comment": "" }, { @@ -7556,31 +7898,43 @@ { "term": "Setup", "context": "Setup", - "reference": "Modules/Settings/ThemeColorsTab.qml:1472, Modules/Settings/KeybindsTab.qml:347, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:77", + "reference": "Modules/Settings/ThemeColorsTab.qml:1933, Modules/Settings/KeybindsTab.qml:346, Modules/Settings/DisplayConfig/IncludeWarningBox.qml:77", "comment": "" }, { "term": "Shadow", "context": "bar shadow settings card", - "reference": "Modules/Settings/DankBarTab.qml:1091", + "reference": "Modules/Settings/DankBarTab.qml:1105", "comment": "" }, { "term": "Share", - "context": "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:31, dms-plugins/DankKDEConnect/components/ShareDialog.qml:74, dms-plugins/DankKDEConnect/components/DeviceCard.qml:137", + "context": "KDE Connect share dialog title | KDE Connect share tooltip", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:34, dms-plugins/DankKDEConnect/components/DeviceCard.qml:137", + "comment": "" + }, + { + "term": "Share Gamma Control Settings", + "context": "Share Gamma Control Settings", + "reference": "Modules/Settings/ThemeColorsTab.qml:1011", + "comment": "" + }, + { + "term": "Share Text", + "context": "KDE Connect share button", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", "comment": "" }, { "term": "Share URL", "context": "KDE Connect share URL button", - "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:74", + "reference": "dms-plugins/DankKDEConnect/components/ShareDialog.qml:81", "comment": "" }, { "term": "Shared", "context": "KDE Connect share success", - "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:331, dms-plugins/DankKDEConnect/DankKDEConnect.qml:339", + "reference": "dms-plugins/DankKDEConnect/DankKDEConnect.qml:332, dms-plugins/DankKDEConnect/DankKDEConnect.qml:340", "comment": "" }, { @@ -7595,6 +7949,12 @@ "reference": "Modals/Clipboard/ClipboardKeyboardHints.qml:9", "comment": "" }, + { + "term": "Shift+Enter to paste", + "context": "Shift+Enter to paste", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:155, dms-plugins/DankGifSearch/DankGifSearch.qml:98", + "comment": "" + }, { "term": "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close", "context": "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close", @@ -7610,13 +7970,13 @@ { "term": "Shortcuts", "context": "Shortcuts", - "reference": "Modules/Settings/KeybindsTab.qml:522", + "reference": "Modules/Settings/KeybindsTab.qml:521", "comment": "" }, { "term": "Shortcuts (%1)", "context": "Shortcuts (%1)", - "reference": "Modules/Settings/KeybindsTab.qml:522", + "reference": "Modules/Settings/KeybindsTab.qml:521", "comment": "" }, { @@ -7646,7 +8006,7 @@ { "term": "Show Date", "context": "Show Date", - "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:79, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:33", + "reference": "Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:90, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:33", "comment": "" }, { @@ -7667,6 +8027,12 @@ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:84", "comment": "" }, + { + "term": "Show Footer", + "context": "launcher footer visibility", + "reference": "Modules/Settings/LauncherTab.qml:411", + "comment": "" + }, { "term": "Show Forecast", "context": "Show Forecast", @@ -7688,7 +8054,7 @@ { "term": "Show Hibernate", "context": "Show Hibernate", - "reference": "Modules/Settings/PowerSleepTab.qml:429", + "reference": "Modules/Settings/PowerSleepTab.qml:435", "comment": "" }, { @@ -7709,6 +8075,12 @@ "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeatherSettings.qml:90", "comment": "" }, + { + "term": "Show Launcher Button", + "context": "Show Launcher Button", + "reference": "Modules/Settings/DockTab.qml:176", + "comment": "" + }, { "term": "Show Line Numbers", "context": "Show Line Numbers", @@ -7724,13 +8096,19 @@ { "term": "Show Lock", "context": "Show Lock", - "reference": "Modules/Settings/PowerSleepTab.qml:416", + "reference": "Modules/Settings/PowerSleepTab.qml:422", "comment": "" }, { "term": "Show Log Out", "context": "Show Log Out", - "reference": "Modules/Settings/PowerSleepTab.qml:408", + "reference": "Modules/Settings/PowerSleepTab.qml:414", + "comment": "" + }, + { + "term": "Show Media Player", + "context": "Enable media player controls on the lock screen window", + "reference": "Modules/Settings/LockScreenTab.qml:82", "comment": "" }, { @@ -7778,7 +8156,7 @@ { "term": "Show Power Off", "context": "Show Power Off", - "reference": "Modules/Settings/PowerSleepTab.qml:412", + "reference": "Modules/Settings/PowerSleepTab.qml:418", "comment": "" }, { @@ -7802,19 +8180,19 @@ { "term": "Show Reboot", "context": "Show Reboot", - "reference": "Modules/Settings/PowerSleepTab.qml:404", + "reference": "Modules/Settings/PowerSleepTab.qml:410", "comment": "" }, { "term": "Show Restart DMS", "context": "Show Restart DMS", - "reference": "Modules/Settings/PowerSleepTab.qml:424", + "reference": "Modules/Settings/PowerSleepTab.qml:430", "comment": "" }, { "term": "Show Seconds", "context": "Show Seconds", - "reference": "Modules/Settings/TimeWeatherTab.qml:47, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27", + "reference": "Modules/Settings/TimeWeatherTab.qml:47, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:71, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:82, PLUGINS/ExampleDesktopClock/DesktopClockSettings.qml:27", "comment": "" }, { @@ -7826,7 +8204,7 @@ { "term": "Show Suspend", "context": "Show Suspend", - "reference": "Modules/Settings/PowerSleepTab.qml:420", + "reference": "Modules/Settings/PowerSleepTab.qml:426", "comment": "" }, { @@ -7862,7 +8240,7 @@ { "term": "Show Welcome", "context": "Show Welcome", - "reference": "Modules/Settings/AboutTab.qml:786", + "reference": "Modules/Settings/AboutTab.qml:799", "comment": "" }, { @@ -7886,7 +8264,7 @@ { "term": "Show an outline ring around the focused workspace indicator", "context": "Show an outline ring around the focused workspace indicator", - "reference": "Modules/Settings/WorkspacesTab.qml:322", + "reference": "Modules/Settings/WorkspacesTab.qml:324", "comment": "" }, { @@ -7898,7 +8276,7 @@ { "term": "Show darkened overlay behind modal dialogs", "context": "Show darkened overlay behind modal dialogs", - "reference": "Modules/Settings/ThemeColorsTab.qml:1375", + "reference": "Modules/Settings/ThemeColorsTab.qml:1836", "comment": "" }, { @@ -7910,13 +8288,19 @@ { "term": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", "context": "Show launcher overlay when typing in Niri overview. Disable to use another launcher.", - "reference": "Modules/Settings/LauncherTab.qml:375", + "reference": "Modules/Settings/LauncherTab.qml:498", + "comment": "" + }, + { + "term": "Show mode tabs and keyboard hints at the bottom.", + "context": "launcher footer description", + "reference": "Modules/Settings/LauncherTab.qml:412", "comment": "" }, { "term": "Show on Last Display", "context": "Show on Last Display", - "reference": "Modules/Settings/DisplayWidgetsTab.qml:421, Modules/Settings/DankBarTab.qml:548", + "reference": "Modules/Settings/DisplayWidgetsTab.qml:421, Modules/Settings/DankBarTab.qml:562", "comment": "" }, { @@ -7928,7 +8312,7 @@ { "term": "Show on Overview", "context": "Show on Overview", - "reference": "Modules/Settings/DockTab.qml:118, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:787", + "reference": "Modules/Settings/DockTab.qml:118, Modules/Settings/DesktopWidgetInstanceCard.qml:312, Modules/Settings/DankBarTab.qml:801", "comment": "" }, { @@ -8006,7 +8390,7 @@ { "term": "Show weather information in top bar and control center", "context": "Show weather information in top bar and control center", - "reference": "Modules/Settings/TimeWeatherTab.qml:339", + "reference": "Modules/Settings/TimeWeatherTab.qml:350", "comment": "" }, { @@ -8042,13 +8426,13 @@ { "term": "Shows when caps lock is active", "context": "Shows when caps lock is active", - "reference": "Modules/Settings/WidgetsTab.qml:191", + "reference": "Modules/Settings/WidgetsTab.qml:198", "comment": "" }, { "term": "Shows when microphone, camera, or screen sharing is active", "context": "Shows when microphone, camera, or screen sharing is active", - "reference": "Modules/Settings/WidgetsTab.qml:149", + "reference": "Modules/Settings/WidgetsTab.qml:156", "comment": "" }, { @@ -8071,20 +8455,20 @@ }, { "term": "Size", - "context": "Size", - "reference": "Modules/Settings/DankBarTab.qml:941", + "context": "launcher size option", + "reference": "Modules/Settings/LauncherTab.qml:367, Modules/Settings/DankBarTab.qml:955", "comment": "" }, { "term": "Size Offset", "context": "Size Offset", - "reference": "Modules/Settings/LauncherTab.qml:255", + "reference": "Modules/Settings/DockTab.qml:373, Modules/Settings/LauncherTab.qml:255", "comment": "" }, { "term": "Sizing", "context": "Sizing", - "reference": "Modules/Settings/DockTab.qml:170", + "reference": "Modules/Settings/DockTab.qml:420", "comment": "" }, { @@ -8099,6 +8483,12 @@ "reference": "Modals/Greeter/GreeterModal.qml:230", "comment": "" }, + { + "term": "Small", + "context": "Small", + "reference": "Modules/Settings/WidgetsTabSection.qml:1305", + "comment": "" + }, { "term": "Smartcard Authentication", "context": "Smartcard Authentication", @@ -8150,31 +8540,31 @@ { "term": "Space between windows", "context": "Space between windows", - "reference": "Modules/Settings/ThemeColorsTab.qml:1085", + "reference": "Modules/Settings/ThemeColorsTab.qml:1546", "comment": "" }, { "term": "Space between windows (gappih/gappiv/gappoh/gappov)", "context": "Space between windows (gappih/gappiv/gappoh/gappov)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1291", + "reference": "Modules/Settings/ThemeColorsTab.qml:1752", "comment": "" }, { "term": "Space between windows (gaps_in and gaps_out)", "context": "Space between windows (gaps_in and gaps_out)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1188", + "reference": "Modules/Settings/ThemeColorsTab.qml:1649", "comment": "" }, { "term": "Spacer", "context": "Spacer", - "reference": "Modules/Settings/WidgetsTab.qml:197", + "reference": "Modules/Settings/WidgetsTab.qml:204", "comment": "" }, { "term": "Spacing", "context": "Spacing", - "reference": "Modules/Settings/DockTab.qml:188, Modules/Settings/DankBarTab.qml:895", + "reference": "Modules/Settings/DockTab.qml:438, Modules/Settings/DankBarTab.qml:909", "comment": "" }, { @@ -8198,7 +8588,7 @@ { "term": "Square Corners", "context": "Square Corners", - "reference": "Modules/Settings/DankBarTab.qml:1020", + "reference": "Modules/Settings/DankBarTab.qml:1034", "comment": "" }, { @@ -8216,7 +8606,7 @@ { "term": "Start", "context": "Start", - "reference": "Modules/Settings/GammaControlTab.qml:252", + "reference": "Modules/Settings/ThemeColorsTab.qml:1097, Modules/Settings/GammaControlTab.qml:252", "comment": "" }, { @@ -8234,7 +8624,7 @@ { "term": "Start typing your notes here...", "context": "Start typing your notes here...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:386", + "reference": "Modules/Notepad/NotepadTextEditor.qml:623", "comment": "" }, { @@ -8246,7 +8636,7 @@ { "term": "Status", "context": "Status", - "reference": "Widgets/DankIconPicker.qml:56, Modules/Settings/AboutTab.qml:683, Modules/Settings/PrinterTab.qml:130, Modules/Settings/NetworkTab.qml:175", + "reference": "Widgets/DankIconPicker.qml:56, Modules/Settings/AboutTab.qml:691, Modules/Settings/PrinterTab.qml:130, Modules/Settings/NetworkTab.qml:175", "comment": "" }, { @@ -8288,7 +8678,7 @@ { "term": "Surface", "context": "shadow color option", - "reference": "Modules/Settings/LauncherTab.qml:179, Modules/Settings/WorkspacesTab.qml:336, Modules/Settings/DankBarTab.qml:1142", + "reference": "Modules/Settings/DockTab.qml:297, Modules/Settings/LauncherTab.qml:179, Modules/Settings/WorkspacesTab.qml:338, Modules/Settings/DankBarTab.qml:1158", "comment": "" }, { @@ -8300,31 +8690,31 @@ { "term": "Suspend behavior", "context": "Suspend behavior", - "reference": "Modules/Settings/PowerSleepTab.qml:297", + "reference": "Modules/Settings/PowerSleepTab.qml:302", "comment": "" }, { "term": "Suspend system after", "context": "Suspend system after", - "reference": "Modules/Settings/PowerSleepTab.qml:262", + "reference": "Modules/Settings/PowerSleepTab.qml:267", "comment": "" }, { "term": "Switch User", "context": "Switch User", - "reference": "Modules/Greetd/GreeterContent.qml:662", + "reference": "Modules/Greetd/GreeterContent.qml:657", "comment": "" }, { "term": "Switch to power profile", "context": "Switch to power profile", - "reference": "Modules/Settings/PowerSleepTab.qml:154", + "reference": "Modules/Settings/PowerSleepTab.qml:159", "comment": "" }, { "term": "Sync Mode with Portal", "context": "Sync Mode with Portal", - "reference": "Modules/Settings/ThemeColorsTab.qml:1392", + "reference": "Modules/Settings/ThemeColorsTab.qml:1853", "comment": "" }, { @@ -8336,25 +8726,25 @@ { "term": "Sync dark mode with settings portals for system-wide theme hints", "context": "Sync dark mode with settings portals for system-wide theme hints", - "reference": "Modules/Settings/ThemeColorsTab.qml:1393", + "reference": "Modules/Settings/ThemeColorsTab.qml:1854", "comment": "" }, { "term": "System", "context": "System", - "reference": "Modals/ProcessListModal.qml:274, Services/AppSearchService.qml:471, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:238", + "reference": "Modals/ProcessListModal.qml:315, Services/AppSearchService.qml:631, Widgets/DankIconPicker.qml:44, Modals/Settings/SettingsSidebar.qml:238", "comment": "" }, { "term": "System App Theming", "context": "System App Theming", - "reference": "Modules/Settings/ThemeColorsTab.qml:1925", + "reference": "Modules/Settings/ThemeColorsTab.qml:2398", "comment": "" }, { "term": "System Check", "context": "greeter doctor page title", - "reference": "Modals/Greeter/GreeterDoctorPage.qml:157, Modals/Greeter/GreeterDoctorPage.qml:221, Modules/Settings/AboutTab.qml:794", + "reference": "Modals/Greeter/GreeterDoctorPage.qml:157, Modals/Greeter/GreeterDoctorPage.qml:221, Modules/Settings/AboutTab.qml:807", "comment": "" }, { @@ -8366,13 +8756,13 @@ { "term": "System Monitor", "context": "System monitor widget name | sysmon window title", - "reference": "Modals/ProcessListModal.qml:49, Modals/ProcessListModal.qml:75, Modals/ProcessListModal.qml:216, Services/AppSearchService.qml:72, Services/DesktopWidgetRegistry.qml:54", + "reference": "Modals/ProcessListModal.qml:49, Modals/ProcessListModal.qml:83, Modals/ProcessListModal.qml:257, Services/AppSearchService.qml:180, Services/DesktopWidgetRegistry.qml:54", "comment": "" }, { "term": "System Monitor Unavailable", "context": "System Monitor Unavailable", - "reference": "Modals/ProcessListModal.qml:169", + "reference": "Modals/ProcessListModal.qml:210", "comment": "" }, { @@ -8384,13 +8774,13 @@ { "term": "System Tray", "context": "System Tray", - "reference": "Modules/Settings/WidgetsTab.qml:141", + "reference": "Modules/Settings/WidgetsTab.qml:148", "comment": "" }, { "term": "System Update", "context": "System Update", - "reference": "Modules/Settings/WidgetsTab.qml:239", + "reference": "Modules/Settings/WidgetsTab.qml:246", "comment": "" }, { @@ -8408,7 +8798,7 @@ { "term": "System notification area icons", "context": "System notification area icons", - "reference": "Modules/Settings/WidgetsTab.qml:142", + "reference": "Modules/Settings/WidgetsTab.qml:149", "comment": "" }, { @@ -8450,13 +8840,13 @@ { "term": "Terminal custom additional parameters", "context": "Terminal custom additional parameters", - "reference": "Modules/Settings/SystemUpdaterTab.qml:109", + "reference": "Modules/Settings/SystemUpdaterTab.qml:108", "comment": "" }, { "term": "Terminals - Always use Dark Theme", "context": "Terminals - Always use Dark Theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:1402", + "reference": "Modules/Settings/ThemeColorsTab.qml:1863", "comment": "" }, { @@ -8473,14 +8863,14 @@ }, { "term": "Text", - "context": "shadow color option", - "reference": "Modals/Clipboard/ClipboardEntry.qml:82, Modules/Settings/DankBarTab.qml:1142", + "context": "shadow color option | text color", + "reference": "Modals/Clipboard/ClipboardEntry.qml:82, Modules/Settings/LauncherTab.qml:466, Modules/Settings/DankBarTab.qml:1158", "comment": "" }, { "term": "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.", "context": "dgop unavailable error message", - "reference": "Modals/ProcessListModal.qml:177", + "reference": "Modals/ProcessListModal.qml:218", "comment": "" }, { @@ -8492,7 +8882,7 @@ { "term": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", "context": "The below settings will modify your GTK and Qt settings. If you wish to preserve your current configurations, please back them up (qt5ct.conf|qt6ct.conf and ~/.config/gtk-3.0|gtk-4.0).", - "reference": "Modules/Settings/ThemeColorsTab.qml:1888", + "reference": "Modules/Settings/ThemeColorsTab.qml:2361", "comment": "" }, { @@ -8510,7 +8900,7 @@ { "term": "Theme Color", "context": "Theme Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:193", + "reference": "Modules/Settings/ThemeColorsTab.qml:204", "comment": "" }, { @@ -8527,8 +8917,8 @@ }, { "term": "Thickness", - "context": "Thickness", - "reference": "Modules/Settings/WorkspacesTab.qml:370, Modules/Settings/DankBarTab.qml:1279, Modules/Settings/DankBarTab.qml:1367", + "context": "border thickness", + "reference": "Modules/Settings/LauncherTab.qml:434, Modules/Settings/WorkspacesTab.qml:372, Modules/Settings/DankBarTab.qml:1295, Modules/Settings/DankBarTab.qml:1383", "comment": "" }, { @@ -8552,25 +8942,25 @@ { "term": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", "context": "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.", - "reference": "Modules/Settings/WidgetsTab.qml:136", + "reference": "Modules/Settings/WidgetsTab.qml:143", "comment": "" }, { "term": "This will delete all unpinned entries. %1 pinned entries will be kept.", "context": "This will delete all unpinned entries. %1 pinned entries will be kept.", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:254", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:242", "comment": "" }, { "term": "This will permanently delete all clipboard history.", "context": "This will permanently delete all clipboard history.", - "reference": "Modals/Clipboard/ClipboardContent.qml:33, Modals/Clipboard/ClipboardHistoryModal.qml:255", + "reference": "Modals/Clipboard/ClipboardContent.qml:33, Modals/Clipboard/ClipboardHistoryModal.qml:242", "comment": "" }, { "term": "This will permanently remove this saved clipboard item. This action cannot be undone.", "context": "This will permanently remove this saved clipboard item. This action cannot be undone.", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:198", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:186", "comment": "" }, { @@ -8642,7 +9032,7 @@ { "term": "To update, run the following command:", "context": "To update, run the following command:", - "reference": "Services/DMSService.qml:317", + "reference": "Services/DMSService.qml:318", "comment": "" }, { @@ -8660,13 +9050,13 @@ { "term": "Today", "context": "notification history filter", - "reference": "Services/WeatherService.qml:435, Modules/Notifications/Center/HistoryNotificationList.qml:97", + "reference": "Services/WeatherService.qml:441, Modules/Notifications/Center/HistoryNotificationList.qml:97", "comment": "" }, { "term": "Toggle visibility of this bar configuration", "context": "Toggle visibility of this bar configuration", - "reference": "Modules/Settings/DankBarTab.qml:502", + "reference": "Modules/Settings/DankBarTab.qml:515", "comment": "" }, { @@ -8678,7 +9068,7 @@ { "term": "Tomorrow", "context": "Tomorrow", - "reference": "Services/WeatherService.qml:437", + "reference": "Services/WeatherService.qml:443", "comment": "" }, { @@ -8696,19 +9086,19 @@ { "term": "Tools", "context": "Tools", - "reference": "Modules/Settings/AboutTab.qml:774", + "reference": "Modules/Settings/AboutTab.qml:786", "comment": "" }, { "term": "Top", "context": "Top", - "reference": "Modules/Settings/DankBarTab.qml:380, Modules/Settings/DankBarTab.qml:388, Modules/Settings/DankBarTab.qml:628", + "reference": "Modules/Settings/DankBarTab.qml:386, Modules/Settings/DankBarTab.qml:394, Modules/Settings/DankBarTab.qml:642", "comment": "" }, { "term": "Top Bar Format", "context": "Top Bar Format", - "reference": "Modules/Settings/TimeWeatherTab.qml:65", + "reference": "Modules/Settings/TimeWeatherTab.qml:76", "comment": "" }, { @@ -8732,7 +9122,7 @@ { "term": "Top Section", "context": "Top Section", - "reference": "Modules/Settings/WidgetsTab.qml:852", + "reference": "Modules/Settings/WidgetsTab.qml:859", "comment": "" }, { @@ -8756,31 +9146,55 @@ { "term": "Transparency", "context": "Transparency", - "reference": "Modules/Settings/DockTab.qml:222, Modules/Settings/DankBarTab.qml:1389, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:87, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342", + "reference": "Modules/Settings/DockTab.qml:472, Modules/Settings/DankBarTab.qml:1405, Modules/Settings/DesktopWidgetSettings/SystemMonitorSettings.qml:379, Modules/Settings/DesktopWidgetSettings/ClockSettings.qml:98, Modules/Settings/Widgets/SystemMonitorVariantCard.qml:342", + "comment": "" + }, + { + "term": "Trending GIFs", + "context": "Trending GIFs", + "reference": "dms-plugins/DankGifSearch/DankGifSearch.qml:69", + "comment": "" + }, + { + "term": "Trending Stickers", + "context": "Trending Stickers", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:126", "comment": "" }, { "term": "Trigger", "context": "Trigger", - "reference": "Modules/Settings/LauncherTab.qml:448", + "reference": "Modules/Settings/LauncherTab.qml:571", "comment": "" }, { "term": "Trigger Prefix", "context": "Trigger Prefix", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:117", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:123", + "comment": "" + }, + { + "term": "Trigger: %1", + "context": "Trigger: %1", + "reference": "Modals/DankLauncherV2/Controller.qml:877, Modules/Settings/LauncherTab.qml:731", + "comment": "" + }, + { + "term": "Try a different search", + "context": "Try a different search", + "reference": "dms-plugins/DankStickerSearch/DankStickerSearch.qml:139, dms-plugins/DankGifSearch/DankGifSearch.qml:82", "comment": "" }, { "term": "Turn off all displays immediately when the lock screen activates", "context": "Turn off all displays immediately when the lock screen activates", - "reference": "Modules/Settings/LockScreenTab.qml:138", + "reference": "Modules/Settings/LockScreenTab.qml:146", "comment": "" }, { "term": "Turn off monitors after", "context": "Turn off monitors after", - "reference": "Modules/Settings/PowerSleepTab.qml:229", + "reference": "Modules/Settings/PowerSleepTab.qml:234", "comment": "" }, { @@ -8789,10 +9203,34 @@ "reference": "Widgets/KeybindItem.qml:788, Modules/Settings/RunningAppsTab.qml:168", "comment": "" }, + { + "term": "Type at least 2 characters", + "context": "Type at least 2 characters", + "reference": "Modals/DankLauncherV2/ResultsList.qml:480", + "comment": "" + }, { "term": "Type this prefix to search keybinds", "context": "Type this prefix to search keybinds", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:118", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:124", + "comment": "" + }, + { + "term": "Type to search", + "context": "Type to search", + "reference": "Modals/DankLauncherV2/ResultsList.qml:487", + "comment": "" + }, + { + "term": "Type to search apps", + "context": "Type to search apps", + "reference": "Modals/DankLauncherV2/ResultsList.qml:485", + "comment": "" + }, + { + "term": "Type to search files", + "context": "Type to search files", + "reference": "Modals/DankLauncherV2/ResultsList.qml:478", "comment": "" }, { @@ -8804,7 +9242,7 @@ { "term": "Typography & Motion", "context": "Typography & Motion", - "reference": "Modals/Settings/SettingsSidebar.qml:87", + "reference": "Modals/Settings/SettingsSidebar.qml:87, Modals/Settings/SettingsSidebar.qml:505", "comment": "" }, { @@ -8816,7 +9254,7 @@ { "term": "Unfocused Color", "context": "Unfocused Color", - "reference": "Modules/Settings/WorkspacesTab.qml:243", + "reference": "Modules/Settings/WorkspacesTab.qml:245", "comment": "" }, { @@ -8840,25 +9278,25 @@ { "term": "Uninstall failed: %1", "context": "uninstallation error", - "reference": "Modules/Settings/ThemeColorsTab.qml:722, Modules/Settings/ThemeBrowser.qml:96", + "reference": "Modules/Settings/ThemeColorsTab.qml:734, Modules/Settings/ThemeBrowser.qml:96", "comment": "" }, { "term": "Uninstalled: %1", "context": "uninstallation success", - "reference": "Modules/Settings/ThemeColorsTab.qml:725, Modules/Settings/ThemeBrowser.qml:99", + "reference": "Modules/Settings/ThemeColorsTab.qml:737, Modules/Settings/ThemeBrowser.qml:99", "comment": "" }, { "term": "Uninstalling: %1", "context": "uninstallation progress", - "reference": "Modules/Settings/ThemeColorsTab.qml:719, Modules/Settings/ThemeBrowser.qml:93", + "reference": "Modules/Settings/ThemeColorsTab.qml:731, Modules/Settings/ThemeBrowser.qml:93", "comment": "" }, { "term": "Unknown", "context": "KDE Connect unknown device status | unknown author", - "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:202, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:207, Modules/Lock/LockScreenContent.qml:383, Modules/Lock/LockScreenContent.qml:503, Modules/Lock/LockScreenContent.qml:599, Modules/Settings/PluginBrowser.qml:495, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:526, Modules/Settings/NetworkTab.qml:168, Modules/Settings/NetworkTab.qml:210, Modules/Settings/NetworkTab.qml:416, Modules/Settings/NetworkTab.qml:437, Modules/Settings/NetworkTab.qml:585, Modules/Settings/NetworkTab.qml:728, Modules/Settings/NetworkTab.qml:1148, Modules/ControlCenter/Details/BatteryDetail.qml:183, Modules/ControlCenter/Components/HeaderPane.qml:63", + "reference": "dms-plugins/DankKDEConnect/components/DeviceCard.qml:202, dms-plugins/DankKDEConnect/components/KDEConnectDetailContent.qml:207, Modules/Lock/LockScreenContent.qml:369, Modules/Lock/LockScreenContent.qml:489, Modules/Lock/LockScreenContent.qml:585, Modules/Settings/PluginBrowser.qml:495, Modules/Settings/PrinterTab.qml:1285, Modules/Settings/ThemeBrowser.qml:526, Modules/Settings/NetworkTab.qml:168, Modules/Settings/NetworkTab.qml:210, Modules/Settings/NetworkTab.qml:416, Modules/Settings/NetworkTab.qml:437, Modules/Settings/NetworkTab.qml:585, Modules/Settings/NetworkTab.qml:728, Modules/Settings/NetworkTab.qml:1148, Modules/ControlCenter/Details/BatteryDetail.qml:183, Modules/ControlCenter/Components/HeaderPane.qml:63", "comment": "" }, { @@ -8912,25 +9350,25 @@ { "term": "Unpin from Dock", "context": "Unpin from Dock", - "reference": "Modals/Spotlight/SpotlightContextMenuContent.qml:102, Modules/AppDrawer/AppDrawerPopout.qml:737, Modules/Dock/DockContextMenu.qml:379", + "reference": "Modals/DankLauncherV2/LauncherContextMenu.qml:96, Modules/Dock/DockContextMenu.qml:379, Modules/DankBar/Widgets/AppsDockContextMenu.qml:307", "comment": "" }, { "term": "Unsaved Changes", "context": "Unsaved Changes", - "reference": "Modules/Notepad/Notepad.qml:404", + "reference": "Modules/Notepad/Notepad.qml:396", "comment": "" }, { "term": "Unsaved changes", "context": "Unsaved changes", - "reference": "Widgets/KeybindItem.qml:1662, Modules/Notepad/NotepadTextEditor.qml:588", + "reference": "Widgets/KeybindItem.qml:1662, Modules/Notepad/NotepadTextEditor.qml:858", "comment": "" }, { "term": "Unsaved note...", "context": "Unsaved note...", - "reference": "Modules/Notepad/NotepadTextEditor.qml:586", + "reference": "Modules/Notepad/NotepadTextEditor.qml:856", "comment": "" }, { @@ -8960,19 +9398,19 @@ { "term": "Uptime:", "context": "uptime label in footer", - "reference": "Modals/ProcessListModal.qml:429", + "reference": "Modals/ProcessListModal.qml:472", "comment": "" }, { "term": "Urgent Color", "context": "Urgent Color", - "reference": "Modules/Settings/WorkspacesTab.qml:280", + "reference": "Modules/Settings/WorkspacesTab.qml:282", "comment": "" }, { "term": "Usage Tips", "context": "Usage Tips", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:200", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:208", "comment": "" }, { @@ -8990,25 +9428,25 @@ { "term": "Use Grid Layout", "context": "Use Grid Layout", - "reference": "Modules/Settings/PowerSleepTab.qml:361", + "reference": "Modules/Settings/PowerSleepTab.qml:367", "comment": "" }, { "term": "Use IP Location", "context": "Use IP Location", - "reference": "Modules/Settings/GammaControlTab.qml:345", + "reference": "Modules/Settings/ThemeColorsTab.qml:1187, Modules/Settings/GammaControlTab.qml:345", "comment": "" }, { "term": "Use Imperial Units", "context": "Use Imperial Units", - "reference": "Modules/Settings/TimeWeatherTab.qml:360", + "reference": "Modules/Settings/TimeWeatherTab.qml:371", "comment": "" }, { "term": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", "context": "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)", - "reference": "Modules/Settings/TimeWeatherTab.qml:361", + "reference": "Modules/Settings/TimeWeatherTab.qml:372", "comment": "" }, { @@ -9038,13 +9476,13 @@ { "term": "Use custom border size", "context": "Use custom border size", - "reference": "Modules/Settings/ThemeColorsTab.qml:1234, Modules/Settings/ThemeColorsTab.qml:1337", + "reference": "Modules/Settings/ThemeColorsTab.qml:1695, Modules/Settings/ThemeColorsTab.qml:1798", "comment": "" }, { "term": "Use custom border/focus-ring width", "context": "Use custom border/focus-ring width", - "reference": "Modules/Settings/ThemeColorsTab.qml:1131", + "reference": "Modules/Settings/ThemeColorsTab.qml:1592", "comment": "" }, { @@ -9056,31 +9494,37 @@ { "term": "Use custom gaps instead of bar spacing", "context": "Use custom gaps instead of bar spacing", - "reference": "Modules/Settings/ThemeColorsTab.qml:1068, Modules/Settings/ThemeColorsTab.qml:1171, Modules/Settings/ThemeColorsTab.qml:1274", + "reference": "Modules/Settings/ThemeColorsTab.qml:1529, Modules/Settings/ThemeColorsTab.qml:1632, Modules/Settings/ThemeColorsTab.qml:1735", "comment": "" }, { "term": "Use custom window radius instead of theme radius", "context": "Use custom window radius instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1100, Modules/Settings/ThemeColorsTab.qml:1306", + "reference": "Modules/Settings/ThemeColorsTab.qml:1561, Modules/Settings/ThemeColorsTab.qml:1767", "comment": "" }, { "term": "Use custom window rounding instead of theme radius", "context": "Use custom window rounding instead of theme radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1203", + "reference": "Modules/Settings/ThemeColorsTab.qml:1664", "comment": "" }, { "term": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", "context": "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)", - "reference": "Modules/Settings/LockScreenTab.qml:147", + "reference": "Modules/Settings/LockScreenTab.qml:155", "comment": "" }, { "term": "Use light theme instead of dark theme", "context": "Use light theme instead of dark theme", - "reference": "Modules/Settings/ThemeColorsTab.qml:960", + "reference": "Modules/Settings/ThemeColorsTab.qml:1421", + "comment": "" + }, + { + "term": "Use meters per second instead of km/h for wind speed", + "context": "Use meters per second instead of km/h for wind speed", + "reference": "Modules/Settings/TimeWeatherTab.qml:390", "comment": "" }, { @@ -9104,7 +9548,7 @@ { "term": "Use trigger prefix to activate", "context": "Use trigger prefix to activate", - "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:103", + "reference": "dms-plugins/DankLauncherKeys/DankLauncherKeysSettings.qml:107", "comment": "" }, { @@ -9125,22 +9569,34 @@ "reference": "Modals/WifiPasswordModal.qml:171, Modals/WifiPasswordModal.qml:519, Widgets/VpnProfileDelegate.qml:45, Modules/Settings/NetworkTab.qml:1870", "comment": "" }, + { + "term": "Uses sunrise/sunset times based on your location.", + "context": "Uses sunrise/sunset times based on your location.", + "reference": "Modules/Settings/ThemeColorsTab.qml:1266", + "comment": "" + }, { "term": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "context": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "reference": "Modules/Settings/GammaControlTab.qml:423", "comment": "" }, + { + "term": "Using shared settings from Gamma Control", + "context": "Using shared settings from Gamma Control", + "reference": "Modules/Settings/ThemeColorsTab.qml:1278", + "comment": "" + }, { "term": "Utilities", "context": "Utilities", - "reference": "Services/AppSearchService.qml:472, Services/AppSearchService.qml:473, Services/AppSearchService.qml:474, Services/AppSearchService.qml:475", + "reference": "Services/AppSearchService.qml:632, Services/AppSearchService.qml:633, Services/AppSearchService.qml:634, Services/AppSearchService.qml:635", "comment": "" }, { "term": "VPN", "context": "VPN", - "reference": "Modules/Settings/WidgetsTabSection.qml:838, Modules/Settings/WidgetsTab.qml:176, Modules/Settings/NetworkTab.qml:1510, Modules/ControlCenter/Models/WidgetModel.qml:187, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", + "reference": "Modules/Settings/WidgetsTabSection.qml:799, Modules/Settings/WidgetsTab.qml:183, Modules/Settings/NetworkTab.qml:1510, Modules/ControlCenter/Models/WidgetModel.qml:187, Modules/ControlCenter/BuiltinPlugins/VpnWidget.qml:15", "comment": "" }, { @@ -9188,7 +9644,7 @@ { "term": "VPN status and quick connect", "context": "VPN status and quick connect", - "reference": "Modules/Settings/WidgetsTab.qml:177", + "reference": "Modules/Settings/WidgetsTab.qml:184", "comment": "" }, { @@ -9224,7 +9680,7 @@ { "term": "Version", "context": "Version", - "reference": "Modules/Settings/AboutTab.qml:637", + "reference": "Modules/Settings/AboutTab.qml:641", "comment": "" }, { @@ -9254,7 +9710,7 @@ { "term": "Vibrant palette with playful saturation.", "context": "Vibrant palette with playful saturation.", - "reference": "Common/Theme.qml:244", + "reference": "Common/Theme.qml:478", "comment": "" }, { @@ -9266,13 +9722,13 @@ { "term": "Visibility", "context": "Visibility", - "reference": "Modules/DankDash/WeatherForecastCard.qml:92, Modules/Settings/TimeWeatherTab.qml:1035, Modules/Settings/DankBarTab.qml:678", + "reference": "Modules/DankDash/WeatherForecastCard.qml:99, Modules/Settings/TimeWeatherTab.qml:1076, Modules/Settings/DankBarTab.qml:692", "comment": "" }, { "term": "Visual divider between widgets", "context": "Visual divider between widgets", - "reference": "Modules/Settings/WidgetsTab.qml:205", + "reference": "Modules/Settings/WidgetsTab.qml:212", "comment": "" }, { @@ -9284,7 +9740,7 @@ { "term": "Volume", "context": "Volume", - "reference": "Modules/Settings/WidgetsTabSection.qml:853, Modules/Settings/OSDTab.qml:99", + "reference": "Modules/Settings/WidgetsTabSection.qml:814, Modules/Settings/OSDTab.qml:99", "comment": "" }, { @@ -9320,7 +9776,7 @@ { "term": "Wallpaper Error", "context": "wallpaper error status", - "reference": "Modules/Settings/ThemeColorsTab.qml:439", + "reference": "Modules/Settings/ThemeColorsTab.qml:451", "comment": "" }, { @@ -9332,13 +9788,13 @@ { "term": "Wallpaper processing failed", "context": "wallpaper processing error", - "reference": "Modules/Settings/ThemeColorsTab.qml:456", + "reference": "Modules/Settings/ThemeColorsTab.qml:468", "comment": "" }, { "term": "Wallpaper processing failed - check wallpaper path", "context": "wallpaper error", - "reference": "Modules/Settings/ThemeColorsTab.qml:292", + "reference": "Modules/Settings/ThemeColorsTab.qml:305", "comment": "" }, { @@ -9374,13 +9830,13 @@ { "term": "Weather", "context": "Weather", - "reference": "Widgets/KeybindItem.qml:1053, Widgets/KeybindItem.qml:1058, Widgets/KeybindItem.qml:1070, Modules/DankDash/DankDashPopout.qml:287, Modules/Settings/TimeWeatherTab.qml:330", + "reference": "Widgets/KeybindItem.qml:1053, Widgets/KeybindItem.qml:1058, Widgets/KeybindItem.qml:1070, Modules/DankDash/DankDashPopout.qml:287, Modules/Settings/TimeWeatherTab.qml:341", "comment": "" }, { "term": "Weather Widget", "context": "Weather Widget", - "reference": "Modules/Settings/WidgetsTab.qml:80", + "reference": "Modules/Settings/WidgetsTab.qml:87", "comment": "" }, { @@ -9464,37 +9920,37 @@ { "term": "Widget Background Color", "context": "Widget Background Color", - "reference": "Modules/Settings/ThemeColorsTab.qml:995", + "reference": "Modules/Settings/ThemeColorsTab.qml:1456", "comment": "" }, { "term": "Widget Management", "context": "Widget Management", - "reference": "Modules/Settings/WidgetsTab.qml:766", + "reference": "Modules/Settings/WidgetsTab.qml:773", "comment": "" }, { "term": "Widget Outline", "context": "Widget Outline", - "reference": "Modules/Settings/DankBarTab.qml:1301", + "reference": "Modules/Settings/DankBarTab.qml:1317", "comment": "" }, { "term": "Widget Style", "context": "Widget Style", - "reference": "Modules/Settings/ThemeColorsTab.qml:980", + "reference": "Modules/Settings/ThemeColorsTab.qml:1441", "comment": "" }, { "term": "Widget Styling", "context": "Widget Styling", - "reference": "Modules/Settings/ThemeColorsTab.qml:972", + "reference": "Modules/Settings/ThemeColorsTab.qml:1433", "comment": "" }, { "term": "Widget Transparency", "context": "Widget Transparency", - "reference": "Modules/Settings/DankBarTab.qml:1416", + "reference": "Modules/Settings/DankBarTab.qml:1432", "comment": "" }, { @@ -9524,43 +9980,49 @@ { "term": "Width of window border (borderpx)", "context": "Width of window border (borderpx)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1353", + "reference": "Modules/Settings/ThemeColorsTab.qml:1814", "comment": "" }, { "term": "Width of window border (general.border_size)", "context": "Width of window border (general.border_size)", - "reference": "Modules/Settings/ThemeColorsTab.qml:1250", + "reference": "Modules/Settings/ThemeColorsTab.qml:1711", "comment": "" }, { "term": "Width of window border and focus ring", "context": "Width of window border and focus ring", - "reference": "Modules/Settings/ThemeColorsTab.qml:1147", + "reference": "Modules/Settings/ThemeColorsTab.qml:1608", "comment": "" }, { "term": "Wind", "context": "Wind", - "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/Settings/TimeWeatherTab.qml:888", + "reference": "dms-plugins/DankDesktopWeather/DankDesktopWeather.qml:425, Modules/Settings/TimeWeatherTab.qml:925", "comment": "" }, { "term": "Wind Speed", "context": "Wind Speed", - "reference": "Modules/DankDash/WeatherForecastCard.qml:77", + "reference": "Modules/DankDash/WeatherForecastCard.qml:84", + "comment": "" + }, + { + "term": "Wind Speed in m/s", + "context": "Wind Speed in m/s", + "reference": "Modules/Settings/TimeWeatherTab.qml:389", "comment": "" }, { "term": "Window Corner Radius", "context": "Window Corner Radius", - "reference": "Modules/Settings/ThemeColorsTab.qml:1115, Modules/Settings/ThemeColorsTab.qml:1321", + "reference": "Modules/Settings/ThemeColorsTab.qml:1576, Modules/Settings/ThemeColorsTab.qml:1782", "comment": "" }, { "term": "Window Gaps", "context": "Window Gaps", - "reference": "Modules/Settings/ThemeColorsTab.qml:1084, Modules/Settings/ThemeColorsTab.qml:1187, Modules/Settings/ThemeColorsTab.qml:1290", + "reference": "Modules/Settings/ThemeColorsTab.qml:1545, Modules/Settings/ThemeColorsTab.qml:1648, Modules/Settings/ThemeColorsTab.qml:1751", "comment": "" }, { @@ -9572,13 +10034,13 @@ { "term": "Window Rounding", "context": "Window Rounding", - "reference": "Modules/Settings/ThemeColorsTab.qml:1218", + "reference": "Modules/Settings/ThemeColorsTab.qml:1679", "comment": "" }, { "term": "Workspace", "context": "Workspace", - "reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:821, Modules/Settings/DankBarTab.qml:821, Modules/Settings/DankBarTab.qml:858", + "reference": "Widgets/DankIconPicker.qml:28, Modules/Settings/DankBarTab.qml:835, Modules/Settings/DankBarTab.qml:835, Modules/Settings/DankBarTab.qml:872", "comment": "" }, { @@ -9617,6 +10079,12 @@ "reference": "Modules/Settings/WidgetsTab.qml:52", "comment": "" }, + { + "term": "Workspace name", + "context": "Workspace name", + "reference": "Modals/WorkspaceRenameModal.qml:133", + "comment": "" + }, { "term": "Workspaces", "context": "Workspaces", @@ -9626,7 +10094,7 @@ { "term": "Workspaces & Widgets", "context": "Workspaces & Widgets", - "reference": "Modals/Settings/SettingsSidebar.qml:127", + "reference": "Modals/Settings/SettingsSidebar.qml:127, Modals/Settings/SettingsSidebar.qml:499", "comment": "" }, { @@ -9638,13 +10106,13 @@ { "term": "X Axis", "context": "X Axis", - "reference": "Modules/Settings/DankBarTab.qml:856", + "reference": "Modules/Settings/DankBarTab.qml:870", "comment": "" }, { "term": "Y Axis", "context": "Y Axis", - "reference": "Modules/Settings/DankBarTab.qml:820", + "reference": "Modules/Settings/DankBarTab.qml:834", "comment": "" }, { @@ -9662,25 +10130,25 @@ { "term": "You have unsaved changes. Save before closing this tab?", "context": "You have unsaved changes. Save before closing this tab?", - "reference": "Modules/Notepad/Notepad.qml:411", + "reference": "Modules/Notepad/Notepad.qml:403", "comment": "" }, { "term": "You have unsaved changes. Save before continuing?", "context": "You have unsaved changes. Save before continuing?", - "reference": "Modules/Notepad/Notepad.qml:411", + "reference": "Modules/Notepad/Notepad.qml:403", "comment": "" }, { "term": "You have unsaved changes. Save before creating a new file?", "context": "You have unsaved changes. Save before creating a new file?", - "reference": "Modules/Notepad/Notepad.qml:411", + "reference": "Modules/Notepad/Notepad.qml:403", "comment": "" }, { "term": "You have unsaved changes. Save before opening a file?", "context": "You have unsaved changes. Save before opening a file?", - "reference": "Modules/Notepad/Notepad.qml:411", + "reference": "Modules/Notepad/Notepad.qml:403", "comment": "" }, { @@ -9690,9 +10158,9 @@ "comment": "" }, { - "term": "apps", - "context": "apps", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:261", + "term": "actions", + "context": "actions", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:390", "comment": "" }, { @@ -9728,7 +10196,7 @@ { "term": "dms/cursor config exists but is not included. Cursor settings won't apply.", "context": "dms/cursor config exists but is not included. Cursor settings won't apply.", - "reference": "Modules/Settings/ThemeColorsTab.qml:1461", + "reference": "Modules/Settings/ThemeColorsTab.qml:1922", "comment": "" }, { @@ -9761,12 +10229,6 @@ "reference": "Modules/DankDash/Overview/CalendarOverviewCard.qml:135", "comment": "" }, - { - "term": "files", - "context": "files", - "reference": "Modules/AppDrawer/AppDrawerPopout.qml:259", - "comment": "" - }, { "term": "leave empty for default", "context": "leave empty for default", @@ -9776,13 +10238,13 @@ { "term": "loginctl not available - lock integration requires DMS socket connection", "context": "loginctl not available - lock integration requires DMS socket connection", - "reference": "Modules/Settings/LockScreenTab.qml:102", + "reference": "Modules/Settings/LockScreenTab.qml:110", "comment": "" }, { "term": "matugen not found - install matugen package for dynamic theming", "context": "matugen error", - "reference": "Modules/Settings/ThemeColorsTab.qml:290", + "reference": "Modules/Settings/ThemeColorsTab.qml:303", "comment": "" }, { @@ -9797,6 +10259,12 @@ "reference": "Widgets/KeybindItem.qml:1626", "comment": "" }, + { + "term": "nav", + "context": "nav", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:376", + "comment": "" + }, { "term": "niri shortcuts config", "context": "greeter keybinds niri description", @@ -9815,10 +10283,16 @@ "reference": "Modules/Settings/PluginBrowser.qml:465, Modules/Settings/ThemeBrowser.qml:493", "comment": "" }, + { + "term": "open", + "context": "open", + "reference": "Modals/DankLauncherV2/LauncherContent.qml:383", + "comment": "" + }, { "term": "procs", "context": "short for processes", - "reference": "Modules/ProcessList/ProcessListPopout.qml:241", + "reference": "Modules/ProcessList/ProcessListPopout.qml:256", "comment": "" }, { @@ -9842,7 +10316,7 @@ { "term": "wtype not available - install wtype for paste support", "context": "wtype not available - install wtype for paste support", - "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:61", + "reference": "Modals/Clipboard/ClipboardHistoryModal.qml:52", "comment": "" }, { @@ -9860,25 +10334,25 @@ { "term": "• M - Month (1-12)", "context": "• M - Month (1-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:286", + "reference": "Modules/Settings/TimeWeatherTab.qml:297", "comment": "" }, { "term": "• MM - Month (01-12)", "context": "• MM - Month (01-12)", - "reference": "Modules/Settings/TimeWeatherTab.qml:297", + "reference": "Modules/Settings/TimeWeatherTab.qml:308", "comment": "" }, { "term": "• MMM - Month (Jan)", "context": "• MMM - Month (Jan)", - "reference": "Modules/Settings/TimeWeatherTab.qml:302", + "reference": "Modules/Settings/TimeWeatherTab.qml:313", "comment": "" }, { "term": "• MMMM - Month (January)", "context": "• MMMM - Month (January)", - "reference": "Modules/Settings/TimeWeatherTab.qml:307", + "reference": "Modules/Settings/TimeWeatherTab.qml:318", "comment": "" }, { @@ -9896,37 +10370,37 @@ { "term": "• d - Day (1-31)", "context": "• d - Day (1-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:266", + "reference": "Modules/Settings/TimeWeatherTab.qml:277", "comment": "" }, { "term": "• dd - Day (01-31)", "context": "• dd - Day (01-31)", - "reference": "Modules/Settings/TimeWeatherTab.qml:271", + "reference": "Modules/Settings/TimeWeatherTab.qml:282", "comment": "" }, { "term": "• ddd - Day name (Mon)", "context": "• ddd - Day name (Mon)", - "reference": "Modules/Settings/TimeWeatherTab.qml:276", + "reference": "Modules/Settings/TimeWeatherTab.qml:287", "comment": "" }, { "term": "• dddd - Day name (Monday)", "context": "• dddd - Day name (Monday)", - "reference": "Modules/Settings/TimeWeatherTab.qml:281", + "reference": "Modules/Settings/TimeWeatherTab.qml:292", "comment": "" }, { "term": "• yy - Year (24)", "context": "• yy - Year (24)", - "reference": "Modules/Settings/TimeWeatherTab.qml:312", + "reference": "Modules/Settings/TimeWeatherTab.qml:323", "comment": "" }, { "term": "• yyyy - Year (2024)", "context": "• yyyy - Year (2024)", - "reference": "Modules/Settings/TimeWeatherTab.qml:317", + "reference": "Modules/Settings/TimeWeatherTab.qml:328", "comment": "" } ] diff --git a/quickshell/translations/poexports/es.json b/quickshell/translations/poexports/es.json index 34221301..1d49edd3 100644 --- a/quickshell/translations/poexports/es.json +++ b/quickshell/translations/poexports/es.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identidad anónima (opcional)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Apps" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Las aplicaciones son ordenadas por frecuencia de uso, luego por último utilizado, y luego alfabéticamente." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Organice las pantallas y configure la resolución, la frecuencia de actualización y el VRR." }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Conexión automática activada" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Control Automático" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Bloquear pantalla cuando el sistema se vaya a suspender" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Disponible" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Explorar Complementos" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS no esta disponibl" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Cámara" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Elegir color" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Elegir Color del Icono en el Lanzador" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Escoger en cuál monitor se muestra la interfaz de la pantalla de bloqueo. Otros mostrarán un color sólido para proteger las pantallas OLED contra quemaduras." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Cifrado" }, @@ -770,9 +803,15 @@ "Close": { "Close": "Cerrar" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Cerrar vista general al iniciar" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Color" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Temperatura de color para el modo nocturno" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Colores vivos con contrastes luminosos." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Comando" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Comunicación" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Controlar la reproducción en curso" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Controle los espacios de trabajo y las columnas desplazándose por la barra" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Copiar Nombre del Proceso" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Radio de la esquina" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Espacio entre bordes" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Educación" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "Habilitar integración con loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Mostrar campo de contraseña" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Ingresar PIN para " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Ingresar texto a buscar" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "Error" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Exponencial" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Accionar • F10: Ayudar" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Información del archivo" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Archivos" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Salud" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Ocultar Retardo" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "Dirección IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Tamaño de icono" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Incluir transiciones" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Plugins incompatibles cargados" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "Dispositivo LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Usado hace %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Lanzador" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Icono del lanzador" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Cargando complementos..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Cargando..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Sin adaptadores" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Sin bateria" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Archivos no encontrados" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "No hay nada añadido todavía" }, "No keybinds found": { "No keybinds found": "No se encontraron atajos" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Sin coincidencias" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "No hay complementos encontrados" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "No hay variantes creadas. Haga clic en Añadir para crear un nuevo widget de monitor." }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Abrir archivo de Notas" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Abrir barra de búsqueda para encontrar texto" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Relleno" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Fijado" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Pon aquí el directorio de complementos. Cada complemento debe tener un archivo plugin.json adjunto." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Gestión de complementos" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Complemento desactivado – actívalo en los ajustes de complementos" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Evitar que la pantalla se apague por inactividad" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Primario" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Eliminar espacios y bordes cuando las ventanas estan maximizadas" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Desplazamiento" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "Seguridad" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Seleccionar una aplicación" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Configurar" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: Borrar todo • Esc: Cerrar " }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Mayús+Intro: Pegar - Mayús+Supr: Borrar todo - Esc: Cerrar" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostrar números de líneas" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Redimensionamiento" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "Autenticación con tarjeta inteligente" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "Transparencia" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "Tipo" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Tipografía" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Usar tema claro en lugar del tema oscuro" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "Nombre de usuario" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Usar las horas de amanecer/anochecer para ajustar automáticamente el modo noche basándose en tu localización." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Utilidades" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Velocidad del viento" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Radio de la esquina de la ventana" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Espacios de trabajo" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Espacios de trabajo" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Tienes cambios sin guardar. ¿Guardar antes de abrir otro archivo?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "apps" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Busqueda de temas" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Instalado" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "deja vacio para valor por defecto" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Ningún archivo de tema personalizado" }, @@ -4882,6 +5141,12 @@ "official": { "official": "oficial" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "Instalar plugins desde el registro de plugins de DMS" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "Buscar complementos..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "Tema de color del registro DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "segundos" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Manejo externo del fondo de pantalla" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype no disponible - instala wtype para soporte de pegado" }, diff --git a/quickshell/translations/poexports/fa.json b/quickshell/translations/poexports/fa.json index b5749e06..a9eed330 100644 --- a/quickshell/translations/poexports/fa.json +++ b/quickshell/translations/poexports/fa.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "هویت ناشناس (اختیاری)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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.": "برای کاهش خستگی چشم دمای رنگ گرم را اعمال کن. از تنظیمات خودکارسازی پایین برای زمان فعال شدن آن استفاده کنید." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "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.": "برنامه‌ها بر اساس دفعات استفاده، سپس آخرین استفاده و در نهایت بر اساس حروف الفبا مرتب شده‌اند." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "چیدمان نمایشگرها و پیکربندی وضوح، نرخ تازه‌سازی و VRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "اتصال خودکار فعال" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "کنترل خودکار" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "قفل خودکار صفحه هنگام آماده‌شدن سیستم برای تعلیق" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "در دسترس" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "مرور افزونه‌ها" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS در دسترس نیست" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "دوربین" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "انتخاب رنگ" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "انتخاب رنگ لوگوی لانچر" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "انتخاب کنید که کدام مانیتور رابط صفحه قفل را نشان دهد. مانیتورهای دیگر برای محافظت در برابر سوختگی OLED، رنگ ثابتی را نمایش می‌دهند." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "رمزگذار" }, @@ -770,9 +803,15 @@ "Close": { "Close": "بستن" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "بستن نمای کلی هنگام اجرا" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "رنگ" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "دمای رنگ برای حالت شب" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "ترکیب رنگارنگ از رنگ‌های تأکیدی متضاد." }, @@ -812,6 +857,9 @@ "Command": { "Command": "دستور" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "ارتباطات" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "کنترل رسانه درحال پخش" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "کنترل workspaceها و ستون‌ها با اسکرول روی نوار" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "کپی نام فرایند" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "شعاع گوشه" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "فاصله لبه" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "آموزش" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "فعال‌کردن یکپارچه‌سازی قفل loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "نمایش فیلد گذرواژه" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "ورود PIN برای " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "یک عبارت جستجو وارد کنید" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "خطا" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "نمایی" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: تغییر حالت • F10: راهنما" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "اطلاعات فایل" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "فایل‌ها" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "سلامت" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "تأخیر پنهان‌شدن" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "آدرس IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "اندازه آیکون" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "اضافه‌کردن گذارها" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "افزونه‌های ناسازگار بارگذاری شده‌اند" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "دستگاه LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "آخرین اجرا %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "لانچر" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "لوگوی دکمه لانچر" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "آماده‌سازی افزونه‌ها..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "درحال بارگذاری..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "آداپتوری یافت نشد" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "بدون باتری" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "هیچ فایلی یافت نشد" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "هنوز آیتمی اضافه نشده" }, "No keybinds found": { "No keybinds found": "هیچ کلید میانبری یافت نشد" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "موردی پیدا نشد" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "افزونه‌ای یافت نشد" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "هیچ گونه‌ی دیگری ایجاد نشد. برای ایجاد یک ابزارک مانیتور جدید، روی افزودن کلیک کنید." }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "باز‌کردن فایل دفترچه یادداشت" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "باز‌کردن نوار جستجو برای یافتن متن" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "فاصله درونی" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "سنجاق شده" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "دایرکتوری افزونه‌ها را اینجا قرار دهید. هر افزونه باید فایل مشخصات plugins.json داشته باشد." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "مدیریت افزونه" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "افزونه غیرفعال است - برای استفاده آن را در تنظیمات افزونه‌ها فعال کنید" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "جلوگیری از خاموش‌شدن صفحه" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "اصلی" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "حذف فاصله‌ها و حاشیه هنگام بزرگ‌کردن پنجره‌ها" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "اسکرولینگ" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "امنیت" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "انتخاب برنامه" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "راه‌اندازی" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "شِل" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: پاک‌کردن همه • Esc: بستن" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: الصاق • Shift+Del: پاک‌کردن همه • Esc: بستن" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "نمایش رطوبت" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "نمایش شماره خطوط" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "اندازه‌دهی" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "احراز هویت با کارت هوشمند" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "شفافیت" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "نوع" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "تایپوگرافی" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "استفاده از تم روشن به جای تم تاریک" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "نام کاربری" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "از زمان طلوع/غروب خورشید برای تنظیم خودکار حالت شب بر اساس موقعیت مکانی شما استفاده می‌کند." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "برنامه‌های کمکی" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "سرعت باد" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "شعاع گوشه پنجره‌ها" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "تغییردهنده workspace" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Workspaceها" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "شما تغییرات ذخیره نشده‌ دارید. پیش از باز کردن فایل، ذخیره شوند؟" }, + "actions": { + "actions": "" + }, "apps": { "apps": "برنامه" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "مرور تم‌ها" }, @@ -4696,7 +4937,7 @@ }, "greeter feature card title": { "App Theming": "تم برنامه", - "Control Center": "", + "Control Center": "مرکز کنترل", "Display Control": "کنترل نمایشگر", "Dynamic Theming": "", "Multi-Monitor": "چند مانیتوره", @@ -4722,7 +4963,7 @@ "niri shortcuts config": "پیکربندی میانبرهای نیری" }, "greeter keybinds section header": { - "DMS Shortcuts": "" + "DMS Shortcuts": "میانبرهای DMS" }, "greeter modal window title": { "Welcome": "خوش آمدید" @@ -4766,7 +5007,7 @@ "Features": "ویژگی‌ها" }, "greeter welcome page tagline": { - "A modern desktop shell for Wayland compositors": "" + "A modern desktop shell for Wayland compositors": "یک پوسته دسکتاپ مدرن برای کامپازیتورهای وِیلند" }, "greeter welcome page title": { "Welcome to DankMaterialShell": "به DankMaterialShell خوش آمدید" @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "نصب شده" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "برای پیش‌فرض خالی رها کنید" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "هیچ تم سفارشی یافت نشد" }, @@ -4882,6 +5141,12 @@ "official": { "official": "رسمی" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "نصب افزونه‌ها از مخزن افزونه DMS" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "جستجوی افزونه‌ها..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "رنگ تم از مخزن DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "ثانیه" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "مدیریت تصویر پس‌زمینه خارجی" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype در دسترس نیست - wtype را برای پشتیبانی از الصاق نصب کنید" }, diff --git a/quickshell/translations/poexports/fr.json b/quickshell/translations/poexports/fr.json index 5e924c82..a72c0339 100644 --- a/quickshell/translations/poexports/fr.json +++ b/quickshell/translations/poexports/fr.json @@ -156,7 +156,7 @@ "Access clipboard history": "Accéder à l’historique du presse-papiers" }, "Access to notifications and do not disturb": { - "Access to notifications and do not disturb": "Accès aux notifications et au mode Ne pas déranger" + "Access to notifications and do not disturb": "Accès aux notifications et au mode ne pas déranger" }, "Access to system controls and settings": { "Access to system controls and settings": "Accès aux contrôles et paramètres système" @@ -204,7 +204,7 @@ "Add Printer": "Ajouter une imprimante" }, "Add Widget": { - "Add Widget": "Ajouter un Widget" + "Add Widget": "Ajouter un widget" }, "Add Widget to %1 Section": { "Add Widget to %1 Section": "Ajouter un widget à la section %1" @@ -252,7 +252,7 @@ "Always Show Percentage": "Toujours afficher le pourcentage" }, "Always hide the dock and reveal it when hovering near the dock area": { - "Always hide the dock and reveal it when hovering near the dock area": "" + "Always hide the dock and reveal it when hovering near the dock area": "Toujours cacher le dock et le révéler au survol proche de la zone du dock" }, "Always on icons": { "Always on icons": "Icônes toujours visibles" @@ -273,7 +273,7 @@ "Analog": "Analogique" }, "Animation Speed": { - "Animation Speed": "Vitesse d'Animation" + "Animation Speed": "Vitesse d'animation" }, "Anonymous Identity": { "Anonymous Identity": "Identité anonyme" @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identité anonyme (facultatif)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "Substitutions d’identifiant d’application" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Icône des applis" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Les applications sont classées par fréquence d’utilisation, puis par dernière utilisation, puis par ordre alphabétique." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Organiser les écrans et configurer la résolution, la fréquence de rafraîchissement et le VRR." }, @@ -318,13 +330,13 @@ "Audio": "Audio" }, "Audio Codec": { - "Audio Codec": "Codec Audio" + "Audio Codec": "Codec audio" }, "Audio Codec Selection": { - "Audio Codec Selection": "Sélection du Codec Audio" + "Audio Codec Selection": "Sélection du codec audio" }, "Audio Devices": { - "Audio Devices": "Appareils Audio" + "Audio Devices": "Appareils audio" }, "Audio Input": { "Audio Input": "Entrée audio" @@ -333,7 +345,7 @@ "Audio Output": "Sortie audio" }, "Audio Output Devices (": { - "Audio Output Devices (": "Périphériques de Sortie Audio (" + "Audio Output Devices (": "Périphériques de sortie audio (" }, "Audio Output Switch": { "Audio Output Switch": "Sélecteur de sortie audio" @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Connexion automatique activée" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Contrôle automatique" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Verrouiller automatiquement l’écran lorsque le système se prépare à se mettre en veille" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Disponible" }, @@ -441,10 +459,10 @@ "Available Layouts": "Dispositions disponibles" }, "Available Networks": { - "Available Networks": "Réseaux Disponibles" + "Available Networks": "Réseaux disponibles" }, "Available Plugins": { - "Available Plugins": "Plugins Disponibles" + "Available Plugins": "Plugins disponibles" }, "Available Screens (%1)": { "Available Screens (%1)": "Écrans disponibles (%1)" @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Parcourir les plugins" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS non disponible" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Caméra" }, @@ -633,7 +660,7 @@ "Caps Lock Indicator": "Indicateur Verr. Maj." }, "Center Section": { - "Center Section": "Partie Centrale" + "Center Section": "Partie centrale" }, "Center Single Column": { "Center Single Column": "Colonne centrale unique" @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Choisir une couleur" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Choisir la couleur du logo du lanceur" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Choisir l’écran qui affiche l’interface de verrouillage. Les autres écrans afficheront une couleur unie pour éviter le marquage OLED." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Chiffrement" }, @@ -702,16 +735,16 @@ "Clear": "Effacer" }, "Clear All": { - "Clear All": "Tout Effacer" + "Clear All": "Tout effacer" }, "Clear All History?": { - "Clear All History?": "Effacer Tout l'Historique ?" + "Clear All History?": "Effacer tout l'historique ?" }, "Clear All Jobs": { "Clear All Jobs": "Supprimer toutes les tâches" }, "Clear History?": { - "Clear History?": "" + "Clear History?": "Effacer l'historique ?" }, "Clear all history when server starts": { "Clear all history when server starts": "Effacer tout l’historique au démarrage du serveur" @@ -732,7 +765,7 @@ "Click 'Setup' to create the outputs config and add include to your compositor config.": "Cliquez sur « Configurer » pour créer la configuration des sorties et l’inclure dans la configuration du compositeur." }, "Click Import to add a .ovpn or .conf": { - "Click Import to add a .ovpn or .conf": "Cliquez sur Importer pour ajouter un fichier .ovpn ou .conf" + "Click Import to add a .ovpn or .conf": "Cliquez sur importer pour ajouter un fichier .ovpn ou .conf" }, "Click Through": { "Click Through": "Cliquable à travers" @@ -770,9 +803,15 @@ "Close": { "Close": "Fermer" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Fermer la vue d’ensemble au lancement" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Couleur" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Température de couleur pour le mode nuit" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Mélange coloré avec des accents lumineux et contrastés." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Commande" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Communication" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Contrôle le média en lecture" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Contrôler les espaces de travail et les colonnes via le défilement sur la barre" }, @@ -924,10 +975,13 @@ "Copy": "Copier" }, "Copy Full Command": { - "Copy Full Command": "" + "Copy Full Command": "Copier commande complète" + }, + "Copy HTML": { + "Copy HTML": "" }, "Copy Name": { - "Copy Name": "" + "Copy Name": "Copier nom" }, "Copy PID": { "Copy PID": "Copier le PID" @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Copier le nom du processus" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Rayon des coins" }, @@ -948,7 +1011,7 @@ "Cover Open": "Capot ouvert" }, "Create Dir": { - "Create Dir": "Créer un Dossier" + "Create Dir": "Créer un dossier" }, "Create Printer": { "Create Printer": "Créer une imprimante" @@ -957,7 +1020,7 @@ "Creating...": "Création..." }, "Critical Priority": { - "Critical Priority": "Priorité Critique" + "Critical Priority": "Priorité critique" }, "Current Items": { "Current Items": "Éléments actuels" @@ -1002,7 +1065,7 @@ "Custom Color": "Couleur personnalisée" }, "Custom Duration": { - "Custom Duration": "Durée Personnalisée" + "Custom Duration": "Durée personnalisée" }, "Custom Hibernate Command": { "Custom Hibernate Command": "Commande d’hibernation personnalisée" @@ -1104,7 +1167,7 @@ "Dawn (Nautical Twilight)": "Aube (crépuscule nautique)" }, "Day Temperature": { - "Day Temperature": "Température diurne" + "Day Temperature": "Température en journée" }, "Daytime": { "Daytime": "En journée" @@ -1137,13 +1200,13 @@ "Delete Printer": "Supprimer l’imprimante" }, "Delete Saved Item?": { - "Delete Saved Item?": "" + "Delete Saved Item?": "Supprimer l'élément sauvegardé ?" }, "Delete VPN": { "Delete VPN": "Supprimer le VPN" }, "Derives colors that closely match the underlying image.": { - "Derives colors that closely match the underlying image.": "Génère des couleurs correspondant étroitement à l’image sous-jacente." + "Derives colors that closely match the underlying image.": "Génère des couleurs proches de l’image sous-jacente." }, "Description": { "Description": "Description" @@ -1224,7 +1287,7 @@ "Disk Usage": "Utilisation du disque" }, "Disks": { - "Disks": "" + "Disks": "Disques" }, "Dismiss": { "Dismiss": "Ignorer" @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Espacement des bords" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Éducation" }, @@ -1362,7 +1428,7 @@ "Enable Desktop Clock": "Activer l’horloge du bureau" }, "Enable Do Not Disturb": { - "Enable Do Not Disturb": "Activer le mode Ne pas déranger" + "Enable Do Not Disturb": "Activer le mode ne pas déranger" }, "Enable GPU Temperature": { "Enable GPU Temperature": "Activer la température du GPU" @@ -1377,7 +1443,7 @@ "Enable System Sounds": "Activer les sons système" }, "Enable Weather": { - "Enable Weather": "Activer la Météo" + "Enable Weather": "Activer la météo" }, "Enable WiFi": { "Enable WiFi": "Activer le Wi-Fi" @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "Activer l’intégration du verrouillage via loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Afficher le champ de mot de passe" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Saisir le code PIN pour " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Saisir une requête de recherche" }, @@ -1461,10 +1533,13 @@ "Enterprise": "Entreprise" }, "Entry pinned": { - "Entry pinned": "" + "Entry pinned": "Entrée épinglée" }, "Entry unpinned": { - "Entry unpinned": "" + "Entry unpinned": "Entrée désépinglée" + }, + "Environment Variables": { + "Environment Variables": "" }, "Error": { "Error": "Erreur" @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Exponentiel" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I : Basculer • F10 : Aide" }, @@ -1509,7 +1587,7 @@ "Failed to cancel selected job": "Échec de l’annulation de la tâche sélectionnée" }, "Failed to check pin limit": { - "Failed to check pin limit": "" + "Failed to check pin limit": "Échec de la vérification de la limite d'épinglage" }, "Failed to connect VPN": { "Failed to connect VPN": "Échec de la connexion au VPN" @@ -1587,7 +1665,7 @@ "Failed to pause printer": "Échec de la mise en pause de l’imprimante" }, "Failed to pin entry": { - "Failed to pin entry": "" + "Failed to pin entry": "Échec de l'épinglage de l'entrée" }, "Failed to print test page": { "Failed to print test page": "Échec de l’impression de la page de test" @@ -1635,7 +1713,7 @@ "Failed to start connection to %1": "Échec du démarrage de la connexion à %1" }, "Failed to unpin entry": { - "Failed to unpin entry": "" + "Failed to unpin entry": "Échec du désépinglage de l'entrée" }, "Failed to update VPN": { "Failed to update VPN": "Échec de la mise à jour du VPN" @@ -1665,11 +1743,14 @@ "File": "Fichier" }, "File Already Exists": { - "File Already Exists": "Fichier Déjà Existant" + "File Already Exists": "Fichier déjà existant" }, "File Information": { "File Information": "Informations sur le fichier" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Fichiers" }, @@ -1743,7 +1824,7 @@ "Force HDR": "Forcer le HDR" }, "Force Kill (SIGKILL)": { - "Force Kill (SIGKILL)": "" + "Force Kill (SIGKILL)": "Forcer l'arrêt (SIGKILL)" }, "Force Kill Process": { "Force Kill Process": "Forcer l’arrêt du processus" @@ -1800,7 +1881,7 @@ "Gamma control not available. Requires DMS API v6+.": "Le contrôle du gamma n’est pas disponible. Nécessite l’API DMS v6 ou supérieure." }, "Generic device name | Generic device name fallback": { - "device": "" + "device": "appareil" }, "GitHub": { "GitHub": "GitHub" @@ -1821,7 +1902,7 @@ "Gradually fade the screen before locking with a configurable grace period": "Atténuer progressivement l'écran avant de verrouiller avec un délai configurable" }, "Gradually fade the screen before turning off monitors with a configurable grace period": { - "Gradually fade the screen before turning off monitors with a configurable grace period": "Atténuer progressivement l'écran avant d'éteindre les moniteurs avec un délai configurable" + "Gradually fade the screen before turning off monitors with a configurable grace period": "Atténuer progressivement l'écran avant d'éteindre les écrans avec un délai configurable" }, "Graph Time Range": { "Graph Time Range": "Intervalle temporel du graphique" @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Santé" }, @@ -1881,14 +1965,23 @@ "Hex": "Hex" }, "Hibernate": { - "Hibernate": "Veille Prolongée" + "Hibernate": "Veille prolongée" }, "Hidden": { "Hidden": "Masqué" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "Réseau masqué" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Délai de masquage" }, @@ -1920,7 +2013,7 @@ "History Settings": "Paramètres de l'historique" }, "History cleared. %1 pinned entries kept.": { - "History cleared. %1 pinned entries kept.": "" + "History cleared. %1 pinned entries kept.": "Historique effacé. %1 entrées épinglées conservées." }, "Hold Duration": { "Hold Duration": "Durée de maintien" @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "Adresse IP :" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Taille d'icônes" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Inclure les transitions" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Plugins incompatibles chargés" }, @@ -2037,7 +2136,7 @@ "Install plugins from the DMS plugin registry": "Installer les plugins depuis le dépôt de plugins DMS" }, "Intelligent Auto-hide": { - "Intelligent Auto-hide": "" + "Intelligent Auto-hide": "Masquage automatique" }, "Interface:": { "Interface:": "Interface :" @@ -2067,170 +2166,186 @@ "Jobs: ": "Tâches : " }, "KDE Connect SMS action": { - "Opening SMS": "", - "Opening SMS app": "" + "Opening SMS": "Ouvrir les SMS", + "Opening SMS app": "Ouvrir l'appli SMS" }, "KDE Connect SMS dialog title": { - "Send SMS": "" + "Send SMS": "Envoyer SMS" }, "KDE Connect SMS message input placeholder": { - "Message": "" + "Message": "Message" }, "KDE Connect SMS phone input placeholder": { - "Phone number": "" + "Phone number": "Numéro de téléphone" }, "KDE Connect SMS send button": { - "Send": "" + "Send": "Envoyer" }, "KDE Connect SMS tooltip": { - "SMS": "" + "SMS": "SMS" }, "KDE Connect accept pairing button": { - "Accept": "" + "Accept": "Accepter" }, "KDE Connect browse action": { - "Opening file browser": "", - "Opening files": "" + "Opening file browser": "Ouvrir l'explorateur de fichiers", + "Opening files": "Ouvrir les fichiers" }, "KDE Connect browse tooltip": { - "Browse Files": "" + "Browse Files": "Chercher des fichiers" }, "KDE Connect clipboard action": { - "Clipboard sent": "" + "Clipboard sent": "Presse-papier envoyé" }, "KDE Connect clipboard tooltip": { - "Send Clipboard": "" + "Send Clipboard": "Envoyer le presse-papier" }, "KDE Connect connected status": { - "Connected": "" + "Connected": "Connecté" }, "KDE Connect daemon hint": { - "Start kdeconnectd to use this plugin": "" + "Start kdeconnectd to use this plugin": "Démarrer kdeconnectd pour utiliser ce plugin" }, "KDE Connect error": { - "Failed to accept pairing": "", - "Failed to browse device": "", - "Failed to launch SMS app": "", - "Failed to reject pairing": "", - "Failed to ring device": "", - "Failed to send clipboard": "", - "Failed to send ping": "", - "Failed to share": "", - "Pairing failed": "", - "Unpair failed": "" + "Failed to accept pairing": "Échec de l'appairage", + "Failed to browse device": "Échec de la recherche de l'appareil", + "Failed to launch SMS app": "Échec du lancement de l'appli SMS", + "Failed to reject pairing": "Échec du rejet de l'appairage", + "Failed to ring device": "Échec de la sonnerie sur l'appareil", + "Failed to send clipboard": "Échec de l'envoi du presse-papier", + "Failed to send file": "", + "Failed to send ping": "Échec de l'envoi du ping", + "Failed to share": "Échec du partage", + "Pairing failed": "Échec de l'appairage", + "Unpair failed": "Échec de la déconnexion" + }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" }, "KDE Connect file share notification": { - "File received from": "" + "File received from": "Fichier reçu de" }, "KDE Connect hint message": { - "Make sure KDE Connect is running on your other devices": "" + "Make sure KDE Connect is running on your other devices": "Vérifiez que KDE Connect est bien démarré sur vos autres appareils" }, "KDE Connect no devices message": { - "No devices found": "" + "No devices found": "Aucun appareil trouvé" }, "KDE Connect no devices status": { - "No devices": "" + "No devices": "Aucun appareil" }, "KDE Connect not paired status": { - "Not paired": "" + "Not paired": "Non appairé" }, "KDE Connect offline status": { - "Offline": "" + "Offline": "Hors ligne" }, "KDE Connect open SMS app button": { - "Open App": "" + "Open App": "Ouvrir appli" }, "KDE Connect open app hint": { - "Open KDE Connect on your phone": "" + "Open KDE Connect on your phone": "Ouvrir KDE Connect sur votre téléphone" }, "KDE Connect pair button": { - "Pair": "" + "Pair": "Appairer" }, "KDE Connect pairing action": { - "Device paired": "", - "Pairing request sent": "" + "Device paired": "Appareil connecté", + "Pairing request sent": "Demande d'appairage envoyée" }, "KDE Connect pairing in progress status": { - "Pairing": "" + "Pairing": "Connexion" }, "KDE Connect pairing request notification": { - "Pairing request from": "" + "Pairing request from": "Demande d'appairage de" }, "KDE Connect pairing requested status": { - "Pairing requested": "" + "Pairing requested": "Appairage demandé" }, "KDE Connect pairing verification key label": { - "Verification": "" + "Verification": "Vérification" }, "KDE Connect ping action": { - "Ping sent": "", - "Ping sent to": "" + "Ping sent": "Ping envoyé", + "Ping sent to": "Ping envoyé à" }, "KDE Connect ping tooltip": { - "Ping": "" + "Ping": "Ping" }, "KDE Connect refresh button | KDE Connect refresh tooltip": { - "Refresh": "" + "Refresh": "Actualiser" }, "KDE Connect reject pairing button": { - "Reject": "" + "Reject": "Rejeter" }, "KDE Connect request pairing button": { - "Request Pairing": "" + "Request Pairing": "Demander l'appairage" }, "KDE Connect ring action": { - "Ringing": "" + "Ringing": "En train de sonner" }, "KDE Connect ring tooltip": { - "Ring": "" + "Ring": "Faire sonner" + }, + "KDE Connect send file button": { + "Send File": "" }, "KDE Connect service unavailable message": { - "KDE Connect unavailable": "" + "KDE Connect unavailable": "KDE Connect indisponible" }, "KDE Connect share URL button": { - "Share URL": "" + "Share URL": "Partager l'URL" + }, + "KDE Connect share button": { + "Share Text": "" }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "Partager" + }, + "KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, "KDE Connect share input placeholder": { - "Enter URL or text to share": "" + "Enter URL or text to share": "Entrer l'URL ou le texte à partager" }, "KDE Connect share success": { - "Shared": "" + "Shared": "Partagé" }, "KDE Connect start daemon hint": { - "Start kdeconnectd to connect devices": "" + "Start kdeconnectd to connect devices": "Démarrer kdeconnectd pour connecter des appareils" }, "KDE Connect status": { - "No devices connected": "" + "No devices connected": "Aucun appareil connecté" }, "KDE Connect status multiple devices": { - "devices connected": "" + "devices connected": "appareils connectés" }, "KDE Connect status single device": { - "1 device connected": "" + "1 device connected": "1 appareil connecté" }, "KDE Connect unavailable error title": { - "KDE Connect Not Available": "" + "KDE Connect Not Available": "KDE Connect non disponible" }, "KDE Connect unavailable status": { - "Unavailable": "" + "Unavailable": "Indisponible" }, "KDE Connect unknown device status | unknown author": { - "Unknown": "" + "Unknown": "Inconnu" }, "KDE Connect unpair action": { - "Device unpaired": "" + "Device unpaired": "Appareil déconnecté" }, "KDE Connect unpair tooltip": { - "Unpair": "" + "Unpair": "Déconnexion" }, "Keep Awake": { "Keep Awake": "Maintenir éveillé" }, "Keep Changes": { - "Keep Changes": "Conserver les Modifications" + "Keep Changes": "Conserver les modifications" }, "Keeping Awake": { "Keeping Awake": "Maintien éveillé" @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "Périphérique LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Dernier lancement %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Lanceur" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Icône du bouton du lanceur" }, @@ -2308,7 +2432,7 @@ "Left": "Gauche" }, "Left Section": { - "Left Section": "Partie Gauche" + "Left Section": "Partie gauche" }, "Light Mode": { "Light Mode": "Mode Clair" @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Chargement des plugins..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Chargement..." }, @@ -2389,7 +2516,7 @@ "Longitude": "Longitude" }, "Low Priority": { - "Low Priority": "Faible Priorité" + "Low Priority": "Faible priorité" }, "MAC": { "MAC": "MAC" @@ -2449,7 +2576,7 @@ "Matugen Templates": "Modèles Matugen" }, "Max apps to show": { - "Max apps to show": " Nombre max d'apps à afficher" + "Max apps to show": "Nombre max d'apps à afficher" }, "Maximize Detection": { "Maximize Detection": "Détection de maximisation" @@ -2461,16 +2588,16 @@ "Maximum History": "Historique maximal" }, "Maximum Pinned Entries": { - "Maximum Pinned Entries": "" + "Maximum Pinned Entries": "Maximum d'entrées épinglées" }, "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" }, "Maximum number of entries that can be saved": { - "Maximum number of entries that can be saved": "" + "Maximum number of entries that can be saved": "Nombre maximum d'entrées qui peuvent être sauvegardées" }, "Maximum pinned entries reached": { - "Maximum pinned entries reached": "" + "Maximum pinned entries reached": "Le maximum d'entrées épinglées a été atteint" }, "Maximum size per clipboard entry": { "Maximum size per clipboard entry": "Taille maximale par élément du presse-papiers" @@ -2515,7 +2642,7 @@ "Memory Graph": "Graphique de la mémoire" }, "Memory Usage": { - "Memory Usage": "Utilisation Mémoire" + "Memory Usage": "Utilisation mémoire" }, "Memory usage indicator": { "Memory usage indicator": "Indicateur d’utilisation de la mémoire" @@ -2599,7 +2726,7 @@ "Muted palette with subdued, calming tones.": "Palette atténuée aux tons doux et apaisants." }, "NM not supported": { - "NM not supported": "NetworkManager non pris en charge" + "NM not supported": "NM non pris en charge" }, "Name": { "Name": "Nom" @@ -2617,7 +2744,7 @@ "Network Graph": "Graphique réseau" }, "Network Info": { - "Network Info": "Info Réseau" + "Network Info": "Info réseau" }, "Network Information": { "Network Information": "Informations réseau" @@ -2647,7 +2774,7 @@ "New Keybind": "Nouveau raccourci clavier" }, "New Notification": { - "New Notification": "Nouvelle Notification" + "New Notification": "Nouvelle notification" }, "New York, NY": { "New York, NY": "New York, NY" @@ -2665,7 +2792,7 @@ "Night Mode": "Mode nuit" }, "Night Temperature": { - "Night Temperature": "Température nocturne" + "Night Temperature": "Température de nuit" }, "Niri Integration": { "Niri Integration": "Intégration Niri" @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Aucun adaptateur" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Aucune batterie" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Aucun fichier trouvé" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Aucun élément ajouté pour le moment" }, "No keybinds found": { "No keybinds found": "Aucun raccourci clavier trouvé" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Aucune correspondance" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Aucun plugin trouvé" }, @@ -2764,10 +2906,16 @@ "No printers found": "Aucune imprimante trouvée" }, "No recent clipboard entries found": { - "No recent clipboard entries found": "" + "No recent clipboard entries found": "Aucune entrée récente trouvée dans le presse-papier" + }, + "No results found": { + "No results found": "" }, "No saved clipboard entries": { - "No saved clipboard entries": "" + "No saved clipboard entries": "Aucune entrée du presse-papier sauvegardée" + }, + "No trigger": { + "No trigger": "" }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "Aucune variante créée. Cliquez sur Ajouter pour créer un nouveau widget de moniteur." @@ -2788,7 +2936,7 @@ "Normal Font": "Police normale" }, "Normal Priority": { - "Normal Priority": "Priorité Normale" + "Normal Priority": "Priorité normale" }, "Not available": { "Not available": "Non disponible" @@ -2845,7 +2993,7 @@ "OSD Position": "Position de l’OSD" }, "Occupied Color": { - "Occupied Color": "" + "Occupied Color": "Couleur occupée" }, "Off": { "Off": "Désactivé" @@ -2866,7 +3014,7 @@ "Only adjust gamma based on time or location rules.": "Ajuster le gamma uniquement en fonction de l’heure ou de l’emplacement." }, "Only show windows from the current monitor on each dock": { - "Only show windows from the current monitor on each dock": "Afficher uniquement les fenêtres du moniteur actuel sur chaque dock" + "Only show windows from the current monitor on each dock": "Afficher uniquement les fenêtres de l'écran actuel sur chaque dock" }, "Only visible if hibernate is supported by your system": { "Only visible if hibernate is supported by your system": "Visible uniquement si l’hibernation est prise en charge par votre système" @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Ouvrir un fichier du bloc-notes" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Ouvrir la barre de recherche pour trouver du texte" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Marge" }, @@ -2986,16 +3143,16 @@ "Per-Mode Wallpapers": "Fonds d’écran par mode" }, "Per-Monitor Wallpapers": { - "Per-Monitor Wallpapers": "Fonds d’écran par moniteur" + "Per-Monitor Wallpapers": "Fonds d’écran par écran" }, "Per-Monitor Workspaces": { - "Per-Monitor Workspaces": "Espaces de travail par moniteur" + "Per-Monitor Workspaces": "Espaces de travail par écran" }, "Percentage": { "Percentage": "Pourcentage" }, "Performance": { - "Performance": "" + "Performance": "Performance" }, "Permission denied to set profile image.": { "Permission denied to set profile image.": "Permission refusée pour définir l’image de profil." @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Épinglé" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Placez ici les dossiers de plugins. Chaque plugin doit contenir un fichier manifeste plugin.json." }, @@ -3043,11 +3203,14 @@ "Plugin": "Plugin" }, "Plugin Directory": { - "Plugin Directory": "Répertoire des Plugins" + "Plugin Directory": "Répertoire des plugins" }, "Plugin Management": { "Plugin Management": "Gestion des plugins" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Plugin désactivé – activez-le dans les paramètres des plugins" }, @@ -3097,7 +3260,7 @@ "Power Profile Degradation": "Dégradation du profil d’alimentation" }, "Power off monitors on lock": { - "Power off monitors on lock": "" + "Power off monitors on lock": "Éteindre les écrans au verrouillage" }, "Power profile management available": { "Power profile management available": "Gestion du profil d’alimentation disponible" @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Empêcher la mise en veille de l’écran" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Principal" }, @@ -3169,7 +3335,7 @@ "Process Count": "Nombre de processus" }, "Processes": { - "Processes": "" + "Processes": "Processus" }, "Processing": { "Processing": "Traitement en cours" @@ -3199,7 +3365,7 @@ "RGB": "RGB" }, "Rain Chance": { - "Rain Chance": "Risque de Pluie" + "Rain Chance": "Risque de pluie" }, "Rate": { "Rate": "Taux" @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Supprimer les marges et bordures lorsque les fenêtres sont maximisées" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "Répéter" }, @@ -3301,7 +3473,7 @@ "Right": "Droite" }, "Right Section": { - "Right Section": "Partie Droite" + "Right Section": "Partie droite" }, "Right Tiling": { "Right Tiling": "Mosaïque droite" @@ -3370,7 +3542,7 @@ "Saved Configurations": "Configurations enregistrées" }, "Saved item deleted": { - "Saved item deleted": "" + "Saved item deleted": "Élément sauvegardé supprimé" }, "Scale": { "Scale": "Échelle" @@ -3394,7 +3566,7 @@ "Science": "Science" }, "Screen Sharing": { - "Screen Sharing": "" + "Screen Sharing": "Partage d'écran" }, "Screen sharing": { "Screen sharing": "Partage d’écran" @@ -3417,8 +3589,14 @@ "Scrolling": { "Scrolling": "Défilement" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { - "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Rechercher par combinaison de touches, description ou nom de l’action.\n\nL’action par défaut copie le raccourci dans le presse-papiers.\nClic droit ou flèche droite pour épingler les raccourcis fréquemment utilisés — ils apparaîtront en haut lorsqu’on ne recherche pas." + "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Rechercher par combinaison de touches, description ou nom de l’action.\\n\\nL’action par défaut copie le raccourci dans le presse-papiers.\\nClic droit ou flèche droite pour épingler les raccourcis fréquemment utilisés — ils apparaîtront en haut lorsqu’il n'y a pas de recherche." }, "Search file contents": { "Search file contents": "Rechercher dans le contenu des fichiers" @@ -3456,6 +3634,9 @@ "Security": { "Security": "Sécurité" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Sélectionner une application" }, @@ -3490,7 +3671,7 @@ "Select font weight for UI text": "Sélectionner le poids de la police pour le texte de l’interface" }, "Select monitor to configure wallpaper": { - "Select monitor to configure wallpaper": "Sélectionner le moniteur pour configurer le fond d’écran" + "Select monitor to configure wallpaper": "Sélectionner l'écran sur lequel configurer le fond d’écran" }, "Select monospace font for process list and technical displays": { "Select monospace font for process list and technical displays": "Sélectionner la police monospace pour la liste des processus et les affichages techniques" @@ -3523,7 +3704,7 @@ "Server": "Serveur" }, "Set different wallpapers for each connected monitor": { - "Set different wallpapers for each connected monitor": "Définir des fonds d’écran différents pour chaque moniteur connecté" + "Set different wallpapers for each connected monitor": "Définir des fonds d’écran différents pour chaque écran connecté" }, "Set different wallpapers for light and dark mode": { "Set different wallpapers for light and dark mode": "Définir des fonds d’écran différents pour le mode clair et sombre" @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Configuration" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Maj+Suppr : Tout effacer • Échap : Fermer" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Entrée : Coller • Shift+Suppr : Tout effacer • Échap : Fermer" }, @@ -3586,7 +3773,7 @@ "Show Header": "Afficher l’en-tête" }, "Show Hibernate": { - "Show Hibernate": "Afficher Hiberner" + "Show Hibernate": "Afficher hiberner" }, "Show Hour Numbers": { "Show Hour Numbers": "Afficher les heures" @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "Afficher l’humidité" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Afficher les numéros de ligne" }, @@ -3604,10 +3794,10 @@ "Show Location": "Afficher la localisation" }, "Show Lock": { - "Show Lock": "Afficher Verrouiller" + "Show Lock": "Afficher verrouiller" }, "Show Log Out": { - "Show Log Out": "Afficher Déconnexion" + "Show Log Out": "Afficher déconnexion" }, "Show Memory": { "Show Memory": "Afficher la mémoire" @@ -3625,7 +3815,7 @@ "Show Occupied Workspaces Only": "Afficher uniquement les espaces occupés" }, "Show Power Off": { - "Show Power Off": "Afficher Éteindre" + "Show Power Off": "Afficher éteindre" }, "Show Precipitation Probability": { "Show Precipitation Probability": "Afficher la probabilité de précipitation" @@ -3634,19 +3824,19 @@ "Show Pressure": "Afficher la pression" }, "Show Reboot": { - "Show Reboot": "Afficher Redémarrer" + "Show Reboot": "Afficher redémarrer" }, "Show Restart DMS": { - "Show Restart DMS": "Afficher Redémarrer DMS" + "Show Restart DMS": "Afficher redémarrer DMS" }, "Show Seconds": { - "Show Seconds": "Afficher les Secondes" + "Show Seconds": "Afficher les secondes" }, "Show Sunrise/Sunset": { "Show Sunrise/Sunset": "Afficher lever/coucher du soleil" }, "Show Suspend": { - "Show Suspend": "Afficher Suspendre" + "Show Suspend": "Afficher suspendre" }, "Show Top Processes": { "Show Top Processes": "Afficher les processus principaux" @@ -3676,7 +3866,7 @@ "Show darkened overlay behind modal dialogs": "Afficher un arrière-plan sombre derrière les modaux" }, "Show dock when floating windows don't overlap its area": { - "Show dock when floating windows don't overlap its area": "" + "Show dock when floating windows don't overlap its area": "Montrer le dock lorsque les fenêtres flottantes ne passent pas devant" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Afficher la superposition du lanceur lors de la saisie dans l’aperçu Niri. Désactiver pour utiliser un autre lanceur." @@ -3727,7 +3917,7 @@ "Show only apps running in current workspace": "Afficher uniquement les applications en cours dans l’espace de travail actuel" }, "Show only workspaces belonging to each specific monitor.": { - "Show only workspaces belonging to each specific monitor.": "Afficher uniquement les espaces de travail appartenant à chaque moniteur spécifique" + "Show only workspaces belonging to each specific monitor.": "Afficher uniquement les espaces de travail appartenant à chaque écran spécifique." }, "Show password": { "Show password": "Afficher le mot de passe" @@ -3742,7 +3932,7 @@ "Show workspace name on horizontal bars, and first letter on vertical bars": "Afficher le nom de l’espace de travail sur les barres horizontales et la première lettre sur les barres verticales" }, "Show workspaces of the currently focused monitor": { - "Show workspaces of the currently focused monitor": "Afficher les espaces de travail du moniteur actuellement actif" + "Show workspaces of the currently focused monitor": "Afficher les espaces de travail de l'écran actuellement actif" }, "Shows all running applications with focus indication": { "Shows all running applications with focus indication": "Afficher toutes les applications en cours avec indication de focus" @@ -3751,7 +3941,7 @@ "Shows current workspace and allows switching": "Afficher l’espace de travail actuel et permettre de changer" }, "Shows when caps lock is active": { - "Shows when caps lock is active": "Indique lorsque la touche Majuscule est activée" + "Shows when caps lock is active": "Indique lorsque la touche majuscule est activée" }, "Shows when microphone, camera, or screen sharing is active": { "Shows when microphone, camera, or screen sharing is active": "Indique lorsque le microphone, la caméra ou le partage d’écran est actif" @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Redimensionnement" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "Authentification par carte à puce" }, @@ -3784,7 +3977,7 @@ "Some plugins require a newer version of DMS:": "Certains plugins nécessitent une version plus récente de DMS :" }, "Sort Alphabetically": { - "Sort Alphabetically": "Trier Alphabétiquement " + "Sort Alphabetically": "Trier par ordre alphabétique" }, "Sort By": { "Sort By": "Trier par" @@ -3880,7 +4073,7 @@ "Swap": "Échange" }, "Switch User": { - "Switch User": "Changer d'Utilisateur" + "Switch User": "Changer d'utilisateur" }, "Switch to power profile": { "Switch to power profile": "Changer de profil d’énergie" @@ -3961,7 +4154,7 @@ "Text": "Texte" }, "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "L’outil 'dgop' est requis pour la surveillance système.\\nVeuillez installer dgop pour utiliser cette fonctionnalité." + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "L’outil 'dgop' est requis pour le moniteur système.\\nVeuillez installer dgop pour utiliser cette fonctionnalité." }, "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": { "The DMS_SOCKET environment variable is not set or the socket is unavailable. Automated plugin management requires the DMS_SOCKET.": "La variable d’environnement DMS_SOCKET n’est pas définie ou le socket est indisponible. La gestion automatique des plugins nécessite DMS_SOCKET." @@ -3994,13 +4187,13 @@ "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "Ce widget empêche la mise hors tension de la GPU, ce qui peut affecter considérablement l’autonomie des portables. Son utilisation n’est pas recommandée sur les portables à GPU hybride." }, "This will delete all unpinned entries. %1 pinned entries will be kept.": { - "This will delete all unpinned entries. %1 pinned entries will be kept.": "" + "This will delete all unpinned entries. %1 pinned entries will be kept.": "Cela supprimera toutes les entrées non épinglées. %1 entrées épinglées seront conservées." }, "This will permanently delete all clipboard history.": { "This will permanently delete all clipboard history.": "Cela supprimera définitivement tout l’historique du presse-papiers." }, "This will permanently remove this saved clipboard item. This action cannot be undone.": { - "This will permanently remove this saved clipboard item. This action cannot be undone.": "" + "This will permanently remove this saved clipboard item. This action cannot be undone.": "Cela supprimera définitivement cet élément du presse-papier. Cela ne peut pas être annulé." }, "Tiling": { "Tiling": "Mosaïque" @@ -4090,29 +4283,53 @@ "Transform": "Transformer" }, "Transition Effect": { - "Transition Effect": "Effet de Transition" + "Transition Effect": "Effet de transition" }, "Transparency": { "Transparency": "Transparence" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "Déclencheur" }, "Trigger Prefix": { "Trigger Prefix": "Préfixe du déclencheur" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { - "Turn off all displays immediately when the lock screen activates": "" + "Turn off all displays immediately when the lock screen activates": "Éteindre les écrans immédiatement lorsque le verrouillage d'écran s'active" }, "Turn off monitors after": { - "Turn off monitors after": "Éteindre les moniteurs après" + "Turn off monitors after": "Éteindre les écrans après" }, "Type": { "Type": "Type" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "Tapez ce préfixe pour rechercher des raccourcis" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Typographie" }, @@ -4153,7 +4370,7 @@ "Unpin from Dock": "Détacher du dock" }, "Unsaved Changes": { - "Unsaved Changes": "Modifications Non Enregistrées" + "Unsaved Changes": "Modifications non enregistrées" }, "Unsaved changes": { "Unsaved changes": "Modifications non enregistrées" @@ -4171,7 +4388,7 @@ "Update Plugin": "Mettre à jour le plugin" }, "Uptime": { - "Uptime": "" + "Uptime": "Durée d'activité" }, "Urgent Color": { "Urgent Color": "Couleur urgente" @@ -4198,7 +4415,7 @@ "Use Imperial units (°F, mph, inHg) instead of Metric (°C, km/h, hPa)": "Utilisez les unités impériales (°F, mph, inHg) au lieu des unités métriques (°C, km/h, hPa)" }, "Use Monospace Font": { - "Use Monospace Font": "Utiliser une Police Monoespacée" + "Use Monospace Font": "Utiliser la police Monospace" }, "Use System Theme": { "Use System Theme": "Utiliser le thème système" @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Utiliser le thème clair au lieu du thème sombre" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "Utiliser des cartes de notification plus petites" }, @@ -4243,7 +4463,7 @@ "Use trigger prefix to activate": "Utiliser le préfixe de déclenchement pour activer" }, "Use%": { - "Use%": "Utilisé %" + "Use%": "% utilisé" }, "Used": { "Used": "Utilisé" @@ -4257,9 +4477,15 @@ "Username": { "Username": "Nom d’utilisateur" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Utilise les heures de lever et coucher du soleil pour ajuster automatiquement le mode nuit selon votre localisation." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Utilitaires" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Vitesse du vent " }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Rayon des coins de la fenêtre" }, @@ -4473,7 +4702,7 @@ "Window Rounding": "Arrondi des fenêtres" }, "Workspace": { - "Workspace": "Espace de Travail" + "Workspace": "Espace de travail" }, "Workspace Appearance": { "Workspace Appearance": "Apparence de l’espace de travail" @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Sélecteur d’espaces de travail" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Espaces de travail" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Vous avez des modifications non enregistrées. Enregistrer avant d’ouvrir un fichier ?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "applications" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "Ombre" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Parcourir les thèmes" }, @@ -4557,16 +4798,16 @@ "dgop not available": "dgop non disponible" }, "dgop unavailable error message": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "" + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "L'outil 'dgop' est requis pour le moniteur système.\\nInstallez dgop pour utiliser cette fonctionnalité." }, "disk io header in system monitor": { - "Disk I/O": "" + "Disk I/O": "Disque I/O" }, "disk read label": { - "Read:": "" + "Read:": "Lire :" }, "disk write label": { - "Write:": "" + "Write:": "Écrire :" }, "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 existe mais n’est pas inclus dans config.kdl. Les raccourcis personnalisés ne fonctionneront pas tant que cela n’est pas corrigé." @@ -4602,13 +4843,13 @@ "No plugins found": "Aucun plugin trouvé" }, "empty state in disk mounts list": { - "No mount points found": "" + "No mount points found": "Aucun point de montage trouvé" }, "empty state in gpu list": { - "No GPUs detected": "" + "No GPUs detected": "Aucun GPU détecté" }, "empty state in process list": { - "No matching processes": "" + "No matching processes": "Aucun processus correspondant" }, "empty theme list": { "No themes found": "Aucun thème trouvé" @@ -4617,7 +4858,7 @@ "events": "événements" }, "fallback gpu name": { - "Unknown GPU": "" + "Unknown GPU": "GPU inconnu" }, "files": { "files": "fichiers" @@ -4626,7 +4867,7 @@ "Material Design inspired color themes": "Thèmes de couleurs inspirés de Material Design" }, "gpu section header in system monitor": { - "GPU Monitoring": "" + "GPU Monitoring": "Surveillance du GPU" }, "greeter back button": { "Back": "Retour" @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Installé" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "laisser vide pour la valeur par défaut" }, @@ -4821,11 +5077,14 @@ "minutes": "minutes" }, "mount points header in system monitor": { - "Mount Points": "" + "Mount Points": "Points de montage" }, "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Aucun fichier de thème personnalisé" }, @@ -4882,6 +5141,12 @@ "official": { "official": "officiel" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "Installer des plugins depuis le registre de plugins DMS" }, @@ -4897,14 +5162,17 @@ "plugin search placeholder": { "Search plugins...": "Rechercher des plugins…" }, + "primary color": { + "Primary": "" + }, "process count label in footer": { - "Processes:": "" + "Processes:": "Processus :" }, "process detail label": { - "Full Command:": "" + "Full Command:": "Commande complète :" }, "process search placeholder": { - "Search processes...": "" + "Search processes...": "Chercher des processus..." }, "profile image file browser title": { "Select Profile Image": "Sélectionner une image de profil" @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "Thème de couleurs provenant du registre DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "secondes" }, @@ -4928,11 +5199,14 @@ "Surface": "Surface", "Text": "Texte" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "Intensité" }, "short for processes": { - "procs": "" + "procs": "procs" }, "source code link": { "source": "code source" @@ -4941,14 +5215,14 @@ "System Monitor": "Moniteur système" }, "system info header in system monitor": { - "System Information": "" + "System Information": "Information système" }, "system info label": { - "Architecture": "", - "Distribution": "", - "Hostname": "", - "Kernel": "", - "Load Average": "" + "Architecture": "Architecture", + "Distribution": "Distribution", + "Hostname": "Nom d'hôte", + "Kernel": "Noyau", + "Load Average": "Charge moyenne" }, "theme browser description": { "Install color themes from the DMS theme registry": "Installer des thèmes de couleurs depuis le registre de thèmes DMS" @@ -4981,7 +5255,7 @@ "update dms for NM integration.": "Mettre à jour DMS pour l'intégration NM." }, "uptime label in footer": { - "Uptime:": "" + "Uptime:": "Durée d'activité :" }, "version requirement": { "Requires %1": "Nécessite %1" @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Gestion externe des fonds d’écran" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype non disponible - installez wtype pour le support du collage" }, diff --git a/quickshell/translations/poexports/he.json b/quickshell/translations/poexports/he.json index 824dbab6..8b1004c4 100644 --- a/quickshell/translations/poexports/he.json +++ b/quickshell/translations/poexports/he.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "זהות אנונימית (אופציונלי)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "החלפת ID לאפליקציות" }, @@ -305,12 +308,21 @@ "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.": "הגדרת טמפרטורת צבע חמה כדי להפחית מאמץ בעיניים. השתמש/י בהגדרות האוטומציה למטה כדי לשלוט מתי ההגדרה מופעלת." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "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.": "האפליקציות ממוינות לפי תדירות השימוש, אחר כך לפי שימוש אחרון ולבסוף לפי סדר אלפביתי." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "סדר/י מסכים והגדר/י רזולוציה, קצב רענון וVRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "התחברות אוטומטית מופעלת" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "בקרה אוטומטית" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "נעילה אוטומטית של המסך כשהמערכת מתכוננת למצב השהיה" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "זמין" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "עיון בתוספים" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS אינו זמין" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "מצלמה" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "בחר/י צבע" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "בחר/י צבע לוגו למשגר" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "בחר/י איזה מסך מציג את ממשק מסך הנעילה. מסכים אחרים יציגו צבע אחיד להגנה מפני צריבת OLED." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "צופן" }, @@ -770,9 +803,15 @@ "Close": { "Close": "סגירה" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "סגור/י את הסקירה בעת הפעלה" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "צבע" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "טמפרטורת צבע למצב לילה" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "שילוב צבעוני של דגשים מנוגדים ובהירים." }, @@ -812,6 +857,9 @@ "Command": { "Command": "פקודה" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "תקשורת" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "שלוט/שלטי במדיה שמתנגנת כעת" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "שלוט/י בסביבות העבודה ועמודות באמצעות גלילה על הסרגל" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "העתק/י שם תהליך" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "רדיוס פינות" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "ריווח קצוות" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "חינוך" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "הפעלת האינטגרציה עם loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "הצג/י שדה סיסמה" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "הזן/י קוד PIN עבור " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "הזן/י שאילתת חיפוש" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "שגיאה" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "אקספוננציאלי" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: החלפה • F10: עזרה" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "פרטי קובץ" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "קבצים" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "בריאות" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "מוסתר" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "רשת מוסתרת" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "עיכוב הסתרה" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "כתובת IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "גודל סמל" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "כלול/כללי מעברים" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "נטענו תוספים לא תואמים" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "התקן LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "ההפעלה האחרונה הייתה %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "משגר" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "סמל כפתור המשגר" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "טוען תוספים..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "טוען..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "אין מתאמים" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "אין סוללה" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "לא נמצאו קבצים" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "לא נוספו פריטים עדיין" }, "No keybinds found": { "No keybinds found": "לא נמצאו קיצורי מקלדת" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "אין התאמות" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "לא נמצאו תוספים" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "לא נוצרו גרסאות. לחץ/י על הוספה כדי ליצור ווידג׳ט תצוגה חדש." }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "פתח/י קובץ בפנקס" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "פתח/י שורת חיפוש כדי למצוא טקסט" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "קוד PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "ריווח פנימי" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "מוצמד" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "מקם/י כאן את תיקיות התוספים. לכל תוסף צריך להיות קובץ מניפסט בשם plugin.json." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "ניהול תוספים" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "התוסף מושבת – הפעל/י אותו בהגדרות התוספים כדי להשתמש בו" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "מנע/י כיבוי מסך אוטומטי" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "ראשי" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "הסר/י רווחים ומסגרת כאשר חלונות ממוקסמים" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "חזרה" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "גלילה" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "חפש/י לפי צירוף מקשים, תיאור או שם פעולה.\\n\\nפעולת ברירת המחדל מעתיקה את קיצור המקלדת ללוח ההעתקה.\\nלחץ/י לחיצה ימנית או לחץ/י על חץ ימינה כדי להצמיד קיצורים בשימוש תכוף - הם יופיעו בראש הרשימה כשלא מתבצע חיפוש." }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "אבטחה" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "בחר/י אפליקציה" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "התקנה" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "מעטפת" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: ניקוי הכל • Esc: סגירה" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: הדבקה • Shift+Del: ניקוי הכל • Esc: סגירה" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "הצג/י לחות" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "הצג/י מספרי שורות" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "גודל" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "אימות עם כרטיס חכם" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "שקיפות" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "מפעיל" }, "Trigger Prefix": { "Trigger Prefix": "קידומת מפעיל" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "סוג" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "הקלד/י קידומת זו לחיפוש קיצורי מקלדת" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "טיפוגרפיה" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "השתמש/י בערכת נושא בהירה במקום כהה" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "השתמש/י בכרטיסי התראות קטנים יותר" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "שם משתמש" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "משתמש בזמני זריחה/שקיעה כדי לכוונן אוטומטית את מצב הלילה (גאמה) לפי המיקום שלך." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "כלי עזר" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "מהירות הרוח" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "רדיוס הפינות של החלון" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "מחליף סביבות העבודה" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "סביבות עבודה" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "יש לך שינויים שלא נשמרו. האם ברצונך לשמור לפני פתיחת קובץ?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "אפליקציות" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "צל" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "עיין/י בערכות נושא" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "מותקן" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "השאר/י ריק לברירת מחדל" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "מילישניות" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "אין קובץ ערכת נושא מותאמת אישית" }, @@ -4882,6 +5141,12 @@ "official": { "official": "רשמי" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "התקן/י תוספים ממאגר התוספים של DMS" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "חפש/י תוספים..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "ערכת צבעים מהמאגר של DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "שניות" }, @@ -4928,6 +5199,9 @@ "Surface": "משטח", "Text": "טקסט" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "עוצמה" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "ניהול רקעים חיצוני" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype אינו זמין - התקן/י את wtype כדי לאפשר תמיכה בהדבקה" }, diff --git a/quickshell/translations/poexports/hu.json b/quickshell/translations/poexports/hu.json index 53a6b564..da42f84e 100644 --- a/quickshell/translations/poexports/hu.json +++ b/quickshell/translations/poexports/hu.json @@ -252,7 +252,7 @@ "Always Show Percentage": "Mindig mutassa a százalékot" }, "Always hide the dock and reveal it when hovering near the dock area": { - "Always hide the dock and reveal it when hovering near the dock area": "" + "Always hide the dock and reveal it when hovering near the dock area": "A dokk mindig rejtett, és csak akkor jelenik meg, ha az egérrel a közelébe mutatsz" }, "Always on icons": { "Always on icons": "Mindig látható ikonok" @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Névtelen azonosító (opcionális)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "Alkalmazásazonosító helyettesítések" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Alkalmazások ikon" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Az alkalmazások használati gyakoriság, majd utolsó használat, majd betűrend szerint vannak rendezve." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Képernyők elrendezése és felbontás, frissítési frekvencia, valamint VRR beállítása" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Automatikus csatlakozás bekapcsolva" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Automatikus vezérlés" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Automatikusan zárolja a képernyőt, amikor a rendszer felfüggesztésre készül" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Elérhető" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Bővítmények böngészése" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS nem elérhető" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Kamera" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Szín választása" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Indítóikon színének kiválasztása" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Válaszd ki, melyik monitor jelenítse meg a zárolási képernyő felületét. A többi monitor egy színt fog mutatni az OLED beégés elleni védelem miatt." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Titkosítás" }, @@ -711,7 +744,7 @@ "Clear All Jobs": "Összes feladat törlése" }, "Clear History?": { - "Clear History?": "" + "Clear History?": "Előzmények törlése?" }, "Clear all history when server starts": { "Clear all history when server starts": "Minden előzmény törlése a szerver indításakor" @@ -770,9 +803,15 @@ "Close": { "Close": "Bezárás" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Áttekintés bezárása indításkor" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Szín" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Színhőmérséklet az éjszakai módhoz" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Színes keverék, fényes kontrasztos kiemelésekkel." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Parancs" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Kommunikáció" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Jelenleg játszott média vezérlése" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Munkaterületek és oszlopok vezérlése görgetéssel a sávon" }, @@ -924,10 +975,13 @@ "Copy": "Másolás" }, "Copy Full Command": { - "Copy Full Command": "" + "Copy Full Command": "Teljes parancs másolása" + }, + "Copy HTML": { + "Copy HTML": "" }, "Copy Name": { - "Copy Name": "" + "Copy Name": "Név másolása" }, "Copy PID": { "Copy PID": "PID másolása" @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Folyamatnév másolása" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Sarokrádiusz" }, @@ -1137,7 +1200,7 @@ "Delete Printer": "Nyomtató törlése" }, "Delete Saved Item?": { - "Delete Saved Item?": "" + "Delete Saved Item?": "Mentett elem törlése?" }, "Delete VPN": { "Delete VPN": "VPN törlése" @@ -1224,7 +1287,7 @@ "Disk Usage": "Lemezhasználat" }, "Disks": { - "Disks": "" + "Disks": "Lemezek" }, "Dismiss": { "Dismiss": "Bezárás" @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Élek távolsága" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Oktatás" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "loginctl zár integráció engedélyezése" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Jelszómező megjelenítése" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "PIN-kód megadása ehhez: " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Írj be egy keresőkifejezést" }, @@ -1461,10 +1533,13 @@ "Enterprise": "Vállalati" }, "Entry pinned": { - "Entry pinned": "" + "Entry pinned": "Bejegyzés rögzítve" }, "Entry unpinned": { - "Entry unpinned": "" + "Entry unpinned": "Bejegyzés rögzítése feloldva" + }, + "Environment Variables": { + "Environment Variables": "" }, "Error": { "Error": "Hiba" @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Exponenciális" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: be- és kikapcsolás • F10: Segítség" }, @@ -1509,7 +1587,7 @@ "Failed to cancel selected job": "Nem sikerült a kiválasztott feladatot törölni" }, "Failed to check pin limit": { - "Failed to check pin limit": "" + "Failed to check pin limit": "Nem sikerült a rögzítési korlát ellenőrzése" }, "Failed to connect VPN": { "Failed to connect VPN": "Nem sikerült csatlakozni a VPN-hez" @@ -1575,19 +1653,19 @@ "Failed to move job": "Nem sikerült a feladat áthelyezése" }, "Failed to parse plugin_settings.json": { - "Failed to parse plugin_settings.json": "A plugin_settings.json feldolgozása sikertelen" + "Failed to parse plugin_settings.json": "Nem sikerült a plugin_settings.json feldolgozása" }, "Failed to parse session.json": { - "Failed to parse session.json": "A session.json feldolgozása sikertelen" + "Failed to parse session.json": "Nem sikerült a session.json feldolgozása" }, "Failed to parse settings.json": { - "Failed to parse settings.json": "A settings.json feldolgozása sikertelen" + "Failed to parse settings.json": "Nem sikerült a settings.json feldolgozása" }, "Failed to pause printer": { "Failed to pause printer": "Nem sikerült a nyomtatót szüneteltetetni" }, "Failed to pin entry": { - "Failed to pin entry": "" + "Failed to pin entry": "Nem sikerült a bejegyzés rögzítése" }, "Failed to print test page": { "Failed to print test page": "Nem sikerült kinyomtatni a tesztoldalt" @@ -1635,7 +1713,7 @@ "Failed to start connection to %1": "Nem sikerült elindítani a csatlakozást ehhez: %1" }, "Failed to unpin entry": { - "Failed to unpin entry": "" + "Failed to unpin entry": "Nem sikerült a bejegyzés rögzítésének feloldása" }, "Failed to update VPN": { "Failed to update VPN": "Nem sikerült frissíteni a VPN-t" @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Fájlinformáció" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Fájlok" }, @@ -1743,7 +1824,7 @@ "Force HDR": "HDR kényszerítése" }, "Force Kill (SIGKILL)": { - "Force Kill (SIGKILL)": "" + "Force Kill (SIGKILL)": "Kényszerített leállítás (SIGKILL)" }, "Force Kill Process": { "Force Kill Process": "Folyamat kényszerített leállítása" @@ -1800,7 +1881,7 @@ "Gamma control not available. Requires DMS API v6+.": "Gamma vezérlés nem érhető el. DMS API v6+ szükséges." }, "Generic device name | Generic device name fallback": { - "device": "" + "device": "eszköz" }, "GitHub": { "GitHub": "GitHub" @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Állapot" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "Rejtett" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "Rejtett hálózat" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Elrejtési késleltetés" }, @@ -1920,7 +2013,7 @@ "History Settings": "Előzménybeállítások" }, "History cleared. %1 pinned entries kept.": { - "History cleared. %1 pinned entries kept.": "" + "History cleared. %1 pinned entries kept.": "Előzmények törölve. %1 rögzített bejegyzés megtartva." }, "Hold Duration": { "Hold Duration": "Nyomva tartás időtartama" @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "IP-cím:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Ikonméret" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Átmenetekkel együtt" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Inkompatibilis bővítmények betöltve" }, @@ -2037,7 +2136,7 @@ "Install plugins from the DMS plugin registry": "Bővítmények telepítése a DMS bővítményregisztrációból" }, "Intelligent Auto-hide": { - "Intelligent Auto-hide": "" + "Intelligent Auto-hide": "Intelligens automatikus elrejtés" }, "Interface:": { "Interface:": "Interfész:" @@ -2067,164 +2166,180 @@ "Jobs: ": "Munkák: " }, "KDE Connect SMS action": { - "Opening SMS": "", - "Opening SMS app": "" + "Opening SMS": "SMS megnyitása", + "Opening SMS app": "SMS-alkalmazás megnyitása" }, "KDE Connect SMS dialog title": { - "Send SMS": "" + "Send SMS": "SMS küldése" }, "KDE Connect SMS message input placeholder": { - "Message": "" + "Message": "Üzenet" }, "KDE Connect SMS phone input placeholder": { - "Phone number": "" + "Phone number": "Telefonszám" }, "KDE Connect SMS send button": { - "Send": "" + "Send": "Küldés" }, "KDE Connect SMS tooltip": { - "SMS": "" + "SMS": "SMS" }, "KDE Connect accept pairing button": { - "Accept": "" + "Accept": "Elfogad" }, "KDE Connect browse action": { - "Opening file browser": "", - "Opening files": "" + "Opening file browser": "Fájlkezelő megnyitása", + "Opening files": "Fájlok megnyitása" }, "KDE Connect browse tooltip": { - "Browse Files": "" + "Browse Files": "Fájlok böngészése" }, "KDE Connect clipboard action": { - "Clipboard sent": "" + "Clipboard sent": "Vágólap elküldve" }, "KDE Connect clipboard tooltip": { - "Send Clipboard": "" + "Send Clipboard": "Vágólap küldése" }, "KDE Connect connected status": { - "Connected": "" + "Connected": "Csatlakoztatva" }, "KDE Connect daemon hint": { - "Start kdeconnectd to use this plugin": "" + "Start kdeconnectd to use this plugin": "Indítsd el a kdeconnectd szolgáltatást ezen bővítmény használatához" }, "KDE Connect error": { - "Failed to accept pairing": "", - "Failed to browse device": "", - "Failed to launch SMS app": "", - "Failed to reject pairing": "", - "Failed to ring device": "", - "Failed to send clipboard": "", - "Failed to send ping": "", - "Failed to share": "", - "Pairing failed": "", - "Unpair failed": "" + "Failed to accept pairing": "Nem sikerült a párosítás elfogadása", + "Failed to browse device": "Nem sikerült az eszköz tallózása", + "Failed to launch SMS app": "Nem sikerült az SMS-alkalmazás indítása", + "Failed to reject pairing": "Nem sikerült a párosítás elutasítása", + "Failed to ring device": "Nem sikerült az eszköz megcsöngetése", + "Failed to send clipboard": "Nem sikerült a vágólap elküldése", + "Failed to send file": "", + "Failed to send ping": "Nem sikerült a ping küldése", + "Failed to share": "Nem sikerült a megosztás", + "Pairing failed": "A párosítás sikertelen", + "Unpair failed": "A párosítás megszüntetése sikertelen" + }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" }, "KDE Connect file share notification": { - "File received from": "" + "File received from": "Fájl érkezett innen:" }, "KDE Connect hint message": { - "Make sure KDE Connect is running on your other devices": "" + "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": "" + "No devices found": "Nem találhatók eszközök" }, "KDE Connect no devices status": { - "No devices": "" + "No devices": "Nincsenek eszközök" }, "KDE Connect not paired status": { - "Not paired": "" + "Not paired": "Nincs párosítva" }, "KDE Connect offline status": { - "Offline": "" + "Offline": "Offline" }, "KDE Connect open SMS app button": { - "Open App": "" + "Open App": "Alkalmazás megnyitása" }, "KDE Connect open app hint": { - "Open KDE Connect on your phone": "" + "Open KDE Connect on your phone": "Nyisd meg a KDE Connectet a telefonodon" }, "KDE Connect pair button": { - "Pair": "" + "Pair": "Párosítás" }, "KDE Connect pairing action": { - "Device paired": "", - "Pairing request sent": "" + "Device paired": "Eszköz párosítva", + "Pairing request sent": "Párosítási kérelem elküldve" }, "KDE Connect pairing in progress status": { - "Pairing": "" + "Pairing": "Párosítás" }, "KDE Connect pairing request notification": { - "Pairing request from": "" + "Pairing request from": "Párosítási kérelem érkezett innen:" }, "KDE Connect pairing requested status": { - "Pairing requested": "" + "Pairing requested": "Párosítás kérve" }, "KDE Connect pairing verification key label": { - "Verification": "" + "Verification": "Ellenőrzés" }, "KDE Connect ping action": { - "Ping sent": "", - "Ping sent to": "" + "Ping sent": "Ping elküldve", + "Ping sent to": "Ping elküldve ide:" }, "KDE Connect ping tooltip": { - "Ping": "" + "Ping": "Ping" }, "KDE Connect refresh button | KDE Connect refresh tooltip": { - "Refresh": "" + "Refresh": "Frissítés" }, "KDE Connect reject pairing button": { - "Reject": "" + "Reject": "Elutasítás" }, "KDE Connect request pairing button": { - "Request Pairing": "" + "Request Pairing": "Párosítás kérése" }, "KDE Connect ring action": { - "Ringing": "" + "Ringing": "Csörgetés" }, "KDE Connect ring tooltip": { - "Ring": "" + "Ring": "Megcsörgetés" + }, + "KDE Connect send file button": { + "Send File": "" }, "KDE Connect service unavailable message": { - "KDE Connect unavailable": "" + "KDE Connect unavailable": "A KDE Connect nem érhető el" }, "KDE Connect share URL button": { - "Share URL": "" + "Share URL": "URL megosztása" + }, + "KDE Connect share button": { + "Share Text": "" }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "Megosztás" + }, + "KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, "KDE Connect share input placeholder": { - "Enter URL or text to share": "" + "Enter URL or text to share": "Adj meg egy URL-t vagy szöveget a megosztáshoz" }, "KDE Connect share success": { - "Shared": "" + "Shared": "Megosztva" }, "KDE Connect start daemon hint": { - "Start kdeconnectd to connect devices": "" + "Start kdeconnectd to connect devices": "Indítsd el a kdeconnectd szolgáltatást eszközök csatlakoztatásához" }, "KDE Connect status": { - "No devices connected": "" + "No devices connected": "Nincsenek csatlakoztatott eszközök" }, "KDE Connect status multiple devices": { - "devices connected": "" + "devices connected": "csatlakoztatott eszköz" }, "KDE Connect status single device": { - "1 device connected": "" + "1 device connected": "1 eszköz csatlakoztatva" }, "KDE Connect unavailable error title": { - "KDE Connect Not Available": "" + "KDE Connect Not Available": "A KDE Connect nem érhető el" }, "KDE Connect unavailable status": { - "Unavailable": "" + "Unavailable": "Nem érhető el" }, "KDE Connect unknown device status | unknown author": { - "Unknown": "" + "Unknown": "Ismeretlen" }, "KDE Connect unpair action": { - "Device unpaired": "" + "Device unpaired": "Eszköz párosítása megszüntetve" }, "KDE Connect unpair tooltip": { - "Unpair": "" + "Unpair": "Párosítás megszüntetése" }, "Keep Awake": { "Keep Awake": "Ébren tartás" @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "LED-eszköz" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Utoljára elindítva: %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Indító" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Indító gomb logója" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Bővítmények betöltése…" }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Betöltés…" }, @@ -2461,16 +2588,16 @@ "Maximum History": "Maximális előzmény" }, "Maximum Pinned Entries": { - "Maximum Pinned Entries": "" + "Maximum Pinned Entries": "Rögzített bejegyzések maximális száma" }, "Maximum number of clipboard entries to keep": { "Maximum number of clipboard entries to keep": "Megtartandó vágólap-bejegyzések maximális száma" }, "Maximum number of entries that can be saved": { - "Maximum number of entries that can be saved": "" + "Maximum number of entries that can be saved": "A menthető bejegyzések maximális száma" }, "Maximum pinned entries reached": { - "Maximum pinned entries reached": "" + "Maximum pinned entries reached": "Elérted a rögzített bejegyzések maximális számát" }, "Maximum size per clipboard entry": { "Maximum size per clipboard entry": "Maximális méret vágólap-bejegyzésenként" @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Nincs adapter" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Nincs akkumulátor" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Nem található fájl" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Még nincsenek hozzáadott elemek" }, "No keybinds found": { "No keybinds found": "Nem található billentyű" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Nincs találat" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Nem található bővítmény" }, @@ -2764,10 +2906,16 @@ "No printers found": "Nem található nyomtató" }, "No recent clipboard entries found": { - "No recent clipboard entries found": "" + "No recent clipboard entries found": "Nem találhatók legutóbbi vágólapbejegyzések" + }, + "No results found": { + "No results found": "" }, "No saved clipboard entries": { - "No saved clipboard entries": "" + "No saved clipboard entries": "Nincsenek mentett vágólapbejegyzések" + }, + "No trigger": { + "No trigger": "" }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "Nincsenek létrehozott variánsok. Kattints a Hozzáadás gombra új monitor widget létrehozásához." @@ -2845,7 +2993,7 @@ "OSD Position": "OSD pozíció" }, "Occupied Color": { - "Occupied Color": "" + "Occupied Color": "Foglalt szín" }, "Off": { "Off": "Kikapcsolva" @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Jegyzettömb-fájl megnyitása" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Keresősáv megnyitása a szöveg kereséséhez" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Kitöltés" }, @@ -2959,7 +3116,7 @@ "Paired": "Párosítva" }, "Pairing failed": { - "Pairing failed": "Párosítás sikertelen" + "Pairing failed": "A párosítás sikertelen" }, "Pairing...": { "Pairing...": "Párosítás…" @@ -2995,7 +3152,7 @@ "Percentage": "Százalék" }, "Performance": { - "Performance": "" + "Performance": "Teljesítmény" }, "Permission denied to set profile image.": { "Permission denied to set profile image.": "Engedély megtagadva a profilkép beállításához." @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Rögzítve" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Helyezd ide a bővítménykönyvtárakat. Minden bővítménynek rendelkeznie kell egy plugin.json fájllal." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Bővítménykezelés" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "A bővítmény ki van kapcsolva - engedélyezd a bővítménybeállításokban a használathoz" }, @@ -3097,7 +3260,7 @@ "Power Profile Degradation": "Energiaprofil romlása" }, "Power off monitors on lock": { - "Power off monitors on lock": "" + "Power off monitors on lock": "Monitorok kikapcsolása zároláskor" }, "Power profile management available": { "Power profile management available": "Energia profil kezelés elérhető" @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Képernyő időtúllépésének megakadályozása" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Elsődleges" }, @@ -3169,7 +3335,7 @@ "Process Count": "Folyamatszám" }, "Processes": { - "Processes": "" + "Processes": "Folyamatok" }, "Processing": { "Processing": "Feldolgozás" @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Rések és szegély eltávolítása az ablakok maximalizálásakor" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "Ismétlés" }, @@ -3370,7 +3542,7 @@ "Saved Configurations": "Mentett konfigurációk" }, "Saved item deleted": { - "Saved item deleted": "" + "Saved item deleted": "Mentett elem törölve" }, "Scale": { "Scale": "Skála" @@ -3394,7 +3566,7 @@ "Science": "Tudomány" }, "Screen Sharing": { - "Screen Sharing": "" + "Screen Sharing": "Képernyőmegosztás" }, "Screen sharing": { "Screen sharing": "Képernyő megosztás" @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Görgetés" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Keresés billentyűkombináció, leírás vagy műveletnév szerint.\\n\\nAlapértelmezés szerint a vágólapra másolja a gyorsbillentyűt.\\nKattints jobb gombbal vagy nyomd meg a jobbra nyilat a gyakran használt gyorsbillentyűk rögzítéséhez – ezek a keresésen kívül felül jelennek meg." }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "Biztonság" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Alkalmazás kiválasztása" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Beállítás" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: Összes törlése • Esc: Bezárás" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Beillesztés • Shift+Del: Összes törlése • Esc: Bezárás" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "Páratartalom megjelenítése" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Sorok számának megjelenítése" }, @@ -3676,7 +3866,7 @@ "Show darkened overlay behind modal dialogs": "Sötétített átfedés megjelenítése a modális párbeszédablakok mögött" }, "Show dock when floating windows don't overlap its area": { - "Show dock when floating windows don't overlap its area": "" + "Show dock when floating windows don't overlap its area": "Dokk megjelenítése, ha a lebegő ablakok nem takarják el a területét" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Indító átfedés megjelenítése, amikor gépelsz a Niri-áttekintésben. Kapcsold ki, ha másik indítót használsz." @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Méretezés" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "Intelligens kártyás hitelesítés" }, @@ -3994,13 +4187,13 @@ "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "Ez a widget megakadályozza a GPU kikapcsolt állapotát, ami jelentősen befolyásolhatja a laptopok akkumulátor élettartamát. Nem ajánlott hibrid grafikus kártyával rendelkező laptopokon használni." }, "This will delete all unpinned entries. %1 pinned entries will be kept.": { - "This will delete all unpinned entries. %1 pinned entries will be kept.": "" + "This will delete all unpinned entries. %1 pinned entries will be kept.": "Ez törli az összes nem rögzített bejegyzést. %1 rögzített bejegyzés marad meg." }, "This will permanently delete all clipboard history.": { "This will permanently delete all clipboard history.": "Ez véglegesen törölni fogja a vágólapelőzményeket." }, "This will permanently remove this saved clipboard item. This action cannot be undone.": { - "This will permanently remove this saved clipboard item. This action cannot be undone.": "" + "This will permanently remove this saved clipboard item. This action cannot be undone.": "Ez véglegesen eltávolítja ezt a mentett vágólapelemet. A művelet nem vonható vissza." }, "Tiling": { "Tiling": "Csempézés" @@ -4095,14 +4288,26 @@ "Transparency": { "Transparency": "Átlátszóság" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "Indító" }, "Trigger Prefix": { "Trigger Prefix": "Indító előtag" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { - "Turn off all displays immediately when the lock screen activates": "" + "Turn off all displays immediately when the lock screen activates": "Az összes kijelző azonnali kikapcsolása a képernyőzár aktiválásakor" }, "Turn off monitors after": { "Turn off monitors after": "Monitorok kikapcsolása ennyi idő után:" @@ -4110,9 +4315,21 @@ "Type": { "Type": "Típus" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "Írd be ezt az előtagot a gyorsbillentyűk kereséséhez" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Tipográfia" }, @@ -4171,7 +4388,7 @@ "Update Plugin": "Bővítmény frissítése" }, "Uptime": { - "Uptime": "" + "Uptime": "Működési idő" }, "Urgent Color": { "Urgent Color": "Sürgős szín" @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Világos téma használata a sötét helyett" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "Kisebb értesítési kártyák használata" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "Felhasználónév" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Napkelte/napnyugta időpontok használata az éjszakai mód automatikus beállításához a tartózkodási helyed alapján." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Segédprogramok" }, @@ -4348,7 +4574,7 @@ "Volume Slider": "Hangerőszabályozó" }, "Volume, brightness, and other system OSDs": { - "Volume, brightness, and other system OSDs": "Hangerő, fényerő és egyéb rendszer OSD-k" + "Volume, brightness, and other system OSDs": "Hangerő, fényerő és egyéb rendszer képernyőn megjelenő kijelzők-k" }, "WPA/WPA2": { "WPA/WPA2": "WPA/WPA2" @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Szélsebesség" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Ablaksarok sugara" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Munkaterület-váltó" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Munkaterületek" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Nem mentett változtatásaid vannak. Mented a fájl megnyitása előtt?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "alkalmazások" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "Árnyék" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Témák böngészése" }, @@ -4557,16 +4798,16 @@ "dgop not available": "dgop nem elérhető" }, "dgop unavailable error message": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "" + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "A rendszerfigyeléshez a 'dgop' eszköz szükséges.\\nTelepítsd a dgop-ot a funkció használatához." }, "disk io header in system monitor": { - "Disk I/O": "" + "Disk I/O": "Lemez I/O" }, "disk read label": { - "Read:": "" + "Read:": "Olvasás:" }, "disk write label": { - "Write:": "" + "Write:": "Írás:" }, "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.": "A dms/binds.kdl létezik, de nincs benne a config.kdl-ben. Az egyéni gyorsbillentyűk nem fognak működni, amíg ez nincs javítva." @@ -4602,13 +4843,13 @@ "No plugins found": "Nem található bővítmény" }, "empty state in disk mounts list": { - "No mount points found": "" + "No mount points found": "Nem találhatók csatolási pontok" }, "empty state in gpu list": { - "No GPUs detected": "" + "No GPUs detected": "Nem található GPU" }, "empty state in process list": { - "No matching processes": "" + "No matching processes": "Nincs találat a folyamatok között" }, "empty theme list": { "No themes found": "Nem található téma" @@ -4617,7 +4858,7 @@ "events": "események" }, "fallback gpu name": { - "Unknown GPU": "" + "Unknown GPU": "Ismeretlen GPU" }, "files": { "files": "fájlok" @@ -4626,7 +4867,7 @@ "Material Design inspired color themes": "Material Design ihlette színtémák" }, "gpu section header in system monitor": { - "GPU Monitoring": "" + "GPU Monitoring": "GPU figyelés" }, "greeter back button": { "Back": "Vissza" @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Telepítve" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "hagyd üresen az alapértelmezéshez" }, @@ -4821,11 +5077,14 @@ "minutes": "percek" }, "mount points header in system monitor": { - "Mount Points": "" + "Mount Points": "Csatolási pontok" }, "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Nincs egyéni témafájl" }, @@ -4882,6 +5141,12 @@ "official": { "official": "hivatalos" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "Bővítmények telepítése a DMS bővítmény-regiszterből" }, @@ -4897,14 +5162,17 @@ "plugin search placeholder": { "Search plugins...": "Bővítmények keresése…" }, + "primary color": { + "Primary": "" + }, "process count label in footer": { - "Processes:": "" + "Processes:": "Folyamatok:" }, "process detail label": { - "Full Command:": "" + "Full Command:": "Teljes parancs:" }, "process search placeholder": { - "Search processes...": "" + "Search processes...": "Folyamatok keresése..." }, "profile image file browser title": { "Select Profile Image": "Profilkép kiválasztása" @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "Színtéma a DMS regiszterből" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "másodpercek" }, @@ -4928,11 +5199,14 @@ "Surface": "Felület", "Text": "Szöveg" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "Intenzitás" }, "short for processes": { - "procs": "" + "procs": "folyamat" }, "source code link": { "source": "forrás" @@ -4941,14 +5215,14 @@ "System Monitor": "Rendszerfigyelő" }, "system info header in system monitor": { - "System Information": "" + "System Information": "Rendszerinformáció" }, "system info label": { - "Architecture": "", - "Distribution": "", - "Hostname": "", - "Kernel": "", - "Load Average": "" + "Architecture": "Architektúra", + "Distribution": "Disztribúció", + "Hostname": "Gépnév", + "Kernel": "Rendszermag", + "Load Average": "Átlagos terhelés" }, "theme browser description": { "Install color themes from the DMS theme registry": "Színtémák telepítése a DMS téma-regiszterből" @@ -4981,7 +5255,7 @@ "update dms for NM integration.": "dms frissítése a NM integrációhoz." }, "uptime label in footer": { - "Uptime:": "" + "Uptime:": "Működési idő:" }, "version requirement": { "Requires %1": "%1 szükséges" @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Külső háttérképkezelés" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "A wtype nem elérhető - telepítsd a wtype csomagot a beillesztés támogatásához" }, diff --git a/quickshell/translations/poexports/it.json b/quickshell/translations/poexports/it.json index bdf15288..5fe99227 100644 --- a/quickshell/translations/poexports/it.json +++ b/quickshell/translations/poexports/it.json @@ -252,7 +252,7 @@ "Always Show Percentage": "Mostra sempre percentuale" }, "Always hide the dock and reveal it when hovering near the dock area": { - "Always hide the dock and reveal it when hovering near the dock area": "" + "Always hide the dock and reveal it when hovering near the dock area": "Nascondi sempre il dock e mostralo passando il puntatore vicino all’area della dock" }, "Always on icons": { "Always on icons": "Icone sempre attive" @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identità anonima (facoltativa)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "Sostituzioni App ID" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Icona App" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Le applicazioni sono ordinate per frequenza d'uso, poi per ultimo utilizzo, e infine in ordine alfabetico." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Disponi gli schermi e configura risoluzione, frequenza di aggiornamento e VRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Connessione automatica abilitata" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Controllo Automatico" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Blocca automaticamente lo schermo quando il sistema si prepara alla sospensione" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Disponibile" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Sfoglia Plugin" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS non disponibile" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Fotocamera" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Scegli colore" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Scegli il Colore del Logo del Launcher" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Scegli quale monitor mostra l'interfaccia della schermata di blocco. Gli altri monitor visualizzeranno un colore solido per proteggere gli schermi OLED dal burn-in." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Cifratura" }, @@ -711,7 +744,7 @@ "Clear All Jobs": "Elimina Tutte le Stampe" }, "Clear History?": { - "Clear History?": "" + "Clear History?": "Cancellare la Cronologia?" }, "Clear all history when server starts": { "Clear all history when server starts": "Cancella tutta la cronologia all'avvio del server" @@ -770,9 +803,15 @@ "Close": { "Close": "Chiudi" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Chiudi Panoramica all'Avvio" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Colore" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Temperatura colore per la modalità notturna" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Mix colorato di accenti contrastanti brillanti." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Comando" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Comunicazione" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Controllo media attualmente in riproduzione" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Controlla spazi di lavoro e colonne scorrendo sulla barra" }, @@ -924,10 +975,13 @@ "Copy": "Copia" }, "Copy Full Command": { - "Copy Full Command": "" + "Copy Full Command": "Copia Comando Completo" + }, + "Copy HTML": { + "Copy HTML": "" }, "Copy Name": { - "Copy Name": "" + "Copy Name": "Copia nome" }, "Copy PID": { "Copy PID": "Copia PID" @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Copia Nome Processo" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Raggio degli Angoli" }, @@ -1137,13 +1200,13 @@ "Delete Printer": "Elimina Stampante" }, "Delete Saved Item?": { - "Delete Saved Item?": "" + "Delete Saved Item?": "Eliminare L’Elemento Salvato?" }, "Delete VPN": { "Delete VPN": "Elimina VPN" }, "Derives colors that closely match the underlying image.": { - "Derives colors that closely match the underlying image.": "Deriva colori che si avvicinano all'immagine sottostante" + "Derives colors that closely match the underlying image.": "Deriva colori che si avvicinano all'immagine sottostante." }, "Description": { "Description": "Descrizione" @@ -1224,7 +1287,7 @@ "Disk Usage": "Uso Disco" }, "Disks": { - "Disks": "" + "Disks": "Dischi" }, "Dismiss": { "Dismiss": "Ignora" @@ -1305,7 +1368,7 @@ "Dock Visibility": "Visibilità della Dock" }, "Docs": { - "Docs": "Documenti" + "Docs": "Documentazione" }, "Domain (optional)": { "Domain (optional)": "Dominio (opzionale)" @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Spaziatura del Bordo" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Istruzione" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "Abilita l'integrazione di blocco loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Mostra Campo Password" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Inserisci PIN per " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Inserisci una query di ricerca" }, @@ -1461,10 +1533,13 @@ "Enterprise": "Enterprise" }, "Entry pinned": { - "Entry pinned": "" + "Entry pinned": "Voce fissata" }, "Entry unpinned": { - "Entry unpinned": "" + "Entry unpinned": "Voce sbloccata" + }, + "Environment Variables": { + "Environment Variables": "" }, "Error": { "Error": "Errore" @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Esponenziale" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Cambia • F10: Aiuto" }, @@ -1509,7 +1587,7 @@ "Failed to cancel selected job": "Impossibile cancellare la stampa selezionata" }, "Failed to check pin limit": { - "Failed to check pin limit": "" + "Failed to check pin limit": "Impossibile verificare il limite delle voci fissate" }, "Failed to connect VPN": { "Failed to connect VPN": "Impossibile connettersi alla VPN" @@ -1569,7 +1647,7 @@ "Failed to load VPN config": "Impossibile caricare la configurazione VPN" }, "Failed to load clipboard configuration.": { - "Failed to load clipboard configuration.": "Impossibile caricare la configurazione degli appunti" + "Failed to load clipboard configuration.": "Impossibile caricare la configurazione degli appunti." }, "Failed to move job": { "Failed to move job": "Impossibile spostare la stampa" @@ -1587,7 +1665,7 @@ "Failed to pause printer": "Impossibile mettere in pausa la stampante" }, "Failed to pin entry": { - "Failed to pin entry": "" + "Failed to pin entry": "Impossibile fissare la voce" }, "Failed to print test page": { "Failed to print test page": "Impossibile stampare la pagina di prova" @@ -1635,7 +1713,7 @@ "Failed to start connection to %1": "Impossibile avviare la connessione a %1" }, "Failed to unpin entry": { - "Failed to unpin entry": "" + "Failed to unpin entry": "Impossibile sbloccare la voce" }, "Failed to update VPN": { "Failed to update VPN": "Impossibile aggiornare la VPN" @@ -1659,7 +1737,7 @@ "Feels": "Percepita" }, "Feels Like": { - "Feels Like": "Temp. percepita" + "Feels Like": "Percepita" }, "File": { "File": "File" @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Informazioni File" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "File" }, @@ -1743,7 +1824,7 @@ "Force HDR": "Forza HDR" }, "Force Kill (SIGKILL)": { - "Force Kill (SIGKILL)": "" + "Force Kill (SIGKILL)": "Terminazione forzata (SIGKILL)" }, "Force Kill Process": { "Force Kill Process": "Forza Arresto Processo" @@ -1800,7 +1881,7 @@ "Gamma control not available. Requires DMS API v6+.": "Controllo gamma non disponibile. Richiede API DMS v6+." }, "Generic device name | Generic device name fallback": { - "device": "" + "device": "dispositivo" }, "GitHub": { "GitHub": "GitHub" @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Salute" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "Nascosto" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "Rete Nascosta" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Ritardo Nascondi" }, @@ -1920,7 +2013,7 @@ "History Settings": "Impostazioni Cronologia" }, "History cleared. %1 pinned entries kept.": { - "History cleared. %1 pinned entries kept.": "" + "History cleared. %1 pinned entries kept.": "Cronologia cancellata. %1 voci fissate mantenute." }, "Hold Duration": { "Hold Duration": "Durata della pressione" @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "Indirizzo IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Dimensione Icona" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Includi Transizioni" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Plugin Incompatibili Caricati" }, @@ -2037,10 +2136,10 @@ "Install plugins from the DMS plugin registry": "Installa plugin dal registro dei plugin DMS" }, "Intelligent Auto-hide": { - "Intelligent Auto-hide": "" + "Intelligent Auto-hide": "Nascondimento automatico intelligente" }, "Interface:": { - "Interface:": "Interfaccia" + "Interface:": "Interfaccia:" }, "Interlock Open": { "Interlock Open": "Interblocco Aperto" @@ -2067,164 +2166,180 @@ "Jobs: ": "Stampe: " }, "KDE Connect SMS action": { - "Opening SMS": "", - "Opening SMS app": "" + "Opening SMS": "Apertura SMS", + "Opening SMS app": "Apertura dell'app SMS" }, "KDE Connect SMS dialog title": { - "Send SMS": "" + "Send SMS": "Invia SMS" }, "KDE Connect SMS message input placeholder": { - "Message": "" + "Message": "Messaggio" }, "KDE Connect SMS phone input placeholder": { - "Phone number": "" + "Phone number": "Numero di telefono" }, "KDE Connect SMS send button": { - "Send": "" + "Send": "Invia" }, "KDE Connect SMS tooltip": { - "SMS": "" + "SMS": "SMS" }, "KDE Connect accept pairing button": { - "Accept": "" + "Accept": "Accetta" }, "KDE Connect browse action": { - "Opening file browser": "", - "Opening files": "" + "Opening file browser": "Apertura del gestore file", + "Opening files": "Apertura dei file" }, "KDE Connect browse tooltip": { - "Browse Files": "" + "Browse Files": "Sfoglia File" }, "KDE Connect clipboard action": { - "Clipboard sent": "" + "Clipboard sent": "Appunti inviati" }, "KDE Connect clipboard tooltip": { - "Send Clipboard": "" + "Send Clipboard": "Invia Appunti" }, "KDE Connect connected status": { - "Connected": "" + "Connected": "Connesso" }, "KDE Connect daemon hint": { - "Start kdeconnectd to use this plugin": "" + "Start kdeconnectd to use this plugin": "Avvia kdeconnectd per utilizzare questo plugin" }, "KDE Connect error": { - "Failed to accept pairing": "", - "Failed to browse device": "", - "Failed to launch SMS app": "", - "Failed to reject pairing": "", - "Failed to ring device": "", - "Failed to send clipboard": "", - "Failed to send ping": "", - "Failed to share": "", - "Pairing failed": "", - "Unpair failed": "" + "Failed to accept pairing": "Impossibile accettare l’associazione", + "Failed to browse device": "Impossibile sfogliare il dispositivo", + "Failed to launch SMS app": "Impossibile avviare l’app SMS", + "Failed to reject pairing": "Impossibile rifiutare l’associazione", + "Failed to ring device": "Impossibile far squillare il dispositivo", + "Failed to send clipboard": "Impossibile inviare gli appunti", + "Failed to send file": "", + "Failed to send ping": "Impossibile inviare il ping", + "Failed to share": "Impossibile condividere", + "Pairing failed": "Associazione non riuscita", + "Unpair failed": "Dissociazione non riuscita" + }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" }, "KDE Connect file share notification": { - "File received from": "" + "File received from": "File ricevuto da" }, "KDE Connect hint message": { - "Make sure KDE Connect is running on your other devices": "" + "Make sure KDE Connect is running on your other devices": "Assicurati che KDE Connect sia in esecuzione sugli altri dispositivi" }, "KDE Connect no devices message": { - "No devices found": "" + "No devices found": "Nessun dispositivo trovato" }, "KDE Connect no devices status": { - "No devices": "" + "No devices": "Nessun dispositivo" }, "KDE Connect not paired status": { - "Not paired": "" + "Not paired": "Non associato" }, "KDE Connect offline status": { - "Offline": "" + "Offline": "Offline" }, "KDE Connect open SMS app button": { - "Open App": "" + "Open App": "Apri l'App" }, "KDE Connect open app hint": { - "Open KDE Connect on your phone": "" + "Open KDE Connect on your phone": "Apri KDE Connect sul tuo telefono" }, "KDE Connect pair button": { - "Pair": "" + "Pair": "Associa" }, "KDE Connect pairing action": { - "Device paired": "", - "Pairing request sent": "" + "Device paired": "Dispositivo associato", + "Pairing request sent": "Richiesta di associazione inviata" }, "KDE Connect pairing in progress status": { - "Pairing": "" + "Pairing": "Associazione in corso" }, "KDE Connect pairing request notification": { - "Pairing request from": "" + "Pairing request from": "Richiesta di associazione da" }, "KDE Connect pairing requested status": { - "Pairing requested": "" + "Pairing requested": "Associazione richiesta" }, "KDE Connect pairing verification key label": { - "Verification": "" + "Verification": "Verifica" }, "KDE Connect ping action": { - "Ping sent": "", - "Ping sent to": "" + "Ping sent": "Ping inviato", + "Ping sent to": "Ping inviato a" }, "KDE Connect ping tooltip": { - "Ping": "" + "Ping": "Ping" }, "KDE Connect refresh button | KDE Connect refresh tooltip": { - "Refresh": "" + "Refresh": "Aggiorna" }, "KDE Connect reject pairing button": { - "Reject": "" + "Reject": "Rifiuta" }, "KDE Connect request pairing button": { - "Request Pairing": "" + "Request Pairing": "Richiedi associazione" }, "KDE Connect ring action": { - "Ringing": "" + "Ringing": "Squillo in corso" }, "KDE Connect ring tooltip": { - "Ring": "" + "Ring": "Fai squillare" + }, + "KDE Connect send file button": { + "Send File": "" }, "KDE Connect service unavailable message": { - "KDE Connect unavailable": "" + "KDE Connect unavailable": "KDE Connect non è disponibile" }, "KDE Connect share URL button": { - "Share URL": "" + "Share URL": "Condividi URL" + }, + "KDE Connect share button": { + "Share Text": "" }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "Condividi" + }, + "KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, "KDE Connect share input placeholder": { - "Enter URL or text to share": "" + "Enter URL or text to share": "Inserisci un URL o un testo da condividere" }, "KDE Connect share success": { - "Shared": "" + "Shared": "Condiviso" }, "KDE Connect start daemon hint": { - "Start kdeconnectd to connect devices": "" + "Start kdeconnectd to connect devices": "Avvia kdeconnectd per connettere i dispositivi" }, "KDE Connect status": { - "No devices connected": "" + "No devices connected": "Nessun dispositivo connesso" }, "KDE Connect status multiple devices": { - "devices connected": "" + "devices connected": "dispositivi connessi" }, "KDE Connect status single device": { - "1 device connected": "" + "1 device connected": "1 dispositivo connesso" }, "KDE Connect unavailable error title": { - "KDE Connect Not Available": "" + "KDE Connect Not Available": "KDE Connect Non Disponibile" }, "KDE Connect unavailable status": { - "Unavailable": "" + "Unavailable": "Non Disponibile" }, "KDE Connect unknown device status | unknown author": { - "Unknown": "" + "Unknown": "Sconosciuto" }, "KDE Connect unpair action": { - "Device unpaired": "" + "Device unpaired": "Dispositivo dissociato" }, "KDE Connect unpair tooltip": { - "Unpair": "" + "Unpair": "Dissocia" }, "Keep Awake": { "Keep Awake": "Mantieni Attivo" @@ -2251,7 +2366,7 @@ "Keyboard Layout Name": "Nome Layout Tastiera" }, "Keyboard Shortcuts": { - "Keyboard Shortcuts": "Scorciatoie da Tastiera" + "Keyboard Shortcuts": "Associazione Tasti" }, "Keys": { "Keys": "Tasti" @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "Dispositivo LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Ultimo avvio %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Launcher" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Logo Pulsante Launcher" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Caricamento plugin..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Caricando..." }, @@ -2383,7 +2510,7 @@ "Long Text": "Testo Lungo" }, "Long press": { - "Long press": "Premuta prolungata" + "Long press": "Pressione prolungata" }, "Longitude": { "Longitude": "Longitudine" @@ -2461,16 +2588,16 @@ "Maximum History": "Cronologia Massima" }, "Maximum Pinned Entries": { - "Maximum Pinned Entries": "" + "Maximum Pinned Entries": "Numero massimo di voci fissate" }, "Maximum number of clipboard entries to keep": { "Maximum number of clipboard entries to keep": "Numero massimo di voci degli appunti da conservare" }, "Maximum number of entries that can be saved": { - "Maximum number of entries that can be saved": "" + "Maximum number of entries that can be saved": "Numero massimo di voci che possono essere salvate" }, "Maximum pinned entries reached": { - "Maximum pinned entries reached": "" + "Maximum pinned entries reached": "Raggiunto il numero massimo di voci fissate" }, "Maximum size per clipboard entry": { "Maximum size per clipboard entry": "Dimensione massima per ogni voce degli appunti" @@ -2572,7 +2699,7 @@ "Monitor whose wallpaper drives dynamic theming colors": "Monitor il cui sfondo determina i colori del tema dinamico" }, "Monocle": { - "Monocle": "A Schermo Intero" + "Monocle": "Vista Singola" }, "Monospace Font": { "Monospace Font": "Font a Larghezza Fissa" @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Nessun Adattatore" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Nessuna batteria" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Nessun file trovato" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Nessun elemento aggiunto ancora" }, "No keybinds found": { "No keybinds found": "Nessuna scorciatoia trovata" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Nessun risultato" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Nessun plugin trovato" }, @@ -2764,10 +2906,16 @@ "No printers found": "Nessuna stampante trovata" }, "No recent clipboard entries found": { - "No recent clipboard entries found": "" + "No recent clipboard entries found": "Nessuna voce recente negli appunti" + }, + "No results found": { + "No results found": "" }, "No saved clipboard entries": { - "No saved clipboard entries": "" + "No saved clipboard entries": "Nessuna voce degli appunti salvata" + }, + "No trigger": { + "No trigger": "" }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "Nessuna variante creata. Fai clic su Aggiungi per creare un nuovo widget monitor." @@ -2845,7 +2993,7 @@ "OSD Position": "Posizione OSD" }, "Occupied Color": { - "Occupied Color": "" + "Occupied Color": "Colore Occupato" }, "Off": { "Off": "Disattivato" @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Apri file Blocco Note" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Apri barra di ricerca per cercare testo" }, @@ -2946,8 +3100,11 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { - "Padding": "Padding" + "Padding": "Spaziatura Interna" }, "Pair": { "Pair": "Associa" @@ -2995,10 +3152,10 @@ "Percentage": "Percentuale" }, "Performance": { - "Performance": "" + "Performance": "Prestazioni" }, "Permission denied to set profile image.": { - "Permission denied to set profile image.": "Impossibile impostare immagine profilo: Permesso negato." + "Permission denied to set profile image.": "Permesso negato per cambiare la foto del profilo." }, "Personalization": { "Personalization": "Personalizzazione" @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Fissato" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Posiziona la cartella dei plugin qui. Ogni plugin deve avere un file manifesto plugin.json." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Gestione Plugin" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Plugin disabilitato - per usarlo, attivalo nelle impostazioni Plugin" }, @@ -3097,7 +3260,7 @@ "Power Profile Degradation": "Riduzione Prestazioni Energetiche" }, "Power off monitors on lock": { - "Power off monitors on lock": "" + "Power off monitors on lock": "Spegni gli schermi al blocco" }, "Power profile management available": { "Power profile management available": "Gestione dei profili energetici disponibile" @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Previeni timeout schermo" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Primario" }, @@ -3169,7 +3335,7 @@ "Process Count": "Numero di Processi" }, "Processes": { - "Processes": "" + "Processes": "Processi" }, "Processing": { "Processing": "In Elaborazione" @@ -3199,7 +3365,7 @@ "RGB": "RGB" }, "Rain Chance": { - "Rain Chance": "Probabilità di Pioggia" + "Rain Chance": "Prob. Pioggia" }, "Rate": { "Rate": "Velocità" @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Rimuovi spazi e bordo quando le finestre sono massimizzate" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "Ripetizione" }, @@ -3370,7 +3542,7 @@ "Saved Configurations": "Configurazioni Salvate" }, "Saved item deleted": { - "Saved item deleted": "" + "Saved item deleted": "Elemento salvato eliminato" }, "Scale": { "Scale": "Scala" @@ -3394,7 +3566,7 @@ "Science": "Scienza" }, "Screen Sharing": { - "Screen Sharing": "" + "Screen Sharing": "Condivisione dello Schermo" }, "Screen sharing": { "Screen sharing": "Condivisione schermo" @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Scorrimento" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "Cerca per combinazione di tasti, descrizione o nome azione.\\n\\nL'azione predefinita copia la scorciatoia negli appunti.\\nClic-destro o Freccia Destra per fissare le scorciatoie frequenti - appariranno in cima quando non si cerca." }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "Sicurezza" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Seleziona Applicazione" }, @@ -3475,7 +3656,7 @@ "Select a widget to add. You can add multiple instances of the same widget if needed.": "Seleziona un widget da aggiungere. Se necessario, puoi aggiungere più istanze dello stesso widget." }, "Select an image file...": { - "Select an image file...": "Seleziona un'immagine" + "Select an image file...": "Seleziona un'immagine..." }, "Select at least one provider": { "Select at least one provider": "Seleziona almeno un fornitore" @@ -3514,7 +3695,7 @@ "Select...": "Seleziona..." }, "Selected image file not found.": { - "Selected image file not found.": "Immagine selezionata non trovata" + "Selected image file not found.": "Immagine selezionata non trovata." }, "Separator": { "Separator": "Separatore" @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Configurazione" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Canc: Elimina tutto • Esc: Chiudi" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Invio: Incolla • Shift+Canc: Cancella Tutto • Esc: Chiudi" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "Mostra Umidità" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostra Numero Righe" }, @@ -3676,7 +3866,7 @@ "Show darkened overlay behind modal dialogs": "Mostra la sovrapposizione oscurata dietro le finestre di dialogo modali" }, "Show dock when floating windows don't overlap its area": { - "Show dock when floating windows don't overlap its area": "" + "Show dock when floating windows don't overlap its area": "Mostra la dock quando le finestre flottanti non ne sovrappongono l’area" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Mostra la sovrapposizione del launcher durante la digitazione nella panoramica di Niri. Disabilita per usare un altro launcher." @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Dimensionamento" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "Autenticazione Tramite Smart Card" }, @@ -3994,13 +4187,13 @@ "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "Questo widget impedisce gli stati di spegnimento della GPU, che possono influire in modo significativo sulla durata della batteria sui laptop. Non è consigliabile utilizzarlo su laptop con grafica ibrida." }, "This will delete all unpinned entries. %1 pinned entries will be kept.": { - "This will delete all unpinned entries. %1 pinned entries will be kept.": "" + "This will delete all unpinned entries. %1 pinned entries will be kept.": "Questo eliminerà tutte le voci non fissate. %1 voci fissate verranno mantenute." }, "This will permanently delete all clipboard history.": { "This will permanently delete all clipboard history.": "La cronologia degli appunti verrà cancellata definitivamente." }, "This will permanently remove this saved clipboard item. This action cannot be undone.": { - "This will permanently remove this saved clipboard item. This action cannot be undone.": "" + "This will permanently remove this saved clipboard item. This action cannot be undone.": "Questo rimuoverà definitivamente questo elemento degli appunti salvato. Questa azione non può essere annullata." }, "Tiling": { "Tiling": "Tiling" @@ -4095,14 +4288,26 @@ "Transparency": { "Transparency": "Trasparenza" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "Attivatore" }, "Trigger Prefix": { "Trigger Prefix": "Prefisso Attivatore" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { - "Turn off all displays immediately when the lock screen activates": "" + "Turn off all displays immediately when the lock screen activates": "Spegni immediatamente tutti gli schermi quando si attiva la schermata di blocco" }, "Turn off monitors after": { "Turn off monitors after": "Spegni monitor dopo" @@ -4110,9 +4315,21 @@ "Type": { "Type": "Tipo" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "Digita questo prefisso per cercare scorciatoie" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Tipografia" }, @@ -4171,7 +4388,7 @@ "Update Plugin": "Aggiorna Plugin" }, "Uptime": { - "Uptime": "" + "Uptime": "Tempo di Attività" }, "Urgent Color": { "Urgent Color": "Colore Urgente" @@ -4225,11 +4442,14 @@ "Use custom window rounding instead of theme radius": "Usa un arrotondamento finestre personalizzato invece del raggio del tema" }, "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": { - "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usa impronte digitali per autenticazione blocco schermo\n(richiede impronte digitali registrate)" + "Use fingerprint reader for lock screen authentication (requires enrolled fingerprints)": "Usa impronte digitali per autenticazione blocco schermo (richiede impronte digitali registrate)" }, "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Usa tema chiaro invece del tema scuro" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "Usa schede di notifica più piccole" }, @@ -4257,8 +4477,14 @@ "Username": { "Username": "Nome Utente" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { - "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Usa ore alba/tramonto per regolare automaticamente la modalità notte in base alla tua posizione" + "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Usa ore alba/tramonto per regolare automaticamente la modalità notte in base alla tua posizione." + }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" }, "Utilities": { "Utilities": "Utilità" @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Velocità Vento" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Raggio Angoli Finestra" }, @@ -4485,7 +4714,7 @@ "Workspace Names": "Nomi degli Spazi di Lavoro" }, "Workspace Padding": { - "Workspace Padding": "Margine degli Spazi di Lavoro" + "Workspace Padding": "Spaziatura Interna degli Spazi di Lavoro" }, "Workspace Settings": { "Workspace Settings": "Impostazioni Spazi di Lavoro" @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Switcher Spazi di Lavoro" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Spazi di Lavoro" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Ci sono modifiche non salvate. Salvare prima di aprire un file?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "app" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "Ombra" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Sfoglia Temi" }, @@ -4557,16 +4798,16 @@ "dgop not available": "dgop non disponibile" }, "dgop unavailable error message": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "" + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "Lo strumento “dgop” è necessario per il monitoraggio del sistema.\\nInstalla dgop per utilizzare questa funzionalità." }, "disk io header in system monitor": { - "Disk I/O": "" + "Disk I/O": "I/O del Disco" }, "disk read label": { - "Read:": "" + "Read:": "Lettura:" }, "disk write label": { - "Write:": "" + "Write:": "Scrittura:" }, "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 esiste ma non è incluso in config.kdl. Le scorciatoie personalizzate non funzioneranno finché questo non sarà risolto." @@ -4590,7 +4831,7 @@ "Dynamic": "Dinamico" }, "e.g., firefox, kitty --title foo": { - "e.g., firefox, kitty --title foo": "ad es., firefox, kitty --title foo" + "e.g., firefox, kitty --title foo": "es., firefox, kitty --title foo" }, "e.g., focus-workspace 3, resize-column -10": { "e.g., focus-workspace 3, resize-column -10": "ad es., passa allo spazio di lavoro 3, ridimensiona colonna -10." @@ -4602,13 +4843,13 @@ "No plugins found": "Nessun plugin trovato" }, "empty state in disk mounts list": { - "No mount points found": "" + "No mount points found": "Nessun punto di montaggio trovato" }, "empty state in gpu list": { - "No GPUs detected": "" + "No GPUs detected": "Nessuna GPU rilevata" }, "empty state in process list": { - "No matching processes": "" + "No matching processes": "Nessun processo corrispondente" }, "empty theme list": { "No themes found": "Nessun tema trovato" @@ -4617,7 +4858,7 @@ "events": "eventi" }, "fallback gpu name": { - "Unknown GPU": "" + "Unknown GPU": "GPU Sconosciuta" }, "files": { "files": "file" @@ -4626,7 +4867,7 @@ "Material Design inspired color themes": "Temi colore ispirati al Material Design" }, "gpu section header in system monitor": { - "GPU Monitoring": "" + "GPU Monitoring": "Monitoraggio GPU" }, "greeter back button": { "Back": "Indietro" @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Installato" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "lascia vuoto per il valore predefinito" }, @@ -4821,11 +5077,14 @@ "minutes": "minuti" }, "mount points header in system monitor": { - "Mount Points": "" + "Mount Points": "Punti di Montaggio" }, "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Nessun file tema personalizzato" }, @@ -4882,6 +5141,12 @@ "official": { "official": "ufficiale" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "Installa plugin dal registro plugin DMS" }, @@ -4897,14 +5162,17 @@ "plugin search placeholder": { "Search plugins...": "Cerca plugin..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { - "Processes:": "" + "Processes:": "Processi:" }, "process detail label": { - "Full Command:": "" + "Full Command:": "Comando completo:" }, "process search placeholder": { - "Search processes...": "" + "Search processes...": "Cerca processi..." }, "profile image file browser title": { "Select Profile Image": "Seleziona Immagine Profilo" @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "Tema colore dal registro DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "secondi" }, @@ -4928,11 +5199,14 @@ "Surface": "Superficie", "Text": "Testo" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "Intensità" }, "short for processes": { - "procs": "" + "procs": "proc" }, "source code link": { "source": "sorgente" @@ -4941,14 +5215,14 @@ "System Monitor": "Monitor Sistema" }, "system info header in system monitor": { - "System Information": "" + "System Information": "Informazioni di Sistema" }, "system info label": { - "Architecture": "", - "Distribution": "", - "Hostname": "", - "Kernel": "", - "Load Average": "" + "Architecture": "Architettura", + "Distribution": "Distribuzione", + "Hostname": "Nome host", + "Kernel": "Kernel", + "Load Average": "Carico Medio" }, "theme browser description": { "Install color themes from the DMS theme registry": "Installa temi colore dal registro temi DMS" @@ -4981,7 +5255,7 @@ "update dms for NM integration.": "aggiorna dms per l'integrazione NM." }, "uptime label in footer": { - "Uptime:": "" + "Uptime:": "Tempo di Attività:" }, "version requirement": { "Requires %1": "Richiede %1" @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Gestore di Sfondi Esterno" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype non disponibile – installa wtype per il supporto alla funzione incolla" }, diff --git a/quickshell/translations/poexports/ja.json b/quickshell/translations/poexports/ja.json index f733d1d8..d634802e 100644 --- a/quickshell/translations/poexports/ja.json +++ b/quickshell/translations/poexports/ja.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名 ID (オプション)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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.": "目の疲れを軽減するために、暖色系の色温度を適用します。以下の自動化設定で、いつアクティブにするか制御できます。" }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "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.": "アプリは使用頻度、最終使用日、アルファベット順の優先順位で並べられています。" }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "自動接続が有効" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "自動制御" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "システムが一時停止の準備中に自動的に画面をロック" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "利用可能" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "ブラウズプラグイン" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "カメラ" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "色を選んでください" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "ランチャーロゴの色を選ぶ" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "" }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "" }, @@ -770,9 +803,15 @@ "Close": { "Close": "閉じる" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "起動中のときに概要を閉じる" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "ナイトモードの色温度" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "明るいコントラストのアクセントのカラフルなミックス。" }, @@ -812,6 +857,9 @@ "Command": { "Command": "" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "コミュニケーション" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "現在再生中のメディアを制御" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "プロセス名をコピー" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "教育" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "ログインロックの統合を有効に" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "PINを入力してください " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "検索クエリを入力してください" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "エラー" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切り替え • F10: ヘルプ" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "ファイル情報" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "色相/彩度/輝度" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "健康" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "アイコンサイズ" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "トランジションを含める" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "最終起動日 %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "ランチャー" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "ランチャーのボタンロゴ" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "プラグインを読み込んでいます..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "" }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "ファイルが見つかりませんでした" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "まだアイテムが追加されていません" }, "No keybinds found": { "No keybinds found": "" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "一致するものはありません" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "プラグインが見つかりませんでした" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "" }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "メモ帳ファイルを開く" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "検索バーを開いてテキストを検索" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "パディング" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "プラグインディレクトリをここに配置します。各プラグインには plugin.json マニフェストファイルが必要です。" }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "プラグイン管理" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "プラグインは無効です - 使用するにはプラグイン設定で有効にしてください" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "画面のタイムアウトを防止" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "プライマリー" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "スクロール" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: すべてクリア • Esc: 閉じる" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "行番号を表示" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "ダークテーマではなく、ライトテーマを使用" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "ユーザー名" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "あなたの位置情報に基づいて、日の出と日の入りの時間を使ってナイトモードを自動調整します。" }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "ユーティリティ" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "ワークスペーススイッチャー" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "保存されていない変更があります。ファイルを開く前に保存しますか?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "" }, @@ -4882,6 +5141,12 @@ "official": { "official": "公式" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "" }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "" }, diff --git a/quickshell/translations/poexports/pl.json b/quickshell/translations/poexports/pl.json index b02f63e6..fce6d36d 100644 --- a/quickshell/translations/poexports/pl.json +++ b/quickshell/translations/poexports/pl.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Tożsamość anonimowa (opcjonalnie)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Ikona aplikacji" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Aplikacje są uporządkowane według częstotliwości użytkowania, następnie według daty ostatniego użycia, a następnie alfabetycznie." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Zarządzaj wyświetlaczami, konfiguruj rozdzielczość, częstotliwość odświeżania i VRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Automatyczne łączenie włączone" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Automatyczna kontrola" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Automatycznie blokuj ekran, gdy system przygotowuje się do wstrzymania" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Dostępny" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Przeglądaj Wtyczki" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS niedostępne" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Kamera" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Wybierz kolor" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Wybierz kolor logo launchera" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Wybierz monitor, na którym będzie wyświetlany interfejs ekranu blokady. Inne monitory będą wyświetlać jednolity kolor, aby chronić ekran OLED przed wypaleniem." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Szyfr" }, @@ -770,9 +803,15 @@ "Close": { "Close": "Zamknij" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Zamknij podgląd przy uruchomieniu" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Kolor" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Temperatura barwowa dla trybu nocnego" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Kolorowa mieszanka jasnych kontrastujących akcentów." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Rozkaz" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Komunikacja" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Steruj aktualnie odtwarzanymi multimediami" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Steruj obszarami roboczymi i kolumnami poprzez przewijanie na pasku" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Kopiuj nazwę procesu" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Promień narożnika" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Odstępy między krawędziami" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Edukacja" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "Włącz integrację blokady loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Pokaż pole hasła" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Wprowadź PIN dla " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Wpisz zapytanie wyszukiwania" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "Błąd" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Wykładniczy" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Przełącz • F10: Pomoc" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Informacje" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Akta" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Stan" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Ukryj opóźnienie" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "Adres IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Rozmiar ikony" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Uwzględnij przejścia" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Załadowano niekompatybilne pluginy" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "Urządzenie LED" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Ostatnio uruchomiony %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Program uruchamiający" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Logo przycisku programu uruchamiającego" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Ładowanie wtyczek..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Wczytywanie..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Brak adapterów" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Brak baterii" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Nie znaleziono plików" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Nie dodano jeszcze żadnych elementów" }, "No keybinds found": { "No keybinds found": "Nie znaleziono skrótów klawiszowych" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Brak wyników" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Nie znaleziono wtyczek" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "Nie stworzono wariantów. Kliknij Dodaj by stworzyć nowy widżet monitora." }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Otwórz plik" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Otwórz pasek wyszukiwania, aby znaleźć tekst" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Dopełnienie" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Przypięte" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Umieść tutaj katalogi wtyczek. Każda wtyczka powinna zawierać plik manifestu plugin.json." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Zarządzenie Wtyczkami" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Wtyczka jest wyłączona – włącz ją w ustawieniach Wtyczek, aby jej używać" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Zapobiegaj wygaszaniu ekranu" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Główny" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Usuń odstępy i ramkę gdy okna są zmaksymalizowane" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Przewijanie" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "Bezpieczeństwo" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Wybierz aplikację" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Konfiguruj" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Powłoka" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: Wyczyść wszystko • Esc: Zamknij" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Wklej • Shift+Del: Wyczyść wszystko • Esc: Zamknij" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Pokaż numery wierszy" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Rozmiarowanie" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "Przezroczystość" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "Typ" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Typografia" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Użyj jasnego motywu zamiast ciemnego" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "Nazwa użytkownika" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Używa czasów wschodu/zachodu słońca do automatycznego dostosowywania trybu nocnego na podstawie Twojej lokalizacji." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Narzędzia" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Prędkość wiatru" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Promień Narożnika Okna" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Przełącznik obszarów roboczych" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Przestrzenie robocze" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Masz niezapisane zmiany. Zapisać przed otwarciem pliku?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "aplikacje" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Przeglądaj Motywy" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Zainstalowano" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "pozostaw puste dla domyślnej wartości" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Brak niestandardowego pliku motywu" }, @@ -4882,6 +5141,12 @@ "official": { "official": "oficjalny" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "Instaluj wtyczki z rejestru DMS" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "Szukaj wtyczek..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "Motyw z rejestru DMS" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "towary drugiej jakości" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Zarządzanie tapetami zewnętrznymi" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype niedostępny - zainstaluj wtype dla wsparcia wklejania" }, diff --git a/quickshell/translations/poexports/pt.json b/quickshell/translations/poexports/pt.json index 63cc0346..9d115bed 100644 --- a/quickshell/translations/poexports/pt.json +++ b/quickshell/translations/poexports/pt.json @@ -75,7 +75,7 @@ "10 seconds": "10 segundos" }, "10-bit Color": { - "10-bit Color": "" + "10-bit Color": "Cor de 10-bit" }, "14 days": { "14 days": "14 dias" @@ -177,7 +177,7 @@ "Active": "Ativa" }, "Active Lock Screen Monitor": { - "Active Lock Screen Monitor": "" + "Active Lock Screen Monitor": "Monitor de Tela de Bloqueio Atual" }, "Active: %1": { "Active: %1": "" @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Identidade Anônima (opcional)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Ícones de Apps" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Os aplicativos são ordenados por frequência de uso, mais recentes, e por último, alfabéticamente." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "" }, @@ -336,7 +348,7 @@ "Audio Output Devices (": "Dispositivos de Saída de Áudio (" }, "Audio Output Switch": { - "Audio Output Switch": "" + "Audio Output Switch": "Seletor de Saída de Áudio" }, "Audio Visualizer": { "Audio Visualizer": "Visualizador de Áudio" @@ -384,7 +396,7 @@ "Auto Popup Gaps": "Espaçamento Automático de Popup" }, "Auto-Clear After": { - "Auto-Clear After": "" + "Auto-Clear After": "Auto-Limpeza Depois" }, "Auto-Hide Timeout": { "Auto-Hide Timeout": "" @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Conexão automática ativada" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Controle Automático" }, @@ -420,7 +435,7 @@ "Automatically cycle through wallpapers in the same folder": "Circular automaticamente dentre os papéis de parede na mesma pasta" }, "Automatically delete entries older than this": { - "Automatically delete entries older than this": "" + "Automatically delete entries older than this": "Deleta automaticamente entradas mais antigas que essa" }, "Automatically detect location based on IP address": { "Automatically detect location based on IP address": "Detectar localização automáticamente baseado no endereço IP" @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Bloquear tela automaticamente quando o sistema é preparado para suspensão" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Disponível" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Navegar por Plugins" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Câmera" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Escolha a Cor" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Escolher a cor para a logo do Lançador" }, @@ -693,7 +723,10 @@ "Choose which displays show this widget": "" }, "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { - "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "" + "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Escolha qual monitor mostra a interface de tela de bloqueio. Outros monitores vão mostrar uma cor sólida evitar burn-in no OLED." + }, + "Chroma Style": { + "Chroma Style": "" }, "Cipher": { "Cipher": "Cifra" @@ -770,9 +803,15 @@ "Close": { "Close": "Fechar" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Fechar Overview ao Lançar Aplicativos" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Cor" }, @@ -795,7 +834,7 @@ "Color Temperature": "Temperatura da Cor" }, "Color displayed on monitors without the lock screen": { - "Color displayed on monitors without the lock screen": "" + "Color displayed on monitors without the lock screen": "Cor aparente nos monitores sem tela de bloqueio" }, "Color temperature for day time": { "Color temperature for day time": "Temperatura de cor durante o dia" @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Temperatura da cor para o modo noturno" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Mistura colorida de destaques de cor brilhantes e contrastantes." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Comando" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "Comunicação" }, @@ -905,11 +953,14 @@ "Control currently playing media": { "Control currently playing media": "Controlar mídia que está sendo reproduzida" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "" }, "Controls opacity of all popouts, modals, and their content layers": { - "Controls opacity of all popouts, modals, and their content layers": "" + "Controls opacity of all popouts, modals, and their content layers": "Controla a opacidade de todos os popouts, modais e suas camadas de conteúdo" }, "Cooldown": { "Cooldown": "Tempo de espera" @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Copiar Nome do Processo" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Arredondamento" }, @@ -1011,7 +1074,7 @@ "Custom Location": "Customizar Localização" }, "Custom Lock Command": { - "Custom Lock Command": "" + "Custom Lock Command": "Comando de Bloqueio Personalizado" }, "Custom Logout Command": { "Custom Logout Command": "Comando Personalizado Para Sair" @@ -1083,7 +1146,7 @@ "DankSearch not available": "DankSearch não disponível" }, "DankShell & System Icons (requires restart)": { - "DankShell & System Icons (requires restart)": "" + "DankShell & System Icons (requires restart)": "DankShell e Ícones do Sistema (Reinicialização necessária)" }, "Dark Mode": { "Dark Mode": "Modo Escuro" @@ -1107,7 +1170,7 @@ "Day Temperature": "Temperatura Diurna" }, "Daytime": { - "Daytime": "" + "Daytime": "Hora do dia" }, "Deck": { "Deck": "Deck" @@ -1305,7 +1368,7 @@ "Dock Visibility": "Visibilidade do Dock" }, "Docs": { - "Docs": "" + "Docs": "Documentos" }, "Domain (optional)": { "Domain (optional)": "Domínio (opcional)" @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Educação" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "Ativar integração de bloqueio do loginctl" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Mostrar Campo de Senha" }, @@ -1404,10 +1473,10 @@ "Show System Date": "Mostrar Data do Sistema" }, "Enable system status icons on the lock screen window": { - "Show System Icons": "" + "Show System Icons": "Exibir Ícones do Sistema" }, "Enable system time display on the lock screen window": { - "Show System Time": "" + "Show System Time": "Exibir Hora do Sistema" }, "Enabled": { "Enabled": "Ativado" @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Entre código PIN para " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Entre uma consulta de pesquisa" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "Erro" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Ativar • F10: Ajuda" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Informação do Arquivo" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Arquivos" }, @@ -1683,7 +1764,7 @@ "Find in note...": "Procurar na nota..." }, "Fine-tune animation timing in milliseconds": { - "Fine-tune animation timing in milliseconds": "" + "Fine-tune animation timing in milliseconds": "Refinamento do tempo de animação em milissegundos" }, "First Time Setup": { "First Time Setup": "Configuração Inicial" @@ -1803,7 +1884,7 @@ "device": "" }, "GitHub": { - "GitHub": "" + "GitHub": "GitHub" }, "Golden Hour": { "Golden Hour": "Hora Dourada" @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Saúde" }, @@ -1886,11 +1970,20 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { - "Hide Delay": "" + "Hide Delay": "Ocultar atraso" }, "Hide When Typing": { "Hide When Typing": "Ocultar ao Digitar" @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "Endereço IP:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Tamanho do Ícone" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Incluir Transições" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2260,11 +2375,17 @@ "Kill Process": "Matar Processo" }, "Ko-fi": { - "Ko-fi": "" + "Ko-fi": "Ko-fi" }, "LED device": { "LED device": "" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Lançado pela última vez em %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Lançador" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Logo do botão do Lançador" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Carregando plugins..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Carregando..." }, @@ -2353,7 +2480,7 @@ "Lock Screen": "Tela de Bloqueio" }, "Lock Screen Display": { - "Lock Screen Display": "" + "Lock Screen Display": "Exibição da Tela de Boqueio" }, "Lock Screen Format": { "Lock Screen Format": "Formato da Tela de Bloqueio" @@ -2377,7 +2504,7 @@ "Log Out": "Sair" }, "Long": { - "Long": "" + "Long": "Longo" }, "Long Text": { "Long Text": "Longo Texto" @@ -2494,7 +2621,7 @@ "Media Needed": "Papel Necessário" }, "Media Player": { - "Media Player": "" + "Media Player": "Reprodutor de Mídia" }, "Media Player Settings": { "Media Player Settings": "Configurações do Reprodutor de Mídia" @@ -2503,10 +2630,10 @@ "Media Players (": "Reprodutores de Mídia(" }, "Media Volume": { - "Media Volume": "" + "Media Volume": "Volume de Mídia" }, "Medium": { - "Medium": "" + "Medium": "Médio" }, "Memory": { "Memory": "Memória" @@ -2524,7 +2651,7 @@ "Microphone": "Microfone" }, "Microphone Mute": { - "Microphone Mute": "" + "Microphone Mute": "Mutar Microfone" }, "Microphone Volume": { "Microphone Volume": "" @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Sem adaptadores" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Nenhum arquivo encontrado" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Nenhum item adicionado" }, "No keybinds found": { "No keybinds found": "Nenhum atalho encontrado" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Nenhuma correspondência" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Nenhum plugin encontrado" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "" }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Abrir Arquivo do Bloco de Notas" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Abrir barra de pesquisa e encontrar texto" }, @@ -2914,7 +3068,7 @@ "Outputs Include Missing": "" }, "Overridden by config": { - "Overridden by config": "" + "Overridden by config": "Substituído pela config" }, "Override": { "Override": "Sobrescrever" @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Preenchimento" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Fixado" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Use este local para os diretórios de plugin. Cada plugin deve ter um arquivo de manifesto plugin.json." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Gerenciamento de Plugins" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Plugin está desativado - ative em configurações de Plugins para usar" }, @@ -3067,7 +3230,7 @@ "Position": "Posição" }, "Possible Override Conflicts": { - "Possible Override Conflicts": "" + "Possible Override Conflicts": "Possíveis Conflitos de Sobrescrita" }, "Power": { "Power": "Energia" @@ -3076,7 +3239,7 @@ "Power & Security": "Energia & Segurança" }, "Power & Sleep": { - "Power & Sleep": "" + "Power & Sleep": "Energia & Suspensão" }, "Power Action Confirmation": { "Power Action Confirmation": "Confirmação de Ação de Energia" @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Impedir suspensão da tela" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Primário" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Remover espaçámentos e borda quando janelas estão maximizadas" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3379,7 +3551,7 @@ "Scale DankBar font sizes independently": "Ajustar tamanho da fonte da DankBar de forma independente" }, "Scale all font sizes throughout the shell": { - "Scale all font sizes throughout the shell": "" + "Scale all font sizes throughout the shell": "Ajuste todos os tamanhos de fonte em todo o shell" }, "Scan": { "Scan": "Escanear" @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Scrolling" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,11 +3634,14 @@ "Security": { "Security": "Segurança" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Selecionar Aplicação" }, "Select Bar": { - "Select Bar": "" + "Select Bar": "Selecionar Barra" }, "Select Launcher Logo": { "Select Launcher Logo": "Selecionar Logo do Lançador" @@ -3534,14 +3715,20 @@ "Setup": { "Setup": "" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: Apagar tudo • Esc: Fechar" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { - "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "" + "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Colar • Shift+Del: Limpar Tudo • Esc: Fechar" }, "Short": { "Short": "" @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Mostrar Numeração de Linha" }, @@ -3670,7 +3860,7 @@ "Show an outline ring around the focused workspace indicator": "" }, "Show cava audio visualizer in media widget": { - "Show cava audio visualizer in media widget": "" + "Show cava audio visualizer in media widget": "Exibir a visualização cava no widget de mídia" }, "Show darkened overlay behind modal dialogs": { "Show darkened overlay behind modal dialogs": "Exibir sobreposição escurecida atrás de diálogos modais" @@ -3679,7 +3869,7 @@ "Show dock when floating windows don't overlap its area": "" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { - "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "" + "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "Mostrar sobreposição do iniciador ao digitar na visão geral do Niri. Desative para usar outro iniciador." }, "Show on Last Display": { "Show on Last Display": "Mostrar na Última Tela" @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "" }, @@ -3883,7 +4076,7 @@ "Switch User": "Trocar Usuário" }, "Switch to power profile": { - "Switch to power profile": "" + "Switch to power profile": "Trocar para perfil de energia" }, "Sync Mode with Portal": { "Sync Mode with Portal": "Sincronizar Modo Com Portal" @@ -3940,7 +4133,7 @@ "System update custom command": "Comando personalizado para atualização do sistema" }, "Tab": { - "Tab": "" + "Tab": "Aba" }, "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": { "Tab/Shift+Tab: Nav • ←→↑↓: Grid Nav • Enter/Space: Select": "Tab/Shift+Tab: Navegação • ←→↑↓: Navegação em Grade • Enter/Espaço: Selecionar" @@ -3979,7 +4172,7 @@ "Theme Color": "Cor do Tema" }, "Thickness": { - "Thickness": "" + "Thickness": "Espessura" }, "Third-Party Plugin Warning": { "Third-Party Plugin Warning": "Aviso Sobre Plugins de Terceiros" @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "Transparência" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "Tipo" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Tipografia" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Usar tema claro em vez de escuro" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "Nome de usuário" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Usa o tempo de nascer e pôr do sol para ajustar automaticamente o modo noturno baseado na sua localização." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Utilitários" }, @@ -4363,7 +4589,7 @@ "Wallpapers": "Papéis de parede" }, "Warm color temperature to apply": { - "Warm color temperature to apply": "" + "Warm color temperature to apply": "Temperatura de cor quente para aplicar" }, "Warning": { "Warning": "Aviso" @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Velocidade do Vento" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Arredondamento de Janelas" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Seletor de Áreas de Trabalho" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Você tem mudanças não salvas. Deseja salvar antes de abrir um arquivo?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "" }, @@ -4551,7 +4792,7 @@ "Select Wallpaper": "Selecionar Papel de Parede" }, "days": { - "days": "" + "days": "dias" }, "dgop not available": { "dgop not available": "" @@ -4786,8 +5027,23 @@ "installed status": { "Installed": "" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { - "leave empty for default": "" + "leave empty for default": "deixe vazio por padrão" }, "loading indicator": { "Loading...": "" @@ -4824,7 +5080,10 @@ "Mount Points": "" }, "ms": { - "ms": "" + "ms": "ms" + }, + "nav": { + "nav": "" }, "no custom theme file status": { "No custom theme file": "" @@ -4882,6 +5141,12 @@ "official": { "official": "oficial" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "" }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "segundos" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,8 +5281,11 @@ "wallpaper settings external management": { "External Wallpaper Management": "Gerenciamento Externo de Papéis de Parede" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { - "wtype not available - install wtype for paste support": "" + "wtype not available - install wtype for paste support": "wtype não disponível - installe wtype para suporte de colagem" }, "yesterday": { "yesterday": "" diff --git a/quickshell/translations/poexports/tr.json b/quickshell/translations/poexports/tr.json index 7c74d214..464a09c6 100644 --- a/quickshell/translations/poexports/tr.json +++ b/quickshell/translations/poexports/tr.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "Anonim Kimlik (isteğe bağlı)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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." }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "Apps Icon": { "Apps Icon": "Uygulamalar" }, "Apps are ordered by usage frequency, then last used, then alphabetically.": { "Apps are ordered by usage frequency, then last used, then alphabetically.": "Uygulamalar önce kullanım sıklığına göre, daha sonra son kullanılana göre ve en son alfabetik olarak sıralanır." }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "Ekranları düzenleyin ve çözünürlüğü, yenileme hızını ve VRR'yi yapılandırın" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "Otomatik bağlanma etkin" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "Otomatik Kontrol" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "Sistem askıya alınmaya hazırlanırken ekranı otomatik olarak kilitle" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "Kullanılabilir" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "Eklentilere Göz At" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS kullanılamıyor" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "Kamera" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "Renk Seç" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "Başlatıcı Logo Rengini Seçin" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "Hangi monitörün kilit ekranı arayüzünü göstereceğini seçin. Diğer monitörler, OLED yanma koruması için düz bir renk gösterecektir." }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "Şifre" }, @@ -770,9 +803,15 @@ "Close": { "Close": "Kapat" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "Başlatmada Genel Görünümü Kapat" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "Renk" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "Gece modu için renk sıcaklığı" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "Parlak kontrastlı vurguların renkli karışımı." }, @@ -812,6 +857,9 @@ "Command": { "Command": "Komut" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "İletişim" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "Şu anda oynatılan medyayı kontrol et" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "Çubuk üzerinde kaydırarak çalışma alanlarını ve sütunları kontrol edin" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "Süreç Adını Kopyala" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "Köşe Yarıçapı" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "Kenar Aralığı" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "Eğitim" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "loginctl kilit entegrasyonunu etkinleştir" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "Parola Alanını Göster" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "Şunun için PIN gir: " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "Arama sorgusu girin" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "Hata" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "Üstel" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: Değiştir • F10: Yardım" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "Dosya Bilgisi" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "Dosyalar" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "Sağlık" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "Gizleme Gecikmesi" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "IP Adresi:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "Simge Boyutu" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "Geçişleri Dahil Et" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "Uyumsuz Eklentiler Yüklendi" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "LED cihazı" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "Son başlatma %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "Başlatıcı" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "Başlatıcı Buton Logosu" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "Eklentiler yükleniyor..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "Yükleniyor..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "Bağdaştırıcı yok" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "Batarya yok" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "Dosya bulunamadı" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "Henüz eklenen öğe yok" }, "No keybinds found": { "No keybinds found": "Tuş kombinasyonu bulunamadı" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "Eşleşme yok" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "Eklenti bulunamadı" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "Hiçbir varyant oluşturulmadı. Yeni bir monitör widget'ı oluşturmak için Ekle'ye tıklayın." }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "Not Defteri Dosyası Aç" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "Metin bulmak için arama çubuğunu aç" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PİN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "Dolgu" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "Sabitlendi" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "Eklenti klasörlerini buraya yerleştirin. Her eklenti plugin.json manifest dosyasına sahip olmalı." }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "Eklenti Yönetimi" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "Eklenti devre dışı - kullanmak için Eklenti ayarlarından etkinleştirin" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "Ekran zaman aşımını önle" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "Birincil" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "Pencereler ekranı kapladığında boşlukları ve kenarlıkları kaldır" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "Kaydırma" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "Güvenlik" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "Uygulama Seç" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "Kurulum" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: Tümünü Temizle • Esc: Kapat" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter: Yapıştır • Shift+Del: Tümünü Temizle • Esc: Kapat" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "Satır Numaralarını Göster" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "Boyutlandırma" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "Transparanlık" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "" }, "Trigger Prefix": { "Trigger Prefix": "" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "Tip" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "Tipografi" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "Karanlık tema yerine aydınlık tema kullan" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "Kullanıcı Adı" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "Gün doğumu/batımı saatlerini kullanarak konumunuza göre gece modunu otomatik olarak ayarlar." }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "Araçlar" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "Rüzgar hızı" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "Pencere Köşe Yarıçapı" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "Çalışma Alanı Değiştirici" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "Çalışma Alanları" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "Kaydedilmemiş değişiklikleriniz var. Yeni dosya açmadan önce kaydedelim mi?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "uygulamalar" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "Temalara Göz At" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "Yüklendi" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "Varsayılanlar için boş bırakın" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "ms" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "Özel tema dosyası yok" }, @@ -4882,6 +5141,12 @@ "official": { "official": "resmi" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "DMS eklenti kayıt defterinden eklentiler yükle" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "Eklenti ara..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "DMS kayıt defterinden renk teması" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "saniye" }, @@ -4928,6 +5199,9 @@ "Surface": "", "Text": "" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "Harici Duvar Kağıdı Yönetimi" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype mevcut değil - yapıştırma desteği için wtype'ı yükleyin" }, diff --git a/quickshell/translations/poexports/zh_CN.json b/quickshell/translations/poexports/zh_CN.json index 51f877d2..b29b98de 100644 --- a/quickshell/translations/poexports/zh_CN.json +++ b/quickshell/translations/poexports/zh_CN.json @@ -252,7 +252,7 @@ "Always Show Percentage": "始终显示百分比" }, "Always hide the dock and reveal it when hovering near the dock area": { - "Always hide the dock and reveal it when hovering near the dock area": "" + "Always hide the dock and reveal it when hovering near the dock area": "总是隐藏程序坞,并在靠近它时显露" }, "Always on icons": { "Always on icons": "总显示的图标" @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名身份(可选)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "应用ID替换" }, @@ -305,12 +308,21 @@ "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.": "应用暖色温以减轻眼睛疲劳,可通过下方设置配置按时间自动启用。" }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "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.": "应用按使用频率、最近使用时间和字母顺序排序。" }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "排列显示器、配置分辨率、刷新率和VRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "已启用自动连接" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "自动切换" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "当系统准备挂起时自动锁定屏幕" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "可用" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "浏览插件" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS不可用" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "摄像头" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "选择颜色" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "设置启动器 Logo 颜色" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "选择哪个显示器显示锁屏界面。其他显示器将显示纯色以保护 OLED 屏幕防烧伤。" }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "密码" }, @@ -711,7 +744,7 @@ "Clear All Jobs": "清除所有任务" }, "Clear History?": { - "Clear History?": "" + "Clear History?": "是否清除历史?" }, "Clear all history when server starts": { "Clear all history when server starts": "当服务器启动时清除所有纪录" @@ -770,9 +803,15 @@ "Close": { "Close": "关闭" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "在启动时关闭概览" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "颜色" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "夜间模式色温" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "色彩鲜明、对比强烈的配色。" }, @@ -812,6 +857,9 @@ "Command": { "Command": "命令" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "通讯" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "控制当前播放的媒体" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "在状态栏上滚动时也会控制工作区和列" }, @@ -924,10 +975,13 @@ "Copy": "复制" }, "Copy Full Command": { - "Copy Full Command": "" + "Copy Full Command": "复制完整命令" + }, + "Copy HTML": { + "Copy HTML": "" }, "Copy Name": { - "Copy Name": "" + "Copy Name": "复制名称" }, "Copy PID": { "Copy PID": "复制进程ID" @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "复制进程名" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "圆角半径" }, @@ -1137,7 +1200,7 @@ "Delete Printer": "删除打印机" }, "Delete Saved Item?": { - "Delete Saved Item?": "" + "Delete Saved Item?": "是否删除已保存项目?" }, "Delete VPN": { "Delete VPN": "删除 VPN" @@ -1224,7 +1287,7 @@ "Disk Usage": "磁盘占用" }, "Disks": { - "Disks": "" + "Disks": "磁盘" }, "Dismiss": { "Dismiss": "忽略" @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "边缘间距" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "教育" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "启用 loginctl 锁定集成" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "显示密码区域" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "输入PIN " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "输入检索内容" }, @@ -1461,10 +1533,13 @@ "Enterprise": "企业" }, "Entry pinned": { - "Entry pinned": "" + "Entry pinned": "项目已固定" }, "Entry unpinned": { - "Entry unpinned": "" + "Entry unpinned": "项目已取消固定" + }, + "Environment Variables": { + "Environment Variables": "" }, "Error": { "Error": "错误" @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "指数" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切换 • F10: 帮助" }, @@ -1509,7 +1587,7 @@ "Failed to cancel selected job": "无法取消所选的任务" }, "Failed to check pin limit": { - "Failed to check pin limit": "" + "Failed to check pin limit": "检查固定限制失败" }, "Failed to connect VPN": { "Failed to connect VPN": "连接 VPN 失败" @@ -1587,7 +1665,7 @@ "Failed to pause printer": "无法暂停打印机" }, "Failed to pin entry": { - "Failed to pin entry": "" + "Failed to pin entry": "固定项目失败" }, "Failed to print test page": { "Failed to print test page": "打印测试页失败" @@ -1635,7 +1713,7 @@ "Failed to start connection to %1": "连接至%1失败" }, "Failed to unpin entry": { - "Failed to unpin entry": "" + "Failed to unpin entry": "取消固定项目失败" }, "Failed to update VPN": { "Failed to update VPN": "更新 VPN 失败" @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "文件信息" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "文件" }, @@ -1743,7 +1824,7 @@ "Force HDR": "强制HDR" }, "Force Kill (SIGKILL)": { - "Force Kill (SIGKILL)": "" + "Force Kill (SIGKILL)": "强制结束(SIGKILL)" }, "Force Kill Process": { "Force Kill Process": "强制结束进程" @@ -1800,7 +1881,7 @@ "Gamma control not available. Requires DMS API v6+.": "伽玛控制不可用,需要 DMS API v6+。" }, "Generic device name | Generic device name fallback": { - "device": "" + "device": "设备" }, "GitHub": { "GitHub": "GitHub" @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "色相、饱和度、明度" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "电池健康" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "已隐藏" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "隐藏的网络" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "隐藏延迟" }, @@ -1920,7 +2013,7 @@ "History Settings": "历史设置" }, "History cleared. %1 pinned entries kept.": { - "History cleared. %1 pinned entries kept.": "" + "History cleared. %1 pinned entries kept.": "历史记录已清除。仍保留%1条已固定项目。" }, "Hold Duration": { "Hold Duration": "按住持续时间" @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "IP 地址:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "图标大小" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "包含过渡效果" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "加载了不兼容的插件" }, @@ -2037,7 +2136,7 @@ "Install plugins from the DMS plugin registry": "从 DMS 插件库安装插件" }, "Intelligent Auto-hide": { - "Intelligent Auto-hide": "" + "Intelligent Auto-hide": "智能自动隐藏" }, "Interface:": { "Interface:": "接口:" @@ -2067,164 +2166,180 @@ "Jobs: ": "任务: " }, "KDE Connect SMS action": { - "Opening SMS": "", - "Opening SMS app": "" + "Opening SMS": "正在打开SMS", + "Opening SMS app": "正在打开SMS应用" }, "KDE Connect SMS dialog title": { - "Send SMS": "" + "Send SMS": "发送SMS" }, "KDE Connect SMS message input placeholder": { - "Message": "" + "Message": "消息" }, "KDE Connect SMS phone input placeholder": { - "Phone number": "" + "Phone number": "电话号码" }, "KDE Connect SMS send button": { - "Send": "" + "Send": "发送" }, "KDE Connect SMS tooltip": { - "SMS": "" + "SMS": "SMS" }, "KDE Connect accept pairing button": { - "Accept": "" + "Accept": "接受" }, "KDE Connect browse action": { - "Opening file browser": "", - "Opening files": "" + "Opening file browser": "正在打开文件浏览器", + "Opening files": "正在打开文件" }, "KDE Connect browse tooltip": { - "Browse Files": "" + "Browse Files": "浏览文件" }, "KDE Connect clipboard action": { - "Clipboard sent": "" + "Clipboard sent": "已发送剪切板" }, "KDE Connect clipboard tooltip": { - "Send Clipboard": "" + "Send Clipboard": "发送剪切板" }, "KDE Connect connected status": { - "Connected": "" + "Connected": "已连接" }, "KDE Connect daemon hint": { - "Start kdeconnectd to use this plugin": "" + "Start kdeconnectd to use this plugin": "启动kdeconnectd以使用此插件" }, "KDE Connect error": { - "Failed to accept pairing": "", - "Failed to browse device": "", - "Failed to launch SMS app": "", - "Failed to reject pairing": "", - "Failed to ring device": "", - "Failed to send clipboard": "", - "Failed to send ping": "", - "Failed to share": "", - "Pairing failed": "", - "Unpair failed": "" + "Failed to accept pairing": "接受配对失败", + "Failed to browse device": "浏览设备失败", + "Failed to launch SMS app": "启动SMS应用失败", + "Failed to reject pairing": "拒绝配对失败", + "Failed to ring device": "环绕设备失败", + "Failed to send clipboard": "发送剪切板失败", + "Failed to send file": "", + "Failed to send ping": "发送ping失败", + "Failed to share": "共享失败", + "Pairing failed": "配对失败", + "Unpair failed": "取消配对失败" + }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" }, "KDE Connect file share notification": { - "File received from": "" + "File received from": "已从此处接收文件" }, "KDE Connect hint message": { - "Make sure KDE Connect is running on your other devices": "" + "Make sure KDE Connect is running on your other devices": "请确保KDE Connect正运行在你的其他设备" }, "KDE Connect no devices message": { - "No devices found": "" + "No devices found": "未找到设备" }, "KDE Connect no devices status": { - "No devices": "" + "No devices": "无设备" }, "KDE Connect not paired status": { - "Not paired": "" + "Not paired": "未配对" }, "KDE Connect offline status": { - "Offline": "" + "Offline": "离线" }, "KDE Connect open SMS app button": { - "Open App": "" + "Open App": "打开应用" }, "KDE Connect open app hint": { - "Open KDE Connect on your phone": "" + "Open KDE Connect on your phone": "在你的手机上打开KDE Connect" }, "KDE Connect pair button": { - "Pair": "" + "Pair": "配对" }, "KDE Connect pairing action": { - "Device paired": "", - "Pairing request sent": "" + "Device paired": "设备已配对", + "Pairing request sent": "配对请求已发送" }, "KDE Connect pairing in progress status": { - "Pairing": "" + "Pairing": "正在配对" }, "KDE Connect pairing request notification": { - "Pairing request from": "" + "Pairing request from": "正从此处接收配对请求" }, "KDE Connect pairing requested status": { - "Pairing requested": "" + "Pairing requested": "配对已请求" }, "KDE Connect pairing verification key label": { - "Verification": "" + "Verification": "验证" }, "KDE Connect ping action": { - "Ping sent": "", - "Ping sent to": "" + "Ping sent": "Ping已发送", + "Ping sent to": "Ping已发送至此处" }, "KDE Connect ping tooltip": { - "Ping": "" + "Ping": "Ping" }, "KDE Connect refresh button | KDE Connect refresh tooltip": { - "Refresh": "" + "Refresh": "刷新" }, "KDE Connect reject pairing button": { - "Reject": "" + "Reject": "拒绝" }, "KDE Connect request pairing button": { - "Request Pairing": "" + "Request Pairing": "请求配对" }, "KDE Connect ring action": { - "Ringing": "" + "Ringing": "环绕" }, "KDE Connect ring tooltip": { - "Ring": "" + "Ring": "环绕" + }, + "KDE Connect send file button": { + "Send File": "" }, "KDE Connect service unavailable message": { - "KDE Connect unavailable": "" + "KDE Connect unavailable": "KDE Connect不可用" }, "KDE Connect share URL button": { - "Share URL": "" + "Share URL": "共享网址" + }, + "KDE Connect share button": { + "Share Text": "" }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "共享" + }, + "KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, "KDE Connect share input placeholder": { - "Enter URL or text to share": "" + "Enter URL or text to share": "请输入想要共享的网址或文本" }, "KDE Connect share success": { - "Shared": "" + "Shared": "已共享" }, "KDE Connect start daemon hint": { - "Start kdeconnectd to connect devices": "" + "Start kdeconnectd to connect devices": "启动kdeconnectd以连接设备" }, "KDE Connect status": { - "No devices connected": "" + "No devices connected": "未连接设备" }, "KDE Connect status multiple devices": { - "devices connected": "" + "devices connected": "设备已连接" }, "KDE Connect status single device": { - "1 device connected": "" + "1 device connected": "已连接1个设备" }, "KDE Connect unavailable error title": { - "KDE Connect Not Available": "" + "KDE Connect Not Available": "KDE Connect不可用" }, "KDE Connect unavailable status": { - "Unavailable": "" + "Unavailable": "不可用" }, "KDE Connect unknown device status | unknown author": { - "Unknown": "" + "Unknown": "未知" }, "KDE Connect unpair action": { - "Device unpaired": "" + "Device unpaired": "设备已取消配对" }, "KDE Connect unpair tooltip": { - "Unpair": "" + "Unpair": "取消配对" }, "Keep Awake": { "Keep Awake": "保持活动" @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "LED设备" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "上次启动于 %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "启动器" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "启动器按钮 Logo" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "正在加载插件…..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "正在加载..." }, @@ -2461,16 +2588,16 @@ "Maximum History": "最多历史数" }, "Maximum Pinned Entries": { - "Maximum Pinned Entries": "" + "Maximum Pinned Entries": "固定项目最多数量" }, "Maximum number of clipboard entries to keep": { "Maximum number of clipboard entries to keep": "剪切板项目记住的最大数量" }, "Maximum number of entries that can be saved": { - "Maximum number of entries that can be saved": "" + "Maximum number of entries that can be saved": "可被保存的项目最多数量" }, "Maximum pinned entries reached": { - "Maximum pinned entries reached": "" + "Maximum pinned entries reached": "已达固定项目最多数量" }, "Maximum size per clipboard entry": { "Maximum size per clipboard entry": "每个剪切板项目的最大尺寸" @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "无适配器" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "无电池" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "未找到文件" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "暂未添加任何项目" }, "No keybinds found": { "No keybinds found": "未找到按键绑定" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "未找到匹配项" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "未找到插件" }, @@ -2764,10 +2906,16 @@ "No printers found": "未找到打印机" }, "No recent clipboard entries found": { - "No recent clipboard entries found": "" + "No recent clipboard entries found": "未找到近期剪切板项目" + }, + "No results found": { + "No results found": "" }, "No saved clipboard entries": { - "No saved clipboard entries": "" + "No saved clipboard entries": "无已保存剪切板项目" + }, + "No trigger": { + "No trigger": "" }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "没有任何变体。点击添加以创建新的显示器小部件。" @@ -2845,7 +2993,7 @@ "OSD Position": "OSD位置" }, "Occupied Color": { - "Occupied Color": "" + "Occupied Color": "占位色" }, "Off": { "Off": "关闭" @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "打开便签" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "打开搜索栏以查找文本" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN 码" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "内边距" }, @@ -2995,7 +3152,7 @@ "Percentage": "占用率" }, "Performance": { - "Performance": "" + "Performance": "性能" }, "Permission denied to set profile image.": { "Permission denied to set profile image.": "因权限问题,无法设置个人资料图片。" @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "已固定" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "此处为插件目录,每个插件应带有一个 plugin.json 描述文件。" }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "插件管理" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "插件已禁用 - 请在插件设置中启用以继续" }, @@ -3097,7 +3260,7 @@ "Power Profile Degradation": "电源配置性能下降" }, "Power off monitors on lock": { - "Power off monitors on lock": "" + "Power off monitors on lock": "锁定时关闭显示器" }, "Power profile management available": { "Power profile management available": "电源配置文件管理可用" @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "防止屏幕超时" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "主题色" }, @@ -3169,7 +3335,7 @@ "Process Count": "进程计数" }, "Processes": { - "Processes": "" + "Processes": "进程" }, "Processing": { "Processing": "处理中" @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "当窗口最大化时移除间距和边框" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "重复" }, @@ -3370,7 +3542,7 @@ "Saved Configurations": "已保存的配置" }, "Saved item deleted": { - "Saved item deleted": "" + "Saved item deleted": "保存项目已删除" }, "Scale": { "Scale": "缩放" @@ -3394,7 +3566,7 @@ "Science": "科学" }, "Screen Sharing": { - "Screen Sharing": "" + "Screen Sharing": "屏幕共享" }, "Screen sharing": { "Screen sharing": "屏幕分享" @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "滚动" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "通过按键组合、描述或动作名称搜索。\\n\\n默认动作会将快捷键复制到剪贴板。\\n按下右键或右箭头会固定常用快捷键——未处于搜索时它们会出现在顶部。" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "安全性" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "选择应用程序" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "设置" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: 清空 • Esc: 关闭" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter:粘贴 • Shift+Del:清除所有 • Esc:关闭" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "显示湿度" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "显示行号" }, @@ -3676,7 +3866,7 @@ "Show darkened overlay behind modal dialogs": "在对话框后显示暗色遮罩" }, "Show dock when floating windows don't overlap its area": { - "Show dock when floating windows don't overlap its area": "" + "Show dock when floating windows don't overlap its area": "当浮动窗口不覆盖其区域时显示程序坞" }, "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": { "Show launcher overlay when typing in Niri overview. Disable to use another launcher.": "在Niri概览中打字时显示启动器叠加层。禁用该项以使用其他启动器。" @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "大小调整" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "智能卡认证" }, @@ -3994,13 +4187,13 @@ "This widget prevents GPU power off states, which can significantly impact battery life on laptops. It is not recommended to use this on laptops with hybrid graphics.": "此部件会阻止 GPU 进入省电状态,可能会显著影响笔记本的电池续航。不建议在配备混合显卡的笔记本上使用。" }, "This will delete all unpinned entries. %1 pinned entries will be kept.": { - "This will delete all unpinned entries. %1 pinned entries will be kept.": "" + "This will delete all unpinned entries. %1 pinned entries will be kept.": "此操作将删除所有已取消固定的项目。%1个已固定项目将被保留。" }, "This will permanently delete all clipboard history.": { "This will permanently delete all clipboard history.": "此操作会清空剪贴板历史,且无法恢复。" }, "This will permanently remove this saved clipboard item. This action cannot be undone.": { - "This will permanently remove this saved clipboard item. This action cannot be undone.": "" + "This will permanently remove this saved clipboard item. This action cannot be undone.": "此操作会永久移除已保存的剪贴板项目。此操作将无法撤销。" }, "Tiling": { "Tiling": "平铺" @@ -4095,14 +4288,26 @@ "Transparency": { "Transparency": "透明度" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "触发" }, "Trigger Prefix": { "Trigger Prefix": "触发前缀" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { - "Turn off all displays immediately when the lock screen activates": "" + "Turn off all displays immediately when the lock screen activates": "当激活锁屏时将立即关闭所有显示器" }, "Turn off monitors after": { "Turn off monitors after": "在此时间后关闭显示器" @@ -4110,9 +4315,21 @@ "Type": { "Type": "类型" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "键入此前缀以搜索快捷键绑定" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "排版" }, @@ -4171,7 +4388,7 @@ "Update Plugin": "更新插件" }, "Uptime": { - "Uptime": "" + "Uptime": "运行时间" }, "Urgent Color": { "Urgent Color": "高亮颜色" @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "使用浅色主题替代深色主题" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "使用更小的通知卡" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "用户名" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "使用所在位置的日出/日落时间,自动调节夜间模式。" }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "实用工具" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "风速" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "窗口角半径" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "工作区切换器" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "工作区" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "检测到未保存的更改,是否在打开文件前保存?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "应用程序" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "阴影" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "浏览主题" }, @@ -4557,16 +4798,16 @@ "dgop not available": "dgop不可用" }, "dgop unavailable error message": { - "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "" + "The 'dgop' tool is required for system monitoring.\\nPlease install dgop to use this feature.": "要使用系统监视器需要dgop工具。\\n请安装dgop以使用此功能。" }, "disk io header in system monitor": { - "Disk I/O": "" + "Disk I/O": "磁盘I/O" }, "disk read label": { - "Read:": "" + "Read:": "读取:" }, "disk write label": { - "Write:": "" + "Write:": "写入:" }, "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 中。除非修复此问题,否则自定义键绑定将无法工作。" @@ -4602,13 +4843,13 @@ "No plugins found": "未找到插件" }, "empty state in disk mounts list": { - "No mount points found": "" + "No mount points found": "未找到挂载点" }, "empty state in gpu list": { - "No GPUs detected": "" + "No GPUs detected": "未检测到GPU" }, "empty state in process list": { - "No matching processes": "" + "No matching processes": "无匹配进程" }, "empty theme list": { "No themes found": "未找到主题" @@ -4617,7 +4858,7 @@ "events": "事件" }, "fallback gpu name": { - "Unknown GPU": "" + "Unknown GPU": "未知的GPU" }, "files": { "files": "文件" @@ -4626,7 +4867,7 @@ "Material Design inspired color themes": "受Material设计启发的色彩主题" }, "gpu section header in system monitor": { - "GPU Monitoring": "" + "GPU Monitoring": "GPU监视" }, "greeter back button": { "Back": "返回" @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "已安装" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "留空使用默认" }, @@ -4821,11 +5077,14 @@ "minutes": "分钟" }, "mount points header in system monitor": { - "Mount Points": "" + "Mount Points": "挂载点" }, "ms": { "ms": "毫秒" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "缺失自定义主题文件" }, @@ -4882,6 +5141,12 @@ "official": { "official": "官方" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "从DMS插件注册表安装插件" }, @@ -4897,14 +5162,17 @@ "plugin search placeholder": { "Search plugins...": "插件搜索中..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { - "Processes:": "" + "Processes:": "进程:" }, "process detail label": { - "Full Command:": "" + "Full Command:": "完整命令:" }, "process search placeholder": { - "Search processes...": "" + "Search processes...": "正在搜索进程..." }, "profile image file browser title": { "Select Profile Image": "选择个人信息图像" @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "DMS注册表的颜色主题" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "秒" }, @@ -4928,11 +5199,14 @@ "Surface": "表面", "Text": "文本" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "强度" }, "short for processes": { - "procs": "" + "procs": "进程" }, "source code link": { "source": "源" @@ -4941,14 +5215,14 @@ "System Monitor": "系统监视器" }, "system info header in system monitor": { - "System Information": "" + "System Information": "系统信息" }, "system info label": { - "Architecture": "", - "Distribution": "", - "Hostname": "", - "Kernel": "", - "Load Average": "" + "Architecture": "架构", + "Distribution": "发行", + "Hostname": "Hostname", + "Kernel": "内核", + "Load Average": "平均负载" }, "theme browser description": { "Install color themes from the DMS theme registry": "从DMS主题注册表安装色彩主题" @@ -4981,7 +5255,7 @@ "update dms for NM integration.": "更新 DMS 以集成 NM" }, "uptime label in footer": { - "Uptime:": "" + "Uptime:": "运行时间:" }, "version requirement": { "Requires %1": "需要%1" @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "外部壁纸管理" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype不可用,为支持粘贴,请安装wtype" }, diff --git a/quickshell/translations/poexports/zh_TW.json b/quickshell/translations/poexports/zh_TW.json index 233f54ae..2c17ad24 100644 --- a/quickshell/translations/poexports/zh_TW.json +++ b/quickshell/translations/poexports/zh_TW.json @@ -281,6 +281,9 @@ "Anonymous Identity (optional)": { "Anonymous Identity (optional)": "匿名身分 (可選)" }, + "App Customizations": { + "App Customizations": "" + }, "App ID Substitutions": { "App ID Substitutions": "" }, @@ -305,12 +308,21 @@ "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.": "應用暖色溫以減輕眼睛疲勞。使用下方的自動化設定來控制其啟動時間。" }, + "Apps": { + "Apps": "" + }, + "Apps Dock": { + "Apps Dock": "" + }, "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.": "應用程式按使用頻率、最後使用時間、字母順序排列。" }, + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": { + "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.": "" + }, "Arrange displays and configure resolution, refresh rate, and VRR": { "Arrange displays and configure resolution, refresh rate, and VRR": "排列顯示器並設定解析度、重新整理頻率和 VRR" }, @@ -410,6 +422,9 @@ "Autoconnect enabled": { "Autoconnect enabled": "自動連線啟用" }, + "Automatic Color Mode": { + "Automatic Color Mode": "" + }, "Automatic Control": { "Automatic Control": "自動控制" }, @@ -434,6 +449,9 @@ "Automatically lock the screen when the system prepares to suspend": { "Automatically lock the screen when the system prepares to suspend": "睡眠時自動鎖定螢幕" }, + "Automation": { + "Automation": "" + }, "Available": { "Available": "可用" }, @@ -578,6 +596,9 @@ "Browse Plugins": { "Browse Plugins": "瀏覽插件" }, + "Browse or search plugins": { + "Browse or search plugins": "" + }, "CPU": { "CPU": "CPU" }, @@ -608,6 +629,12 @@ "CUPS not available": { "CUPS not available": "CUPS 不可用" }, + "Calc": { + "Calc": "" + }, + "Calculator": { + "Calculator": "" + }, "Camera": { "Camera": "相機" }, @@ -659,6 +686,9 @@ "Choose Color": { "Choose Color": "選擇顏色" }, + "Choose Dock Launcher Logo Color": { + "Choose Dock Launcher Logo Color": "" + }, "Choose Launcher Logo Color": { "Choose Launcher Logo Color": "選擇啟動器 Logo 顏色" }, @@ -695,6 +725,9 @@ "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": { "Choose which monitor shows the lock screen interface. Other monitors will display a solid color for OLED burn-in protection.": "選擇哪個監視器顯示鎖定畫面介面。其他監視器將顯示純色以保護 OLED 燒屏。" }, + "Chroma Style": { + "Chroma Style": "" + }, "Cipher": { "Cipher": "密碼" }, @@ -770,9 +803,15 @@ "Close": { "Close": "關閉" }, + "Close All Windows": { + "Close All Windows": "" + }, "Close Overview on Launch": { "Close Overview on Launch": "啟動時關閉概覽" }, + "Close Window": { + "Close Window": "" + }, "Color": { "Color": "顏色" }, @@ -803,6 +842,12 @@ "Color temperature for night mode": { "Color temperature for night mode": "夜晚螢幕的顏色溫度" }, + "Color theme for syntax highlighting.": { + "Color theme for syntax highlighting.": "" + }, + "Color theme for syntax highlighting. %1 themes available.": { + "Color theme for syntax highlighting. %1 themes available.": "" + }, "Colorful mix of bright contrasting accents.": { "Colorful mix of bright contrasting accents.": "明亮對比點綴的繽紛組合。" }, @@ -812,6 +857,9 @@ "Command": { "Command": "指令" }, + "Commands": { + "Commands": "" + }, "Communication": { "Communication": "通訊" }, @@ -905,6 +953,9 @@ "Control currently playing media": { "Control currently playing media": "控制目前播放器" }, + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": { + "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.": "" + }, "Control workspaces and columns by scrolling on the bar": { "Control workspaces and columns by scrolling on the bar": "透過在列上捲動來控制工作區和欄位" }, @@ -926,6 +977,9 @@ "Copy Full Command": { "Copy Full Command": "" }, + "Copy HTML": { + "Copy HTML": "" + }, "Copy Name": { "Copy Name": "" }, @@ -935,6 +989,15 @@ "Copy Process Name": { "Copy Process Name": "複製程序名" }, + "Copy Text": { + "Copy Text": "" + }, + "Copy URL": { + "Copy URL": "" + }, + "Copy path": { + "Copy path": "" + }, "Corner Radius": { "Corner Radius": "圓角半徑" }, @@ -1343,6 +1406,9 @@ "Edge Spacing": { "Edge Spacing": "邊緣間距" }, + "Edit App": { + "Edit App": "" + }, "Education": { "Education": "教育" }, @@ -1391,6 +1457,9 @@ "Enable loginctl lock integration": { "Enable loginctl lock integration": "啟用 loginctl 鎖定整合" }, + "Enable media player controls on the lock screen window": { + "Show Media Player": "" + }, "Enable password field display on the lock screen window": { "Show Password Field": "顯示密碼欄位" }, @@ -1427,6 +1496,9 @@ "Enter PIN for ": { "Enter PIN for ": "請輸入 PIN 給 " }, + "Enter a new name for this workspace": { + "Enter a new name for this workspace": "" + }, "Enter a search query": { "Enter a search query": "輸入要尋找的檔案" }, @@ -1466,6 +1538,9 @@ "Entry unpinned": { "Entry unpinned": "" }, + "Environment Variables": { + "Environment Variables": "" + }, "Error": { "Error": "錯誤" }, @@ -1481,6 +1556,9 @@ "Exponential": { "Exponential": "指數" }, + "Extra Arguments": { + "Extra Arguments": "" + }, "F1/I: Toggle • F10: Help": { "F1/I: Toggle • F10: Help": "F1/I: 切換 • F10: 幫助" }, @@ -1670,6 +1748,9 @@ "File Information": { "File Information": "檔案資訊" }, + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": { + "File search requires dsearch\\nInstall from github.com/morelazers/dsearch": "" + }, "Files": { "Files": "檔案" }, @@ -1868,6 +1949,9 @@ "HSV": { "HSV": "HSV" }, + "HTML copied to clipboard": { + "HTML copied to clipboard": "" + }, "Health": { "Health": "健康狀態" }, @@ -1886,9 +1970,18 @@ "Hidden": { "Hidden": "隱藏的" }, + "Hidden Apps": { + "Hidden Apps": "" + }, "Hidden Network": { "Hidden Network": "隱藏網路" }, + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": { + "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.": "" + }, + "Hide App": { + "Hide App": "" + }, "Hide Delay": { "Hide Delay": "隱藏延遲" }, @@ -1970,6 +2063,9 @@ "IP Address:": { "IP Address:": "IP 位址:" }, + "Icon": { + "Icon": "" + }, "Icon Size": { "Icon Size": "圖示大小" }, @@ -2009,6 +2105,9 @@ "Include Transitions": { "Include Transitions": "包括過渡" }, + "Include desktop actions (shortcuts) in search results.": { + "Include desktop actions (shortcuts) in search results.": "" + }, "Incompatible Plugins Loaded": { "Incompatible Plugins Loaded": "載入了不相容的外掛程式" }, @@ -2114,11 +2213,18 @@ "Failed to reject pairing": "", "Failed to ring device": "", "Failed to send clipboard": "", + "Failed to send file": "", "Failed to send ping": "", "Failed to share": "", "Pairing failed": "", "Unpair failed": "" }, + "KDE Connect file browser title": { + "Select File to Send": "" + }, + "KDE Connect file send": { + "Sending": "" + }, "KDE Connect file share notification": { "File received from": "" }, @@ -2184,15 +2290,24 @@ "KDE Connect ring tooltip": { "Ring": "" }, + "KDE Connect send file button": { + "Send File": "" + }, "KDE Connect service unavailable message": { "KDE Connect unavailable": "" }, "KDE Connect share URL button": { "Share URL": "" }, + "KDE Connect share button": { + "Share Text": "" + }, "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip": { "Share": "" }, + "KDE Connect share dialog title | KDE Connect share tooltip": { + "Share": "" + }, "KDE Connect share input placeholder": { "Enter URL or text to share": "" }, @@ -2265,6 +2380,12 @@ "LED device": { "LED device": "LED 裝置" }, + "Large": { + "Large": "" + }, + "Largest": { + "Largest": "" + }, "Last launched %1": { "Last launched %1": "上次啟動於 %1" }, @@ -2295,6 +2416,9 @@ "Launcher": { "Launcher": "啟動器" }, + "Launcher Button": { + "Launcher Button": "" + }, "Launcher Button Logo": { "Launcher Button Logo": "啟動器按鈕 Logo" }, @@ -2334,6 +2458,9 @@ "Loading plugins...": { "Loading plugins...": "讀取插件..." }, + "Loading trending...": { + "Loading trending...": "" + }, "Loading...": { "Loading...": "載入中..." }, @@ -2709,6 +2836,12 @@ "No adapters": { "No adapters": "沒有介面卡" }, + "No app customizations.": { + "No app customizations.": "" + }, + "No apps found": { + "No apps found": "" + }, "No battery": { "No battery": "無電池" }, @@ -2739,15 +2872,24 @@ "No files found": { "No files found": "沒有找到" }, + "No hidden apps.": { + "No hidden apps.": "" + }, "No items added yet": { "No items added yet": "未新增任何項目" }, "No keybinds found": { "No keybinds found": "未找到按鍵綁定" }, + "No launcher plugins installed.": { + "No launcher plugins installed.": "" + }, "No matches": { "No matches": "不匹配" }, + "No plugin results": { + "No plugin results": "" + }, "No plugins found": { "No plugins found": "找不到插件" }, @@ -2766,9 +2908,15 @@ "No recent clipboard entries found": { "No recent clipboard entries found": "" }, + "No results found": { + "No results found": "" + }, "No saved clipboard entries": { "No saved clipboard entries": "" }, + "No trigger": { + "No trigger": "" + }, "No variants created. Click Add to create a new monitor widget.": { "No variants created. Click Add to create a new monitor widget.": "尚未建立任何變體。按一下「新增」以建立新的顯示器小工具。" }, @@ -2880,6 +3028,12 @@ "Open Notepad File": { "Open Notepad File": "打開筆記文件" }, + "Open folder": { + "Open folder": "" + }, + "Open in Browser": { + "Open in Browser": "" + }, "Open search bar to find text": { "Open search bar to find text": "打開搜尋欄尋找文本" }, @@ -2946,6 +3100,9 @@ "PIN": { "PIN": "PIN" }, + "Pad Hours": { + "Pad Hours": "" + }, "Padding": { "Padding": "內距" }, @@ -3012,6 +3169,9 @@ "Pinned": { "Pinned": "已釘選" }, + "Pinned and running apps with drag-and-drop": { + "Pinned and running apps with drag-and-drop": "" + }, "Place plugin directories here. Each plugin should have a plugin.json manifest file.": { "Place plugin directories here. Each plugin should have a plugin.json manifest file.": "將插件資料夾放在這裡。每個插件都應該有一個 plugin.json 清單檔案。" }, @@ -3048,6 +3208,9 @@ "Plugin Management": { "Plugin Management": "插件管理" }, + "Plugin Visibility": { + "Plugin Visibility": "" + }, "Plugin is disabled - enable in Plugins settings to use": { "Plugin is disabled - enable in Plugins settings to use": "插件已停用 - 在插件設定中啟用即可使用" }, @@ -3126,6 +3289,9 @@ "Prevent screen timeout": { "Prevent screen timeout": "防止螢幕超時" }, + "Preview": { + "Preview": "" + }, "Primary": { "Primary": "主要" }, @@ -3240,6 +3406,12 @@ "Remove gaps and border when windows are maximized": { "Remove gaps and border when windows are maximized": "視窗最大化時移除間距與邊框" }, + "Rename": { + "Rename": "" + }, + "Rename Workspace": { + "Rename Workspace": "" + }, "Repeat": { "Repeat": "重複" }, @@ -3417,6 +3589,12 @@ "Scrolling": { "Scrolling": "滾動" }, + "Search App Actions": { + "Search App Actions": "" + }, + "Search Options": { + "Search Options": "" + }, "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": { "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.": "依按鍵組合、描述或動作名稱搜尋。\n\n預設動作會將快捷鍵複製到剪貼簿。\n右鍵點擊或按下右方向鍵可釘選常用快捷鍵 — 釘選後,它們會在未搜尋時顯示在頂部。" }, @@ -3456,6 +3634,9 @@ "Security": { "Security": "安全性" }, + "Select": { + "Select": "" + }, "Select Application": { "Select Application": "選擇應用程式" }, @@ -3534,12 +3715,18 @@ "Setup": { "Setup": "設定" }, + "Share Gamma Control Settings": { + "Share Gamma Control Settings": "" + }, "Shell": { "Shell": "Shell" }, "Shift+Del: Clear All • Esc: Close": { "Shift+Del: Clear All • Esc: Close": "Shift+Del: 清除所有 • Esc: 關閉" }, + "Shift+Enter to paste": { + "Shift+Enter to paste": "" + }, "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": { "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close": "Shift+Enter:貼上 • Shift+Del:全部清除 • Esc:關閉" }, @@ -3597,6 +3784,9 @@ "Show Humidity": { "Show Humidity": "顯示濕度" }, + "Show Launcher Button": { + "Show Launcher Button": "" + }, "Show Line Numbers": { "Show Line Numbers": "顯示行數" }, @@ -3774,6 +3964,9 @@ "Sizing": { "Sizing": "尺寸" }, + "Small": { + "Small": "" + }, "Smartcard Authentication": { "Smartcard Authentication": "智慧卡驗證" }, @@ -4095,12 +4288,24 @@ "Transparency": { "Transparency": "透明度" }, + "Trending GIFs": { + "Trending GIFs": "" + }, + "Trending Stickers": { + "Trending Stickers": "" + }, "Trigger": { "Trigger": "觸發" }, "Trigger Prefix": { "Trigger Prefix": "觸發前綴" }, + "Trigger: %1": { + "Trigger: %1": "" + }, + "Try a different search": { + "Try a different search": "" + }, "Turn off all displays immediately when the lock screen activates": { "Turn off all displays immediately when the lock screen activates": "" }, @@ -4110,9 +4315,21 @@ "Type": { "Type": "類型" }, + "Type at least 2 characters": { + "Type at least 2 characters": "" + }, "Type this prefix to search keybinds": { "Type this prefix to search keybinds": "輸入此前綴以搜尋快捷鍵" }, + "Type to search": { + "Type to search": "" + }, + "Type to search apps": { + "Type to search apps": "" + }, + "Type to search files": { + "Type to search files": "" + }, "Typography": { "Typography": "字體排版" }, @@ -4230,6 +4447,9 @@ "Use light theme instead of dark theme": { "Use light theme instead of dark theme": "使用淺色主題而不是深色主題" }, + "Use meters per second instead of km/h for wind speed": { + "Use meters per second instead of km/h for wind speed": "" + }, "Use smaller notification cards": { "Use smaller notification cards": "" }, @@ -4257,9 +4477,15 @@ "Username": { "Username": "使用者名稱" }, + "Uses sunrise/sunset times based on your location.": { + "Uses sunrise/sunset times based on your location.": "" + }, "Uses sunrise/sunset times to automatically adjust night mode based on your location.": { "Uses sunrise/sunset times to automatically adjust night mode based on your location.": "使用根據您的位置日出/日落時間自動調整夜間模式。" }, + "Using shared settings from Gamma Control": { + "Using shared settings from Gamma Control": "" + }, "Utilities": { "Utilities": "實用項目" }, @@ -4460,6 +4686,9 @@ "Wind Speed": { "Wind Speed": "風速" }, + "Wind Speed in m/s": { + "Wind Speed in m/s": "" + }, "Window Corner Radius": { "Window Corner Radius": "視窗圓角半徑" }, @@ -4493,6 +4722,9 @@ "Workspace Switcher": { "Workspace Switcher": "工作區切換器" }, + "Workspace name": { + "Workspace name": "" + }, "Workspaces": { "Workspaces": "工作區" }, @@ -4520,6 +4752,9 @@ "You have unsaved changes. Save before opening a file?": { "You have unsaved changes. Save before opening a file?": "您有未儲存的變更。是否先保存再開檔案?" }, + "actions": { + "actions": "" + }, "apps": { "apps": "應用程式" }, @@ -4529,6 +4764,12 @@ "bar shadow settings card": { "Shadow": "陰影" }, + "border color": { + "Color": "" + }, + "border thickness": { + "Thickness": "" + }, "browse themes button | theme browser header | theme browser window title": { "Browse Themes": "瀏覽佈景主題" }, @@ -4786,6 +5027,21 @@ "installed status": { "Installed": "已安裝" }, + "launcher appearance settings": { + "Appearance": "" + }, + "launcher border option": { + "Border": "" + }, + "launcher footer description": { + "Show mode tabs and keyboard hints at the bottom.": "" + }, + "launcher footer visibility": { + "Show Footer": "" + }, + "launcher size option": { + "Size": "" + }, "leave empty for default": { "leave empty for default": "留空以使用預設值" }, @@ -4826,6 +5082,9 @@ "ms": { "ms": "毫秒" }, + "nav": { + "nav": "" + }, "no custom theme file status": { "No custom theme file": "無自訂主題檔案" }, @@ -4882,6 +5141,12 @@ "official": { "official": "官方" }, + "open": { + "open": "" + }, + "outline color": { + "Outline": "" + }, "plugin browser description": { "Install plugins from the DMS plugin registry": "從 DMS 外掛登錄檔安裝外掛" }, @@ -4897,6 +5162,9 @@ "plugin search placeholder": { "Search plugins...": "搜尋外掛..." }, + "primary color": { + "Primary": "" + }, "process count label in footer": { "Processes:": "" }, @@ -4915,6 +5183,9 @@ "registry theme description": { "Color theme from DMS registry": "來自 DMS 登錄檔的色彩主題" }, + "secondary color": { + "Secondary": "" + }, "seconds": { "seconds": "秒" }, @@ -4928,6 +5199,9 @@ "Surface": "表面", "Text": "文字" }, + "shadow color option | text color": { + "Text": "" + }, "shadow intensity slider": { "Intensity": "強度" }, @@ -5007,6 +5281,9 @@ "wallpaper settings external management": { "External Wallpaper Management": "外部桌布管理" }, + "weather feels like temperature": { + "Feels Like %1°": "" + }, "wtype not available - install wtype for paste support": { "wtype not available - install wtype for paste support": "wtype 未可用 - 請安裝 wtype 以支援貼上功能" }, diff --git a/quickshell/translations/settings_search_index.json b/quickshell/translations/settings_search_index.json index 830601ac..87a5a488 100644 --- a/quickshell/translations/settings_search_index.json +++ b/quickshell/translations/settings_search_index.json @@ -487,6 +487,27 @@ "weather" ] }, + { + "section": "padHours12Hour", + "label": "Pad Hours", + "tabIndex": 1, + "category": "Time & Weather", + "keywords": [ + "12hour", + "clock", + "date", + "forecast", + "format", + "hours", + "leading", + "pad", + "padding", + "time", + "weather", + "zero" + ], + "description": "02:31 PM vs 2:31 PM" + }, { "section": "showSeconds", "label": "Show Seconds", @@ -606,6 +627,26 @@ "icon": "cloud", "description": "Show weather information in top bar and control center" }, + { + "section": "windSpeedUnit", + "label": "Wind Speed in m/s", + "tabIndex": 1, + "category": "Time & Weather", + "keywords": [ + "clock", + "date", + "forecast", + "meters", + "metric", + "second", + "speed", + "time", + "units", + "weather", + "wind" + ], + "description": "Use meters per second instead of km/h for wind speed" + }, { "section": "_tab_2", "label": "Keyboard Shortcuts", @@ -1162,6 +1203,39 @@ "icon": "border_style", "description": "Add a border around the dock" }, + { + "section": "dockLauncherLogoBrightness", + "label": "Brightness", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "backlight", + "bright", + "brightness", + "color", + "dim", + "dock", + "launcher", + "launcher bar", + "logo", + "taskbar" + ] + }, + { + "section": "dockLauncherLogoContrast", + "label": "Contrast", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "color", + "contrast", + "dock", + "launcher", + "launcher bar", + "logo", + "taskbar" + ] + }, { "section": "_tab_5", "label": "Dock & Launcher", @@ -1325,6 +1399,25 @@ ], "description": "Only show windows from the current monitor on each dock" }, + { + "section": "dockLauncher", + "label": "Launcher Button", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "app drawer", + "app menu", + "applications", + "apps", + "button", + "dock", + "launcher", + "launcher bar", + "start menu", + "taskbar" + ], + "icon": "apps" + }, { "section": "showDock", "label": "Show Dock", @@ -1351,6 +1444,25 @@ ], "description": "Display a dock with pinned and running applications" }, + { + "section": "dockLauncherEnabled", + "label": "Show Launcher Button", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "app drawer", + "app menu", + "applications", + "apps", + "button", + "dock", + "launcher", + "launcher bar", + "show", + "start menu", + "taskbar" + ] + }, { "section": "dockOpenOnOverview", "label": "Show on Overview", @@ -1369,6 +1481,22 @@ "description": "Always show the dock when niri", "conditionKey": "isNiri" }, + { + "section": "dockLauncherLogoSizeOffset", + "label": "Size Offset", + "tabIndex": 5, + "category": "Dock", + "keywords": [ + "dock", + "launcher", + "launcher bar", + "logo", + "offset", + "scale", + "size", + "taskbar" + ] + }, { "section": "dockSizing", "label": "Sizing", @@ -1705,6 +1833,27 @@ "description": "Auto-close Niri overview when launching apps.", "conditionKey": "isNiri" }, + { + "section": "pluginVisibility", + "label": "Plugin Visibility", + "tabIndex": 9, + "category": "Launcher", + "keywords": [ + "auto-hide", + "autohide", + "drawer", + "hidden", + "hide", + "launcher", + "menu", + "plugin", + "show", + "start", + "visibility", + "visible" + ], + "icon": "filter_list" + }, { "section": "recentApps", "label": "Recently Used Apps", @@ -1933,6 +2082,30 @@ ], "description": "Hide cursor after inactivity (0 = disabled)" }, + { + "section": "automaticColorMode", + "label": "Automatic Color Mode", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "automatic", + "color", + "colors", + "colour", + "hue", + "look", + "mode", + "schedule", + "scheme", + "style", + "sunrise", + "sunset", + "theme", + "tint" + ], + "icon": "schedule" + }, { "section": "niriLayoutBorderSize", "label": "Border Size", @@ -2114,6 +2287,23 @@ ], "description": "Show darkened overlay behind modal dialogs" }, + { + "section": "matugenTemplateEmacs", + "label": "Emacs", + "tabIndex": 10, + "category": "Theme & Colors", + "keywords": [ + "appearance", + "colors", + "emacs", + "look", + "matugen", + "scheme", + "style", + "template", + "theme" + ] + }, { "section": "matugenTemplateFirefox", "label": "Firefox", @@ -2933,23 +3123,6 @@ "wezterm" ] }, - { - "section": "matugenTemplateEmacs", - "label": "Emacs", - "tabIndex": 10, - "category": "Theme & Colors", - "keywords": [ - "appearance", - "colors", - "look", - "matugen", - "scheme", - "style", - "template", - "theme", - "emacs" - ] - }, { "section": "widgetBackgroundColor", "label": "Widget Background Color", @@ -3587,6 +3760,26 @@ ], "description": "Turn off all displays immediately when the lock screen activates" }, + { + "section": "lockScreenShowMediaPlayer", + "label": "Show Media Player", + "tabIndex": 11, + "category": "Lock Screen", + "keywords": [ + "audio", + "lock", + "login", + "media", + "mpris", + "music", + "password", + "playback", + "player", + "screen", + "security", + "show" + ] + }, { "section": "lockScreenShowPasswordField", "label": "Show Password Field", diff --git a/quickshell/translations/template.json b/quickshell/translations/template.json index 057cdcb4..f48b8b8d 100644 --- a/quickshell/translations/template.json +++ b/quickshell/translations/template.json @@ -706,6 +706,13 @@ "reference": "", "comment": "" }, + { + "term": "App Customizations", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "App ID Substitutions", "translation": "", @@ -734,6 +741,13 @@ "reference": "", "comment": "" }, + { + "term": "Appearance", + "translation": "", + "context": "launcher appearance settings", + "reference": "", + "comment": "" + }, { "term": "Application Dock", "translation": "", @@ -776,6 +790,20 @@ "reference": "", "comment": "" }, + { + "term": "Apps", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Apps Dock", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Apps Icon", "translation": "", @@ -790,6 +818,13 @@ "reference": "", "comment": "" }, + { + "term": "Apps with custom display name, icon, or launch options. Right-click an app and select 'Edit App' to customize.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Architecture", "translation": "", @@ -1035,6 +1070,13 @@ "reference": "", "comment": "" }, + { + "term": "Automatic Color Mode", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Automatic Control", "translation": "", @@ -1091,6 +1133,13 @@ "reference": "", "comment": "" }, + { + "term": "Automation", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Available", "translation": "", @@ -1325,7 +1374,7 @@ { "term": "Border", "translation": "", - "context": "", + "context": "launcher border option", "reference": "", "comment": "" }, @@ -1448,6 +1497,13 @@ "reference": "", "comment": "" }, + { + "term": "Browse or search plugins", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "CPU", "translation": "", @@ -1525,6 +1581,20 @@ "reference": "", "comment": "" }, + { + "term": "Calc", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Calculator", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Camera", "translation": "", @@ -1644,6 +1714,13 @@ "reference": "", "comment": "" }, + { + "term": "Choose Dock Launcher Logo Color", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Choose Launcher Logo Color", "translation": "", @@ -1728,6 +1805,13 @@ "reference": "", "comment": "" }, + { + "term": "Chroma Style", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Cipher", "translation": "", @@ -1903,6 +1987,13 @@ "reference": "", "comment": "" }, + { + "term": "Close All Windows", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Close Overview on Launch", "translation": "", @@ -1910,10 +2001,17 @@ "reference": "", "comment": "" }, + { + "term": "Close Window", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Color", "translation": "", - "context": "", + "context": "border color", "reference": "", "comment": "" }, @@ -1980,6 +2078,20 @@ "reference": "", "comment": "" }, + { + "term": "Color theme for syntax highlighting.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Color theme for syntax highlighting. %1 themes available.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Color theme from DMS registry", "translation": "", @@ -2015,6 +2127,13 @@ "reference": "", "comment": "" }, + { + "term": "Commands", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Communication", "translation": "", @@ -2260,6 +2379,13 @@ "reference": "", "comment": "" }, + { + "term": "Control which plugins appear in 'All' mode without requiring a trigger prefix. Drag to reorder.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Control workspaces and columns by scrolling on the bar", "translation": "", @@ -2309,6 +2435,13 @@ "reference": "", "comment": "" }, + { + "term": "Copy HTML", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Copy Name", "translation": "", @@ -2323,6 +2456,27 @@ "reference": "", "comment": "" }, + { + "term": "Copy Text", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Copy URL", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Copy path", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Corner Radius", "translation": "", @@ -2708,13 +2862,6 @@ "reference": "", "comment": "" }, - { - "term": "DankSearch not available", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "DankShell & System Icons (requires restart)", "translation": "", @@ -3359,6 +3506,13 @@ "reference": "", "comment": "" }, + { + "term": "Edit App", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Education", "translation": "", @@ -3507,7 +3661,7 @@ "comment": "" }, { - "term": "Enter a search query", + "term": "Enter a new name for this workspace", "translation": "", "context": "", "reference": "", @@ -3597,6 +3751,13 @@ "reference": "", "comment": "" }, + { + "term": "Environment Variables", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Error", "translation": "", @@ -3660,6 +3821,13 @@ "reference": "", "comment": "" }, + { + "term": "Extra Arguments", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "F1/I: Toggle • F10: Help", "translation": "", @@ -4003,6 +4171,13 @@ "reference": "", "comment": "" }, + { + "term": "Failed to send file", + "translation": "", + "context": "KDE Connect error", + "reference": "", + "comment": "" + }, { "term": "Failed to send ping", "translation": "", @@ -4136,6 +4311,13 @@ "reference": "", "comment": "" }, + { + "term": "Feels Like %1°", + "translation": "", + "context": "weather feels like temperature", + "reference": "", + "comment": "" + }, { "term": "File", "translation": "", @@ -4164,6 +4346,13 @@ "reference": "", "comment": "" }, + { + "term": "File search requires dsearch\\nInstall from github.com/morelazers/dsearch", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Files", "translation": "", @@ -4682,6 +4871,13 @@ "reference": "", "comment": "" }, + { + "term": "HTML copied to clipboard", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Health", "translation": "", @@ -4724,6 +4920,13 @@ "reference": "", "comment": "" }, + { + "term": "Hidden Apps", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hidden Network", "translation": "", @@ -4731,6 +4934,20 @@ "reference": "", "comment": "" }, + { + "term": "Hidden apps won't appear in the launcher. Right-click an app and select 'Hide App' to hide it.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Hide App", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Hide Delay", "translation": "", @@ -4941,6 +5158,13 @@ "reference": "", "comment": "" }, + { + "term": "Icon", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Icon Size", "translation": "", @@ -5032,6 +5256,13 @@ "reference": "", "comment": "" }, + { + "term": "Include desktop actions (shortcuts) in search results.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Incompatible Plugins Loaded", "translation": "", @@ -5375,6 +5606,20 @@ "reference": "", "comment": "" }, + { + "term": "Large", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Largest", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Last hour", "translation": "", @@ -5452,6 +5697,13 @@ "reference": "", "comment": "" }, + { + "term": "Launcher Button", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Launcher Button Logo", "translation": "", @@ -5543,6 +5795,13 @@ "reference": "", "comment": "" }, + { + "term": "Loading trending...", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Loading...", "translation": "", @@ -6502,6 +6761,20 @@ "reference": "", "comment": "" }, + { + "term": "No app customizations.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "No apps found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No battery", "translation": "", @@ -6600,6 +6873,13 @@ "reference": "", "comment": "" }, + { + "term": "No hidden apps.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No info items", "translation": "", @@ -6621,6 +6901,13 @@ "reference": "", "comment": "" }, + { + "term": "No launcher plugins installed.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No matches", "translation": "", @@ -6642,6 +6929,13 @@ "reference": "", "comment": "" }, + { + "term": "No plugin results", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No plugins found", "translation": "", @@ -6684,6 +6978,13 @@ "reference": "", "comment": "" }, + { + "term": "No results found", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No saved clipboard entries", "translation": "", @@ -6705,6 +7006,13 @@ "reference": "", "comment": "" }, + { + "term": "No trigger", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "No wallpaper selected", "translation": "", @@ -7020,6 +7328,20 @@ "reference": "", "comment": "" }, + { + "term": "Open folder", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Open in Browser", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Open search bar to find text", "translation": "", @@ -7097,6 +7419,13 @@ "reference": "", "comment": "" }, + { + "term": "Outline", + "translation": "", + "context": "outline color", + "reference": "", + "comment": "" + }, { "term": "Output Area Almost Full", "translation": "", @@ -7202,6 +7531,13 @@ "reference": "", "comment": "" }, + { + "term": "Pad Hours", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Padding", "translation": "", @@ -7412,6 +7748,13 @@ "reference": "", "comment": "" }, + { + "term": "Pinned and running apps with drag-and-drop", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Place plugin directories here. Each plugin should have a plugin.json manifest file.", "translation": "", @@ -7496,6 +7839,13 @@ "reference": "", "comment": "" }, + { + "term": "Plugin Visibility", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Plugin is disabled - enable in Plugins settings to use", "translation": "", @@ -7693,12 +8043,19 @@ "comment": "" }, { - "term": "Primary", + "term": "Preview", "translation": "", "context": "", "reference": "", "comment": "" }, + { + "term": "Primary", + "translation": "", + "context": "primary color", + "reference": "", + "comment": "" + }, { "term": "Print Server Management", "translation": "", @@ -7979,6 +8336,20 @@ "reference": "", "comment": "" }, + { + "term": "Rename", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Rename Workspace", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Repeat", "translation": "", @@ -8462,6 +8833,20 @@ "reference": "", "comment": "" }, + { + "term": "Search App Actions", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Search Options", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Search by key combo, description, or action name.\\n\\nDefault action copies the keybind to clipboard.\\nRight-click or press Right Arrow to pin frequently used keybinds - they'll appear at the top when not searching.", "translation": "", @@ -8469,20 +8854,6 @@ "reference": "", "comment": "" }, - { - "term": "Search file contents", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, - { - "term": "Search filenames", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "Search for a location...", "translation": "", @@ -8549,7 +8920,7 @@ { "term": "Secondary", "translation": "", - "context": "", + "context": "secondary color", "reference": "", "comment": "" }, @@ -8574,6 +8945,13 @@ "reference": "", "comment": "" }, + { + "term": "Select", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Select Application", "translation": "", @@ -8595,6 +8973,13 @@ "reference": "", "comment": "" }, + { + "term": "Select File to Send", + "translation": "", + "context": "KDE Connect file browser title", + "reference": "", + "comment": "" + }, { "term": "Select Launcher Logo", "translation": "", @@ -8756,6 +9141,13 @@ "reference": "", "comment": "" }, + { + "term": "Send File", + "translation": "", + "context": "KDE Connect send file button", + "reference": "", + "comment": "" + }, { "term": "Send SMS", "translation": "", @@ -8763,6 +9155,13 @@ "reference": "", "comment": "" }, + { + "term": "Sending", + "translation": "", + "context": "KDE Connect file send", + "reference": "", + "comment": "" + }, { "term": "Separator", "translation": "", @@ -8829,7 +9228,21 @@ { "term": "Share", "translation": "", - "context": "KDE Connect share button | KDE Connect share dialog title | KDE Connect share tooltip", + "context": "KDE Connect share dialog title | KDE Connect share tooltip", + "reference": "", + "comment": "" + }, + { + "term": "Share Gamma Control Settings", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Share Text", + "translation": "", + "context": "KDE Connect share button", "reference": "", "comment": "" }, @@ -8861,6 +9274,13 @@ "reference": "", "comment": "" }, + { + "term": "Shift+Enter to paste", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Shift+Enter: Paste • Shift+Del: Clear All • Esc: Close", "translation": "", @@ -8945,6 +9365,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Footer", + "translation": "", + "context": "launcher footer visibility", + "reference": "", + "comment": "" + }, { "term": "Show Forecast", "translation": "", @@ -8994,6 +9421,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Launcher Button", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Show Line Numbers", "translation": "", @@ -9022,6 +9456,13 @@ "reference": "", "comment": "" }, + { + "term": "Show Media Player", + "translation": "", + "context": "Enable media player controls on the lock screen window", + "reference": "", + "comment": "" + }, { "term": "Show Memory", "translation": "", @@ -9232,6 +9673,13 @@ "reference": "", "comment": "" }, + { + "term": "Show mode tabs and keyboard hints at the bottom.", + "translation": "", + "context": "launcher footer description", + "reference": "", + "comment": "" + }, { "term": "Show on Last Display", "translation": "", @@ -9417,7 +9865,7 @@ { "term": "Size", "translation": "", - "context": "", + "context": "launcher size option", "reference": "", "comment": "" }, @@ -9449,6 +9897,13 @@ "reference": "", "comment": "" }, + { + "term": "Small", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Smartcard Authentication", "translation": "", @@ -9886,7 +10341,7 @@ { "term": "Text", "translation": "", - "context": "shadow color option", + "context": "shadow color option | text color", "reference": "", "comment": "" }, @@ -9949,7 +10404,7 @@ { "term": "Thickness", "translation": "", - "context": "", + "context": "border thickness", "reference": "", "comment": "" }, @@ -10219,6 +10674,20 @@ "reference": "", "comment": "" }, + { + "term": "Trending GIFs", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Trending Stickers", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Trigger", "translation": "", @@ -10233,6 +10702,20 @@ "reference": "", "comment": "" }, + { + "term": "Trigger: %1", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, + { + "term": "Try a different search", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Turn off all displays immediately when the lock screen activates", "translation": "", @@ -10254,6 +10737,13 @@ "reference": "", "comment": "" }, + { + "term": "Type at least 2 characters", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Type this prefix to search keybinds", "translation": "", @@ -10261,6 +10751,27 @@ "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": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Typography", "translation": "", @@ -10597,6 +11108,13 @@ "reference": "", "comment": "" }, + { + "term": "Use meters per second instead of km/h for wind speed", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Use smaller notification cards", "translation": "", @@ -10646,6 +11164,13 @@ "reference": "", "comment": "" }, + { + "term": "Uses sunrise/sunset times based on your location.", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Uses sunrise/sunset times to automatically adjust night mode based on your location.", "translation": "", @@ -10653,6 +11178,13 @@ "reference": "", "comment": "" }, + { + "term": "Using shared settings from Gamma Control", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Utilities", "translation": "", @@ -11143,6 +11675,13 @@ "reference": "", "comment": "" }, + { + "term": "Wind Speed in m/s", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Window Corner Radius", "translation": "", @@ -11220,6 +11759,13 @@ "reference": "", "comment": "" }, + { + "term": "Workspace name", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "Workspaces", "translation": "", @@ -11305,7 +11851,7 @@ "comment": "" }, { - "term": "apps", + "term": "actions", "translation": "", "context": "", "reference": "", @@ -11388,13 +11934,6 @@ "reference": "", "comment": "" }, - { - "term": "files", - "translation": "", - "context": "", - "reference": "", - "comment": "" - }, { "term": "leave empty for default", "translation": "", @@ -11430,6 +11969,13 @@ "reference": "", "comment": "" }, + { + "term": "nav", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "niri shortcuts config", "translation": "", @@ -11451,6 +11997,13 @@ "reference": "", "comment": "" }, + { + "term": "open", + "translation": "", + "context": "", + "reference": "", + "comment": "" + }, { "term": "procs", "translation": "",